/* ============================================================
   Arctic Composure — Homepage
   ============================================================ */

:root {
  /* Palette */
  --cream: #FAF6EE;
  --cream-deep: #F3EDE0;
  --stone: #EAE2D3;
  --stone-line: #DCD2BE;
  --sage: #8C9A80;
  --sage-deep: #6E7C63;
  --navy: #1B2A3B;
  --navy-soft: #33465C;
  --ink-muted: #5B6674;
  --blue-accent: #4F6C87;
  --white: #FFFFFF;

  /* Type */
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --section-pad: 5.5rem;
  --container-max: 1240px;
  --radius: 2px;
  --shadow-soft: 0 12px 40px -18px rgba(27, 42, 59, 0.22);
  --shadow-card: 0 1px 2px rgba(27, 42, 59, 0.06), 0 8px 24px -12px rgba(27, 42, 59, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input { font: inherit; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 0.9rem 1.5rem;
  z-index: 999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 780px;
}

@media (min-width: 640px) {
  .container { padding: 0 2.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 3.5rem; }
}

.section {
  padding: var(--section-pad) 0;
}

section[id] {
  scroll-margin-top: 90px;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 500; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--navy-soft);
  max-width: 46ch;
  margin-top: 0.9rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 3.25rem;
}
.section-head h2 { margin-bottom: 0; }

.placeholder {
  color: var(--ink-muted);
  font-style: italic;
  opacity: 0.85;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: var(--radius);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-soft);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-large {
  padding: 1.15rem 2.4rem;
  font-size: 0.9rem;
}

.evidence-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue-accent);
  margin-top: 1.25rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.evidence-link:hover { border-color: currentColor; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--stone-line);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 640px) { .header-inner { padding: 1.15rem 2.5rem; } }
@media (min-width: 1024px) { .header-inner { padding: 1.15rem 3.5rem; } }

.wordmark {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  flex-shrink: 0;
}

.primary-nav { display: none; }
.primary-nav ul { display: flex; gap: 2.25rem; }
.primary-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-soft);
  transition: color 0.2s var(--ease);
  position: relative;
}
.primary-nav a:hover { color: var(--navy); }

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle-bar {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  border-top: 1px solid transparent;
}
.mobile-nav.is-open {
  max-height: 420px;
  border-top-color: var(--stone-line);
}
.mobile-nav ul {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
}
.mobile-nav-cta {
  margin: 0 1.5rem 1.5rem;
  width: calc(100% - 3rem);
}

@media (min-width: 900px) {
  .primary-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column-reverse;
}
.hero-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.hero-copy {
  padding: 2.75rem 1.5rem 3.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-copy .eyebrow { margin-bottom: 1.1rem; }
.hero-copy h1 { margin-bottom: 1.1rem; }
.hero-subhead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--sage-deep);
  margin-bottom: 1.35rem;
}
.hero-body {
  font-size: 1.05rem;
  color: var(--navy-soft);
  max-width: 42ch;
  margin-bottom: 2rem;
}
.credibility-line {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
}

@media (min-width: 640px) {
  .hero-copy { padding: 3.5rem 2.5rem 4rem; }
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
    min-height: calc(100vh - 73px);
  }
  .hero-media {
    width: 56%;
    aspect-ratio: auto;
  }
  .hero-copy {
    width: 44%;
    padding: 3rem 4rem;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .hero-copy { padding: 3rem 5rem; }
}

/* ============================================================
   Pressure Section
   ============================================================ */
.pressure-section { background: var(--cream); }

.pressure-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.pressure-card {
  display: flex;
  flex-direction: column;
}
.pressure-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-card);
}
.pressure-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 0.6s var(--ease);
}
.pressure-card:hover .pressure-media img { transform: scale(1.035); }

.pressure-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--sage-deep);
}
.pressure-card p {
  color: var(--navy-soft);
  max-width: 32ch;
}

@media (min-width: 720px) {
  .pressure-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* ============================================================
   Daily Ritual
   ============================================================ */
.ritual-section {
  background: var(--stone);
}
.ritual-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.ritual-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.ritual-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 15%;
}
.ritual-copy p {
  color: var(--navy-soft);
  max-width: 46ch;
  margin-bottom: 1rem;
}
.ritual-copy h2 { margin-bottom: 1.35rem; }
.ritual-emphasis {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
  margin-top: 1.5rem !important;
}
.ritual-lines {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 2px solid var(--sage);
  padding-left: 1.25rem;
}
.ritual-lines span {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.35;
}

