/* ============================================================
   CHATSWORTH PLANTATION — MAIN STYLESHEET
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   Change colors here — updates everywhere on the site.
   ============================================================ */

:root {
  --ivory:        #FAF7F2;
  --ivory-deep:   #F2EDE4;
  --white:        #FFFFFF;
  --ink:          #1C1916;
  --ink-mid:      #3A3530;
  --stone:        #6B6259;
  --gold:         #B8975A;
  --gold-light:   #C9A96E;
  --gold-pale:    #E8D5B0;
  --warm-border:  rgba(58, 53, 48, 0.16);
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Jost', sans-serif;
  --font-script:  'Great Vibes', cursive;
  --section-pad:  clamp(60px, 8vw, 120px);
  --side-pad:     clamp(20px, 5vw, 80px);
  --ease:         0.25s ease;
  --ease-slow:    0.5s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* GPU hints for animated elements */
.hero-bg, .page-hero-bg, .story-image img, .gallery-cell img, .venue-image img {
  will-change: transform;
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: var(--white);
  padding: 8px 16px; font-size: 0.8rem; letter-spacing: 0.1em;
  text-decoration: none; z-index: 9999; transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* Keyboard focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}


/* ============================================================
   3. NAVIGATION — DESKTOP
   ============================================================ */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 26px var(--side-pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--ease-slow), padding var(--ease-slow), box-shadow var(--ease-slow);
}

nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px var(--side-pad);
  box-shadow: 0 1px 0 var(--warm-border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  transition: color var(--ease); flex-shrink: 0;
}
nav.scrolled .nav-logo { color: var(--ink); }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color var(--ease);
  position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width var(--ease);
}
.nav-links a:hover::after { width: 100%; }

nav.scrolled .nav-links a { color: var(--stone); }
nav.scrolled .nav-links a:hover { color: var(--ink); }

/* Active page indicator */
.nav-links a.nav-active:not(.nav-cta) {
  color: rgba(255,255,255,0.95) !important;
}
.nav-links a.nav-active:not(.nav-cta)::after {
  width: 100% !important;
  background: var(--gold-light) !important;
  opacity: 0.8;
}
nav.scrolled .nav-links a.nav-active:not(.nav-cta) { color: var(--ink) !important; }
nav.scrolled .nav-links a.nav-active:not(.nav-cta)::after { background: var(--gold) !important; }

.nav-cta {
  padding: 9px 20px !important; border: 1px solid rgba(255,255,255,0.4) !important;
  color: var(--white) !important; transition: all var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--white) !important;
  color: var(--ink) !important;
  border-color: var(--white) !important;
}
nav.scrolled .nav-cta { border-color: var(--warm-border) !important; color: var(--ink) !important; }
nav.scrolled .nav-cta:hover {
  background: var(--ink) !important; color: var(--white) !important;
  border-color: var(--ink) !important;
}


/* ============================================================
   4. MOBILE NAV — HAMBURGER MENU
   ============================================================ */

.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 210;
}

.nav-toggle span {
  display: block; width: 100%; height: 1px;
  background: var(--white);
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
  transform-origin: center;
}
nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Full-screen drawer */
.nav-drawer {
  position: fixed; inset: 0; background: var(--ivory);
  z-index: 190; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.nav-drawer.open { opacity: 1; pointer-events: all; }

.nav-drawer ul {
  list-style: none; display: flex; flex-direction: column;
  align-items: center; gap: 0; width: 100%;
  padding: 0 clamp(24px, 8vw, 60px);
}
.nav-drawer ul li { width: 100%; }
.nav-drawer ul a {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  font-weight: 300; color: var(--ink);
  text-decoration: none; letter-spacing: 0.04em;
  display: block; padding: 14px 0; text-align: center;
  border-bottom: 1px solid var(--warm-border);
  transition: color var(--ease);
}
.nav-drawer ul a:hover { color: var(--gold); }

.drawer-cta {
  margin-top: 36px; font-family: var(--font-sans);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); background: var(--ink);
  padding: 15px 40px; text-decoration: none; display: inline-block;
  transition: background var(--ease); min-height: 48px;
}
.drawer-cta:hover { background: var(--gold); }

