/* =====================================================================
   North Within — design system

   Brief, in one line: a predominantly white canvas with moments of colour,
   movement and visual interest. Calm and uncluttered underneath; alive in
   the details.

   Three rules this follows that the previous version broke:

     The canvas is genuinely white. Not warm-white leaning beige — the
     beige/brown/terracotta wellness palette is the thing to move away from.

     Sans-serif carries the identity. A serif appears in exactly two places
     on the whole site. Sparingly means sparingly.

     Every section is a different shape. Cards appear on one section, not
     seven. Movement happens in three places, not eight.
   ===================================================================== */

/* ---- tokens -------------------------------------------------------- */

:root {
  --white:   #FFFFFF;
  /* Cool, barely-there. Deliberately not #F4F3EE. */
  --off:     #FAFAFC;
  --off-2:   #F4F3F8;

  /* Deep aubergine-black: neither blue-black (corporate) nor brown (wellness). */
  --ink:     #1B1725;
  --ink-2:   #4A4458;
  --ink-3:   #6E6880;

  /* The two paths. Teal for people arriving for themselves, lavender for
     people arriving on behalf of an organisation. Both verified >=4.5:1
     as text-on-white and white-on-fill (buttons), so neither the label
     text nor the button labels ever fall below WCAG AA. */
  --teal:      #0D7377;
  --teal-deep: #0B5E62;
  --teal-wash: #ECF4F4;
  --teal-line: #D3E6E7;

  --lavender:      #6D5AE0;
  --lavender-deep: #5748B3;
  --lavender-wash: #F3F2FD;
  --lavender-line: #E5E1F9;

  /* The occasional stronger colour. Used about three times in total —
     as decoration it can be bright; as text it drops to the darker value. */
  --coral:      #FF6B4A;
  --coral-text: #C93A18;

  --line:   #E8E6EF;
  --line-2: #DEDBE8;

  --ok:   #0A6E55;
  --warn: #8A5A00;
  --bad:  #C0392B;

  /* Plus Jakarta Sans carries the identity: contemporary, friendly
     terminals, not corporate and not startup-neutral. */
  --sans:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;

  --t-xs:   clamp(0.78rem, 0.76rem + 0.09vw, 0.83rem);
  --t-sm:   clamp(0.89rem, 0.86rem + 0.14vw, 0.96rem);
  --t-base: clamp(1.0rem,  0.97rem + 0.18vw, 1.09rem);
  --t-md:   clamp(1.12rem, 1.05rem + 0.32vw, 1.3rem);
  --t-lg:   clamp(1.35rem, 1.2rem + 0.7vw,   1.75rem);
  --t-xl:   clamp(1.6rem,  1.35rem + 1.15vw, 2.3rem);
  --t-2xl:  clamp(2.05rem, 1.65rem + 1.95vw, 3.1rem);
  --t-3xl:  clamp(2.5rem,  1.9rem + 3.1vw,   4.3rem);

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --wide:   82rem;
  --narrow: 44rem;

  /* Soft, not pill. Pills and 18px cards everywhere were the "collection
     of rounded cards" problem. */
  --r-xs: 3px;
  --r:    6px;
  --r-lg: 10px;

  --shadow:    0 1px 2px rgba(27, 23, 37, 0.04), 0 8px 28px rgba(27, 23, 37, 0.07);
  --shadow-lg: 0 2px 6px rgba(27, 23, 37, 0.05), 0 24px 60px rgba(27, 23, 37, 0.12);

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

/* ---- reset --------------------------------------------------------- */

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

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

/* A safety net, not a fix for anything specific: one element poking a few
   pixels past the viewport (a long unbroken word, a slightly-too-wide
   embed) forces the whole page to scroll sideways on mobile, and that
   single stray pixel is what "messy on phone" usually turns out to be.
   overflow-x on body only — the y-axis stays untouched, so the sticky
   header still sticks. */
body {
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.028em;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: var(--t-2xl); }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-md); letter-spacing: -0.018em; }

p, li { text-wrap: pretty; }
p { max-width: 62ch; }

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

a { color: var(--teal-deep); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--teal); }

:focus-visible { outline: 2.5px solid var(--teal); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--teal-wash); color: var(--teal-deep); }

/* ---- layout -------------------------------------------------------- */

.wrap { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--narrow); }

.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;
}
.is-hidden { display: none !important; }
.muted { color: var(--ink-3); }
.small { font-size: var(--t-sm); }

