/* ═══════════════════════════════════════════════════════════════════════════
   Site Sorted — Design System
   css/styles.css

   EDIT RULES:
   · Only :root values change per client (section 1).
   · Nothing below :root is client-specific — it is structural.
   · Only easing allowed: var(--ease) = cubic-bezier(0.16, 1, 0.3, 1)
   · Only animate transform and opacity — never height, width, or padding.
   · Card images use a fixed-height wrapper — never aspect-ratio.
   · FAQ accordion uses grid-template-rows — never max-height.
   ═══════════════════════════════════════════════════════════════════════════ */


/* ── 1. CUSTOM PROPERTIES ───────────────────────────────────────────────── */

:root {
  /* Brand colours — swap these per client */
  --brand:       #2D6A4F;
  --brand-dark:  #1B4332;
  --brand-tint:  #D8F3DC;

  /* Accent — amber CTA colour; keep this unless it genuinely clashes */
  --accent:      #F59E0B;
  --accent-dark: #D97706;

  /* Neutrals */
  --text:        #1A1A1A;
  --text-muted:  #6B7280;
  --bg:          #FAFAF8;
  --surface:     #FFFFFF;
  --surface-alt: #F3F4F6;
  --border:      #E5E7EB;

  /* Typography — swap fonts only if client brand demands it */
  --font-heading: 'Bitter', Georgia, serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  /* Spacing (8px base) */
  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-6:  3rem;
  --space-8:  4rem;
  --space-12: 6rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card:     0 2px 8px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-elevated: 0 8px 24px rgba(0,0,0,0.12);

  /* Easing — only this curve is permitted throughout this stylesheet */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Transition durations */
  --t-fast: 180ms var(--ease);
  --t-base: 320ms var(--ease);
  --t-slow: 500ms var(--ease);

  /* Z-index layers */
  --z-card:  10;
  --z-nav:   100;
  --z-modal: 200;
}


/* ── 2. RESET & BASE ────────────────────────────────────────────────────── */

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}


/* ── 3. TYPOGRAPHY ──────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 3rem); }
h3 { font-size: clamp(1.125rem, 2vw + 0.25rem, 1.625rem); }
h4 { font-size: 1.125rem; }

/* Italic emphasis inside headings — the brand personality hook */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--brand);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

p {
  line-height: 1.7;
}


/* ── 4. LAYOUT UTILITIES ────────────────────────────────────────────────── */

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: var(--space-12);
}

.section--sm {
  padding-block: var(--space-8);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-4);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}

.flow > * + * {
  margin-top: var(--space-3);
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: var(--space-6);
}

.section-header .eyebrow {
  display: block;
  margin-bottom: var(--space-1);
}

.section-header h2 {
  margin-bottom: var(--space-2);
}

.section-header p {
  color: var(--text-muted);
  max-width: 56ch;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}


/* ── 5. NAVIGATION ──────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding-block: 1.25rem;
  transition:
    background var(--t-base),
    backdrop-filter var(--t-base),
    -webkit-backdrop-filter var(--t-base),
    box-shadow var(--t-base);
}

/* Frosted glass state — class toggled by JS IntersectionObserver */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.scrolled .nav-logo-text,
.site-header.scrolled .nav-links a {
  color: var(--text);
}

.site-header.scrolled .hamburger span {
  background: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  transition: color var(--t-fast);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--t-fast), opacity var(--t-fast);
}

.nav-links a:hover {
  color: #fff;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

/* Hamburger → X when menu is open (transform + opacity only) */
.site-header.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer — slides in via transform only */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform var(--t-base);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-4) var(--space-8);
  overflow-y: auto;
}

.nav-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.5rem;
  margin-bottom: var(--space-2);
  transition: color var(--t-fast);
}

.drawer-close:hover {
  color: var(--text);
}

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer a {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}

.nav-drawer a:hover {
  color: var(--brand);
}

.nav-drawer .btn-primary {
  display: inline-flex;
  margin-top: var(--space-4);
  color: #000;
}


/* ── 6. BUTTONS ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform var(--t-fast),
    opacity var(--t-fast),
    background var(--t-fast),
    border-color var(--t-fast);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}


/* ── 7. HERO ────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto; /* content row + facts bar row */
  overflow: hidden;
  color: #fff;
}

/* Slideshow background layer */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1200ms var(--ease);
}

.hero-slide.active {
  opacity: 1;
}

/* Legibility gradient — always on */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.05) 45%,
    rgba(0, 0, 0, 0.58) 100%
  );
  pointer-events: none;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-3);
  padding-top: calc(4rem + var(--space-8));
  padding-bottom: var(--space-6);
}

.hero-content h1 {
  color: #fff;
  max-width: 16ch;
}

/* Override: hero h1 em is accent, not brand */
.hero-content h1 em {
  color: var(--accent);
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.12em;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
}

.hero-ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-1);
}

