*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:       #5C2B0E;
  --brown-mid:   #7A3B14;
  --brown-lite:  #A0521D;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE5D4;
  --sand:        #D9C9A8;
  --gold:        #C9943A;
  --gold-lite:   #E8BA6A;
  --white:       #FDFAF5;
}

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3.5rem;
  background: transparent;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.scrolled {
  background: rgba(245,240,232,.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(92,43,14,.06);
}
.nav-logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none;
}
.nav-logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--brown);
}
.nav-logo-sub {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brown-lite);
  line-height: 1;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  opacity: .75;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.nav-cta {
  background: var(--brown);
  color: var(--cream);
  opacity: 1;
  padding: .55rem 1.3rem;
  border-radius: 4px;
  transition: background .2s;
}
.nav-links a.nav-cta:hover { background: var(--brown-mid); }
.nav-mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: transparent; border: none;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--brown); border-radius: 2px;
  transition: .3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Layered background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201,148,58,.16) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(92,43,14,.07) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%235c2b0e' fill-opacity='0.035'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--sand);
  border-radius: 99px;
  padding: .4rem 1.1rem;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brown-lite);
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
  margin-bottom: 2rem;
  animation: fadeDown .8s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeDown .8s .1s ease both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 1.5rem;
  animation: fadeDown .8s .2s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-title .hero-title-line2 {
  display: block;
  font-weight: 300;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
}

.hero-desc {
  font-size: clamp(.85rem, 2vw, 1rem);
  line-height: 1.85;
  color: var(--brown-lite);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  animation: fadeUp .8s .3s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .8s .4s ease both;
}
.btn-primary {
  background: var(--brown);
  color: var(--cream);
  text-decoration: none;
  padding: .9rem 2.2rem;
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(92,43,14,.2);
}
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,43,14,.28); }
.btn-outline {
  border: 1.5px solid var(--sand);
  color: var(--brown);
  text-decoration: none;
  padding: .9rem 2.2rem;
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.5);
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--brown); background: rgba(255,255,255,.8); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  animation: fadeUp .8s .55s ease both;
  flex-wrap: wrap; justify-content: center;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.stat-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown-lite);
  margin-top: .3rem;
}
.stat-divider {
  width: 1px;
  background: var(--sand);
  align-self: stretch;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sand);
  animation: fadeUp .8s .8s ease both;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .5; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.15); }
}

/* ─── SECTION WRAPPER ─── */
section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: clamp(.8rem, 1.8vw, .92rem);
  line-height: 1.85;
  color: var(--brown-lite);
  max-width: 520px;
  margin: 1rem auto 0;
}

/* ─── PROPERTIES ─── */
.properties-section {
  background: var(--white);
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.property-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(92,43,14,.14);
}

.property-illustration {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
}
.property-illustration svg {
  width: 100%; height: 100%;
}
.property-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--brown);
  color: var(--cream);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 3px;
}
.property-available {
  position: absolute; top: 1rem; right: 1rem;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.85);
  border-radius: 99px;
  padding: .3rem .85rem;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 5;
}
.property-available svg {
  width: 12px;
  height: 12px;
}
.property-available a {
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
.property-available a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.property-body { padding: 1.6rem; }
.property-location {
  display: flex; align-items: center; gap: .4rem;
  font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brown-lite);
  margin-bottom: .5rem;
}
.property-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: .4rem;
  line-height: 1.15;
}
.property-desc {
  font-size: .8rem;
  line-height: 1.75;
  color: var(--brown-lite);
  margin-bottom: 1.2rem;
}
.property-amenities {
  display: flex; flex-wrap: wrap; gap: .45rem;
  margin-bottom: 1.4rem;
}
.amenity-chip {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown-lite);
  border: 1px solid var(--sand);
  border-radius: 99px;
  padding: .25rem .7rem;
  background: rgba(255,255,255,.6);
}
.property-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--sand);
}
.property-price-label {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sand);
}
.property-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
}
.property-price span {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  color: var(--brown-lite);
}
.property-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--brown);
  color: var(--cream);
  text-decoration: none;
  padding: .6rem 1.2rem;
  border-radius: 5px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.property-btn:hover { background: var(--brown-mid); transform: translateY(-1px); }
.property-btn svg { transition: transform .2s; }
.property-btn:hover svg { transform: translateX(3px); }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(18, 18, 18, .72);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9999;
}
.modal-overlay.active {
  opacity: 1; visibility: visible;
}
.modal {
  width: min(420px, calc(100% - 3rem));
  background: rgba(255,255,255,1);
  padding: 1.8rem 1.6rem;
  border-radius: 16px;
  box-shadow: 0 32px 90px rgba(0,0,0,.18);
  text-align: left;
  max-width: 420px;
  position: relative;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: .75rem;
  color: var(--brown);
}
.modal-copy {
  color: var(--brown-lite);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.modal-actions {
  display: grid;
  gap: .85rem;
}
.modal-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: .95rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.modal-btn-contact {
  background: var(--brown);
  color: var(--cream);
}
.modal-btn-contact:hover { background: var(--brown-mid); transform: translateY(-2px); }
.modal-btn-online {
  background: #2d8c5e;
  color: #fff;
}
.modal-btn-online:hover { background: #246c4a; transform: translateY(-2px); }
.modal-btn:focus-visible,
.modal-close:focus-visible,
.property-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-action {
  margin-top: 2.2rem;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  color: var(--brown-lite);
  font-size: .95rem;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.modal-close:hover {
  background: rgba(0,0,0,.1);
}

/* ─── GALLERY ─── */
.gallery-section {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-top: 2.5rem;
}
.gallery-property {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(92,43,14,.08);
}
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.gallery-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(92,43,14,.15);
}
@media (max-width: 640px) {
  .gallery-grid {
    gap: 2.5rem;
  }
  .gallery-property {
    padding: 1.5rem;
  }
  .gallery-title {
    font-size: 1.5rem;
  }
  .gallery-images {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .75rem;
  }
  .gallery-images img {
    height: 150px;
  }
}

/* ─── WHY RAAHA ─── */
.why-section {
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--sand);
  border-radius: 12px;
  background: rgba(255,255,255,.5);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(92,43,14,.08);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: grid; place-items: center;
  margin: 0 auto 1.2rem;
  color: var(--brown);
  border: 1px solid var(--sand);
}
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: .5rem;
}
.why-body {
  font-size: .78rem;
  line-height: 1.75;
  color: var(--brown-lite);
}

