/* ============================================================
   RUPIN TRAVELS — Shared Stylesheet
   rupin.css · Version 2.1 · May 2026
   ============================================================
   To change the brand accent colour across all pages,
   update --clay in :root only. All other values cascade.

   Structure:
   1.  Design tokens & reset
   2.  Base & layout utilities
   3.  Navigation (desktop + mobile)
   4.  Hero (journey pages)
   5.  Journey page components
   6.  Footer
   7.  Animations & responsive

/* ── CANELA SELF-HOSTED ──────────────────────────────── */
@font-face {
  font-family: 'Canela';
  src: url('/fonts/canela-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Canela';
  src: url('/fonts/canela-light-italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
   8.  About page styles
   9.  FAQ page styles
   10. Shared utility: footer-legal-link
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand colours */
  --midnight:       #1C2C2C;
  --midnight-hover: #263d52;
  --midnight-92:    rgba(28,43,58,0.92);
  --midnight-72:    rgba(28,43,58,0.72);
  --midnight-55:    rgba(28,43,58,0.55);
  --midnight-52:    rgba(28,43,58,0.52);
  --midnight-30:    rgba(28,43,58,0.30);
  --midnight-20:    rgba(28,43,58,0.20);
  --midnight-15:    rgba(28,43,58,0.15);
  --midnight-8:     rgba(28,43,58,0.08);
  --midnight-3:     rgba(28,43,58,0.03);
  --midnight-1:     rgba(28,43,58,0.01);

  /* Primary accent — Turmeric gold */
  --clay:           #C89A3A;
  --clay-light:     #DDB86A;
  --clay-hover:     #FAF7F2;
  --clay-35:        rgba(200,154,58,0.35);
  --clay-30:        rgba(200,154,58,0.30);
  --clay-20:        rgba(200,154,58,0.20);
  --clay-15:        rgba(200,154,58,0.15);
  --clay-10:        rgba(200,154,58,0.10);
  --clay-6:         rgba(200,154,58,0.06);
  --clay-3:         rgba(200,154,58,0.03);

  /* Journey card colour bars only — do not use as accent */
  --saffron:        #B8956A;
  --saffron-light:  #D4B48A;

  /* Neutrals */
  --mist:           #FAF7F2;
  --cream:          #FFFFFF;
  --sand:           #9E8C6D;
  --sand-light:     #C4B49A;
  --dark:           #2C2420;
  --footer-bg:      #111c26;

  /* Journey accent colours */
  --forest:         #4A6741;
  --ochre:          #7C3D2B;
  --still:          #3B5F72;

  /* Typography */
  --serif:          'Canela', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:           'Plus Jakarta Sans', 'Jost', system-ui, -apple-system, sans-serif;
  --sans-utility:   'Plus Jakarta Sans', 'Jost', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-large:  1200px;
  --container-medium: 900px;
  --container-small:  700px;
  --pad-large:  7rem;
  --pad-medium: 5rem;
  --pad-small:  3.5rem;
}

/* ── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--sans); font-weight: 300; background: var(--cream); color: var(--midnight); overflow-x: hidden; padding-top: 68px; font-size: 18px; }

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--clay); color: var(--midnight); padding: 8px 16px; font-size: 13px; font-weight: 500; z-index: 9999; text-decoration: none; }
.skip-link:focus { top: 1rem; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container-large  { max-width: var(--container-large);  margin: 0 auto; padding: 0 3rem; }
.container-medium { max-width: var(--container-medium); margin: 0 auto; padding: 0 3rem; }
.container-small  { max-width: var(--container-small);  margin: 0 auto; padding: 0 3rem; }
.pad-large  { padding-top: var(--pad-large);  padding-bottom: var(--pad-large);  }
.pad-medium { padding-top: var(--pad-medium); padding-bottom: var(--pad-medium); }
.pad-small  { padding-top: var(--pad-small);  padding-bottom: var(--pad-small);  }

/* ── SECTION LABEL ──────────────────────────────────────────── */
.section-label { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay); font-weight: 400; font-family: var(--serif); display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.section-label::before { content: ''; display: block; width: 22px; height: 1px; background: var(--clay); }
.section-label.light { color: rgba(255,255,255,0.6); }
.section-label.light::before { background: rgba(255,255,255,0.4); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; background: var(--clay); color: var(--midnight); padding: 15px 36px; text-decoration: none; font-weight: 500; font-family: var(--sans-utility); transition: background 0.2s, transform 0.15s; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--clay-light); transform: translateY(-1px); }
.btn-outline { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; background: transparent; color: var(--midnight); padding: 15px 36px; text-decoration: none; font-weight: 500; font-family: var(--sans-utility); border: 1px solid var(--midnight); display: inline-block; transition: all 0.2s; }
.btn-outline:hover { background: var(--midnight); color: white; }
.btn-ghost { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 400; font-family: var(--sans-utility); display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-ghost:hover { color: white; }
.btn-dark { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; background: var(--midnight); color: white; padding: 14px 32px; text-decoration: none; font-weight: 500; font-family: var(--sans-utility); transition: background 0.2s; display: inline-block; }
.btn-dark:hover { background: var(--midnight-hover); }

/* ── IMAGE PLACEHOLDER ──────────────────────────────────────── */
.img-placeholder { background: #ddd8d0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; overflow: hidden; }
.img-placeholder svg { width: 32px; height: 32px; stroke: #b0a898; fill: none; stroke-width: 1.2; }
.img-placeholder-label { font-size: 11px; color: var(--sand); text-align: center; font-weight: 400; line-height: 1.5; padding: 0 1rem; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════
   NAV — desktop
════════════════════════════════════════════════════════ */
nav { background: var(--midnight); display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 68px; position: fixed; top: 0; left: 0; right: 0; z-index: 100; border-bottom: 1px solid var(--clay-20); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo svg { width: 28px; height: 28px; }
.nav-logo-img { height: 36px; width: auto; display: block; }
.nav-wordmark { font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: 0.12em; color: white; text-transform: uppercase; display: block; }
.nav-tagline { font-size: 12px; letter-spacing: 0.18em; color: var(--clay); text-transform: uppercase; display: block; margin-top: 1px; }
.nav-menu { display: flex; align-items: stretch; list-style: none; height: 100%; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { font-size: 13px; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 400; padding: 0 1rem; height: 68px; display: flex; align-items: center; transition: color 0.2s; white-space: nowrap; }
.nav-item > a:hover, .nav-item > a.active { color: var(--clay); }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown { position: absolute; top: 68px; left: 0; background: rgba(24,38,52,0.98); backdrop-filter: blur(12px); min-width: 210px; padding: 0.6rem 0; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.22s ease; border-top: 2px solid var(--clay); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.dropdown-group { padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dropdown-group:last-child { border-bottom: none; }
.dropdown-group-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay); padding: 0.5rem 1.25rem 0.25rem; font-weight: 500; }
.dropdown a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; padding: 0.38rem 1.25rem 0.38rem 1.75rem; transition: color 0.2s, background 0.2s; }
.dropdown a:hover { color: white; background: var(--clay-10); }
.dropdown a.current { color: var(--clay); }
.nav-cta { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--midnight); background: var(--clay); border: none; padding: 8px 18px; text-decoration: none; font-weight: 500; font-family: var(--sans-utility); transition: background 0.2s, color 0.2s; white-space: nowrap; margin-left: 1rem; flex-shrink: 0; }
.nav-cta:hover { background: var(--midnight); color: var(--clay); border: 1px solid var(--clay); }

/* ── HAMBURGER BUTTON (mobile only) ────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: var(--clay); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ──────────────────────────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17,28,38,0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 3rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav-drawer.open { transform: translateX(0); }
.drawer-section { margin-bottom: 1.5rem; }
.drawer-section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  padding: 0 0 0.5rem;
  display: block;
  border-bottom: 1px solid var(--clay-15);
  margin-bottom: 0.5rem;
}
.drawer-link {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-weight: 400;
  transition: color 0.2s;
}
.drawer-link:hover, .drawer-link.active { color: var(--clay); }
.drawer-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--clay);
  color: var(--midnight);
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════
   STICKY ANCHOR NAV
════════════════════════════════════════════════════════ */
.anchor-nav { position: fixed; top: 68px; left: 0; right: 0; z-index: 90; background: var(--cream); border-bottom: 1px solid #ddd8d0; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 52px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.anchor-nav.visible { opacity: 1; pointer-events: all; }
.anchor-links { display: flex; align-items: center; gap: 0; height: 100%; overflow-x: auto; scrollbar-width: none; }
.anchor-links::-webkit-scrollbar { display: none; }
.anchor-link { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--midnight); text-decoration: none; font-weight: 500; padding: 0 1.25rem; height: 52px; display: flex; align-items: center; border-bottom: 2px solid transparent; transition: border-color 0.2s; white-space: nowrap; flex-shrink: 0; }
.anchor-link:hover { border-bottom-color: var(--journey-color, var(--clay)); }
.anchor-link.active { border-bottom-color: var(--journey-color, var(--clay)); }
.anchor-enquire { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--midnight); border: 1px solid var(--midnight-30); padding: 7px 18px; text-decoration: none; font-weight: 500; transition: background 0.2s, color 0.2s; flex-shrink: 0; margin-left: 1rem; }
.anchor-enquire:hover { background: var(--midnight); color: white; }

/* ════════════════════════════════════════════════════════
   HERO — journey pages
════════════════════════════════════════════════════════ */
.section-hero { position: relative; min-height: 82vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-pattern { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent, transparent 24px, var(--clay-3) 24px, var(--clay-3) 25px); }
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--midnight-92) 0%, var(--midnight-15) 65%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 3rem 4.5rem; max-width: 680px; }
.hero-eyebrow { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 500; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 26px; height: 1px; background: rgba(255,255,255,0.5); }
.hero-title { font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 400; color: white; line-height: 1.05; margin-bottom: 1rem; }
.hero-title em { font-style: italic; color: var(--clay-light); }
.hero-colour-bar { display: none; }
.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; background: var(--clay); display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 52px; gap: 2rem; }
.hero-strip-left { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; }
.hero-strip-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--midnight); letter-spacing: 0.04em; white-space: nowrap; }
.hero-strip-title em { font-style: italic; color: var(--midnight); }
.hero-strip-divider { width: 1px; height: 28px; background: var(--midnight-30); flex-shrink: 0; }
.hero-strip-facts { font-size: 13px; letter-spacing: 0.08em; color: var(--midnight); font-weight: 500; white-space: nowrap; }
.hero-strip-cta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; background: var(--midnight); color: white; padding: 8px 20px; text-decoration: none; font-weight: 500; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
.hero-strip-cta:hover { background: var(--midnight-hover); }