.drawer-logo {
  position: absolute; top: 24px; left: var(--side-pad);
  font-family: var(--font-serif); font-size: 0.9rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}


/* ============================================================
   5. PAGE HERO
   ============================================================ */

.page-hero {
  position: relative; height: 85vh; min-height: 500px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: clamp(48px, 8vh, 80px); overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 var(--side-pad); max-width: 900px; width: 100%;
  animation: fadeUp 1s ease both;
}

.page-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 1.5vw, 0.66rem); font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 16px; display: block;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.8rem); font-weight: 300;
  color: var(--white); line-height: 1.05;
}
.page-title em { font-style: italic; color: rgba(255,255,255,0.82); }

.page-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  color: var(--gold-light); display: block; margin-top: 8px;
}


/* ============================================================
   6. BUTTONS
   All buttons share a base, then override only what differs.
   Min 48px height for touch targets.
   ============================================================ */

.btn-primary, .btn-outline, .btn-ghost, .btn-white, .btn-gold-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 14px 34px;
  text-decoration: none; border: 1px solid transparent;
  transition: all var(--ease); cursor: pointer;
  white-space: nowrap; min-height: 48px;
}

.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: transparent; color: var(--ink); }

.btn-outline { background: transparent; color: var(--ink); border-color: rgba(28,25,22,0.3); }
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-ghost { background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-white:hover { background: var(--white); color: var(--ink); }

.btn-gold-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-gold-outline:hover { background: var(--white); color: var(--ink); }


/* ============================================================
   7. SECTION UTILITIES
   ============================================================ */

.section-label {
  font-family: var(--font-sans);
  font-size: 0.6rem; font-weight: 400; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--ink-mid);
  display: block; margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 300;
  line-height: 1.12; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--ink-mid); }

.divider-gold {
  width: 52px; height: 1px;
  background: var(--gold); margin: 20px auto;
}

.body-copy {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300; line-height: 1.9; color: var(--ink-mid);
}

.micro-link {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: var(--ink-mid); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color var(--ease);
}
.micro-link:hover { color: var(--ink); }
.micro-link span { transition: transform var(--ease); }
.micro-link:hover span { transform: translateX(4px); }


/* ============================================================
   8. INTRO STRIP
   ============================================================ */

.intro-strip {
  background: var(--ivory-deep);
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
  padding: clamp(20px, 4vw, 36px) var(--side-pad);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 60px); flex-wrap: wrap;
}

.intro-strip p {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 2.5vw, 1.05rem);
  font-weight: 300; font-style: italic;
  color: var(--ink-mid); letter-spacing: 0.03em; text-align: center;
}

.strip-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.6; flex-shrink: 0;
}


/* ============================================================
   9. STORY / ABOUT SECTION
   ============================================================ */

.story { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }

.story-image { position: relative; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.story-image:hover img { transform: scale(1.03); }

.story-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--ivory) 100%);
}

.story-content {
  padding: var(--section-pad) clamp(32px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}

.story-body {
  font-size: clamp(0.88rem, 2vw, 1rem); font-weight: 300;
  line-height: 1.9; color: var(--ink-mid); margin: 20px 0 14px; max-width: 480px;
}

.story-stat-row { display: flex; gap: clamp(24px, 5vw, 48px); margin-top: 32px; flex-wrap: wrap; }

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

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 300;
  color: var(--ink); line-height: 1;
}

.stat-label {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--stone); font-weight: 300;
}


/* ============================================================
   10. PILLARS / FEATURE CARDS
   ============================================================ */

.pillars { background: var(--ivory-deep); padding: var(--section-pad) var(--side-pad); text-align: center; }