.section { padding-block: clamp(4rem, 10vw, 8rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--off { background: var(--off); }
.section--ink { background: var(--ink); color: rgba(255,255,255,0.82); }
.section--ink h2, .section--ink h3 { color: #fff; }

/* Any block that paints itself dark owns its heading colour. Headings
   default to var(--ink), so a dark section that forgets this renders
   ink-on-ink and the heading vanishes — which is exactly what happened to
   the homepage's closing call to action in draft 1. */
[data-on-dark] h1, [data-on-dark] h2, [data-on-dark] h3, [data-on-dark] h4 { color: #fff; }

/* Label, not decoration: names what a section is. */
.label {
  font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.label--teal { color: var(--teal); }
.label--lavender { color: var(--lavender); }

.lede { font-size: var(--t-md); line-height: 1.5; color: var(--ink-2); max-width: 46ch; }

/* ---- buttons ------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 600;
  padding: 0.8rem 1.35rem; min-height: 48px;
  border: 1.5px solid var(--ink); border-radius: var(--r);
  background: transparent; color: var(--ink);
  text-decoration: none; cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
              border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn .icon { transition: transform 0.18s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }

.btn--primary { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; }

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

.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--onDark { background: #fff; border-color: #fff; color: var(--ink); }
.btn--onDark:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); color: var(--ink); }

.btn--block { display: flex; width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* A text link that behaves like a CTA without becoming a component. */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: var(--t-sm);
  text-decoration: none; color: var(--teal-deep);
}
.arrow-link .icon { transition: transform 0.18s var(--ease); }
.arrow-link:hover .icon { transform: translateX(4px); }
.arrow-link--lavender { color: var(--lavender-deep); }

.link-button {
  background: none; border: 0; padding: 0; font: inherit;
  color: var(--teal-deep); text-decoration: underline; cursor: pointer;
}
.link-button--danger { color: var(--bad); }
.inline-form { display: inline; }

/* ---- header -------------------------------------------------------- */

.skip { position: absolute; left: -9999px; z-index: 100; }
.skip:focus {
  left: var(--gutter); top: 0.75rem; background: #fff;
  padding: 0.7rem 1.1rem; border-radius: var(--r); box-shadow: var(--shadow);
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 1.05rem;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 1.08rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
}
.brand__mark { width: 22px; height: 22px; flex: 0 0 auto; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
/* :not(.btn) matters: without it this rule is more specific than
   .btn--primary and repaints the CTA's white label grey. */
.site-nav a:not(.btn) { font-size: var(--t-sm); font-weight: 500; color: var(--ink-2); text-decoration: none; }
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav a:not(.btn)[aria-current="page"] { color: var(--ink); font-weight: 600; }

.nav-toggle { display: none; }

@media (max-width: 58rem) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: none; border: 1.5px solid var(--line-2); border-radius: var(--r);
    padding: 0.5rem 0.85rem; min-height: 44px;
    font: inherit; font-size: var(--t-sm); font-weight: 600;
    color: var(--ink); cursor: pointer;
  }
  .site-nav {
    position: fixed; inset: 4.3rem 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem; box-shadow: var(--shadow-lg);
  }
  .site-nav[hidden] { display: none; }
  .site-nav a:not(.btn) { padding-block: 0.9rem; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 1rem; }
}

/* ---- hero ----------------------------------------------------------
   The one gradient moment on the site. Layered radial fields that drift
   slowly — the Stripe principle of strong colour against white, in
   lavender and green rather than Stripe's own palette.
   ------------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 11vw, 8.5rem) clamp(3rem, 8vw, 6rem); }

.hero__wash {
  position: absolute; inset: -30% -10% auto -10%; height: 150%;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(46% 42% at 78% 18%, rgba(94, 210, 205, 0.42), transparent 68%),
    radial-gradient(38% 40% at 96% 44%, rgba(151, 130, 255, 0.40), transparent 66%),
    radial-gradient(34% 34% at 66% 60%, rgba(255, 141, 110, 0.22), transparent 68%),
    radial-gradient(50% 46% at 100% 4%, rgba(120, 226, 220, 0.38), transparent 70%);
  filter: blur(18px);
  animation: drift 26s var(--ease) infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-3%, 2%, 0) scale(1.08); }
}

.hero > .wrap { position: relative; z-index: 1; }

.hero__statement {
  font-size: var(--t-3xl);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.05;
  /* Two lines, not three. At this size 17ch wrapped to three on desktop
     and five on mobile; 26ch holds "You already carry your own north star."
     on two across the range. */
  max-width: 26ch;
}
.hero__sub {
  font-size: var(--t-md); color: var(--ink-2);
  max-width: 48ch; margin-block: 1.5rem 2.25rem;
}

/* The hero's text + decorative-art split. Stacks below tablet width —
   below that, two columns leaves the art squeezed into a sliver and the
   headline wrapping awkwardly in the remaining space. */
.hero__grid {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 56rem) {
  .hero__grid { grid-template-columns: 1fr; }
  /* Text first, art second — the headline is the point; the
     illustration is a decorative follow, not the lead. */
  .hero__art { max-width: 22rem; margin-inline: auto; }
}

/* ---- the two paths -------------------------------------------------
   Asymmetric on purpose: 58/42. Not cards — full panels divided by a
   single hairline, so the page does not read as a grid of components.
   ------------------------------------------------------------------- */

.paths { display: grid; grid-template-columns: 1.16fr 0.84fr; }
@media (max-width: 60rem) { .paths { grid-template-columns: 1fr; } }

.path {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem;
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1.5rem, 3.5vw, 3.25rem);
  text-decoration: none; color: var(--ink);
  border-top: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.path + .path { border-left: 1px solid var(--line); }
@media (max-width: 60rem) { .path + .path { border-left: 0; } }

.path--ind:hover { background: var(--teal-wash); }
.path--org:hover { background: var(--lavender-wash); }
.path:hover { color: var(--ink); }

.path__title { font-size: var(--t-lg); font-weight: 600; letter-spacing: -0.025em; }
.path__lede { font-size: var(--t-sm); color: var(--ink-2); max-width: 42ch; }
.path__body { font-size: var(--t-sm); color: var(--ink-3); max-width: 44ch; }
.path__go { margin-top: auto; padding-top: 1.25rem; }

/* A quiet index mark, not a badge. */
.path__mark { color: var(--teal); opacity: 0.8; }
.path__mark .icon { width: 1.15rem; height: 1.15rem; }
.path--org .path__mark { color: var(--lavender); }

/* ---- what we believe -----------------------------------------------
   Staggered rows rather than a four-column grid, so this section does
   not repeat the shape of any other.
   ------------------------------------------------------------------- */

.beliefs { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); max-width: 62rem; }
.belief {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 15rem) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: baseline;
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--line);
}
@media (max-width: 48rem) {
  .belief { grid-template-columns: 2.5rem 1fr; }
  .belief__because { grid-column: 2; }
}

