/* ==========================================================================
   Lucky Bright World — design system
   Bright, warm, editorial Australian hill-country aesthetic.
   ========================================================================== */

:root {
  /* palette */
  --ivory: #fdfaf3;
  --cream: #f7efdf;
  --sun: #ffc94a;
  --sun-deep: #f5a623;
  --sky: #cfe8f0;
  --sky-deep: #7fb8c9;
  --eucalyptus: #8fae94;
  --eucalyptus-deep: #5e7f63;
  --terracotta: #e0704a;
  --terracotta-deep: #c1532f;
  --charcoal: #2c2a26;
  --charcoal-soft: #514d45;
  --line: #e7ddc9;
  --white: #ffffff;

  --bg: var(--ivory);
  --surface: var(--white);
  --text: var(--charcoal);
  --text-soft: var(--charcoal-soft);

  --font-display: "Space Grotesk", "Manrope", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 45px -25px rgba(44, 42, 38, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(44, 42, 38, 0.28);

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--terracotta-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--charcoal); color: var(--ivory);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 0.85em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--sun-deep);
  display: inline-block;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--cream { background: var(--cream); }
.section--charcoal { background: var(--charcoal); color: var(--ivory); }
.section--charcoal .eyebrow { color: var(--sun); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head--wide { max-width: 900px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.section-head p { font-size: 1.08rem; color: var(--text-soft); max-width: 60ch; }
.section--charcoal .section-head p { color: #d9d4c8; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.9em 1.7em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--charcoal); color: var(--ivory); }
.btn-primary:hover { background: var(--terracotta-deep); }
.btn-secondary { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: var(--ivory); }
.btn-light { background: var(--ivory); color: var(--charcoal); }
.btn-light:hover { background: var(--sun); }
.btn-sun { background: var(--sun); color: var(--charcoal); }
.btn-sun:hover { background: var(--sun-deep); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: rgba(253,250,243,0.4); }
.btn-ghost:hover { border-color: var(--sun); color: var(--sun); }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 243, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(44,42,38,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sun) 0%, var(--terracotta) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 20px; height: 20px; }

.main-nav { display: none; }
.main-nav > ul { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-soft);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--terracotta);
  transition: right 0.25s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--charcoal); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }

.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 0.4em;
  background: none; border: none;
  font-size: 0.94rem; font-weight: 600; color: var(--text-soft);
  padding: 0.3rem 0;
}
.nav-dropdown-btn svg { width: 11px; height: 11px; transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-dropdown-btn,
.nav-dropdown-btn[aria-expanded="true"] { color: var(--charcoal); }
.nav-dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: 100%; left: -1rem;
  margin-top: 0.9rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.6rem;
  min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown-panel.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-panel a {
  display: block; padding: 0.6em 0.8em; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 500;
}
.nav-dropdown-panel a:hover { background: var(--cream); color: var(--charcoal); }
.nav-dropdown-panel a::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.header-actions .btn { display: none; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 20px; height: 2px; background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--ivory);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 6.5rem var(--gutter) 3rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  display: block;
}
.mobile-nav-footer { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.mobile-nav-footer .btn { justify-content: center; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-actions .btn { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 1rem; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  color: var(--charcoal);
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--terracotta-deep);
  position: relative;
}
.hero-copy .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-soft);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-note { font-size: 0.88rem; color: var(--text-soft); display: flex; align-items: center; gap: 0.5em; }
.hero-note::before { content: "●"; color: var(--eucalyptus-deep); font-size: 0.6em; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,42,38,0) 55%, rgba(44,42,38,0.55) 100%);
}
.hero-badge {
  position: absolute;
  left: 1.4rem; bottom: 1.4rem;
  z-index: 2;
  background: rgba(253,250,243,0.95);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-card);
}
.hero-badge-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sun);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 0.92rem; }
.hero-badge span { font-size: 0.8rem; color: var(--text-soft); }

.hero-strip {
  border-top: 1px solid var(--line);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 1.3rem 0;
}
.hero-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  justify-content: center;
}
.hero-strip li {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex; align-items: center; gap: 0.5em;
}
.hero-strip li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-media { aspect-ratio: 4 / 4.6; }
}