.pillars-header { margin-bottom: clamp(40px, 6vw, 70px); }

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; max-width: 1100px; margin: 0 auto;
  background: var(--warm-border);
}

.pillar-card {
  background: var(--ivory); padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 44px);
  text-align: center; transition: background var(--ease);
}
.pillar-card:hover { background: var(--white); }

.pillar-icon {
  font-family: var(--font-script); font-size: 2.4rem;
  color: var(--stone); opacity: 0.4; display: block; margin-bottom: 14px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 400;
  color: var(--ink); margin-bottom: 12px;
}

.pillar-text {
  font-size: clamp(0.82rem, 1.8vw, 0.88rem); font-weight: 300;
  line-height: 1.85; color: var(--ink-mid);
}


/* ============================================================
   11. GALLERY MOSAIC TEASER
   ============================================================ */

.gallery-teaser {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 340px 340px;
}

.gallery-cell { position: relative; overflow: hidden; }
.gallery-cell.tall { grid-row: span 2; }

.gallery-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s ease; }
.gallery-cell:hover img { transform: scale(1.05); }

.gallery-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(28,25,22,0); transition: background var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.gallery-cell:hover .gallery-cell-overlay { background: rgba(28,25,22,0.3); }

.gallery-overlay-text {
  font-family: var(--font-serif); font-size: 0.9rem; font-style: italic;
  letter-spacing: 0.1em; color: var(--white);
  opacity: 0; transform: translateY(8px); transition: all var(--ease);
}
.gallery-cell:hover .gallery-overlay-text { opacity: 1; transform: translateY(0); }

.gallery-cta-cell {
  background: var(--ink); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px; padding: 32px;
}
.gallery-cta-cell p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-style: italic;
  color: var(--ivory); text-align: center; line-height: 1.4;
}


/* ============================================================
   12. TESTIMONIALS
   ============================================================ */

.testimonials { padding: var(--section-pad) var(--side-pad); background: var(--ivory); text-align: center; }

.testimonials-header { margin-bottom: clamp(40px, 6vw, 72px); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1140px; margin: 0 auto 48px;
}

.testimonial-card {
  background: var(--white);
  padding: clamp(28px, 4vw, 52px) clamp(22px, 3vw, 40px);
  border-top: 1px solid var(--warm-border); text-align: left;
  transition: transform var(--ease), box-shadow var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(28,25,22,0.06);
}

.quote-mark {
  font-family: var(--font-serif); font-size: 3.5rem; line-height: 0.6;
  color: rgba(28,25,22,0.12); display: block; margin-bottom: 22px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 2vw, 1.05rem); font-style: italic; font-weight: 300;
  line-height: 1.85; color: var(--ink-mid); margin-bottom: 26px;
}

.testimonial-author { display: flex; flex-direction: column; gap: 3px; }
.author-name { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.author-detail { font-size: 0.66rem; font-weight: 300; color: var(--ink-mid); }
.stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.1em; margin-bottom: 14px; }


/* ============================================================
   13. VENUE TEASER
   ============================================================ */

.venue-teaser { display: grid; grid-template-columns: 45% 55%; min-height: 65vh; }

.venue-image { overflow: hidden; order: 1; }
.venue-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.venue-image:hover img { transform: scale(1.03); }

.venue-content {
  padding: var(--section-pad) clamp(32px, 6vw, 80px);
  background: var(--ivory-deep);
  display: flex; flex-direction: column; justify-content: center; order: 2;
}

.venue-body {
  font-size: clamp(0.88rem, 2vw, 0.95rem); font-weight: 300;
  line-height: 1.9; color: var(--ink-mid); margin: 20px 0 36px; max-width: 460px;
}


/* ============================================================
   14. CTA BAND
   ============================================================ */

.cta-band {
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  text-align: center; overflow: hidden;
}

.cta-band::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  border: 1px solid rgba(255,255,255,0.18); margin: 28px; pointer-events: none;
}

.cta-band .section-label { color: rgba(255,255,255,0.75); }