/* ════════════════════════════════════════════════════════
   INTRO / ABOUT THIS JOURNEY
════════════════════════════════════════════════════════ */
.section-intro { background: var(--mist); }
.intro-rich p { font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 400; line-height: 1.8; color: var(--midnight); }
.intro-rich p + p { margin-top: 1.25rem; }
.intro-pull { font-family: var(--serif); font-size: clamp(1.05rem, 1.4vw, 1.2rem); font-weight: 400; font-style: italic; color: var(--midnight); border-left: 2px solid var(--clay); padding-left: 1.5rem; margin: 2rem 0; line-height: 1.7; }
.wellness-inner { max-width: var(--container-medium); margin: 0 auto; padding: 0 3rem; }

/* ════════════════════════════════════════════════════════
   OVERVIEW STATS
════════════════════════════════════════════════════════ */
.section-overview { background: #ffffff; }
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid #ddd8d0; }
.overview-item { padding: 2rem 1.75rem; border-right: 1px solid #ddd8d0; display: flex; flex-direction: column; gap: 0.5rem; }
.overview-item:last-child { border-right: none; }
.overview-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); font-weight: 500; }
.overview-value { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--midnight); line-height: 1.2; }
.overview-sub { font-size: 13px; color: var(--sand); font-weight: 400; }
.activity-histogram { display: flex; align-items: flex-end; gap: 3px; height: 24px; margin-top: 6px; }
.hist-bar { width: 10px; border-radius: 1px; }
.hist-bar.active { background: var(--clay); }
.hist-bar.inactive { background: var(--midnight-8); }
.hist-1 { height: 6px; } .hist-2 { height: 9px; } .hist-3 { height: 13px; } .hist-4 { height: 18px; } .hist-5 { height: 24px; }
.activity-level-label { font-size: 11px; color: var(--sand); font-weight: 400; margin-top: 5px; }