@media (min-width: 900px) {
  .ritual-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .ritual-media { order: 2; }
  .ritual-copy { order: 1; }
}

/* ============================================================
   Science Section
   ============================================================ */
.science-section { background: var(--navy); color: var(--cream); }
.science-section .eyebrow { color: var(--sage); }
.science-section h2 { color: var(--cream); }

.science-grid {
  display: grid;
  gap: 3rem;
}
.science-copy p {
  color: rgba(250, 246, 238, 0.78);
  max-width: 48ch;
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}
.science-statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem) !important;
  color: var(--cream) !important;
  line-height: 1.35;
  margin: 1.75rem 0 !important;
}

.pathway {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 2rem 0;
}
.pathway-node {
  border: 1px solid rgba(250, 246, 238, 0.28);
  padding: 1.1rem 1.25rem;
  text-align: center;
}
.pathway-node span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.pathway-node-final {
  background: var(--sage);
  border-color: var(--sage);
}
.pathway-node-final span { color: var(--navy); font-weight: 700; }
.pathway-connector {
  width: 1px;
  height: 2rem;
  background: rgba(250, 246, 238, 0.28);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .science-grid { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
  .pathway { flex-direction: row; align-items: center; }
  .pathway-node { flex: 1; }
  .pathway-connector { width: 1.75rem; height: 1px; margin: 0 -1px; }
}

/* ============================================================
   Ingredients
   ============================================================ */
.ingredients-section { background: var(--cream); }

.ingredients-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.ingredient-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.ingredient-eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.6rem;
}
.ingredient-card h3 { margin-bottom: 1rem; }
.ingredient-body {
  color: var(--navy-soft);
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}
.ingredient-evidence {
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding-top: 1.1rem;
  border-top: 1px solid var(--stone-line);
}
.ingredient-evidence strong {
  color: var(--navy);
  font-weight: 600;
}
.ingredient-evidence-note {
  border-top: none;
  padding-top: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
}
.ingredient-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.ingredient-stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--blue-accent);
  line-height: 1;
}
.ingredient-stat-unit {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (min-width: 720px) {
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .ingredients-grid { grid-template-columns: repeat(4, 1fr); }
  .ingredient-card { padding: 2rem 1.6rem; }
}

/* ============================================================
   Timeline (Today + Over Time)
   ============================================================ */
.timeline-section { background: var(--stone); }

.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.timeline-block {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.timeline-consistent {
  background: var(--navy);
}
.timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.5rem;
}
.timeline-consistent .timeline-label { color: var(--sage); }
.timeline-item + .timeline-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone-line);
}
.timeline-consistent .timeline-item + .timeline-item {
  border-top-color: rgba(250, 246, 238, 0.15);
}
.timeline-item-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.timeline-consistent .timeline-item-name,
.timeline-consistent .timeline-item p { color: var(--cream); }
.timeline-item p:last-child { color: var(--navy-soft); font-size: 0.95rem; }

.timeline-arrow {
  font-size: 1.5rem;
  color: var(--sage-deep);
}

.timeline-takeaway {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  max-width: 42ch;
  margin: 3rem auto 0;
  color: var(--navy);
}

@media (min-width: 800px) {
  .timeline { flex-direction: row; align-items: stretch; gap: 2.5rem; }
  .timeline-block { flex: 1; }
  .timeline-arrow { transform: rotate(-90deg); }
}

/* ============================================================
   Evidence Preview
   ============================================================ */
.evidence-section { background: var(--cream); }

.study-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
.study-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  padding: 2rem;
}
.study-ingredient {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--stone-line);
}
.study-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
}
.study-card dl > div + div { border-top: 1px dashed var(--stone-line); }
.study-card dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-shrink: 0;
  width: 38%;
}
.study-card dd {
  font-size: 0.9rem;
  color: var(--navy-soft);
  text-align: right;
}

.evidence-cta {
  margin-top: 3rem;
  text-align: center;
}

@media (min-width: 900px) {
  .study-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Real Life
   ============================================================ */
.real-life-section { background: var(--cream-deep); }

.real-life-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.real-life-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}
.real-life-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.real-life-cell:hover img { transform: scale(1.04); }
.cell-work img { object-position: 50% 25%; }
.cell-home img { object-position: 40% 30%; }
.cell-unexpected img { object-position: 50% 20%; }
.cell-herself img { object-position: 50% 20%; }