.cta-band-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 300;
  line-height: 1.1; color: var(--white); margin: 14px 0 10px;
  text-shadow: 0 2px 20px rgba(28,25,22,0.4);
}

.cta-band-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--gold-light); display: block; margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(28,25,22,0.5);
}

.cta-band-sub {
  font-size: clamp(0.65rem, 1.5vw, 0.78rem); font-weight: 300;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.80);
  margin-bottom: 44px; text-transform: uppercase;
}

.cta-band-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}


/* ============================================================
   15. FOOTER
   ============================================================ */

footer { background: var(--ink); padding: clamp(60px, 8vw, 80px) var(--side-pad) 40px; }

.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-name {
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory); text-decoration: none; display: block;
}

.footer-tagline {
  font-family: var(--font-serif); font-size: 0.88rem; font-style: italic;
  color: rgba(250,247,242,0.58); line-height: 1.7; margin-top: 14px;
}

.footer-col-title {
  font-size: 0.58rem; font-weight: 400; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.78rem; font-weight: 300; color: rgba(250,247,242,0.62);
  text-decoration: none; letter-spacing: 0.04em; transition: color var(--ease);
}
.footer-links a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 30px; flex-wrap: wrap; gap: 12px;
}

.footer-copy { font-size: 0.64rem; font-weight: 300; letter-spacing: 0.08em; color: rgba(250,247,242,0.38); }

.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,247,242,0.48); text-decoration: none; transition: color var(--ease);
}
.footer-social a:hover { color: var(--ivory); }


/* ============================================================
   16. SCROLL REVEAL
   ============================================================ */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }


/* ============================================================
   17. RESPONSIVE — LARGE TABLET (max 1100px)
   ============================================================ */

@media (max-width: 1100px) {
  .gallery-teaser { grid-template-columns: repeat(3, 1fr); grid-template-rows: 260px 260px; }
  .gallery-cell.tall { grid-row: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   18. RESPONSIVE — TABLET (max 768px)
   ============================================================ */

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links   { display: none; }

  .story { grid-template-columns: 1fr; min-height: auto; }
  .story-image { height: 55vw; min-height: 260px; }
  .story-image-overlay { background: linear-gradient(to bottom, transparent 50%, var(--ivory) 100%); }
  .story-content { padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 48px); }

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

  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }

  .venue-teaser { grid-template-columns: 1fr; min-height: auto; }
  .venue-image  { height: 55vw; min-height: 260px; order: 1; }
  .venue-content { order: 2; }

  .gallery-teaser { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 160px; }
  .gallery-cell.tall { grid-row: span 2; }

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

  .strip-dot { display: none; }
  .intro-strip { gap: 14px; }
}


/* ============================================================
   19. RESPONSIVE — MOBILE (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .page-hero { height: 75vh; min-height: 400px; }
  .pillars-grid { grid-template-columns: 1fr; }

  .gallery-teaser { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
  .gallery-cell.tall { grid-row: span 2; }
  .gallery-cta-cell { grid-column: span 2; height: auto; padding: 32px 20px; }

  .intro-strip { flex-direction: column; text-align: center; gap: 8px; }
  .cta-band::before { margin: 12px; }

  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions > * { width: 100%; max-width: 300px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .story-stat-row { gap: 20px; }
}


/* ============================================================
   20. RESPONSIVE — SMALL MOBILE (max 360px)
   ============================================================ */

@media (max-width: 360px) {
  .page-title { font-size: 2.4rem; }
  .nav-logo { font-size: 0.82rem; letter-spacing: 0.1em; }
  .gallery-teaser { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-cell, .gallery-cell.tall, .gallery-cta-cell {
    height: 220px; grid-row: span 1; grid-column: span 1;
  }
}


/* ============================================================
   21. REDUCED MOTION & PRINT
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  nav, .cta-band, footer { display: none; }
  body { background: white; color: black; }
  .page-hero { height: 40vh; }
}