/* ════════════════════════════════════════════════════════
   JOURNEY FLOW — image switcher blocks
════════════════════════════════════════════════════════ */
.section-journey-flow { background: var(--mist); padding: 1.5rem 2.5rem; }
.journey-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 1.5rem; box-shadow: 0 2px 12px rgba(28, 44, 44, 0.06); }
.journey-block.reverse .journey-image-area { order: 2; }
.journey-block.reverse .journey-content { order: 1; }
.journey-image-area { display: flex; flex-direction: column; min-height: 380px; }
.journey-main-img { flex: 1; position: relative; overflow: hidden; min-height: 300px; }
.journey-main-scene { position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s ease; }
.journey-main-scene.active { opacity: 1; }
.scene-caption { position: absolute; bottom: 8px; left: 12px; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.journey-thumb-row { display: flex; gap: 2px; padding: 2px; background: #ddd8d0; flex-shrink: 0; }
.journey-thumb { flex: 1; height: 56px; cursor: pointer; position: relative; overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s; }
.journey-thumb.active { border-color: var(--clay); }
.journey-thumb-scene { position: absolute; inset: 0; opacity: 0.65; transition: opacity 0.2s; }
.journey-thumb.active .journey-thumb-scene { opacity: 1; }
.journey-thumb-label { position: absolute; bottom: 3px; left: 4px; font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; }
.journey-content { padding: 3.5rem 3rem; display: flex; flex-direction: column; justify-content: center; background: white; }
.journey-day-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 0.75rem; display: block; }
.journey-content h3 { font-family: var(--serif); font-size: clamp(1.8rem, 2.2vw, 2.4rem); font-weight: 400; color: var(--midnight); margin-bottom: 1.25rem; line-height: 1.15; }
.journey-content p { font-size: 16px; color: var(--dark); line-height: 1.85; font-weight: 400; }
.journey-content p + p { margin-top: 0.75rem; }
.journey-tags { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 7px; }
.journey-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); border: 1px solid #ddd8d0; padding: 4px 10px; }