/* Each row steps further in — the section reads as a progression rather
   than a list. */
.belief:nth-child(2) { padding-left: clamp(0rem, 2vw, 2rem); }
.belief:nth-child(3) { padding-left: clamp(0rem, 4vw, 4rem); }
.belief:nth-child(4) { padding-left: clamp(0rem, 6vw, 6rem); }

.belief__num { font-family: var(--serif); font-size: 1.35rem; color: var(--teal); line-height: 1; }
.belief__name { font-size: var(--t-md); font-weight: 600; letter-spacing: -0.02em; }
.belief__because { font-size: var(--t-sm); color: var(--ink-2); }

/* ---- impact band ---------------------------------------------------
   The one place oversized figures appear, and one of only two places
   the serif is used at all.
   ------------------------------------------------------------------- */

.impact {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.impact__figure {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1;
  letter-spacing: -0.02em; color: var(--ink);
}
.section--ink .impact__figure { color: #fff; }
.impact__label { font-size: var(--t-sm); color: var(--ink-3); margin-top: 0.5rem; }
.section--ink .impact__label { color: rgba(255,255,255,0.62); }
.impact__item:nth-child(2) .impact__figure { color: var(--teal); }
.impact__item:nth-child(3) .impact__figure { color: var(--lavender); }
/* Light, glowing variants for the dark-ink sections — recomputed for the
   new palette (the old values were a leftover violet/mint pairing that
   no longer matched which token is teal vs lavender). Both >=8:1 on ink. */
.section--ink .impact__item:nth-child(2) .impact__figure { color: #5FC9CC; }
.section--ink .impact__item:nth-child(3) .impact__figure { color: #B9AEFF; }

/* ---- Priyanka ------------------------------------------------------ */

.bio-grid {
  display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
@media (max-width: 56rem) { .bio-grid { grid-template-columns: 1fr; } }

.portrait {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--off-2); aspect-ratio: 4 / 5;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__caption { margin-top: 0.85rem; font-size: var(--t-sm); color: var(--ink-3); }

.credentials { display: grid; gap: 0.6rem; margin-top: 1.75rem; list-style: none; padding: 0; }
.credentials li {
  display: grid; grid-template-columns: 1.2rem 1fr; gap: 0.6rem;
  align-items: start; font-size: var(--t-sm); color: var(--ink-2);
}
.credentials .icon { color: var(--teal); margin-top: 0.22rem; }

/* ---- quotes --------------------------------------------------------
   Borderless. A quote does not need a container to be a quote, and
   boxing them was part of the "collection of rounded cards" problem.
   ------------------------------------------------------------------- */

.quote-slider { position: relative; }
.quote-slider__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.slider__controls { display: flex; gap: 0.5rem; }
.slider__btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line-2); border-radius: var(--r);
  background: #fff; color: var(--ink); cursor: pointer;
  transition: border-color 0.18s var(--ease);
}
.slider__btn:hover:not(:disabled) { border-color: var(--ink); }
.slider__btn:disabled { opacity: 0.3; cursor: default; }

.slider__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(min(84vw, 26rem), 26rem);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter); scroll-padding-inline: var(--gutter);
  padding-block: 0.25rem 1.5rem;
  scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
}
.slider__track > * { scroll-snap-align: start; }
.slider__track::-webkit-scrollbar { height: 5px; }
.slider__track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 100px; }