/* Dot controls — positioned inside hero */
.hero-dots {
  position: absolute;
  bottom: 5.5rem;
  right: var(--space-4);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.5);
}

/* Facts bar — frosted glass, second grid row, inside 100dvh */
.hero-facts {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 1rem var(--space-4);
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
}

.fact-icon {
  color: var(--accent);
}

.facts-directions {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.facts-directions:hover {
  color: #fff;
}


/* ── 8. CARDS ───────────────────────────────────────────────────────────── */

/* flex-wrap + align-items: stretch guarantees equal-height rows */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: stretch;
}

.card-grid > * {
  flex: 1 1 300px;
  min-width: 0;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

/* Fixed-height image wrapper — never aspect-ratio on the image */
.card-img-wrap {
  height: 260px;
  overflow: hidden;
  flex-shrink: 0; /* prevents collapse in flex-column card */
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-1);
}

.card-body h3 {
  color: var(--text);
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  flex: 1;
}

.card-footer {
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.card-price {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.card-price strong {
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 700;
}

/* Feature pills — pitches / touring card */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-block: 0.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
}

.stays-header {
  text-align: center;
  margin-bottom: var(--space-6);
  max-width: 58ch;
  margin-inline: auto;
}


/* ── 9. STORY / ABOUT ───────────────────────────────────────────────────── */

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

/* Photo grid: first photo spans both rows (tall) */
.story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: var(--space-2);
}

.story-photo {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.story-photo:hover img {
  transform: scale(1.03);
}

.story-photo--tall {
  grid-row: span 2;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.story-text .eyebrow {
  display: block;
}


/* ── 10. REVIEWS BAND ───────────────────────────────────────────────────── */

.reviews-band {
  background: var(--brand-dark);
  color: #fff;
  padding-block: var(--space-12);
}

.reviews-band .section-header h2 {
  color: #fff;
}

.reviews-band .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}

.review-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.review-attr {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  padding-top: var(--space-1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* ── 11. MAP SECTION ────────────────────────────────────────────────────── */

.map-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-6);
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.map-links {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.map-directions {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.map-directions strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.375rem;
  font-size: 1rem;
}

.transport-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}


/* ── 12. FAQ ACCORDION ──────────────────────────────────────────────────── */

.faq-section {
  background: var(--surface-alt);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 740px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1.4;
  transition: background var(--t-fast);
}

.faq-question:hover {
  background: var(--surface-alt);
}

/* Plus icon — rotates to X when open (transform only) */
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--brand);
  transition: transform var(--t-base);
}

.faq-item[data-open="true"] .faq-icon {
  transform: rotate(45deg);
}

/* Grid-rows accordion — never max-height */
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base);
}

.faq-item[data-open="true"] .faq-answer-wrap {
  grid-template-rows: 1fr;
}

/* overflow: hidden must be on the inner div, not the grid container */
.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  padding: var(--space-1) var(--space-4) var(--space-3);
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.9375rem;
}


/* ── 13. CTA BAND ───────────────────────────────────────────────────────── */

.cta-band {
  background: var(--accent);
  padding-block: var(--space-8);
  text-align: center;
}

.cta-band h2 {
  color: #000;
}

.cta-band p {
  color: rgba(0, 0, 0, 0.62);
  margin-block: var(--space-2) var(--space-4);
  max-width: 52ch;
  margin-inline: auto;
}

.cta-band .btn-brand {
  background: #000;
  border-color: #000;
  color: #fff;
}

.cta-band .btn-brand:hover {
  background: #222;
  border-color: #222;
}


/* ── 14. FOOTER ─────────────────────────────────────────────────────────── */

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  padding-block: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer-brand p {
  margin-top: var(--space-2);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 36ch;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
  font-size: 0.9375rem;
}

.footer-contact a {
  transition: color var(--t-fast);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.8125rem;
}

/* Built by Site Sorted — do not remove */
.built-by a {
  color: var(--accent);
  font-weight: 700;
}

.built-by a:hover {
  text-decoration: underline;
}


/* ── 15. SCROLL REVEAL ──────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--t-slow),
    transform var(--t-slow);
  transition-delay: var(--reveal-delay, 0ms);
}

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


/* ── 16. INTERIOR PAGE HERO ─────────────────────────────────────────────── */

.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(4rem + var(--space-6));
  padding-bottom: var(--space-8);
  background-color: var(--brand);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
  color: #fff;
  max-width: 20ch;
}

.page-hero h1 em {
  color: var(--accent);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 56ch;
}


/* ── 17. RESPONSIVE ─────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .map-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav links */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-photos {
    grid-template-rows: 180px 180px;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-embed { height: 300px; }

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

  .footer-brand { grid-column: span 1; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-dots {
    bottom: 5rem;
    right: var(--space-3);
  }

  .hero-facts {
    justify-content: flex-start;
  }

  .card-grid > * {
    flex: 1 1 100%;
  }

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


/* ── 18. UTILITY CLASSES ────────────────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

[hidden] {
  display: none !important;
}