/* generic page hero (inner pages) */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.page-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-hero .lede { font-size: 1.1rem; color: var(--text-soft); max-width: 56ch; }
@media (min-width: 860px) {
  .page-hero-grid { grid-template-columns: 1.3fr 1fr; }
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4em;
  font-size: 0.85rem; color: var(--text-soft);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--text-soft); border-bottom: 1px solid var(--line); }
.breadcrumb a:hover { color: var(--terracotta-deep); border-color: var(--terracotta-deep); }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

/* ==========================================================================
   Reveal / scroll animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ==========================================================================
   Cards — Lucky Hills regions
   ========================================================================== */
.hills-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .hills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .hills-grid { grid-template-columns: repeat(3, 1fr); } }

.hill-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hill-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.hill-card-media { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.hill-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hill-card:hover .hill-card-media img { transform: scale(1.06); }
.hill-card-tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(253,250,243,0.92);
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4em 0.8em; border-radius: 999px;
}
.hill-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.hill-card-body h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.hill-card-body p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 1.1em; flex: 1; }
.hill-card-link {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.4em; color: var(--terracotta-deep);
}
.hill-card-link svg { transition: transform 0.2s ease; width: 15px; height: 15px; }
.hill-card:hover .hill-card-link svg { transform: translateX(3px); }

/* ==========================================================================
   Escape category selector
   ========================================================================== */
.escape-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}
.escape-chip, .region-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65em 1.3em;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  display: inline-flex;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.escape-chip:hover, .region-chip:hover { transform: translateY(-2px); border-color: var(--terracotta); }
.escape-chip[aria-pressed="true"] {
  background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal);
}
.escape-panels { position: relative; }
.escape-panel { display: none; }
.escape-panel.is-active { display: block; }
.escape-result-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .escape-result-grid { grid-template-columns: repeat(2, 1fr); } }
.escape-result {
  display: flex;
  gap: 1.1rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}
.escape-result img { width: 108px; height: 108px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.escape-result h4 { font-size: 1.02rem; margin-bottom: 0.3em; }
.escape-result p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* ==========================================================================
   Scenic drives rail
   ========================================================================== */
.drive-rail {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.drive-rail::-webkit-scrollbar { height: 8px; }
.drive-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.drive-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 78vw, 340px);
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.drive-card-media { aspect-ratio: 16/10; overflow: hidden; }
.drive-card-media img { width: 100%; height: 100%; object-fit: cover; }
.drive-card-body { padding: 1.3rem; }
.drive-card-body .eyebrow { font-size: 0.68rem; margin-bottom: 0.5em; }
.drive-card-body h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.drive-card-body p { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 0.8em; }
.rail-controls { display: flex; gap: 0.7rem; margin-top: -0.6rem; margin-bottom: 1.5rem; }
.rail-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.rail-btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory); }
.rail-btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   Theme category grid (dining / stays / outdoors / experiences)
   ========================================================================== */
.theme-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .theme-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .theme-grid.theme-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.theme-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.theme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.theme-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: var(--cream);
}
.theme-card-icon svg { width: 22px; height: 22px; }
.theme-card:nth-of-type(6n+1) .theme-card-icon { background: var(--sun); }
.theme-card:nth-of-type(6n+2) .theme-card-icon { background: var(--sky); }
.theme-card:nth-of-type(6n+3) .theme-card-icon { background: var(--eucalyptus); }
.theme-card:nth-of-type(6n+4) .theme-card-icon { background: var(--terracotta); color: var(--ivory); }
.theme-card:nth-of-type(6n+5) .theme-card-icon { background: var(--cream); }
.theme-card:nth-of-type(6n+6) .theme-card-icon { background: var(--sky-deep); color: var(--ivory); }
.theme-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.theme-card p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* soon marker */
.soon-marker {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.78rem; font-weight: 600; color: var(--eucalyptus-deep);
  background: rgba(143,174,148,0.15);
  padding: 0.4em 0.85em; border-radius: 999px;
  margin-top: 1.4rem;
}
.soon-marker::before { content: "◐"; }