.quote { display: flex; flex-direction: column; gap: 1.1rem; height: 100%; }
.quote__mark { width: 1.6rem; height: 1.6rem; color: var(--teal); opacity: 0.5; }
.quote-slider--lavender .quote__mark { color: var(--lavender); }
.quote-slider--lavender .slider__btn:hover:not(:disabled) { border-color: var(--lavender); }
.quote__body { font-size: var(--t-md); line-height: 1.45; letter-spacing: -0.012em; color: var(--ink); }
.quote__who { margin-top: auto; font-size: var(--t-sm); color: var(--ink-3); }
.quote__name { display: block; font-weight: 600; color: var(--ink); }

/* ---- practice strip ------------------------------------------------ */

.practice-strip {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(min(62vw, 17rem), 17rem);
  gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter); padding-block: 0.25rem 1rem;
  scrollbar-width: none;
}
.practice-strip::-webkit-scrollbar { display: none; }
.practice-strip > * { scroll-snap-align: start; }
.practice-tile {
  aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden;
  background: var(--off-2); position: relative;
}
.practice-tile img { width: 100%; height: 100%; object-fit: cover; }
.practice-tile__caption {
  position: absolute; inset: auto 0 0 0; padding: 2rem 0.85rem 0.75rem;
  background: linear-gradient(transparent, rgba(27,23,37,0.78));
  color: #fff; font-size: var(--t-xs);
}

/* ---- start here (closing) ------------------------------------------ */

.start-here { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.start-here__wash {
  position: absolute; inset: -40% -10% auto -10%; height: 180%; pointer-events: none;
  background:
    radial-gradient(40% 44% at 20% 30%, rgba(151, 130, 255, 0.5), transparent 66%),
    radial-gradient(36% 40% at 78% 62%, rgba(94, 210, 205, 0.34), transparent 66%);
  filter: blur(22px);
}
.start-here > .wrap { position: relative; z-index: 1; }
.start-here h1, .start-here h2, .start-here h3 { color: #fff; }
.start-here h2 { font-size: var(--t-2xl); letter-spacing: -0.032em; }
.start-here p { color: rgba(255, 255, 255, 0.78); font-size: var(--t-md); }
.start-here a:not(.btn) { color: #fff; }

/* ---- cards — used on ONE section only ------------------------------ */

.grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }

.card {
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.5rem 1.4rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--teal); }
.card__meta { font-size: var(--t-sm); color: var(--ink-3); margin-top: auto; padding-top: 0.75rem; }
.card__price { font-family: var(--serif); font-size: var(--t-lg); }

/* ---- steps / journey ------------------------------------------------ */

.journey { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); max-width: 46rem; }
.journey__step {
  display: grid; grid-template-columns: 2.75rem 1fr; gap: 1.25rem; align-items: start;
}
.journey__num {
  font-family: var(--serif); font-size: 1.3rem; color: var(--teal); line-height: 1.2;
}
.journey__step h3 { margin-bottom: 0.3rem; }
.journey__step p { font-size: var(--t-sm); color: var(--ink-2); }