/* ════════════════════════════════════════════════════════
   WHO IT'S FOR
════════════════════════════════════════════════════════ */
.section-audience { background: #ffffff; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.audience-intro p { font-size: 16px; color: var(--dark); line-height: 1.85; font-weight: 400; margin-top: 1rem; }
.audience-list h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 1.25rem; }
.audience-items { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.audience-items li { font-size: 16px; color: var(--dark); line-height: 1.6; font-weight: 400; display: flex; gap: 0.75rem; align-items: flex-start; }
.audience-items li::before { content: '\2014'; color: var(--clay); flex-shrink: 0; margin-top: 2px; }

/* ════════════════════════════════════════════════════════
   ABOUT THE PRACTICE — wellness journeys only
════════════════════════════════════════════════════════ */
.section-wellness { background: var(--mist); }
.wellness-title { font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 400; color: var(--midnight); margin-bottom: 1.5rem; line-height: 1.1; }
.wellness-body { font-size: 16px; color: var(--dark); line-height: 1.9; font-weight: 400; }
.wellness-body + .wellness-body { margin-top: 1.1rem; }
.rhythm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ddd8d0; margin-top: 2rem; }
.rhythm-item { background: white; padding: 1.5rem 1.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
.rhythm-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); margin-bottom: 0.25rem; }
.rhythm-time { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); font-weight: 500; }
.rhythm-activity { font-size: 15px; color: var(--midnight); font-weight: 400; }
.rhythm-desc { font-size: 13px; color: var(--sand); line-height: 1.6; font-weight: 400; }
.wellness-note { margin-top: 2rem; padding: 1.25rem 1.5rem; border-left: 2px solid var(--clay); background: var(--clay-6); }
.wellness-note-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 6px; display: block; }
.wellness-note p { font-size: 15px; color: #4a4035; line-height: 1.75; font-weight: 400; font-style: italic; }

/* ════════════════════════════════════════════════════════
   ITINERARY ACCORDION
════════════════════════════════════════════════════════ */
.section-itinerary { background: #ffffff; }
.accordion { border: 1px solid #ddd8d0; background: white; margin-top: 2rem; }
.acc-item { border-bottom: 1px solid #e8e2d8; }
.acc-item:last-child { border-bottom: none; }
.acc-item.hidden { display: none; }
.acc-trigger { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; cursor: pointer; background: white; transition: background 0.2s; gap: 1rem; width: 100%; border: none; text-align: left; }
.acc-trigger:hover { background: var(--cream); }
.acc-trigger.open { background: var(--midnight); }
.acc-left { display: flex; align-items: center; gap: 1.25rem; }
.acc-day { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); font-weight: 500; min-width: 52px; }
.acc-trigger.open .acc-day { color: var(--clay-light); }
.acc-title { font-size: 16px; color: var(--midnight); font-weight: 400; }
.acc-trigger.open .acc-title { color: white; }
.acc-loc { font-size: 13px; color: var(--sand); margin-top: 1px; font-weight: 400; }
.acc-trigger.open .acc-loc { color: rgba(255,255,255,0.5); }
.acc-icon { font-size: 20px; color: var(--clay); transition: transform 0.25s; flex-shrink: 0; font-weight: 400; line-height: 1; }
.acc-trigger.open .acc-icon { transform: rotate(45deg); color: var(--clay-light); }
.acc-body { display: none; padding: 1.25rem 1.5rem 1.25rem 5.5rem; background: #ffffff; border-top: 1px solid #f0ece4; }
.acc-body.open { display: block; }
.acc-body p { font-size: 15px; color: var(--dark); line-height: 1.8; font-weight: 400; }
.acc-body p + p { margin-top: 0.5rem; }
.acc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.75rem; }
.acc-tag { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); border: 1px solid #e0dbd4; padding: 3px 9px; }
.itin-expand { margin-top: 1px; background: white; border: 1px solid #ddd8d0; border-top: none; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; cursor: pointer; transition: background 0.2s; }
.itin-expand:hover { background: #f7f4ef; }
.itin-expand-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); font-weight: 500; }
.itin-expand-icon { font-size: 14px; color: var(--clay); transition: transform 0.3s; }
.itin-expand.expanded .itin-expand-icon { transform: rotate(180deg); }

/* ════════════════════════════════════════════════════════
   ACCOMMODATION — sliding carousel
════════════════════════════════════════════════════════ */
.section-accommodation { background: var(--mist); }
.section-accommodation .container-large { text-align: left; }
.section-accommodation p { margin-left: 0; margin-right: 0; text-align: left; }
.prop-carousel { margin-top: 2rem; border: 1px solid #ddd8d0; background: white; overflow: hidden; }
.prop-track { display: flex; transition: transform 0.4s ease; }
.prop-card { min-width: 100%; display: grid; grid-template-columns: 45% 55%; }
.prop-img { height: 320px; overflow: hidden; }
.prop-body { padding: 2.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.prop-location { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 0.5rem; display: block; }
.prop-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--midnight); margin-bottom: 0.75rem; line-height: 1.2; }
.prop-desc { font-size: 15px; color: var(--dark); line-height: 1.75; font-weight: 400; }
.prop-controls { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-top: 1px solid #e8e2d8; background: var(--cream); }
.prop-arrow { background: none; border: 1px solid #ddd8d0; color: var(--midnight); width: 36px; height: 36px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.prop-arrow:hover { background: var(--midnight); color: white; border-color: var(--midnight); }
.prop-dots { display: flex; gap: 8px; align-items: center; }
.prop-dot { width: 7px; height: 7px; border-radius: 50%; background: #ddd8d0; cursor: pointer; transition: background 0.2s; }
.prop-dot.active { background: var(--clay); }
.prop-note { margin-top: 1.25rem; padding: 1rem 1.25rem; border-left: 2px solid var(--clay); background: var(--clay-6); font-size: 14px; color: var(--dark); line-height: 1.7; font-weight: 400; }

/* ════════════════════════════════════════════════════════
   JOURNEY PAGE FOUNDER
════════════════════════════════════════════════════════ */
.founder-pull { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--midnight); border-left: 2px solid var(--clay); padding-left: 1.25rem; margin: 1.25rem 0; line-height: 1.75; }
.section-founder { background: var(--cream); }
.founder-grid { display: grid; grid-template-columns: 30fr 70fr; gap: 0; min-height: 400px; }
.founder-image { min-height: 360px; }
.founder-text { padding: 3.5rem 3rem 3.5rem 3.5rem; display: flex; flex-direction: column; justify-content: flex-start; }
.founder-body { font-size: 16px; color: var(--dark); line-height: 1.9; font-weight: 400; margin-bottom: 1rem; }
.founder-signature { font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: var(--midnight); margin-top: 1rem; }
.founder-role { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-top: 4px; }

/* ════════════════════════════════════════════════════════
   INVESTMENT + INCLUSIONS
════════════════════════════════════════════════════════ */
.section-investment { background: var(--midnight); }
.investment-merged { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.investment-from { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 0.75rem; display: block; }
.investment-price { font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 400; color: white; line-height: 1; margin-bottom: 0.5rem; }
.investment-per { font-size: 14px; color: rgba(255,255,255,0.72); margin-bottom: 2rem; font-weight: 400; }
.investment-details { display: flex; gap: 2.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.investment-detail-label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.68); display: block; margin-bottom: 4px; }
.investment-detail-value { font-size: 15px; color: rgba(255,255,255,0.9); font-weight: 400; }
.investment-note { font-size: 14px; color: rgba(255,255,255,0.72); font-weight: 400; line-height: 1.6; margin-bottom: 2rem; }
.investment-right { padding-top: 0.5rem; }
.inc-title { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 10px; }
.inc-title.yes { color: var(--clay); }
.inc-title.yes::before { content: ''; display: block; width: 16px; height: 1px; background: var(--clay-30); }
.inc-title.no { color: rgba(255,255,255,0.3); }
.inc-title.no::before { content: ''; display: block; width: 16px; height: 1px; background: rgba(255,255,255,0.2); }
.inc-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.inc-list li { font-size: 15px; line-height: 1.5; font-weight: 400; display: flex; align-items: flex-start; gap: 10px; }
.inc-list.yes li { color: rgba(255,255,255,0.55); }
.inc-list.no li { color: rgba(255,255,255,0.35); }
.inc-list li::before { flex-shrink: 0; margin-top: 1px; font-size: 12px; font-weight: 500; }
.inc-list.yes li::before { content: '\2713'; color: var(--clay); }
.inc-list.no li::before { content: '\2013'; color: rgba(255,255,255,0.3); }
.inc-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.25rem 0; }

/* ════════════════════════════════════════════════════════
   CTA — journey pages
════════════════════════════════════════════════════════ */
.section-cta { background: var(--mist); border-top: 1px solid #ddd8d0; }
.cta-inner { text-align: center; }
.cta-title { font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 400; color: var(--midnight); margin-bottom: 1rem; line-height: 1.2; }
.cta-title em { font-style: italic; color: var(--clay); }
.cta-body { font-size: 16px; color: var(--sand); line-height: 1.85; margin-bottom: 2rem; font-weight: 400; }
.cta-buttons { display: flex; align-items: flex-start; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.cta-button-pair { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.cta-button-pair-label { font-size: 13px; color: var(--midnight); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.cta-button-pair-label:hover { color: var(--clay); }
.cta-contact { font-size: 14px; color: var(--sand); font-weight: 400; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.cta-contact a { color: var(--midnight); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.cta-contact a:hover { color: var(--clay); }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer { background: var(--footer-bg); padding: 3rem 3rem 1.5rem; width: 100%; box-sizing: border-box; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 2.5rem; width: 100%; box-sizing: border-box; }
.footer-col-title { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 1rem; display: block; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.footer-links a:hover { color: var(--clay); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-wordmark { font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); text-transform: uppercase; text-decoration: none; }
.footer-wordmark:hover { color: rgba(255,255,255,0.85); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 400; }
.footer-cat { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.25); font-weight: 500; margin-top: 0.6rem; margin-bottom: 0.25rem; display: block; }

/* ── Footer legal links — static (was injected via JS, now in CSS) ── */
.footer-legal-link { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; background: none; border: none; cursor: pointer; font-family: inherit; padding: 0; }
.footer-legal-link:hover { color: var(--clay); }

/* ════════════════════════════════════════════════════════
   SCENE PLACEHOLDER COLOURS — journey image blocks
════════════════════════════════════════════════════════ */
.sc-1a { background: linear-gradient(135deg, #2a4535, #3d6550, #5a8a68); }
.sc-1b { background: linear-gradient(135deg, #1a3528, #2d5540, #4a7a58); }
.sc-1c { background: linear-gradient(135deg, #354828, #507040, #7a9a60); }
.sc-1d { background: linear-gradient(135deg, #2a3d45, #3a5a65, #5a8090); }
.sc-2a { background: linear-gradient(135deg, #2a4020, #4a6838, #7aaa58); }
.sc-2b { background: linear-gradient(135deg, #304525, #507040, #80a560); }
.sc-2c { background: linear-gradient(135deg, #3a4828, #607848, #90aa68); }
.sc-2d { background: linear-gradient(135deg, #253520, #405838, #6a8a58); }
.sc-3a { background: linear-gradient(135deg, #1a3040, #2a4d60, #4a7888); }
.sc-3b { background: linear-gradient(135deg, #152838, #224258, #3a6578); }
.sc-3c { background: linear-gradient(135deg, #203545, #305565, #508090); }
.sc-3d { background: linear-gradient(135deg, #182d3d, #284a5d, #406a7d); }
.sc-4a { background: linear-gradient(135deg, #4a3020, #705040, #a07860); }
.sc-4b { background: linear-gradient(135deg, #402818, #604535, #906858); }
.sc-4c { background: linear-gradient(135deg, #503828, #785848, #a88068); }
.sc-4d { background: linear-gradient(135deg, #3d2818, #604030, #906050); }
.sc-5a { background: linear-gradient(135deg, #2a1f3d, #4a3565, #7a5890); }
.sc-5b { background: linear-gradient(135deg, #221a38, #3d2d58, #6a4878); }
.sc-5c { background: linear-gradient(135deg, #1e1835, #382855, #5a4270); }
.sc-5d { background: linear-gradient(135deg, #281f40, #453560, #7a5885); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE — 900px (tablet)
════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .container-large, .container-medium, .container-small { padding: 0 1.5rem; }
  .anchor-nav { padding: 0 1.5rem; }
  .hero-content { padding: 0 1.5rem 3.5rem; }
  .hero-strip { padding: 0 1.5rem; }
  .hero-strip-title { display: none; }
  .hero-strip-divider { display: none; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-item:nth-child(2) { border-right: none; }
  .overview-item:nth-child(3), .overview-item:nth-child(4) { border-top: 1px solid #ddd8d0; }
  .journey-block { grid-template-columns: 1fr; }
  .journey-block.reverse .journey-image-area { order: 0; }
  .journey-block.reverse .journey-content { order: 0; }
  .audience-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rhythm-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-card { grid-template-columns: 1fr; }
  .prop-img { height: 220px; overflow: hidden; }
  .prop-body { padding: 1.5rem; }
  .investment-merged { grid-template-columns: 1fr; gap: 3rem; }
  .founder-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — 600px (mobile)
════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Show hamburger, hide desktop menu and CTA */
  .nav-menu { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }

  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .rhythm-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pad-large  { padding-top: 4rem; padding-bottom: 4rem; }
  .pad-medium { padding-top: 3rem; padding-bottom: 3rem; }
  .acc-body { padding-left: 1.5rem; }
  .hero-strip { flex-wrap: wrap; height: auto; padding: 0.75rem 1.25rem; gap: 0.75rem; }
  .hero-strip-facts { font-size: 12px; }
  .anchor-nav { padding: 0 1rem; }
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════ */
.hero-about { position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-about-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d1a26 0%, var(--midnight) 50%, #1e2e2a 100%); }
.hero-about-bg::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent, transparent 24px, var(--clay-3) 24px, var(--clay-3) 25px); }
.hero-about-content { position: relative; z-index: 2; max-width: 900px; text-align: center; padding: 0 3rem; }
.hero-about-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; line-height: 1.15; color: white; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.hero-about-title em { font-style: italic; color: var(--clay-light); }
.hero-about-sub { font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto; }

.about-page section { padding: var(--pad-large) 0; }
.about-page h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.3; letter-spacing: -0.01em; color: var(--midnight); margin-bottom: 2rem; }
.about-page h2 em { font-style: italic; color: var(--clay); }

/* About philosophy — scoped to .about-page to avoid collision with homepage */
.about-page .philosophy { background: var(--mist); }
.philosophy-intro { max-width: 800px; margin: 0 auto 4rem; text-align: center; padding: 0 3rem; }
.philosophy-intro p { font-size: 1.15rem; color: var(--midnight-72); font-style: italic; margin-top: 1rem; line-height: 1.6; }
.philosophy-grid { max-width: var(--container-large); margin: 0 auto; padding: 0 3rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.philosophy-card { padding-top: 1.5rem; border-top: 2px solid var(--clay); }
.philosophy-card p { font-size: 0.95rem; line-height: 1.65; color: var(--midnight-72); }

.different { background: var(--midnight); color: var(--cream); }
.different-intro { max-width: 800px; margin: 0 auto 4rem; text-align: center; padding: 0 3rem; }
.different-intro h2 { color: var(--cream); }
.asking-blocks { max-width: var(--container-medium); margin: 0 auto 3rem; padding: 0 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.asking-block { padding: 2.5rem; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.asking-block.us { background: var(--clay); border-color: var(--clay); color: var(--midnight); }
.asking-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; font-weight: 500; }
.asking-block.us .asking-label { color: var(--midnight-55); }
.asking-question { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.45; font-weight: 400; }
.changes-line { text-align: center; font-family: var(--serif); font-size: 1.4rem; color: var(--cream); margin-bottom: 3rem; padding: 0 3rem; }
.changes-line em { font-style: italic; color: var(--clay); }

.about-founder { background: var(--mist); }
.founder-container { max-width: var(--container-large); margin: 0 auto; padding: 0 3rem; display: grid; grid-template-columns: 368px 1fr; gap: 5rem; align-items: start; }
.founder-portrait { width: 100%; max-width: 368px; aspect-ratio: 1; }
.founder-story { font-size: 1.05rem; line-height: 1.8; color: var(--midnight); margin-bottom: 1.5rem; }
.founder-story em { font-style: italic; color: var(--clay); }
.about-founder .founder-signature { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--midnight); margin-top: 2rem; margin-bottom: 0.25rem; }
.about-founder .founder-role { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); font-weight: 500; }

.closing { background: var(--cream); text-align: center; padding: var(--pad-large) 3rem; }
.closing-line { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.3; color: var(--midnight); margin-bottom: 1.5rem; }
.closing-line em { font-style: italic; color: var(--clay); }
.closing-sub { font-size: 1.1rem; color: var(--midnight-72); margin-bottom: 2.5rem; line-height: 1.6; }

@media (max-width: 900px) {
  .hero-about-content { padding: 0 1.5rem; }
  .philosophy-intro, .philosophy-grid, .different-intro, .asking-blocks, .changes-line, .founder-container { padding: 0 1.5rem; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .asking-blocks { grid-template-columns: 1fr; }
  .founder-container { grid-template-columns: 1fr; gap: 2rem; }
  .founder-portrait { max-width: 276px; margin: 0 auto; }
  .about-page section { padding: 4rem 0; }
}
@media (max-width: 540px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   FAQ PAGE
════════════════════════════════════════════════════════ */
.section-faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 5rem; align-items: start; }
.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 1rem; display: block; }
.faq-sidebar-links, .faq-nav { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.faq-sidebar-links a, .faq-nav a { font-size: 13px; color: var(--sand); text-decoration: none; font-weight: 400; padding: 0.35rem 0 0.35rem 0.75rem; border-left: 2px solid transparent; transition: all 0.2s; }
.faq-sidebar-links a:hover, .faq-nav a:hover { color: var(--midnight); border-left-color: var(--clay); }
.faq-sidebar-links a.active, .faq-nav a.active { color: var(--midnight); border-left-color: var(--clay); font-weight: 500; }
.faq-group { display: block; }
.faq-intro { margin-bottom: 3rem; }
.faq-intro p { font-family: var(--serif); font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 400; line-height: 1.8; color: var(--midnight); }
.faq-groups { display: flex; flex-direction: column; gap: 4rem; }
.faq-group-title { font-family: var(--serif); font-size: clamp(1.6rem, 2.2vw, 2.2rem); font-weight: 400; color: var(--midnight); margin-bottom: 1.5rem; line-height: 1.15; }
.faq-accordion { border: 1px solid #ddd8d0; background: var(--cream); }
.faq-item { border-bottom: 1px solid #e8e2d8; }
.faq-item:last-child { border-bottom: none; }
.faq-trigger { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; cursor: pointer; background: var(--cream); transition: background 0.2s; gap: 1.5rem; width: 100%; border: none; text-align: left; }
.faq-trigger:hover { background: var(--mist); }
.faq-trigger.open { background: var(--midnight); }
.faq-q { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--midnight); line-height: 1.3; }
.faq-trigger.open .faq-q { color: white; }
.faq-icon { font-size: 20px; color: var(--clay); transition: transform 0.25s; flex-shrink: 0; font-weight: 400; line-height: 1; }
.faq-trigger.open .faq-icon { transform: rotate(45deg); color: var(--clay-light); }
.faq-body { display: none; padding: 1.25rem 1.5rem 1.5rem; background: white; border-top: 1px solid #f0ece4; }
.faq-body.open { display: block; }
.faq-body p { font-size: 15px; color: var(--dark); line-height: 1.85; font-weight: 400; }
.faq-body p + p { margin-top: 0.75rem; }
.faq-body a { color: var(--clay); text-decoration: none; }
.faq-body a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-sidebar { position: static; }
}

/* ════════════════════════════════════════════════════════
   JOURNAL
════════════════════════════════════════════════════════ */
.section-journal { background: white; padding: var(--pad-large) 0; border-top: 1px solid #ddd8d0; }
.journal-intro { margin-bottom: 2.5rem; }
.journal-intro p { font-family: var(--serif); font-size: clamp(1.05rem, 1.4vw, 1.2rem); font-weight: 400; color: var(--midnight); line-height: 1.8; max-width: 560px; margin-top: 0.5rem; }
.journal-list { display: flex; flex-direction: column; gap: 1px; }
.journal-item { display: grid; grid-template-columns: 240px 1fr; border: 1px solid #ddd8d0; background: white; text-decoration: none; color: inherit; transition: border-color 0.2s; }
.journal-item:hover { border-color: var(--clay); }
.journal-img { min-height: 200px; background-size: cover; background-position: center; background-color: var(--mist); }
.journal-body { padding: 2rem 2.5rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.25rem; border-left: 1px solid #ddd8d0; }
.journal-meta { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 0.75rem; }
.journal-title { font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.4rem); font-weight: 400; color: var(--midnight); line-height: 1.2; }
.journal-title em { font-style: italic; color: var(--clay); }
.journal-excerpt { font-size: 14px; color: var(--dark); line-height: 1.75; max-width: 620px; }
.journal-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid #e8e2d8; }
.journal-date { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); }
.journal-read { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); font-weight: 500; transition: letter-spacing 0.2s; }
.journal-item:hover .journal-read { letter-spacing: 0.2em; }
.journal-coming { border: 1px dashed #ddd8d0; background: var(--mist); padding: 1.75rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1px; }
.journal-coming-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); }
.journal-coming-sub { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--sand); }

@media (max-width: 768px) {
  .journal-item { grid-template-columns: 1fr; }
  .journal-img { min-height: 180px; }
  .journal-body { border-left: none; border-top: 1px solid #ddd8d0; padding: 1.25rem; }
}