/* ==========================================================================
   Day in the hills timeline
   ========================================================================== */
.day-timeline {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  counter-reset: day-step;
}
@media (min-width: 900px) { .day-timeline { grid-template-columns: repeat(4, 1fr); } }
.day-step {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-card);
  counter-increment: day-step;
}
.day-step::before {
  content: counter(day-step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--terracotta-deep);
  display: block; margin-bottom: 0.8rem;
}
.day-step h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.day-step p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* ==========================================================================
   Transparency band
   ========================================================================== */
.transparency-band {
  display: grid;
  gap: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
}
@media (min-width: 860px) { .transparency-band { grid-template-columns: 1fr 1fr 1fr; } }
.transparency-item h3 {
  font-size: 1.02rem;
  display: flex; align-items: center; gap: 0.6em;
  margin-bottom: 0.5em;
}
.transparency-item h3 svg { width: 20px; height: 20px; color: var(--terracotta-deep); flex-shrink: 0; }
.transparency-item p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; text-align: left;
  padding: 1.3rem 0.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--charcoal);
}
.faq-q-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ""; position: absolute; background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-q-icon::before { width: 11px; height: 2px; }
.faq-q-icon::after { width: 2px; height: 11px; }
.faq-q[aria-expanded="true"] .faq-q-icon { background: var(--terracotta); border-color: var(--terracotta); }
.faq-q[aria-expanded="true"] .faq-q-icon::before,
.faq-q[aria-expanded="true"] .faq-q-icon::after { background: var(--ivory); }
.faq-q[aria-expanded="true"] .faq-q-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 0.2rem 1.4rem; color: var(--text-soft); font-size: 0.98rem; max-width: 62ch; }

/* ==========================================================================
   Newsletter / CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--sun-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  color: var(--ivory);
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 780px) { .cta-band { grid-template-columns: 1.2fr 1fr; } }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.4em; }
.cta-band p { opacity: 0.92; margin: 0; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 0.9em 1.2em; border-radius: 999px; border: none;
  background: rgba(253,250,243,0.94); color: var(--charcoal);
}
.newsletter-note { font-size: 0.8rem; opacity: 0.85; margin-top: 0.6rem; }
.form-status { font-size: 0.9rem; margin-top: 0.8rem; }
.form-status[data-state="success"] { color: var(--ivory); font-weight: 600; }

/* ==========================================================================
   Generic content blocks (used across inner pages)
   ========================================================================== */
.prose { max-width: 74ch; }
.prose h2 { font-size: 1.7rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.3em; }
.prose p, .prose li { color: var(--text-soft); font-size: 1.02rem; }
.prose ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.prose ul li { margin-bottom: 0.4em; }
.prose a { color: var(--terracotta-deep); border-bottom: 1px solid currentColor; }

.two-col {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; } }

.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.stat-row { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 1.8rem; }
.stat-row .stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--terracotta-deep); }
.stat-row .stat span { font-size: 0.85rem; color: var(--text-soft); }

/* team-free "about" values grid */
.values-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 720px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { padding: 1.5rem; border-radius: var(--radius-md); background: var(--cream); }
.value-card h3 { font-size: 1rem; margin-bottom: 0.4em; }
.value-card p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* contact */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; }
.field input, .field textarea {
  padding: 0.85em 1em; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--surface);
}
.field textarea { resize: vertical; min-height: 140px; }
.contact-info-card { background: var(--cream); border-radius: var(--radius-md); padding: 1.8rem; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 0.5em; }
.contact-info-card p { font-size: 0.92rem; color: var(--text-soft); }

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex; align-items: center;
  text-align: center;
}
.error-page .container { max-width: 620px; }
.error-page .error-code {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--sun-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal);
  color: #d9d4c8;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr; } }
.footer-brand .brand { color: var(--ivory); margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ivory);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: var(--sun); }
.footer-disclosure {
  padding-top: 1.6rem;
  font-size: 0.86rem;
  color: #b8b2a3;
  max-width: 74ch;
}
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: #a49e8e;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.3rem; }

/* utility */
.mt-0 { margin-top: 0; }