/* ---- icons / meta --------------------------------------------------- */

.icon { width: 1.1em; height: 1.1em; flex: 0 0 auto; vertical-align: -0.15em; color: inherit; }
.icon--lg { width: 1.5em; height: 1.5em; }

.icon-well {
  width: 2.5rem; height: 2.5rem; display: grid; place-items: center;
  border-radius: var(--r); background: var(--teal-wash); color: var(--teal-deep);
}
.icon-well--lavender { background: var(--lavender-wash); color: var(--lavender-deep); }
.icon-well--onDark { background: rgba(255,255,255,0.12); color: #fff; }
.icon-well .icon { width: 1.2rem; height: 1.2rem; }

.meta-row { display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; font-size: var(--t-sm); color: var(--ink-3); }
.meta-row span { display: inline-flex; align-items: center; gap: 0.35rem; }

.ticks { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.ticks li { display: grid; grid-template-columns: 1.25rem 1fr; gap: 0.55rem; align-items: start; font-size: var(--t-sm); }
.ticks .icon { color: var(--lavender); margin-top: 0.22rem; }
.section--ink .ticks .icon, .start-here .ticks .icon { color: #B9AEFF; }

/* ---- faq / prose ---------------------------------------------------- */

.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding-block: 1.15rem; min-height: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: var(--t-md); font-weight: 600; letter-spacing: -0.018em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.35rem; color: var(--teal); font-weight: 400; }
.faq details[open] summary::after { content: '–'; }
.faq details > div { padding-bottom: 1.25rem; font-size: var(--t-sm); color: var(--ink-2); }

.prose > * + * { margin-top: 1.05rem; }
.prose h2, .prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }

.pull {
  border-left: 2px solid var(--teal);
  padding-left: 1.25rem;
  font-family: var(--serif); font-size: var(--t-lg); line-height: 1.3;
  color: var(--ink); max-width: 34ch;
}

/* ---- forms ---------------------------------------------------------- */

/* Contact page's form + "reach out directly" sidebar split. Stacks below
   tablet width, same threshold as the hero — a form squeezed into ~55%
   of a phone's width is unusable, and the sidebar has nowhere left to go. */
.contact__grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.85fr);
  gap: clamp(2.5rem, 6vw, 4.5rem); align-items: start;
}
@media (max-width: 56rem) { .contact__grid { grid-template-columns: 1fr; } }
.contact__form { margin-top: 2rem; max-width: 32rem; }

.field { margin-block: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: var(--t-sm); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: var(--t-base);
  padding: 0.72rem 0.9rem; background: #fff;
  border: 1.5px solid var(--line-2); border-radius: var(--r); color: var(--ink);
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px var(--teal-wash);
}
.field--check label { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 400; font-size: var(--t-sm); }
.field--check input { width: auto; margin-top: 0.2rem; flex: 0 0 auto; }
.field-hint { font-size: var(--t-xs); color: var(--ink-3); margin-top: 0.3rem; }
.field-error { font-size: var(--t-xs); color: var(--bad); margin-top: 0.3rem; }
[aria-invalid="true"] { border-color: var(--bad) !important; }
.form-error { color: var(--bad); font-size: var(--t-sm); margin-top: 0.85rem; }
.optional { font-weight: 400; color: var(--ink-3); }
.stack > * + * { margin-top: 1rem; }

/* ---- notices -------------------------------------------------------- */

.flash { padding: 0.8rem var(--gutter); font-size: var(--t-sm); font-weight: 500;
  border-left: 3px solid var(--ink-3); background: var(--off); }
.flash--success { border-color: var(--ok); }
.flash--error   { border-color: var(--bad); }
.flash--warning { border-color: var(--warn); }

.notice {
  padding: 1rem 1.15rem; background: var(--off);
  border-left: 3px solid var(--teal); border-radius: var(--r-xs);
  font-size: var(--t-sm); color: var(--ink-2);
}
.notice--warn { border-left-color: var(--warn); }