.real-life-cell figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(to top, rgba(27,42,59,0.82) 0%, rgba(27,42,59,0.32) 55%, rgba(27,42,59,0) 100%);
}
.real-life-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}
.real-life-line {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
}

.real-life-statement {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  max-width: 34ch;
  margin: 3.5rem auto 0;
  color: var(--navy);
}

@media (min-width: 720px) {
  .real-life-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
  }
  .cell-work { grid-column: 1 / 4; grid-row: 1 / 2; }
  .cell-home { grid-column: 4 / 7; grid-row: 1 / 2; }
  .cell-unexpected { grid-column: 1 / 3; grid-row: 2 / 3; }
  .cell-herself { grid-column: 3 / 7; grid-row: 2 / 3; }
  .real-life-cell { aspect-ratio: auto; }
}

@media (min-width: 1100px) {
  .cell-work { grid-column: 1 / 3; grid-row: 1 / 3; }
  .cell-home { grid-column: 3 / 5; grid-row: 1 / 2; }
  .cell-unexpected { grid-column: 5 / 7; grid-row: 1 / 2; }
  .cell-herself { grid-column: 3 / 7; grid-row: 2 / 3; }
}

/* ============================================================
   Product
   ============================================================ */
.product-section { background: var(--stone); }

.product-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.product-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.product-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 30%; }

.product-copy h2 { margin-bottom: 1.5rem; }
.product-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.product-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.product-meta li {
  font-size: 0.82rem;
  color: var(--ink-muted);
  padding-left: 1rem;
  position: relative;
}
.product-meta li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage-deep);
}

.purchase-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.purchase-option {
  display: block;
  cursor: pointer;
  border: 1px solid var(--stone-line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  transition: border-color 0.2s var(--ease);
  position: relative;
}
.purchase-option input {
  position: absolute;
  top: 1.3rem; left: 1.35rem;
  accent-color: var(--navy);
}
.purchase-option-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.6rem;
}
.purchase-option-name { font-weight: 500; font-size: 0.95rem; }
.purchase-option-price { font-family: var(--font-serif); font-size: 1.15rem; }
.purchase-option:has(input:checked) { border-color: var(--navy); border-width: 1.5px; }
.purchase-option-featured::after {
  content: "Best Value";
  position: absolute;
  top: -10px; right: 1.2rem;
  background: var(--sage-deep);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}

@media (min-width: 900px) {
  .product-grid { grid-template-columns: 0.85fr 1fr; gap: 5rem; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--cream); }

.faq-list {
  border-top: 1px solid var(--stone-line);
}
.faq-item {
  border-bottom: 1px solid var(--stone-line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage-deep);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.75rem;
  max-width: 68ch;
}
.faq-answer p {
  color: var(--navy-soft);
  margin-bottom: 0.75rem;
}
.faq-answer a { color: var(--blue-accent); border-bottom: 1px solid currentColor; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.final-cta-media {
  position: absolute;
  inset: 0;
}
.final-cta-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,42,59,0.55) 0%, rgba(27,42,59,0.72) 100%);
}
.final-cta-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
  padding: 5rem 1.5rem;
  max-width: 620px;
}
.final-cta-copy h2 { color: var(--cream); margin-bottom: 0.75rem; }
.final-cta-copy p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(250, 246, 238, 0.88);
  margin-bottom: 2.25rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(250, 246, 238, 0.7);
  padding: 3.5rem 0 6rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}
.footer-wordmark { color: var(--cream); margin-bottom: 0; }
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a { font-size: 0.85rem; }
.footer-nav a:hover { color: var(--cream); }
.footer-disclaimer {
  font-size: 0.76rem;
  line-height: 1.6;
  max-width: 62ch;
  color: rgba(250, 246, 238, 0.5);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 238, 0.14);
  width: 100%;
}

@media (min-width: 720px) {
  .site-footer { padding-bottom: 3.5rem; }
  .footer-inner { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; }
  .footer-disclaimer { border-top: none; padding-top: 0; order: 3; }
}

/* ============================================================
   Mobile persistent CTA bar
   ============================================================ */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--stone-line);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn { width: 100%; }

@media (min-width: 900px) {
  .mobile-cta-bar { display: none; }
}

/* ============================================================
   Entrance animations
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="fade"] {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
