/* =========================================================================
   Calm Space Co. — stylesheet
   -------------------------------------------------------------------------
   Sections:
     1. Design tokens (custom properties)
     2. Base reset & typography
     3. Layout primitives (container, section, grid)
     4. Buttons, chips, links, form controls
     5. Header & mobile navigation
     6. Hero
     7. Feature sections (problem, benefits, offer, founder, trust, proof)
     8. Seven-stage journey (tabs + stacked mobile)
     9. FAQ accordion
    10. Enquiry form
    11. Footer & mobile sticky bar
    12. Legal / print pages
    13. Utilities, animations, print, reduced motion
   ========================================================================= */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  --background: #F4F0E7;
  --surface: #FBF9F3;
  --surface-deep: #EDE7DA;
  --text: #232B29;
  --muted-text: #6C726B;
  --teal: #2C6E77;
  --teal-dark: #1E525A;
  --forest: #3C5A4B;
  --brass: #B4863B;
  --brass-light: #E7C98A;
  --border: #E0D9C9;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(35, 43, 41, 0.05);
  --shadow: 0 6px 20px -8px rgba(35, 43, 41, 0.12);
  --shadow-lg: 0 20px 40px -20px rgba(35, 43, 41, 0.18);

  --step--1: clamp(0.83rem, 0.79rem + 0.2vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.19rem, 1.11rem + 0.4vw, 1.44rem);
  --step-2:  clamp(1.42rem, 1.28rem + 0.7vw, 1.83rem);
  --step-3:  clamp(1.7rem, 1.46rem + 1.2vw, 2.33rem);
  --step-4:  clamp(2.02rem, 1.63rem + 1.95vw, 2.96rem);
  --step-5:  clamp(2.4rem, 1.78rem + 3.1vw, 3.76rem);

  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", "Georgia", serif;
  --font-sans:  "Hanken Grotesk", "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(1rem, 1rem + 2vw, 2.5rem);
  --section-y: clamp(3.5rem, 3rem + 4vw, 6rem);
}

/* 2. Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.5em;
}

h1 { font-size: var(--step-5); line-height: 1.05; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1em; color: var(--text); }
.lead { font-size: var(--step-1); color: var(--text); }
.muted { color: var(--muted-text); }
small { color: var(--muted-text); }

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--teal); }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 var(--radius) 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; color: #fff; }

/* 3. Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-y) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brass);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brass);
  border-radius: 1px;
}

.section-head { max-width: 44rem; margin: 0 auto 2.5rem; text-align: center; }
.section-head.left { text-align: left; margin-inline: 0; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0.5rem; font-size: var(--step-1); }
.card p:last-child { margin-bottom: 0; }

.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-deep);
  display: grid; place-items: center;
  color: var(--teal-dark);
}

/* 4. Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--teal-dark);
  --btn-fg: #fff;
  --btn-border: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
  line-height: 1.2;
  min-height: 48px;
}
.btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn:active { transform: translateY(1px); }

.btn-secondary {
  --btn-bg: transparent;
  --btn-fg: var(--teal-dark);
  --btn-border: var(--border);
}
.btn-secondary:hover {
  --btn-bg: var(--surface);
  --btn-fg: var(--teal-dark);
  --btn-border: var(--teal-dark);
}

.btn-brass {
  --btn-bg: var(--brass);
  --btn-fg: #fff;
  --btn-border: var(--brass);
}
.btn-brass:hover { background: #9d7332; border-color: #9d7332; }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-border: transparent;
  padding: 0.6rem 0.9rem;
  min-height: 40px;
}
.btn-ghost:hover { background: var(--surface-deep); color: var(--text); border-color: transparent; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted-text);
  font-size: 0.82rem;
  font-weight: 500;
}
.chip strong { color: var(--brass); font-weight: 700; }

/* 5. Header ------------------------------------------------------------- */
.announce {
  background: var(--forest);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.6rem var(--gutter);
}
.announce strong { color: var(--brass-light); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 240, 231, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(244, 240, 231, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--text); text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
}
.brand-text span {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-top: 3px;
}

.nav-primary { display: flex; align-items: center; gap: 0.25rem; }
.nav-primary a:not(.btn) {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  transition: background-color 160ms ease;
}
.nav-primary a:not(.btn):hover { background: var(--surface-deep); }
.nav-primary .btn { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 44px; height: 44px;
  padding: 0;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-open { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-primary {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem var(--gutter) 1.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, transform 200ms ease;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-open .nav-primary {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-primary a:not(.btn) {
    padding: 0.9rem 0.75rem;
    border-radius: var(--radius);
    font-size: 1.05rem;
  }
  .nav-primary .btn { margin: 0.5rem 0 0.25rem; align-self: stretch; }
}

/* 6. Hero --------------------------------------------------------------- */
.hero {
  padding-top: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  padding-bottom: clamp(3rem, 2.5rem + 3vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(231, 201, 138, 0.25), transparent 70%),
    radial-gradient(50% 50% at 15% 100%, rgba(44, 110, 119, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 2rem + 3vw, 4rem);
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-top: 0.75rem; }
.hero-lead {
  font-size: var(--step-1);
  color: var(--text);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }

.hero-reassure {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem;
  color: var(--muted-text);
  font-size: 0.92rem;
  margin-top: 0.5rem;
}
.hero-reassure span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-reassure svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }

.hero-areas {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero-areas b { color: var(--text); font-weight: 600; margin-right: 0.3rem; }

/* Hero illustration */
.hero-illustration {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow);
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
}
.hero-illustration svg { width: 100%; height: 100%; }
.hero-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted-text);
  text-transform: uppercase;
}
.hero-callout {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--forest);
  color: #fff;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  max-width: 62%;
  box-shadow: var(--shadow-lg);
}
.hero-callout h4 {
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
}
.hero-callout p { color: rgba(255,255,255,0.86); font-size: 0.9rem; margin: 0; line-height: 1.5; }

