/* ==========================================================
   AURELIA SANCTUARY — Luxury Spiritual Retreat
   Deep forest · Sacred gold · Editorial luxury
   ========================================================== */

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

:root {
  --forest:   #101c12;
  --deep:     #0b1309;
  --moss:     #1e3020;
  --sage:     #3b5238;
  --mist:     #6b8065;
  --stone:    #c2b49e;
  --cream:    #f5f0e8;
  --warm:     #ece5d8;
  --gold:     #b8913a;
  --gold-lt:  #d4aa55;
  --text:     #1a2a1c;
  --muted:    #7a8a78;
  --border:   #ddd5c5;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.body-lg { font-size: 1.15rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
.body-md { font-size: 1rem; line-height: 1.75; color: #4a5a47; margin-bottom: 20px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 8px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 14px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-ghost {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, border-color .25s;
  margin-top: 36px;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
  margin-top: 24px;
}
.btn-outline:hover { background: var(--forest); color: #fff; }

.btn-solid {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s;
  margin-top: 24px;
}
.btn-solid:hover { background: var(--gold-lt); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .25em;
  color: #fff;
  text-decoration: none;
  transition: color .3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  transition: background .2s, border-color .2s;
}
.nav-links .nav-cta:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

/* Scrolled state */
#nav.scrolled {
  background: var(--deep);
  padding: 0 48px;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
#nav.scrolled .nav-logo { color: var(--gold); }
#nav.scrolled .nav-links a { color: rgba(255,255,255,.7); }
#nav.scrolled .nav-links a:hover { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: #fff;
  transition: all .3s;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=2000&q=85') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 1.6s cubic-bezier(.25,.46,.45,.94);
}
.hero-photo.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,18,10,.4) 0%,
    rgba(10,18,10,.2) 40%,
    rgba(10,18,10,.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
}

.hero-title {
  color: #fff;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.88);
}

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint span {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.3 } 50% { opacity:1 } }

/* ── INTRO ──────────────────────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.intro-text {
  padding: 100px 80px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.intro-text h2 {
  margin-bottom: 28px;
  color: var(--forest);
}

.intro-photo {
  background: url('https://images.unsplash.com/photo-1545389336-cf090694435e?auto=format&fit=crop&w=900&q=85') center/cover no-repeat;
  min-height: 560px;
}

/* ── QUOTE BAND ─────────────────────────────────────────── */
.quote-band {
  background: var(--moss);
  padding: 64px 48px;
  text-align: center;
}
.quote-band blockquote em {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  line-height: 1.4;
}

/* ── OFFERINGS ──────────────────────────────────────────── */
.offerings {
  padding: 100px 64px;
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-header h2 { margin-bottom: 16px; color: var(--forest); }
.section-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: #5a6a58;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}

.offering-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offering-photo {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.offering-card:hover .offering-photo { transform: scale(1.04); }
.offering-body {
  padding: 32px 28px 36px;
}
.offering-body h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--forest);
}
.offering-body p {
  font-size: .92rem;
  line-height: 1.75;
  color: #5a6a58;
}