.badge {
  display: inline-block; font-size: var(--t-xs); font-weight: 600;
  padding: 0.18rem 0.6rem; border-radius: var(--r-xs);
  border: 1px solid var(--line-2); color: var(--ink-3);
}
.badge--ok { border-color: var(--ok); color: var(--ok); }
.badge--warn { border-color: var(--warn); color: var(--warn); }

/* ---- booking wizard -------------------------------------------------- */

.wizard { max-width: 46rem; margin-inline: auto; padding-block: clamp(2rem, 6vw, 3.5rem); }
.wizard__head { margin-bottom: 2rem; display: grid; gap: 0.7rem; }

.steps { display: flex; gap: 0.45rem; list-style: none; padding: 0; margin-bottom: 2rem; flex-wrap: wrap; }
.steps__item {
  font-size: var(--t-xs); font-weight: 600; color: var(--ink-3);
  padding: 0.35rem 0.8rem; border: 1.5px solid var(--line-2); border-radius: var(--r-xs);
}
.steps__item::before { content: attr(data-step-label) '. '; }
.steps__item.is-current { border-color: var(--teal); color: var(--teal); background: var(--teal-wash); }
/* "Done" is a status, not a brand-audience colour — decoupled from the
   individuals/organisations palette so it doesn't shift with a rebrand. */
.steps__item.is-done { border-color: var(--ok); color: var(--ok); }

.tz-bar { display: flex; gap: 0.65rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; font-size: var(--t-sm); }
.tz-bar select { width: auto; max-width: 20rem; padding: 0.45rem 0.65rem; font-size: var(--t-sm); }

.week-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.week-nav p { font-weight: 600; font-size: var(--t-sm); }

.slot-grid { display: grid; gap: 1.5rem; }
.slot-grid[aria-busy="true"] { opacity: 0.5; }
.slot-grid__loading, .slot-grid__tz { color: var(--ink-3); font-size: var(--t-sm); }
.slot-day__label {
  font-size: var(--t-sm); font-weight: 700; margin-bottom: 0.6rem;
  padding-bottom: 0.4rem; border-bottom: 1px solid var(--line);
}
.slot-day__times { display: grid; grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr)); gap: 0.5rem; }
.slot {
  font: inherit; font-size: var(--t-sm); font-weight: 600;
  padding: 0.7rem 0.5rem; min-height: 48px;
  background: #fff; color: var(--ink);
  border: 1.5px solid var(--line-2); border-radius: var(--r); cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease);
}
.slot:hover { border-color: var(--teal); background: var(--teal-wash); color: var(--teal-deep); }
.chosen { font-size: var(--t-md); font-weight: 600; }
.policy { font-size: var(--t-sm); color: var(--ink-3); margin-block: 1.2rem; }

/* ---- checkout / confirmation ----------------------------------------- */