/* 7. Feature sections --------------------------------------------------- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.problem-list li {
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.problem-list li::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brass-light);
  border: 2px solid var(--brass);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.benefits { background: var(--surface-deep); }
.benefit-card { display: flex; flex-direction: column; gap: 0.75rem; }
.benefit-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--brass);
  line-height: 1;
}

/* Offer band */
.offer-band {
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 860px) { .offer-band { grid-template-columns: 1fr; } }
.offer-band h2 { color: #fff; font-size: var(--step-3); }
.offer-band .section-eyebrow { color: var(--brass-light); }
.offer-band .section-eyebrow::before { background: var(--brass-light); }
.offer-band p { color: rgba(255,255,255,0.86); }
.offer-price {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: var(--font-serif);
  margin: 0.5rem 0 1rem;
}
.offer-price .amount { font-size: clamp(3rem, 2.5rem + 3vw, 4.5rem); line-height: 1; color: var(--brass-light); }
.offer-price .unit { color: rgba(255,255,255,0.7); font-size: 1rem; letter-spacing: 0.02em; }

.offer-includes, .offer-excludes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.6rem;
}
.offer-includes li, .offer-excludes li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  color: rgba(255,255,255,0.94);
  line-height: 1.45;
}
.offer-includes li::before, .offer-excludes li::before {
  content: "";
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23E7C98A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M5 10.5l3.2 3.2L15 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.offer-excludes li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23E7C98A' stroke-width='2.2' stroke-linecap='round' d='M6 6l8 8M14 6l-8 8'/></svg>");
}
.offer-side {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.offer-side h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.5rem; }
.offer-side .btn { width: 100%; margin-top: 1rem; }
.offer-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(60, 90, 75, 0.16), rgba(180, 134, 59, 0.14)),
    var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.founder-photo::after {
  content: "Founder photograph";
  position: absolute;
  bottom: 1rem;
  font-size: 0.75rem;
  color: var(--muted-text);
  background: var(--surface);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.founder-photo svg { width: 55%; height: auto; opacity: 0.55; }
.founder-signature {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--teal-dark);
  margin-top: 1.5rem;
}