/* Offering photo backgrounds */
.op-1 { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=800&q=80'); }
.op-2 { background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=800&q=80'); }
.op-3 { background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=800&q=80'); }
.op-4 { background-image: url('https://images.unsplash.com/photo-1552196563-55cd4e45efb3?auto=format&fit=crop&w=800&q=80'); }
.op-5 { background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&w=800&q=80'); }
.op-6 { background-image: url('https://images.unsplash.com/photo-1527525443983-6e60c75fff46?auto=format&fit=crop&w=800&q=80'); }

/* ── PHOTO BANDS ────────────────────────────────────────── */
.photo-band {
  height: 480px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.pb-1 {
  background-image: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=2000&q=85');
}
.pb-2 {
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2000&q=85');
}

/* ── SANCTUMS ───────────────────────────────────────────── */
.sanctums {
  padding: 100px 64px;
  background: var(--warm);
}

.sanctum-row {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto 6px;
  overflow: hidden;
}
.sanctum-row--reverse { direction: rtl; }
.sanctum-row--reverse > * { direction: ltr; }

.sanctum-photo {
  height: 520px;
  background-size: cover;
  background-position: center;
}
.sp-1 { background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=1000&q=85'); }
.sp-2 { background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1000&q=85'); }
.sp-3 { background-image: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1000&q=85'); }

.sanctum-text {
  background: var(--forest);
  color: #fff;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sanctum-text .eyebrow { color: var(--gold); }
.sanctum-text h3 { color: #fff; margin-bottom: 20px; font-size: 1.8rem; }
.sanctum-text p {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}

.amenity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.amenity-list li {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.amenity-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: .55rem;
  color: var(--gold);
  top: 4px;
}

/* ── GALLERY ────────────────────────────────────────────── */
.gallery-section { background: var(--deep); padding: 4px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 4px;
  max-width: 1280px;
  margin: 0 auto;
}
.g-cell { background-size: cover; background-position: center; transition: opacity .3s; }
.g-cell:hover { opacity: .88; }
.g-1 { background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=700&q=80'); }
.g-2 { background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=700&q=80'); grid-column: 2 / span 2; }
.g-3 { background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=700&q=80'); grid-column: 1 / span 2; }
.g-4 { background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&w=700&q=80'); }
.g-5 { background-image: url('https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?auto=format&fit=crop&w=700&q=80'); }
.g-6 { background-image: url('https://images.unsplash.com/photo-1518241353330-0f7941c2d9b5?auto=format&fit=crop&w=700&q=80'); }

/* ── PACKAGES ───────────────────────────────────────────── */
.immersions {
  padding: 100px 64px;
  background: var(--cream);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card--featured {
  background: var(--forest);
  color: #fff;
}

.pkg-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}

.pkg-duration {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.package-card--featured .pkg-duration { color: var(--gold-lt); }

.pkg-name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--forest);
}
.package-card--featured .pkg-name { color: #fff; }

.pkg-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mist);
  margin-bottom: 20px;
}
.package-card--featured .pkg-tagline { color: rgba(255,255,255,.5); }

.pkg-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: #5a6a58;
  margin-bottom: 24px;
  flex: 1;
}
.package-card--featured .pkg-desc { color: rgba(255,255,255,.65); }

.pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 20px;
}
.package-card--featured .pkg-includes { border-color: rgba(255,255,255,.15); }

.pkg-includes li {
  font-size: .82rem;
  color: #5a6a58;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.package-card--featured .pkg-includes li { color: rgba(255,255,255,.6); }
.pkg-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pkg-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--forest);
  margin-top: auto;
  padding-top: 20px;
}
.package-card--featured .pkg-price { color: #fff; }

/* ── ABOUT ──────────────────────────────────────────────── */
.about {
  background: var(--warm);
  padding: 100px 64px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.about-photo {
  height: 620px;
  background: url('https://images.unsplash.com/photo-1483000805330-4eaf0a0d82da?auto=format&fit=crop&w=900&q=85') center/cover no-repeat;
}
.about-text h2 { margin-bottom: 24px; color: var(--forest); }
.about-text p {
  font-size: .98rem;
  line-height: 1.8;
  color: #4a5a47;
  margin-bottom: 18px;
}
.about-signatures {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.sig-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
}
.sig-role {
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--mist);
  text-transform: uppercase;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: 100px 64px;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.testi-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: #fff;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}
.testi-name {
  font-size: .82rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
}
.testi-pkg {
  font-size: .75rem;
  color: var(--mist);
  letter-spacing: .06em;
}

/* ── RESERVE / CTA ──────────────────────────────────────── */
.reserve {
  padding: 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.reserve::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  opacity: .18;
}
.reserve-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 64px;
  align-items: start;
}
.reserve-text .eyebrow { color: var(--gold-lt); }
.reserve-text h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}
.reserve-text p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.8;
}

.reserve-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-family: var(--sans);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.reserve-form input::placeholder,
.reserve-form textarea::placeholder { color: rgba(255,255,255,.35); }
.reserve-form select option { background: var(--forest); color: #fff; }
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus { border-color: var(--gold-lt); }
.reserve-form textarea { resize: vertical; min-height: 100px; }

.btn-reserve {
  padding: 16px 32px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
  align-self: flex-start;
  margin-top: 4px;
}
.btn-reserve:hover { background: var(--gold-lt); }

.reserve-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}
.success-icon { font-size: 2rem; color: var(--gold); margin-bottom: 20px; }
.reserve-success h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.reserve-success p { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--deep);
  color: rgba(255,255,255,.6);
  padding: 72px 64px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.footer-location {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 16px;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact p { font-size: .86rem; }
.footer-note { color: rgba(255,255,255,.3); font-size: .8rem; margin-top: 8px; line-height: 1.6; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: .76rem;
  color: rgba(255,255,255,.25);
}
.footer-bottom strong { color: rgba(255,255,255,.35); }

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  #nav.scrolled { padding: 0 20px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--deep);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .intro { grid-template-columns: 1fr; }
  .intro-photo { min-height: 380px; }
  .intro-text { padding: 64px 28px; }

  .offerings { padding: 64px 20px; }
  .offerings-grid { grid-template-columns: 1fr; }

  .sanctums { padding: 64px 20px; }
  .sanctum-row { grid-template-columns: 1fr; }
  .sanctum-row--reverse { direction: ltr; }
  .sanctum-photo { height: 300px; }
  .sanctum-text { padding: 40px 28px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
  }
  .g-2, .g-3 { grid-column: auto; }

  .immersions { padding: 64px 20px; }
  .packages-grid { grid-template-columns: 1fr; }

  .about { padding: 64px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { height: 380px; }

  .testimonials { padding: 64px 20px; }

  .reserve-inner { grid-template-columns: 1fr; padding: 64px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 56px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; }

  .photo-band { background-attachment: scroll; }
}
