:root {
  --bg-dark: #080808;
  /* Deep, matte charcoal */
  --bg-mid: #0f0f0f;
  --bg-light: #161616;
  --bg-accent: #1e1e1e;

  --gold-main: #c9a35d;
  /* Muted Champagne Gold */
  --gold-soft: #dec18e;
  /* Softer, warmer gold */
  --gold-deep: #8f723b;
  /* Antique bronze/gold */
  --gold-muted: rgba(201, 163, 93, 0.15);
  --gold-gradient: linear-gradient(135deg, #c9a35d 0%, #dec18e 100%);

  --white: #ffffff;
  --off-white: #f8f8f8;
  --text-main: #e2e2e2;
  --text-muted: #888888;
  --text-dark: #050505;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.9);
  --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 1px rgba(201, 163, 93, 0.1);

  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

h2 em {
  color: var(--gold-main);
  font-style: italic;
}

h3 {
  font-size: 1.4rem;
  color: var(--gold-soft);
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-desc {
  max-width: 500px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 15px rgba(201, 163, 93, 0.3);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(212, 162, 78, 0.1);
  border-color: var(--gold-main);
  color: var(--gold-main);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  margin-top: 8px;
}

.btn-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 163, 93, 0.2);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.logo span {
  color: var(--gold-main);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-main);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-main);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions {
  display: none;
  /* Hidden on desktop */
  align-items: center;
  gap: 12px;
}

.nav-icon-link {
  color: var(--white);
  transition: var(--transition);
  display: flex;
  align-items: center;
  padding: 8px;
  background: rgba(201, 163, 93, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 93, 0.15);
}

.nav-icon-link:hover {
  color: var(--gold-main);
  background: rgba(201, 163, 93, 0.2);
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 10s ease;
  /* Smooth fade & zoom */
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-inner {
  position: relative;
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-content h1 {
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}

.hero-desc {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold-main);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--gold-main);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.about-section {
  background: var(--bg-mid);
  border-bottom: 1px solid rgba(212, 162, 78, 0.1);
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.image-frame img {
  border-radius: var(--radius-lg);
  filter: grayscale(0.2) contrast(1.1);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.frame-accent {
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 2px solid var(--gold-main);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.5;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--gold-muted);
  border-bottom: 1px solid var(--gold-muted);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  /* Base for clamp */
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-main);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.services-section {
  background: var(--bg-dark);
}

.reviews-section {
  background: var(--bg-mid);
  border-top: 1px solid rgba(212, 162, 78, 0.1);
  border-bottom: 1px solid rgba(212, 162, 78, 0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background: var(--bg-light);
  border: 1px solid rgba(212, 162, 78, 0.1);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold-main);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-author strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-soft);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-section {
  background: var(--bg-mid);
  border-top: 1px solid rgba(212, 162, 78, 0.1);
  border-bottom: 1px solid rgba(212, 162, 78, 0.1);
}

.gallery-section {
  background: var(--bg-dark);
}

.contact-section {
  background: var(--bg-mid);
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-light);
  border: 1px solid rgba(201, 163, 93, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(201, 163, 93, 0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-main), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 162, 78, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212, 162, 78, 0.3));
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.65;
}

.service-price {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-main);
}

.service-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-main);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg-accent);
}

.gallery-item.large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--gold-main);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────
   BOOKING
───────────────────────────────────────── */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.booking-info>p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.booking-perks li {
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-perks li::before {
  content: '✦';
  color: var(--gold-main);
}

/* ─────────────────────────────────────────
   FORMS
───────────────────────────────────────── */
.form-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 162, 78, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(212, 162, 78, 0.15);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--bg-accent);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-main);
  box-shadow: 0 0 0 4px rgba(212, 162, 78, 0.1);
  background: var(--bg-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Success message */
.success-msg {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--gold-main);
  box-shadow: var(--shadow-md);
}

.success-msg.hidden {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 0 auto 20px;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  display: block;
  background: var(--bg-light);
  border: 1px solid rgba(212, 162, 78, 0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-card h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 6px;
  font-family: 'Jost', sans-serif;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 80px;
  border-top: 1px solid rgba(212, 162, 78, 0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-banner {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(212, 162, 78, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-banner h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.banner-card {
  position: relative;
  max-width: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 162, 78, 0.2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.banner-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.banner-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) brightness(0.9);
}


.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: rgba(212, 162, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  transition: var(--transition);
  border: 1px solid rgba(212, 162, 78, 0.2);
}

.footer-socials a:hover {
  background: var(--gold-main);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links li a:hover {
  color: var(--gold-main);
}

.footer-services li {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 162, 78, 0.05);
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {

  .about-wrapper,
  .booking-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-row: span 1;
    aspect-ratio: 1;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 162, 78, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--white) !important;
    padding: 16px 28px;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-actions {
    display: flex;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   LIGHTBOX
   ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.4s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 163, 93, 0.2);
  object-fit: contain;
  animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-caption {
  margin-top: 16px;
  color: var(--gold-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2100;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold-main);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 163, 93, 0.1);
  border: 1px solid rgba(201, 163, 93, 0.2);
  color: var(--white);
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  backdrop-filter: blur(4px);
}

.lightbox-btn:hover {
  background: var(--gold-main);
  color: var(--text-dark);
  border-color: var(--gold-main);
  box-shadow: 0 0 20px rgba(201, 163, 93, 0.4);
}

.lightbox-btn.prev {
  left: 30px;
}

.lightbox-btn.next {
  right: 30px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Base adjustment for gallery cursor */
.gallery-item {
  cursor: zoom-in;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lightbox {
    padding: 20px;
  }

  .lightbox-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .lightbox-btn.prev {
    left: 10px;
  }

  .lightbox-btn.next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 2rem;
  }
}