/* Trust */
.trust { background: var(--surface); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.trust-card {
  padding: 1.25rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-card h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.trust-card p { color: var(--muted-text); font-size: 0.92rem; margin: 0; }
.trust-check {
  width: 26px; height: 26px;
  background: var(--surface);
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  display: grid; place-items: center;
  color: var(--teal-dark);
  margin-bottom: 0.7rem;
}
.trust-check svg { width: 14px; height: 14px; }

/* Honest proof (empty-state cards) */
.proof-note {
  background: var(--surface-deep);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--muted-text);
  font-size: 0.92rem;
  margin-top: 1.5rem;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.proof-placeholder {
  background: repeating-linear-gradient(
    -45deg,
    var(--surface-deep) 0 12px,
    var(--background) 12px 24px
  );
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  color: var(--muted-text);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* 8. Seven-stage journey ------------------------------------------------ */
.journey { background: var(--surface); }
.journey-tablist {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  scrollbar-width: thin;
}
.journey-tab {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font: inherit;
  font-weight: 600;
  color: var(--muted-text);
  cursor: pointer;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.journey-tab .step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surface-deep);
  color: var(--muted-text);
  display: grid; place-items: center;
  font-size: 0.75rem;
  font-family: var(--font-serif);
}
.journey-tab[aria-selected="true"] {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
}
.journey-tab[aria-selected="true"] .step-num { background: var(--brass-light); color: var(--teal-dark); }
.journey-tab:hover:not([aria-selected="true"]) { background: var(--surface-deep); color: var(--text); }

.journey-panel {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 780px) { .journey-panel { grid-template-columns: 1fr; } }

.journey-panel[hidden] { display: none; }

.journey-visual {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  color: var(--teal-dark);
  padding: 2rem;
}
.journey-visual svg { width: 60%; }

.journey-body h3 { margin-bottom: 0.75rem; }
.journey-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.journey-body ul { padding-left: 1.1rem; margin: 0.5rem 0 0; }
.journey-body ul li { margin-bottom: 0.4rem; }

/* Journey stacked (small screens fallback / accordion feel) */
@media (max-width: 640px) {
  .journey-tablist { display: none; }
  .journey-panel { display: grid !important; margin-bottom: 1rem; }
  .journey-panel[hidden] { display: grid !important; }
  .journey-visual { aspect-ratio: 4 / 3; }
}

/* 9. FAQ ---------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  min-height: 60px;
  line-height: 1.4;
}
.faq-q:hover { background: var(--surface-deep); }
.faq-q .plus {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
  color: var(--teal-dark);
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transition: transform 220ms ease;
}
.faq-q .plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .plus::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-q[aria-expanded="true"] .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  padding: 0 1.4rem 1.4rem;
  color: var(--muted-text);
  line-height: 1.6;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a[hidden] { display: none; }

/* 10. Form -------------------------------------------------------------- */
.enquiry {
  background: var(--surface-deep);
}
.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .enquiry-grid { grid-template-columns: 1fr; } }
.enquiry-side .contact-line {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}
.enquiry-side .contact-line:last-child { border-bottom: none; }
.enquiry-side .contact-line svg { width: 22px; height: 22px; color: var(--teal-dark); flex-shrink: 0; }
.enquiry-side .contact-line b { font-weight: 600; }
.enquiry-side .contact-line small { color: var(--muted-text); display: block; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.form-group label .req { color: var(--brass); }
.form-group .help { font-size: 0.82rem; color: var(--muted-text); margin-top: 0.35rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--background);
  font: inherit;
  color: var(--text);
  transition: border-color 160ms ease, background-color 160ms ease;
}
textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
input:hover, select:hover, textarea:hover { border-color: var(--muted-text); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal-dark);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(44, 110, 119, 0.16);
}
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #a53f2b;
  background: #fdf3f1;
}
.field-error {
  font-size: 0.85rem;
  color: #a53f2b;
  margin-top: 0.35rem;
  min-height: 1em;
}

.checkbox-group {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0;
}
.checkbox-group input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--teal-dark); flex-shrink: 0; }
.checkbox-group label { font-size: 0.92rem; font-weight: 500; color: var(--text); line-height: 1.5; margin: 0; }
.checkbox-group a { color: var(--teal-dark); }

.hp { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.form-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  margin-top: 1.5rem;
}
.form-actions .form-status { font-size: 0.9rem; color: var(--muted-text); }

/* 11. Footer & mobile bar ---------------------------------------------- */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.86);
  padding: clamp(3rem, 2.5rem + 2vw, 4rem) 0 5rem;
}
.site-footer a { color: var(--brass-light); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-brand .brand-text b, .footer-brand .brand-text span { color: #fff; }
.footer-brand .brand-mark { color: var(--brass-light); }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Sticky mobile contact bar */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.6rem;
  gap: 0.4rem;
  box-shadow: 0 -8px 24px rgba(35, 43, 41, 0.08);
}
.mobile-bar a {
  flex: 1;
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 0.4rem;
}
.mobile-bar .mb-call { background: var(--surface-deep); color: var(--text); }
.mobile-bar .mb-wa   { background: var(--forest); color: #fff; }
.mobile-bar .mb-book { background: var(--teal-dark); color: #fff; }
.mobile-bar svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* 12. Legal / print pages ---------------------------------------------- */
.doc-page {
  background: var(--surface);
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}
.doc-page .container { max-width: 780px; }
.doc-page h1 { font-size: var(--step-4); margin-bottom: 0.5rem; }
.doc-page h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.doc-page h3 { font-size: var(--step-1); margin-top: 1.75rem; }
.doc-page p, .doc-page li { color: var(--text); line-height: 1.7; }
.doc-page ul, .doc-page ol { padding-left: 1.3rem; margin-bottom: 1rem; }
.doc-page li { margin-bottom: 0.4rem; }
.doc-meta {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.doc-callout {
  background: var(--background);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text);
}
.doc-callout strong { color: var(--teal-dark); }
.doc-signature {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.doc-signature label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 0.5rem;
}
.doc-signature .signature-line {
  border-bottom: 1px solid var(--text);
  min-height: 2.5rem;
}
.print-btn { margin: 1rem 0 2rem; }

/* Thank-you & 404 */
.simple-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 4rem var(--gutter);
  text-align: center;
}
.simple-page .container { max-width: 640px; }
.simple-page .huge {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 3rem + 6vw, 7rem);
  color: var(--brass);
  line-height: 1;
  margin-bottom: 1rem;
}
.simple-page .actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }

/* 13. Utilities & motion ------------------------------------------------ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
/* Reveal-on-scroll: only becomes invisible if JS loaded (adds .js to <html>).
   No-JS visitors always see content, no matter what. */
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .site-header, .mobile-bar, .site-footer, .announce, .print-btn, form { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .doc-page { padding: 0; }
  a { color: #000; text-decoration: underline; }
  .doc-signature { break-inside: avoid; }
  section { page-break-inside: avoid; }
}