.checkout, .confirmed { max-width: 34rem; margin-inline: auto; padding-block: clamp(2.5rem, 8vw, 4.5rem); }
.summary { background: var(--off); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem; margin-block: 1.6rem; }
.summary__service { font-size: var(--t-md); font-weight: 600; }
.summary__when { color: var(--ink-2); font-size: var(--t-sm); margin-top: 0.25rem; }
.summary__price { font-family: var(--serif); font-size: var(--t-xl); margin-top: 0.85rem; }
.summary__ref { font-size: var(--t-xs); color: var(--ink-3); margin-top: 0.35rem; }
.hold-timer { font-size: var(--t-sm); font-weight: 600; color: var(--warn);
  padding: 0.65rem 0.95rem; background: #FFF8E8; border-radius: var(--r); margin-bottom: 1.2rem; }
.hold-timer.is-expired { color: var(--bad); background: #FDF1EF; }
.secure-note { font-size: var(--t-xs); text-align: center; margin-top: 0.85rem; color: var(--ink-3); }
.next-steps { margin-top: 1.6rem; font-size: var(--t-sm); color: var(--ink-3); }

/* ---- panels ---------------------------------------------------------- */

.body--panel { background: var(--off); }
.panel-header {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter); background: #fff; border-bottom: 1px solid var(--line);
}
.panel-header nav { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; font-size: var(--t-sm); font-weight: 500; }
@media (max-width: 42rem) {
  /* Nine links wrapping into several rows ate the top of every admin
     screen before any real content appeared. A single scrollable row —
     same pattern as the quote strip elsewhere — keeps it to one line
     and one thumb-swipe, on a screen this is genuinely used from. */
  .panel-header { flex-wrap: nowrap; }
  .panel-header nav {
    flex-wrap: nowrap; overflow-x: auto; scroll-behavior: smooth;
    gap: 1.1rem; padding-block: 0.15rem; margin-inline: calc(var(--gutter) * -0.4);
    padding-inline: calc(var(--gutter) * 0.4);
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .panel-header nav::-webkit-scrollbar { display: none; }
  .panel-header nav a, .panel-header nav .inline-form { flex: 0 0 auto; }
  .panel-header .brand { flex: 0 0 auto; }
}
.panel-header nav a:not(.btn) { color: var(--ink-2); text-decoration: none; }
.panel-header nav a:not(.btn):hover, .panel-header nav a:not(.btn)[aria-current="page"] { color: var(--ink); font-weight: 600; }
.panel-main { max-width: var(--wide); margin-inline: auto; padding: 2.5rem var(--gutter); }
.panel-main section { margin-bottom: 3rem; }
.panel-main h1 { font-size: var(--t-xl); margin-bottom: 2rem; }
.panel-main h2 { font-size: var(--t-md); margin-bottom: 1rem; }

.booking-list { list-style: none; padding: 0; display: grid; gap: 0.8rem; }
.booking-list__item {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.15rem;
}
.booking-list__item.is-past { opacity: 0.6; }
.booking-list__title { font-weight: 600; }
.booking-list__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.activity-list { list-style: none; padding: 0; display: grid; gap: 0.5rem; font-size: var(--t-sm); }
.empty { border: 1.5px dashed var(--line-2); border-radius: var(--r); padding: 2.5rem 1.5rem; text-align: center; color: var(--ink-3); }
.empty .btn { margin-top: 1.2rem; }
.copy-field { width: 100%; font-family: ui-monospace, Menlo, monospace; font-size: var(--t-xs);
  padding: 0.65rem 0.8rem; border: 1.5px solid var(--line-2); border-radius: var(--r); background: #fff; }

/* ---- auth ------------------------------------------------------------ */

.body--auth { display: grid; place-items: center; min-height: 100svh; padding: var(--gutter); background: var(--off); }
.auth-shell { width: 100%; max-width: 25rem; }
.auth-shell .brand { display: inline-flex; margin-bottom: 2rem; }
.auth-shell h1 { font-size: var(--t-lg); margin-bottom: 0.4rem; }
.auth-shell .lede { font-size: var(--t-sm); margin-bottom: 1.75rem; max-width: none; }
.auth-links { margin-top: 1.5rem; font-size: var(--t-sm); text-align: center; color: var(--ink-3); }

/* ---- footer ---------------------------------------------------------- */

.site-footer { background: var(--white); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4rem) 2rem; font-size: var(--t-sm); }
.site-footer a:not(.btn) { color: var(--ink-2); text-decoration: none; }
.site-footer a:not(.btn):hover { color: var(--ink); text-decoration: underline; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); margin-bottom: 2.5rem; }
.footer__col h3 { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.85rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.footer__bottom { padding-top: 1.75rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--t-xs); color: var(--ink-3); }
/* Crisis signposting is the one line on the site that must never be hard to
   read, so it takes body colour rather than the muted footer grey. */
.footer__disclaimer { max-width: 48ch; color: var(--ink-2); }
.social-row { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-row a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line-2); border-radius: var(--r); color: var(--ink-2);
}
.social-row a:hover { border-color: var(--ink); color: var(--ink); }

/* ---- error pages ----------------------------------------------------- */

.error-page { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.error-page h1 { font-size: var(--t-2xl); color: var(--ink-3); }
.error-page p { margin: 1rem auto 2rem; }

/* ---- movement --------------------------------------------------------
   Three moments on the whole site: the hero wash drifting, the journey
   line drawing once, and hover states. Not a reveal on every section.
   -------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

.draw-path { stroke-dasharray: var(--len, 1000); stroke-dashoffset: var(--len, 1000); }
.draw-path.is-in { transition: stroke-dashoffset 1.8s var(--ease); stroke-dashoffset: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__wash { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .draw-path { stroke-dashoffset: 0; }
  .slider__track { scroll-behavior: auto; }
}

@media print {
  .site-header, .site-footer, .slider__controls, .btn { display: none; }
  body { background: #fff; }
}

/* The journey line sits inline (not an <img>) so its path can be measured
   and drawn on scroll. */
.journey-art { width: 100%; height: auto; overflow: visible; }