/* ─── EXPERIENCE STRIP ─── */
.experience-strip {
  background: var(--brown);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.experience-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.experience-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.experience-strip .section-eyebrow { color: var(--gold-lite); }
.experience-strip .section-title {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.experience-strip .section-title em { color: var(--gold-lite); }
.experience-strip .section-body {
  color: rgba(245,240,232,.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.strip-features {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.strip-feature {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 99px;
  padding: .55rem 1.2rem;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--cream);
}
.strip-feature svg { color: var(--gold-lite); flex-shrink: 0; }

/* ─── CONTACT STRIP ─── */
.contact-strip {
  background: var(--cream-dark);
  padding: 5rem 2rem;
}
.contact-strip-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.contact-strip .section-eyebrow { color: var(--gold); }
.contact-strip .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.contact-strip .section-body { margin-bottom: 2.2rem; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: .8rem;
  background: #1dc35a;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 1rem 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(29,139,52,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover {
  background: #15772b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,139,52,.45);
}
.contact-note {
  margin-top: 1rem;
  font-size: .68rem;
  letter-spacing: .1em;
  color: #9f8057;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--brown);
  padding: 2.8rem 2rem 1.6rem;
  color: var(--cream);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  letter-spacing: .15em;
  color: var(--cream);
  margin-bottom: .3rem;
}
.footer-brand-sub {
  font-size: .6rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold-lite);
  margin-bottom: .8rem;
}
.footer-brand-desc {
  font-size: .78rem; line-height: 1.75;
  color: rgba(245,240,232,.55);
}
.footer-col-title {
  font-size: .65rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold-lite);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .52rem; }
.footer-links a {
  font-size: .78rem; color: rgba(245,240,232,.6);
  text-decoration: none;
  transition: color .2s;
  display: inline-flex; align-items: center; gap: .6rem;
}
.footer-links a:hover { color: var(--cream); }
.contact-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lite);
}
.footer-social {
  display: flex; gap: .8rem; margin-top: 1.2rem;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(245,240,232,.6);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.social-link:hover {
  background: rgba(255,255,255,.1);
  color: var(--cream);
  border-color: rgba(255,255,255,.3);
}
.footer-bottom {
  max-width: 1100px; margin: 1.2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .6rem;
}
.footer-copy {
  font-size: .65rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(245,240,232,.35);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem; font-style: italic;
  color: rgba(245,240,232,.35);
}

/* ─── KEYFRAMES ─── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── LIGHTBOX ─── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 12, .94);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .35s ease;
  padding: 2rem;
}
.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}
.lightbox-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(92,43,14,.4);
  animation: slideUp .35s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--sand);
  background: linear-gradient(135deg, rgba(245,240,232,.5) 0%, rgba(221,201,168,.2) 100%);
}
.lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  position: absolute;
  left: 2rem;
}
.lightbox-counter {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown-lite);
  font-weight: 500;
}
.lightbox-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
  min-height: 400px;
}
.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(92, 43, 14, 0.65);
  color: var(--cream);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  z-index: 10001;
  box-shadow: 0 2px 8px rgba(92,43,14,.15);
}
.lightbox-nav-btn:hover {
  background: rgba(92, 43, 14, 0.85);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 12px rgba(92,43,14,.25);
}
.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}
.lightbox-close {
  position: absolute;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--brown);
  font-size: 1.8rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  padding: 0;
}
.lightbox-close:hover {
  color: var(--brown-mid);
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .lightbox-overlay {
    padding: 1rem;
  }
  .lightbox-container {
    max-height: 95vh;
    border-radius: 12px;
  }
  .lightbox-header {
    padding: 1.2rem 1.5rem;
    padding-right: 3.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .lightbox-title {
    position: static;
    left: auto;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }
  .lightbox-counter {
    width: 100%;
    text-align: center;
    margin-top: 0.15rem;
    font-size: .75rem;
  }
  .lightbox-content {
    min-height: 300px;
  }
  .lightbox-image {
    padding: 1.5rem;
  }
  .lightbox-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .lightbox-prev {
    left: 1rem;
  }
  .lightbox-next {
    right: 1rem;
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; inset: 64px 0 0 0;
    background: #F5F0E8;
    backdrop-filter: blur(12px);
    padding: 3rem 2rem; gap: 2rem;
    min-height: calc(100vh - 64px);
    overflow-y: auto;
    opacity: 0; visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    z-index: 101;
  }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    opacity: 1; visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links.open a { font-size: 1rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
}
@media (max-width: 480px) {
  section { padding: 4rem 1.2rem; }
  .hero { padding: 6rem 1.2rem 4rem; }
}