/* ═══════════════════════════════════════════════════════
   GROWING COUPLE — Landing
   Brand: Mocha Depth #422F15 · Golden Sand #C9A86A
   Bg:    Soft Blush #F8F1EA
   Type:  Playfair Display (display)  ·  DM Sans (text)
   ═══════════════════════════════════════════════════════ */

/* ─── Fonts — self-hosted (no requests to Google). Variable files: one per style + subset ─── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(Assets/Fonts/DMSans-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(Assets/Fonts/DMSans-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url(Assets/Fonts/PlayfairDisplay-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url(Assets/Fonts/PlayfairDisplay-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(Assets/Fonts/PlayfairDisplay-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(Assets/Fonts/PlayfairDisplay-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --mocha:        #422F15;
  --mocha-deep:   #2A1C08;
  --mocha-soft:   #6B5333;

  --blush:        #F8F1EA;
  --blush-deep:   #F0E5D0;
  --nude:         #EBD9CB;
  --bone:         #FCF8F1;
  --paper:        #F2EAD7;

  --gold:         #C9A86A;
  --gold-soft:    #EDCC7A;
  --gold-deep:    #AD7B00;

  --mauve:        #6F5358;

  --ink-90: rgba(66, 47, 21, 0.92);
  --ink-70: rgba(66, 47, 21, 0.70);
  --ink-50: rgba(66, 47, 21, 0.50);
  --ink-30: rgba(66, 47, 21, 0.28);
  --ink-15: rgba(66, 47, 21, 0.14);
  --ink-08: rgba(66, 47, 21, 0.08);

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --max:    1320px;
  --section-pad: clamp(120px, 16vw, 200px);   /* shared space above/below every section */

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

/* No transitions until the first frame is painted — stops phones (Safari especially)
   from animating the hidden mobile menu or the nav's scrolled state on page load.
   script.js removes .is-preload. */
.is-preload .nav, .is-preload .nav *, .is-preload .nav::before, .is-preload .nav::after { transition: none !important; }

/* ─── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  font-optical-sizing: auto;
  font-feature-settings: "kern", "liga", "calt", "ss01", "dlig";
}

body {
  background: var(--blush);
  color: var(--mocha);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  position: relative;
}

/* Brand focus rings — replaces the browser's blue default */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
  transition: outline-offset .2s var(--ease);
}
.btn:focus-visible,
.nav__cta:focus-visible,
.cta__form button:focus-visible { outline-offset: 4px; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font: inherit; color: inherit; }

::selection { background: var(--mocha); color: var(--blush); }

/* ─── Typography ─────────────────────────── */
/* Balanced multiline headings — auto-tuned line breaks */
.hero__tagline,
.essence__words,
.section-head__title,
.pillar__title,
.cta__title {
  text-wrap: balance;
}

.caption {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.caption--light { color: rgba(248, 241, 234, 0.55); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.eyebrow__line {
  width: 42px;
  height: 1px;
  background: var(--ink-50);
  transform-origin: left;
  animation: lineGrow 1s var(--ease) 0.3s both;
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background .5s var(--ease),
              color .5s var(--ease),
              border-color .5s var(--ease),
              transform .5s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { transition: transform .5s var(--ease); flex-shrink: 0; }
@media (hover: hover) { .btn:hover svg { transform: translateX(4px); } }

.btn--primary {
  background: var(--mocha);
  color: var(--blush);
}
@media (hover: hover) { .btn--primary:hover {
  background: var(--mocha-deep);
} }

.btn--ghost {
  border: 1px solid var(--ink-30);
  color: var(--mocha);
}
@media (hover: hover) { .btn--ghost:hover {
  background: var(--mocha);
  color: var(--blush);
  border-color: var(--mocha);
} }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  transition: padding .5s var(--ease),
              border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Soft top scrim while over the hero — keeps logo/menu legible against video */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(248, 241, 234, 0.85) 0%,
    rgba(248, 241, 234, 0.55) 55%,
    rgba(248, 241, 234, 0) 100%);
  transition: opacity .5s var(--ease);
}
.nav.is-scrolled::before { opacity: 0; }
/* The frosted bar lives on its own layer: a backdrop-filter on .nav itself would make the bar
   the frame of the fixed mobile menu sheet (links squeezed into the top-left while it animates) */
.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: rgba(248, 241, 234, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.nav.is-scrolled::after { opacity: 1; }
.nav.is-scrolled {
  padding: 14px var(--gutter);
  border-bottom-color: var(--ink-08);
}

.nav__logo {
  display: inline-flex;
  justify-self: start;
}
.nav__logo img {
  height: 48px;
  width: auto;
  transition: height .5s var(--ease);
}
.nav.is-scrolled .nav__logo img { height: 36px; }

.nav__menu {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav__menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  color: var(--ink-90);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.nav__menu a span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--gold);
  font-weight: 400;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--mocha);
  transition: right .55s var(--ease);
}
@media (hover: hover) { .nav__menu a:hover::after { right: 0; } }

.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 18px;
  border: 1px solid var(--ink-30);
  border-radius: 999px;
  transition: background .5s var(--ease),
              color .5s var(--ease),
              border-color .5s var(--ease);
}
@media (hover: hover) { .nav__cta:hover {
  background: var(--mocha);
  color: var(--blush);
  border-color: var(--mocha);
} }
.nav__cta [aria-hidden] { transition: transform .5s var(--ease); display: inline-block; }
@media (hover: hover) { .nav__cta:hover [aria-hidden] { transform: translateX(4px); } }
.nav__cta-short { display: none; }

/* ═══════════════════════════════════════════════════════
   HERO — A day in one screen + logo + tagline
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px var(--gutter) 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--blush);
}

/* ─── Dawn ──────────────────────────────────────────────
   A solid gold sun rises once from a hairline horizon behind the words, then rests.
   Size and rest height derive from --d (the disc diameter).       */
.hero { background: #F3E8E2; }            /* cool pre-dawn blush; warms via .dawn-sky */
.dawn-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 72%, rgba(237, 204, 122, 0.30), transparent 70%),
    linear-gradient(180deg, #F8EEDF 0%, var(--blush) 70%);
  animation: dawnWarm 7s var(--ease) 0.4s both;
}
@keyframes dawnWarm { from { opacity: 0; } to { opacity: 1; } }

.dawn {
  --d: min(40vw, 54vh, 560px);           /* disc diameter */
  --rest: 0.16;                          /* disc centre rests this × --d above the horizon */
  position: relative;
  z-index: -1;
  width: 100vw;
  height: 0;
  margin: calc(clamp(24px, 3.5vw, 40px) * -0.5) 0;   /* centred by the flex column */
  pointer-events: none;
}
/* Everything above the horizon — the sun is clipped where it meets the line */
.dawn__above {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100vh;
  overflow: hidden;
}
.dawn__sink {                            /* scroll lowers the sun a little (set by JS) */
  position: absolute;
  inset: 0;
  transform: translateY(calc(var(--sink, 0) * var(--d) * 0.45));
  will-change: transform;
}
.dawn__sun {
  --box: calc(var(--d) * 2.6);           /* stage for the disc and its glow */
  position: absolute;
  left: 50%;
  bottom: calc(var(--box) / -2);         /* centre on the horizon… */
  width: var(--box);
  height: var(--box);
  margin-left: calc(var(--box) / -2);
  transform: translateY(calc(var(--d) * var(--rest) * -1));   /* …then rest just above it */
  animation: dawnRise 8s cubic-bezier(0.25, 0.6, 0.3, 1) 0.5s both;
}
@keyframes dawnRise {
  from { transform: translateY(calc(var(--d) * 0.62)); }
  to   { transform: translateY(calc(var(--d) * var(--rest) * -1)); }
}
.dawn__sun > * { position: absolute; left: 50%; top: 50%; }
.dawn__disc {
  width: var(--d);
  height: var(--d);
  margin: calc(var(--d) / -2) 0 0 calc(var(--d) / -2);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #F8E7BC 0%, #EFD393 55%, #E3BF78 100%);
  opacity: 0.5;
}
.dawn__glow {
  width: calc(var(--d) * 2.2);
  height: calc(var(--d) * 2.2);
  margin: calc(var(--d) * -1.1) 0 0 calc(var(--d) * -1.1);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(237, 204, 122, 0.26), rgba(237, 204, 122, 0.08) 55%, transparent);
  animation: dawnGlow 16s ease-in-out 8.5s infinite;
}
@keyframes dawnGlow {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.06); opacity: .8; }
}

/* Horizon — the ·· —— lockup, drawn out from the centre */
.dawn__line {
  position: absolute;
  top: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 50%;
  opacity: .7;
}
.dawn__line--l { right: 50%; padding-left: 4%; }
.dawn__line--r { left: 50%;  padding-right: 4%; }
.dawn__line b { flex: 1; height: 1px; animation: dawnDraw 2.4s var(--ease) 0.2s both; }
.dawn__line--l b { background: linear-gradient(90deg, transparent, var(--gold) 30%); transform-origin: right; }
.dawn__line--r b { background: linear-gradient(90deg, var(--gold) 70%, transparent); transform-origin: left; }
.dawn__line i {
  width: 3px; height: 3px; border-radius: 50%; background: var(--gold);
  animation: heroFade 1.2s var(--ease) 1.8s both;
}
@keyframes dawnDraw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@keyframes spin { to { transform: rotate(360deg); } }

.hero__inner {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3.5vw, 40px);
}

.hero__logo {
  width: clamp(190px, 22vw, 320px);
  height: auto;
  animation: heroFadeRise 1.2s var(--ease-out) 0.6s both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeRise {
  from { opacity: 0; transform: translateY(22px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

.hero__inner .eyebrow {
  animation: heroFade 1.1s var(--ease) 0.9s both;
}
/* delay the eyebrow line grow so it draws with the eyebrow itself */
.hero__inner .eyebrow__line {
  animation: lineGrow 1s var(--ease) 1.0s both;
}

.hero__tagline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--mocha);
  max-width: 18em;
  margin: 0 auto;
  animation: heroFadeRise 1.2s var(--ease-out) 1.15s both;
}
.hero__tagline em {
  font-style: normal;
  font-weight: 400;
  color: var(--mocha);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFade 1.1s var(--ease) 1.45s both;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 8px;
  animation: heroFade 1.1s var(--ease) 1.7s both;
}
.hero__meta .dot { color: var(--gold); font-size: 9px; }

/* ═══════════════════════════════════════════════════════
   ESSENCE
   ═══════════════════════════════════════════════════════ */
.essence {
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  background: var(--blush);
  border-top: 1px solid var(--ink-08);
  position: relative;
}
.essence__ornament {
  width: 70px;
  height: auto;
  margin: 0 auto 36px;
  opacity: 0.6;
  animation: spin 60s linear infinite;
}
.essence .caption { display: block; margin-bottom: 28px; }

.essence__words {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--mocha);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35em 0.5em;
  margin-bottom: 36px;
}
.essence__words span { display: inline-block; }
.essence__words em {
  font-style: italic;
  font-weight: 400;
  color: var(--mocha-soft);
}

.essence__lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  max-width: 32em;
  margin: 0 auto;
  color: var(--ink-90);
}

/* ═══════════════════════════════════════════════════════
   WHY WE EXIST — manifesto · pillars · every stage
   ═══════════════════════════════════════════════════════ */
.why {
  padding: var(--section-pad) var(--gutter);
  background: var(--paper);
  text-align: center;
  overflow-x: clip;
}

/* Manifesto — words light up as you scroll past */
.manifesto {
  max-width: 17em;
  margin: 36px auto 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.125rem, 4.6vw, 3.875rem);
  line-height: 1.12;
  letter-spacing: -0.024em;
  color: var(--mocha);
  text-wrap: balance;
}
.manifesto em { font-style: italic; color: var(--mocha-soft); }
.manifesto .w {
  color: rgba(66, 47, 21, 0.16);
  transition: color .7s var(--ease);
}
.manifesto em .w { color: rgba(107, 83, 51, 0.16); }
.manifesto .w.is-lit { color: var(--mocha); }
.manifesto em .w.is-lit { color: var(--mocha-soft); }

.why__lead {
  max-width: 30em;
  margin: 40px auto 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-70);
}

/* Pillars — three cards, one shape, three moods */
.pillars {
  max-width: 1180px;
  margin: clamp(90px, 11vw, 140px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.pillar {
  position: relative;
  aspect-ratio: 4 / 5.3;
  border-radius: 28px;
  padding: 30px 30px 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
@media (hover: hover) { .pillar.is-in:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -40px rgba(42, 28, 8, 0.45);
} }
.pillar::before {                                  /* light / stars layer */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.pillar--safety {
  background: radial-gradient(120% 80% at 50% 30%, #F5E1B2 0%, #E0BD78 52%, #C9A86A 100%);
  color: var(--mocha);
}
.pillar--safety::before {
  background: radial-gradient(45% 32% at 50% 36%, rgba(255, 245, 215, 0.75), transparent 70%);
}
.pillar--presence {
  background: radial-gradient(120% 80% at 50% 25%, #3A2810 0%, #20140A 60%, #100804 100%);
  color: var(--bone);
}
.pillar--presence::before {
  background:
    radial-gradient(1.5px 1.5px at 18% 22%, var(--gold) 100%, transparent),
    radial-gradient(1px 1px at 78% 16%, var(--gold-soft) 100%, transparent),
    radial-gradient(1px 1px at 88% 44%, var(--gold) 100%, transparent),
    radial-gradient(1.5px 1.5px at 12% 52%, var(--gold-soft) 100%, transparent),
    radial-gradient(1px 1px at 30% 36%, var(--gold) 100%, transparent),
    radial-gradient(1px 1px at 68% 30%, var(--gold-soft) 100%, transparent),
    radial-gradient(60% 40% at 50% 38%, rgba(201, 168, 106, 0.14), transparent 70%);
  opacity: .9;
}
.pillar--understanding {
  background: radial-gradient(120% 80% at 50% 25%, #8C7076 0%, var(--mauve) 55%, #3F2E32 100%);
  color: var(--bone);
}
.pillar--understanding::before {
  background: radial-gradient(50% 34% at 50% 38%, rgba(242, 220, 162, 0.16), transparent 70%);
}

.pillar__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pillar__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  opacity: .85;
}
.pillar__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: .75;
}
.pillar__art {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 190px;
}
.pillar__art > * { grid-area: 1 / 1; }
.pillar__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 2.6vw, 2.375rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.pillar__body {
  margin-top: 12px;
  max-width: 22em;
  min-height: calc(1.55em * 3);          /* keeps the three titles on one line across cards */
  font-size: 0.96875rem;
  line-height: 1.55;
  opacity: .78;
}

/* i. Safety — ripples spreading from a sun, like a safe harbour */
.pillar__sun {
  width: 96px; height: 96px;
  background: var(--mocha);
  opacity: .85;
  -webkit-mask: url(Assets/Illustrations/sun_graphic3.svg) center / contain no-repeat;
          mask: url(Assets/Illustrations/sun_graphic3.svg) center / contain no-repeat;
  animation: spin 90s linear infinite;
}
.ripple {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(66, 47, 21, 0.45);
  opacity: 0;
  animation: ripple 7.5s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
}
.ripple:nth-child(2) { animation-delay: 2.5s; }
.ripple:nth-child(3) { animation-delay: 5s; }
.ripple--still {
  width: 150px; height: 150px;
  border-color: rgba(66, 47, 21, 0.16);
  opacity: 1;
  animation: none;
}
@keyframes ripple {
  0%   { transform: scale(.7);  opacity: 0; }
  15%  { opacity: .9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ii. Presence — "eyes up": a constellation draws itself, the ✦ breathes, now and then a shooting star */
.sky { width: 100%; max-width: 250px; overflow: visible; }
.sky__dust circle { fill: var(--gold-soft); opacity: .35; }
.sky__lines {
  fill: none;
  stroke: rgba(237, 204, 122, 0.42);
  stroke-width: .8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 3.6s cubic-bezier(0.45, 0, 0.2, 1) .5s;   /* how slowly the lines draw */
}
.sky__lines--branch { transition-delay: 3.2s; transition-duration: 1.6s; }
.pillar.is-in .sky__lines { stroke-dashoffset: 0; }

.sky__stars circle {
  fill: var(--gold-soft);
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 5s ease-in-out var(--d, 0s) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: .95; transform: scale(1); }
  50%      { opacity: .4;  transform: scale(.7); }
}
.sky__north {
  fill: #F8EBC6;
  transform-box: fill-box;
  transform-origin: center;
  animation: breathe 6s ease-in-out infinite;
}
.sky__glow {
  transform-box: fill-box;
  transform-origin: center;
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(.92); opacity: .85; }
  50%      { transform: scale(1.06); opacity: 1; }
}

.sky__shoot { opacity: 0; animation: shoot 13s linear 4.5s infinite; }   /* one streak every 13s */
.sky__shoot line { stroke-width: 1; stroke-linecap: round; }
.sky__shoot circle { fill: #F8EBC6; }
@keyframes shoot {
  0%   { transform: translate(132px, 8px); opacity: 0; animation-timing-function: cubic-bezier(0.3, 0.1, 0.4, 1); }
  2%   { opacity: 1; }
  12%  { transform: translate(50px, 38px); opacity: 0; }
  100% { transform: translate(50px, 38px); opacity: 0; }
}

.sky__horizon circle { fill: var(--gold); opacity: .8; }
.sky__horizon path {
  stroke: var(--gold);
  stroke-width: .8;
  opacity: .7;
}

/* iii. Understanding — two circles drifting together; the overlap glows */
.overlap { width: 100%; max-width: 230px; overflow: visible; }
.overlap__ring { fill: none; stroke: rgba(248, 241, 234, 0.72); stroke-width: 1; }
.overlap__lens { opacity: .85; }
.overlap__spark { fill: var(--bone); opacity: 0; }

/* Every stage */
.stages {
  max-width: 880px;
  margin: clamp(100px, 12vw, 150px) auto 0;
  display: grid;
  justify-items: center;
  gap: 26px;
}
.stages__line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  line-height: 1.25;
  letter-spacing: -0.016em;
  color: var(--mocha);
  text-wrap: balance;
}
.stages__line em { font-style: italic; color: var(--mocha-soft); }
.stages__close {
  font-size: 1rem;
  color: var(--ink-70);
}

/* ═══════════════════════════════════════════════════════
   SECTION HEAD (shared)
   ═══════════════════════════════════════════════════════ */
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(60px, 8vw, 96px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 20px;
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--mocha);
  margin-top: 4px;
}
.section-head__title em { font-style: normal; }
.section-head__lead {
  font-size: 1.0625rem;
  color: var(--ink-70);
  line-height: 1.6;
  max-width: 36em;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   APP — A first look (animated phone demos)
   ═══════════════════════════════════════════════════════ */
.app {
  padding: var(--section-pad) var(--gutter);
  background: var(--blush);
  border-top: 1px solid var(--ink-08);
  overflow-x: clip;
}

.demo {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
}
.demo + .demo { margin-top: clamp(110px, 13vw, 180px); }
.demo--flip .demo__stage { order: 2; }

.demo__stage {
  position: relative;
  display: grid;
  place-items: center;
}
/* Warm halo behind the phone */
.demo__stage::before {
  content: "";
  position: absolute;
  width: 150%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(237, 204, 122, 0.30), rgba(235, 217, 203, 0.35) 45%, transparent 72%);
  z-index: 0;
  pointer-events: none;
}

.demo__copy { max-width: 440px; }
.demo--flip .demo__copy { justify-self: end; }
.demo__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--mocha);
  margin: 18px 0 18px;
  text-wrap: balance;
}
.demo__title em { font-style: normal; color: var(--mocha-soft); }
.demo__lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 26em;
}

/* ─── Steps (synced with the phone) ─── */
.steps {
  list-style: none;
  margin-top: 40px;
  border-top: 1px solid var(--ink-08);
  counter-reset: step;
}
.steps__i { counter-increment: step; }
.steps__i button {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 4px;
  row-gap: 3px;
  padding: 16px 0 17px;
  text-align: left;
  border-bottom: 1px solid var(--ink-08);
}
.steps__i button::before {
  content: counter(step, lower-roman) ".";
  grid-row: 1 / span 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-30);
  transition: color .5s var(--ease);
}
.steps__t {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-50);
  transition: color .5s var(--ease);
}
.steps__d {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-50);
  opacity: 0.75;
  transition: color .5s var(--ease), opacity .5s var(--ease);
}
.steps__bar {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--mocha);
  transform: scaleX(0);
  transform-origin: left;
}
@media (hover: hover) { .steps__i button:hover .steps__t { color: var(--mocha); } }
.steps__i.is-on button::before { color: var(--gold-deep); }
.steps__i.is-on .steps__t { color: var(--mocha); }
.steps__i.is-on .steps__d { color: var(--ink-70); opacity: 1; }
.steps__i.is-on .steps__bar {
  animation: stepBar var(--dur, 4s) linear forwards;
  animation-play-state: var(--play, running);
}
.steps__i.is-done .steps__bar { transform: scaleX(1); opacity: .25; }
@keyframes stepBar { to { transform: scaleX(1); } }

.app__beta {
  margin: clamp(100px, 12vw, 150px) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 12px;
  font-size: 14px;
  color: var(--ink-70);
  text-align: center;
}
.app__beta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
.app__beta a {
  color: var(--mocha);
  font-weight: 500;
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 2px;
  transition: border-color .4s var(--ease);
}
@media (hover: hover) { .app__beta a:hover { border-color: var(--mocha); } }

/* ═══ Phone shell ═══════════════════════════ */
.phone {
  --ph-w: 300px;
  position: relative;
  z-index: 1;
  width: var(--ph-w);
  height: calc(var(--ph-w) * 2.08);
  padding: 10px;
  border-radius: 54px;
  background: linear-gradient(150deg, #4A3519 0%, #22170A 45%, #120B04 100%);
  box-shadow:
    inset 0 0 0 1px rgba(237, 204, 122, 0.22),
    inset 0 0 0 3px rgba(18, 11, 4, 0.9),
    0 60px 90px -45px rgba(42, 28, 8, 0.55),
    0 30px 50px -30px rgba(42, 28, 8, 0.35);
  user-select: none;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bone);
  color: var(--mocha);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
.phone__status {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  height: 52px;
  padding: 0 26px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 1.4s var(--ease);
}
.phone__island {
  position: absolute;
  top: 11px; left: 50%;
  width: 88px; height: 26px;
  margin-left: -44px;
  border-radius: 20px;
  background: #0B0703;
}
.phone__icons { display: flex; align-items: center; gap: 5px; }
.phone__icons i { display: block; background: currentColor; border-radius: 2px; opacity: .9; }
.phone__icons i:nth-child(1) {           /* signal */
  width: 16px; height: 10px;
  border-radius: 0;
  background:
    linear-gradient(currentColor, currentColor) 0    100% / 3px 40%  no-repeat,
    linear-gradient(currentColor, currentColor) 4px  100% / 3px 60%  no-repeat,
    linear-gradient(currentColor, currentColor) 8px  100% / 3px 80%  no-repeat,
    linear-gradient(currentColor, currentColor) 12px 100% / 3px 100% no-repeat;
}
.phone__icons i:nth-child(2) { display: none; }
.phone__icons i:nth-child(3) {           /* battery */
  width: 22px; height: 10px;
  border-radius: 3px;
  background: transparent;
  box-shadow: inset 0 0 0 1px currentColor, inset 0 0 0 2.5px transparent;
  position: relative;
}
.phone__icons i:nth-child(3)::after {
  content: "";
  position: absolute;
  inset: 2px 5px 2px 2px;
  border-radius: 1.5px;
  background: currentColor;
}

.app-caption {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
  transition: color 1.4s var(--ease);
}

.avatar {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--bone);
}
.avatar--1 { background: radial-gradient(circle at 35% 30%, #F3DDA0, var(--gold) 55%, #A9843F); }
.avatar--2 { background: radial-gradient(circle at 35% 30%, #B79AA0, var(--mauve) 60%, #4E3A3E); }

.tabbar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  height: 78px;
  padding: 14px 34px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--ink-08);
  background: rgba(252, 248, 241, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 1.4s var(--ease), border-color 1.4s var(--ease);
}
.tabbar::after {                              /* home indicator */
  content: "";
  position: absolute;
  bottom: 8px; left: 50%;
  width: 104px; height: 4px;
  margin-left: -52px;
  border-radius: 4px;
  background: var(--mocha);
  opacity: .85;
  transition: background 1.4s var(--ease);
}
.tabbar__i {
  width: 21px; height: 21px;
  background: var(--ink-30);
  -webkit-mask: var(--i) center / contain no-repeat;
          mask: var(--i) center / contain no-repeat;
  transition: background 1.4s var(--ease);
}
.tabbar__i.is-on { background: var(--gold-deep); }

/* Gold foil type */
.foil {
  background: linear-gradient(105deg, #A57520 0%, #C9A86A 28%, #F2DCA2 42%, #C9A86A 56%, #9A6F1E 100%);
  background-size: 260% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ═══ Journal ═══════════════════════════════ */
.journal__sky { position: absolute; inset: 0; z-index: -1; }
.journal__sky::before,
.journal__sky::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 1.6s var(--ease);
}
.journal__sky::before {
  background:
    radial-gradient(90% 38% at 85% 0%, rgba(243, 214, 150, 0.75), transparent 70%),
    linear-gradient(180deg, #F8EBD2 0%, var(--bone) 40%);
}
.journal__sky::after {
  opacity: 0;
  background:
    radial-gradient(80% 36% at 80% 4%, rgba(201, 168, 106, 0.20), transparent 70%),
    linear-gradient(180deg, #2E2010 0%, #1B1208 50%, #120B04 100%);
}
.journal__stars {
  position: absolute;
  inset: 0 0 72% 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 2s var(--ease) .4s;
  background:
    radial-gradient(1.5px 1.5px at 58% 22%, var(--gold-soft) 100%, transparent),
    radial-gradient(1px 1px at 70% 11%, var(--gold) 100%, transparent),
    radial-gradient(1px 1px at 92% 17%, var(--gold-soft) 100%, transparent),
    radial-gradient(1.5px 1.5px at 66% 36%, var(--gold) 100%, transparent),
    radial-gradient(1px 1px at 84% 42%, var(--gold) 100%, transparent),
    radial-gradient(1px 1px at 76% 27%, var(--gold-soft) 100%, transparent),
    radial-gradient(1px 1px at 96% 33%, var(--gold) 100%, transparent);
}
.journal__orb {
  position: absolute;
  z-index: 1;
  -webkit-mask: var(--m) center / contain no-repeat;
          mask: var(--m) center / contain no-repeat;
  transition: transform 1.8s var(--ease), opacity 1.2s var(--ease);
}
.journal__orb--sun {
  --m: url(Assets/Illustrations/sun_graphic2.svg);
  width: 128px; height: 128px;
  top: 34px; right: -26px;
  background: var(--gold);
  opacity: .9;
}
.journal__orb--moon {
  --m: url(Assets/Icons/moon.svg);
  width: 40px; height: 40px;
  top: 74px; right: 32px;
  background: linear-gradient(160deg, #F2DCA2, var(--gold));
  opacity: 0;
  transform: translateY(-36px) rotate(-20deg);
}

.journal[data-phase="evening"] .journal__sky::before { opacity: 0; }
.journal[data-phase="evening"] .journal__sky::after  { opacity: 1; }
.journal[data-phase="evening"] .journal__stars       { opacity: .9; }
.journal[data-phase="evening"] .journal__orb--sun    { opacity: 0; transform: translateY(120px) rotate(40deg); }
.journal[data-phase="evening"] .journal__orb--moon   { opacity: 1; transform: none; transition-delay: .5s; }
.journal[data-phase="evening"] .phone__status        { color: var(--bone); }
.journal[data-phase="evening"] .app-caption          { color: rgba(248, 241, 234, 0.5); }
.journal[data-phase="evening"] .tabbar {
  background: rgba(18, 11, 4, 0.72);
  border-color: rgba(248, 241, 234, 0.07);
}
.journal[data-phase="evening"] .tabbar::after   { background: var(--bone); }
.journal[data-phase="evening"] .tabbar__i       { background: rgba(248, 241, 234, 0.28); }
.journal[data-phase="evening"] .tabbar__i.is-on { background: var(--gold); }
.journal[data-phase="evening"] .avatar          { box-shadow: 0 0 0 2px #1B1208; }

.journal__pane {
  position: absolute;
  inset: 76px 26px 90px;
  transition: opacity .9s var(--ease), transform 1.1s var(--ease);
}
.journal__pane--evening {
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  color: var(--bone);
}
.journal[data-phase="evening"] .journal__pane--morning { opacity: 0; transform: translateY(-22px); }
.journal[data-phase="evening"] .journal__pane--evening { opacity: 1; transform: none; transition-delay: .55s; }

.journal__head { margin-bottom: 26px; }
.journal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.field { margin-bottom: 20px; }
.field__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-70);
  transition: color .6s var(--ease);
}
.field__line {
  min-height: 29px;
  padding: 6px 0 5px;
  border-bottom: 1px solid var(--ink-15);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.2;
  color: var(--mocha);
  transition: border-color .6s var(--ease);
}
.field.is-active .field__line { border-color: var(--gold); }
.field.is-active .field__label { color: var(--gold-deep); }
.field.is-typing .field__text::after {
  content: "";
  display: inline-block;
  width: 1px; height: 1.05em;
  margin-left: 2px;
  vertical-align: -0.15em;
  background: var(--gold-deep);
  animation: caret 1s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

.mood { display: grid; gap: 9px; margin-top: 10px; }
.mood__row { display: flex; align-items: center; gap: 10px; }
.mood__chips { display: flex; gap: 5px; }
.chip {
  padding: 4px 9px;
  border-radius: 99px;
  border: 1px solid var(--ink-15);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-70);
  white-space: nowrap;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}
.chip.is-on {
  background: var(--mocha);
  border-color: var(--mocha);
  color: var(--bone);
}
.chip.is-press { transform: scale(0.94); }

.journal__quote {
  margin-top: 26px;
  padding: 18px 18px 17px;
  border-radius: 16px;
  background: linear-gradient(160deg, #B9A48C, #A38D74);
  color: var(--bone);
  text-align: center;
}
.journal__quote-sun {
  display: block;
  width: 34px; height: 20px;
  margin: 0 auto 8px;
  background: rgba(252, 248, 241, 0.8);
  -webkit-mask: url(Assets/Illustrations/sun_graphic1.svg) center top / 34px 34px no-repeat;
          mask: url(Assets/Illustrations/sun_graphic1.svg) center top / 34px 34px no-repeat;
}
.journal__quote blockquote {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.3;
  text-wrap: balance;
}
.field__placeholder { color: rgba(248, 241, 234, 0.3); }
.field--later { margin-top: 22px; }

/* Evening colours */
.journal__pane--evening .field__label { color: rgba(248, 241, 234, 0.62); }
.journal__pane--evening .field__line  { border-color: rgba(248, 241, 234, 0.16); color: var(--bone); }
.journal__pane--evening .field.is-active .field__label { color: var(--gold); }
.journal__pane--evening .field.is-active .field__line  { border-color: var(--gold); }
.journal__pane--evening .field__text::after { background: var(--gold) !important; }

.sealed { display: grid; gap: 8px; margin-top: 11px; }
.sealed__note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(248, 241, 234, 0.05);
  border: 1px solid rgba(248, 241, 234, 0.09);
  opacity: .45;
  transition: opacity .6s var(--ease), border-color 1s var(--ease), background 1s var(--ease);
}
.sealed__note.is-writing,
.sealed__note.is-done { opacity: 1; }
.sealed__body { flex: 1; display: grid; min-height: 30px; align-items: center; }
.sealed__bars, .sealed__text { grid-area: 1 / 1; }
.sealed__bars { display: grid; gap: 6px; transition: opacity .6s var(--ease); }
.sealed__bars i {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(248, 241, 234, 0.14);
}
.sealed__bars i:first-child { width: 92%; }
.sealed__bars i:last-child  { width: 58%; }
.sealed__note.is-done .sealed__bars i { background: rgba(201, 168, 106, 0.32); }
.sealed__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.3;
  color: var(--bone);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.sealed__state { width: 16px; display: grid; place-items: center; font-size: 11px; color: var(--gold); }
.sealed__state > * { grid-area: 1 / 1; opacity: 0; transition: opacity .4s var(--ease); }
.sealed__note.is-writing .dots { opacity: 1; }
.sealed__note.is-done .tick { opacity: 1; }
.dots { display: flex; gap: 2px; }
.dots i {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot 1.2s ease-in-out infinite;
}
.dots i:nth-child(2) { animation-delay: .15s; }
.dots i:nth-child(3) { animation-delay: .3s; }
@keyframes dot { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

.sealed__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 10.5px;
  color: rgba(248, 241, 234, 0.55);
}
.seal {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.18);
  transition: box-shadow .8s var(--ease);
}

.field--sealed.is-open .sealed__bars { opacity: 0; }
.field--sealed.is-open .sealed__text { opacity: 1; transform: none; }
.field--sealed.is-open .sealed__note {
  border-color: rgba(201, 168, 106, 0.38);
  background: rgba(201, 168, 106, 0.07);
}
.field--sealed.is-open .sealed__note:nth-child(2) .sealed__text { transition-delay: .25s; }
.field--sealed.is-open .sealed__state .tick { opacity: 0; }
.field--sealed.is-open .seal { box-shadow: 0 0 0 6px rgba(201, 168, 106, 0); }

/* ═══ Soul check-in ═════════════════════════ */
.checkin {
  background:
    radial-gradient(110% 60% at 50% 0%, #FFFDF8 0%, rgba(252, 248, 241, 0) 70%),
    linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%);
}
.checkin__head { padding-top: 70px; text-align: center; }
.checkin__title {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  color: var(--mocha);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.deck {
  position: relative;
  width: 188px;
  height: 268px;
  margin: 26px auto 0;
  perspective: 1100px;
}
.deck__card {
  position: absolute;
  inset: 0;
  border-radius: 14px;
}
.deck__card--under {
  background: linear-gradient(160deg, #FFFDF8, #F5EEDF);
  box-shadow: 0 1px 0 rgba(66, 47, 21, 0.06), 0 10px 20px -12px rgba(66, 47, 21, 0.25);
  border: 1px solid rgba(66, 47, 21, 0.06);
}
.deck__card--under::before {                   /* same hairline as the card back */
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 9px;
  border: 1px solid rgba(201, 168, 106, 0.4);
}
.deck__card--u1 { transform: rotate(-3.5deg) translate(-5px, 5px); }
.deck__card--u2 { transform: rotate(4deg) translate(6px, 8px); }

.deck__card--top {
  z-index: 2;
  transition: transform .9s var(--ease), opacity .7s var(--ease);
}
.deck__card--top.is-lift  { transform: translateY(-12px) scale(1.03); }
.deck__card--top.is-away  { transform: translate(-140%, 10px) rotate(-14deg); opacity: 0; transition-duration: .9s, .6s; }
.deck__card--top.is-reset { transition: none; transform: translateY(26px) scale(.97); opacity: 0; }

.deck__inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 1.1s var(--ease);
}
.deck__card--top.is-flipped .deck__inner { transform: rotateY(180deg); }
.deck__card--top.is-reset .deck__inner { transition: none; }

.deck__face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: linear-gradient(160deg, #FFFDF8 0%, #F8F1E4 100%);
  box-shadow:
    inset 0 0 0 1px rgba(66, 47, 21, 0.06),
    0 18px 30px -18px rgba(66, 47, 21, 0.45);
  overflow: hidden;
}
.deck__face::before {                          /* gold hairline inset */
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 9px;
  border: 1px solid rgba(201, 168, 106, 0.45);
  pointer-events: none;
}
.deck__face--back { display: grid; place-items: center; }
.deck__logo {
  width: 124px; height: 68px;
  background: linear-gradient(105deg, #A57520 0%, #C9A86A 35%, #F2DCA2 50%, #C9A86A 65%, #9A6F1E 100%);
  -webkit-mask: url(Assets/Logo/Primary_logo_br-960.png) center / contain no-repeat;
          mask: url(Assets/Logo/Primary_logo_br-960.png) center / contain no-repeat;
}
.deck__face--front {
  transform: rotateY(180deg);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
}
.deck__brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 27px;
  line-height: .95;
  letter-spacing: -0.02em;
  align-self: flex-start;
}
.deck__card--top.is-flipped .deck__brand { animation: sheen 2.4s var(--ease) .5s both; }
@keyframes sheen {
  from { background-position: 100% 0; }
  to   { background-position: 0% 0; }
}
.deck__rule {
  display: block;
  height: 1px;
  margin: 16px 0 13px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 106, 0.2));
}
.deck__headline {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.deck__prompt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.38;
  color: var(--mocha-soft);
}

.tap {
  position: absolute;
  left: 50%; top: 58%;
  z-index: 3;
  width: 46px; height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.10);
  box-shadow: 0 0 0 1px rgba(173, 123, 0, 0.45);
  opacity: 0;
  pointer-events: none;
}
.tap.is-on { animation: tap .9s var(--ease) both; }
@keyframes tap {
  0%   { opacity: 0; transform: scale(1.3); }
  30%  { opacity: 1; transform: scale(.85); }
  100% { opacity: 0; transform: scale(1.5); }
}

.turns { margin-top: 28px; text-align: center; }
.turns__hint {
  min-height: 16px;
  font-size: 11.5px;
  color: var(--ink-70);
  transition: opacity .4s var(--ease);
}
.turns__hint.is-swap { opacity: 0; }
.turns__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
}
.turns__line { width: 30px; height: 1px; background: var(--ink-15); }
.ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
}
.ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
  fill: none;
  stroke-width: 1.5;
}
.ring circle { stroke: var(--ink-15); }
.ring .ring__fill {
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-dasharray: 100.6;
  stroke-dashoffset: 100.6;
}
.ring .avatar { width: 30px; height: 30px; }
.turn { transition: opacity .5s var(--ease); opacity: .55; }
.turn.is-active, .turn.is-done { opacity: 1; }
.turn.is-active .ring__fill {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset var(--dur, 3s) linear;
}
.turn.is-done .ring__fill { stroke-dashoffset: 0; }

.toast {
  position: absolute;
  left: 50%; top: 262px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 99px;
  background: var(--mocha);
  color: var(--bone);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 12px 24px -12px rgba(42, 28, 8, 0.5);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity .6s var(--ease), transform .8s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.toast__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

@media (max-width: 900px) {
  .demo { grid-template-columns: 1fr; gap: 56px; max-width: 520px; }
  .demo--flip .demo__stage { order: 0; }
  .demo--flip .demo__copy { justify-self: start; }

  /* Stacked, the phone and its steps are never on screen together —
     so the list becomes calm, plain text: all steps lit, no progress bars, no clicks */
  .steps__i button { pointer-events: none; }
  .steps__i button::before { color: var(--gold-deep); }
  .steps__t { color: var(--mocha); }
  .steps__d { color: var(--ink-70); opacity: 1; }
  .steps__bar { display: none; }
}
@media (max-width: 380px) {
  .phone { zoom: .88; }
}

/* ═══ iii. Couple in Balance — a short film on one stage ═════════════
   Scenes (data-scene on the card):
   a · Partner 1 writes — their phone large on the left, words on the right
   b · Partner 1's phone sinks away, Partner 2's rises on the right; words move left
   c · zoom out — both phones, words in the centre; they draw a card together
   d · the card pops out of Partner 1's phone and takes its place, tilted
   Phones always enter and leave from below — two phones, picked up and put down.
   Actors are placed by --x/--y (centre, in stage px), --s (scale), --o.
   The stage has a fixed native size and is scaled by --z to fit.          */
.balance {
  --stage-w: 1080px;
  --stage-h: 780px;
  --zmax: 0.95;
  --glide: 1.1s;                         /* phone moves */
  --big: 1.55;                           /* zoom on the phone that's typing */
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  max-width: 1180px;
  margin: clamp(110px, 13vw, 180px) auto 0;
}

.balance__head {
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}
.balance__head .demo__title { margin: 14px 0 16px; }
.balance__head .demo__lead  { margin: 0 auto; max-width: 34em; }

/* The card — dusk layer over warm daylight, fading as the scenes warm up */
.balance__card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
  color: var(--bone);
  background:
    radial-gradient(70% 60% at 50% 38%, rgba(237, 204, 122, 0.45), transparent 70%),
    linear-gradient(180deg, #F6EAD3 0%, #EFDDC0 100%);
  transition: color 1.4s var(--ease);
}
.balance__card[data-scene="c"],
.balance__card[data-scene="d"] { color: var(--mocha); }
.balance__dusk {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(201, 168, 106, 0.16), transparent 70%),
    radial-gradient(90% 70% at 50% 110%, rgba(26, 16, 18, 0.5), transparent 70%),
    linear-gradient(180deg, #5C4347 0%, #4A3438 100%);
  transition: opacity 1.6s var(--ease);
}
[data-scene="b"] .balance__dusk { opacity: .82; }
[data-scene="c"] .balance__dusk { opacity: .3; }
[data-scene="d"] .balance__dusk { opacity: 0; }

.stage { position: relative; height: calc(var(--stage-h) * var(--z, 1)); transition: opacity .6s var(--ease); }
.stage.is-out { opacity: 0; }
.stage__inner {
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--stage-w);
  height: var(--stage-h);
  margin-left: calc(var(--stage-w) / -2);
  transform: scale(var(--z, 1));
  transform-origin: 50% 0;
}

/* ─── Actors ─── */
.actor {
  --x: 0px; --y: 0px; --s: 1; --o: 1;
  position: absolute;
  left: 0; top: 0;
  opacity: var(--o);
  transform: translate(var(--x), var(--y)) translate(-50%, -50%) scale(var(--s));
  transition: transform var(--glide) var(--ease-io), opacity .6s var(--ease);
}
/* big phone: top edge ~110px down, the rest runs off the bottom of the card */
.actor--p1 { --x: 300px; --y: calc(110px + 312px * var(--big)); --s: var(--big); }
.actor--p2 { --x: 780px; --y: 1500px; --s: var(--big); }                 /* waiting below the frame */
.actor--card { --x: 300px; --y: 400px; --o: 0; --rz: -2deg; transition: none; }

/* b — Partner 1 puts their phone down; Partner 2's comes up on the right */
[data-scene="b"] .actor--p1 { --y: 1500px; transition: transform .9s cubic-bezier(0.55, 0, 0.75, 0.2); }
[data-scene="b"] .actor--p2 { --y: calc(110px + 312px * var(--big)); transition: transform var(--glide) var(--ease-out) .25s; }

/* c — zoom out: Partner 2's phone settles right; Partner 1's rises back in on the left */
[data-scene="c"] .actor--p1 { --x: 215px; --y: 400px; --s: 0.78; transition: transform var(--glide) var(--ease-out) .2s; }
[data-scene="c"] .actor--p2 { --x: 865px; --y: 400px; --s: 0.78; }

/* d — the card lifts out of Partner 1's phone; both phones go down */
[data-scene="d"] .actor--p1 { --x: 215px; --y: 1400px; --s: 0.78; transition: transform .8s cubic-bezier(0.55, 0, 0.75, 0.2) .1s; }
[data-scene="d"] .actor--p2 { --x: 865px; --y: 1400px; --s: 0.78; transition: transform .8s cubic-bezier(0.55, 0, 0.75, 0.2) .2s; }
[data-scene="d"] .actor--card {
  --x: 320px; --y: 400px; --s: 1.9; --rz: -14deg; --o: 1;
  transition: transform 1.1s cubic-bezier(0.3, 1.15, 0.45, 1), opacity .2s var(--ease);
}
.actor--card { transform: translate(var(--x), var(--y)) translate(-50%, -50%) rotate(var(--rz)) scale(var(--s)); }

/* The popped-out card */
.bigcard {
  position: relative;
  width: 196px;
  height: 262px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: linear-gradient(160deg, #FFFDF8 0%, #F8F1E4 100%);
  box-shadow: 0 30px 50px -26px rgba(66, 47, 21, 0.5), 0 10px 20px -12px rgba(66, 47, 21, 0.3);
}
.bigcard::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 9px;
  border: 1px solid rgba(201, 168, 106, 0.45);
}

.phone--bal {
  box-shadow:
    inset 0 0 0 1px rgba(237, 204, 122, 0.3),
    inset 0 0 0 3px rgba(18, 11, 4, 0.9),
    0 50px 80px -40px rgba(20, 10, 6, 0.6),
    0 24px 40px -26px rgba(20, 10, 6, 0.45);
}
.bphone {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  clip-path: inset(0 round 44px);   /* keeps the tab bar's backdrop blur inside the corners */
  background: var(--bone);
}
/* Screens change in place, like the app navigating */
.bphone .phone__screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease), visibility 0s linear .6s;
}
.bphone .bs__body { transform: translateY(10px); transition: transform .9s var(--ease); }
.bphone .phone__screen.is-current {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity .8s var(--ease) .12s, visibility 0s;
}
.bphone .phone__screen.is-current .bs__body { transform: none; transition-delay: .12s; }

/* ─── Words — one block per scene, placed beside or between the phones ─── */
.beat {
  position: absolute;
  top: 380px;
  width: 380px;
  opacity: 0;
  transform: translateY(calc(-50% + 12px));
  transition: opacity .35s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.beat--a, .beat--d { left: 610px; }
.beat--b { left: 90px; }
.beat--c { left: 380px; width: 320px; text-align: center; }
[data-scene="a"] .beat--a,
[data-scene="b"] .beat--b,
[data-scene="c"] .beat--c,
[data-scene="d"] .beat--d {
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity .7s var(--ease) .4s, transform .8s var(--ease) .4s;
}
[data-scene="b"] .beat--b { transition-delay: .85s; }   /* wait for Partner 1's phone to clear */
.beat__who {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: calc(12px / var(--z, 1));
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: .75;
}
.beat__who .avatar { width: calc(14px / var(--z, 1)); height: calc(14px / var(--z, 1)); box-shadow: none; }
.beat__pair { display: inline-flex; }
.beat__pair .avatar + .avatar { margin-left: calc(-4px / var(--z, 1)); }
.beat__title {
  margin: calc(14px / var(--z, 1)) 0 calc(14px / var(--z, 1));
  font-family: var(--serif);
  font-weight: 400;
  font-size: calc(44px / var(--z, 1));
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.beat__text {
  max-width: 21em;
  font-size: calc(17px / var(--z, 1));
  line-height: 1.6;
  opacity: .78;
  text-wrap: pretty;
}
.beat--c .beat__text { margin: 0 auto; }

/* ─── Beam — the ·· —— △ —— ·· lockup, as the section's emblem.
   It arrives tilted and levels once as the heading comes into view. ─── */
.scale__beam {
  position: relative;
  display: block;
  width: 84px;
  height: 22px;
  margin: 0 auto 18px;
  color: var(--gold);
}
.scale__arm {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 2px;
  margin-top: -1px;
  transform: rotate(-10deg);
  transition: transform 2.6s var(--ease-io) .5s;
}
.scale__beam.is-in .scale__arm { transform: none; }
.scale__arm b { flex: 1; height: 1.25px; background: currentColor; border-radius: 2px; }
.scale__arm i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.scale__fulcrum {
  position: absolute;
  left: 50%;
  top: 1px;
  width: 16px;
  margin-left: -8px;
  overflow: visible;
}
.scale__fulcrum path { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linejoin: round; }
.scale__beam::after {            /* ground */
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 44px;
  height: 1px;
  margin-left: -22px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: .5;
}

/* Jumping between scenes, and the reset between loops, cut instead of glide */
.balance.is-ff .actor, .balance.is-ff .beat, .balance.is-ff .balance__dusk,
.balance__card.is-cut .actor, .balance__card.is-cut .beat, .balance__card.is-cut .balance__dusk { transition: none !important; }

/* ─── Controls — arrows + numerals; the active numeral fills while it plays ─── */
.scale__nav { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: clamp(14px, 2vw, 20px); color: var(--mocha); }
.scale__steps { list-style: none; display: flex; gap: 2px; }
.scale__steps button {
  position: relative;
  min-width: 30px;
  padding: 6px 4px 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: inherit;
  opacity: .4;
  transition: opacity .5s var(--ease), color .5s var(--ease);
}
@media (hover: hover) { .scale__steps button:hover { opacity: .8; } }
.scale__steps .is-on button { opacity: 1; color: var(--gold-deep); }
.scale__bar {
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}
.scale__steps .is-on .scale__bar { animation: scaleBar var(--dur, 5s) linear both; animation-play-state: var(--play, running); }
@keyframes scaleBar { to { transform: scaleX(1); } }
.scale__arrow {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: inherit;
  opacity: .5;
  transition: opacity .4s var(--ease), background .4s var(--ease);
}
@media (hover: hover) { .scale__arrow:hover { opacity: 1; background: color-mix(in srgb, currentColor 10%, transparent); } }
.scale__arrow svg { width: 16px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Narrow screens: a tall stage — phone on top, words underneath.
   The swap slides sideways here, since the words sit below the phone. ─── */
.balance.is-narrow { --stage-w: 720px; --stage-h: 1500px; --zmax: 1; --big: 1.5; }
.balance.is-narrow .balance__card { border-radius: 28px; }
.is-narrow .actor--p1 { --x: 360px; --y: calc(40px + 312px * var(--big)); }
.is-narrow .actor--p2 { --x: 1200px; --y: calc(40px + 312px * var(--big)); }
.is-narrow .actor--card { --x: 360px; --y: 480px; }
.is-narrow [data-scene="b"] .actor--p1 { --x: -480px; --y: calc(40px + 312px * var(--big)); transition: transform var(--glide) var(--ease-io); }
.is-narrow [data-scene="b"] .actor--p2 { --x: 360px; transition: transform var(--glide) var(--ease-io) .1s; }
.is-narrow [data-scene="c"] .actor--p1 { --x: 196px; --y: 480px; --s: 0.95; }
.is-narrow [data-scene="c"] .actor--p2 { --x: 524px; --y: 480px; --s: 0.95; }
.is-narrow [data-scene="d"] .actor--p1 { --x: -300px; --y: 480px; --s: 0.95; }
.is-narrow [data-scene="d"] .actor--p2 { --x: 1020px; --y: 480px; --s: 0.95; }
.is-narrow [data-scene="d"] .actor--card { --x: 360px; --y: 500px; --s: 2.3; --rz: -10deg; }
.is-narrow .beat { left: 50px; top: 1085px; width: 620px; text-align: center; transform: translateY(12px); }
.is-narrow [data-scene="a"] .beat--a,
.is-narrow [data-scene="b"] .beat--b,
.is-narrow [data-scene="c"] .beat--c,
.is-narrow [data-scene="d"] .beat--d { transform: none; }
.is-narrow .beat__text { margin: 0 auto; }
.is-narrow .beat__title { font-size: calc(30px / var(--z, 1)); }
.is-narrow .beat__text { font-size: calc(16px / var(--z, 1)); }

/* ─── Screen content ─── */
.bs { background: linear-gradient(180deg, #FFFDF8 0%, var(--bone) 45%, var(--paper) 100%); }
.bs--calm { background: radial-gradient(90% 50% at 50% 30%, rgba(237, 204, 122, 0.22), transparent 70%), linear-gradient(180deg, #FFFDF8, var(--bone)); }
.bs--dive { background: radial-gradient(90% 55% at 50% 45%, #3A2810 0%, #1B1208 65%, #120B04 100%); color: var(--bone); }
.bs--dive .phone__status { color: var(--bone); }
.bs--dive .app-caption { color: rgba(248, 241, 234, 0.5); }
.bs--dive .bs__q { color: var(--bone); }
.bs--dive .tabbar { background: rgba(18, 11, 4, 0.72); border-color: rgba(248, 241, 234, 0.07); }
.bs--dive .tabbar::after { background: var(--bone); }
.bs--dive .tabbar__i { background: rgba(248, 241, 234, 0.28); }
.bs--dive .tabbar__i.is-on { background: var(--gold); }

.bs__body {
  position: absolute;
  inset: 72px 24px 90px;
  display: flex;
  flex-direction: column;
}
.bs--calm .bs__body { align-items: center; text-align: center; }
.bs__title {
  margin-top: 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.bs__text { margin-top: 10px; font-size: 13px; line-height: 1.5; color: var(--ink-70); max-width: 20em; }
.bs__q {
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--mocha);
}
.bs__who {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.bs__who .avatar { width: 16px; height: 16px; box-shadow: none; }
.bs__note-card {
  padding: 12px 14px 13px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--ink-08);
}
.bs__note-card p {
  margin-top: 7px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-15);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.35;
  color: var(--mocha);
}
.bs__hint { margin-top: 8px; font-size: 11px; color: var(--ink-50); text-align: center; }
.bs__feel { margin-bottom: 16px; }
.bs__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.bs__chips .chip { font-size: 11px; padding: 5px 10px; }

/* Breathing circle */
.breath {
  position: relative;
  width: 150px; height: 150px;
  margin: 26px 0 22px;
  display: grid;
  place-items: center;
}
.breath span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(173, 123, 0, 0.35);
  animation: breathe 8s ease-in-out infinite;
}
.breath span:nth-child(2) { inset: 18px; border-color: rgba(173, 123, 0, 0.25); animation-delay: .25s; }
.breath span:nth-child(3) { inset: 36px; background: radial-gradient(circle, rgba(237, 204, 122, 0.45), rgba(237, 204, 122, 0.08)); border: 0; animation-delay: .5s; }
.breath em {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
}
@keyframes breathe {
  0%, 100% { transform: scale(.82); opacity: .7; }
  45%, 55% { transform: scale(1);   opacity: 1; }
}
.bs__btn {
  padding: 12px 26px;
  border-radius: 99px;
  background: var(--mocha);
  color: var(--bone);
  font-size: 13px;
  font-weight: 500;
}
.bs__note { margin-top: 12px; font-size: 11px; color: var(--ink-50); }

/* Soul Dive card */
.dive {
  position: relative;
  align-self: center;
  width: 196px;
  margin-top: 6px;
  perspective: 900px;
  transform: rotate(-2deg);
}
.dive__brand { font-family: var(--serif); font-weight: 500; font-size: 28px; line-height: .95; letter-spacing: -0.02em; align-self: flex-start; }
.dive__rule { height: 1px; margin: 16px 0 13px; background: linear-gradient(90deg, var(--gold), rgba(201, 168, 106, 0.2)); }
.dive__head { font-size: 12.5px; font-weight: 500; color: var(--gold-deep); margin-bottom: 9px; }
.dive__text { font-family: var(--serif); font-style: italic; font-size: 13px; line-height: 1.4; color: var(--mocha-soft); }

/* Back in balance */
.bs__insight {
  margin-top: 22px;
  padding: 20px 18px 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, #B9A48C, #A38D74);
  color: var(--bone);
}
.bs__insight p { font-family: var(--serif); font-size: 16px; line-height: 1.3; text-wrap: balance; }
.bs__pair { display: inline-flex; align-items: center; gap: 0; margin-top: 12px; font-size: 10.5px; opacity: .85; }
.bs__pair .avatar { width: 16px; height: 16px; box-shadow: 0 0 0 1.5px #AE9880; }
.bs__pair .avatar + .avatar { margin-left: -4px; margin-right: 8px; }
.bs__saved {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 99px;
  background: var(--mocha);
  color: var(--bone);
  font-size: 11px;
}

/* ─── What the partners do, inside the screens ─── */
/* Tap ripple — positioned on the touched element by the script */
.btap {
  position: absolute;
  z-index: 10;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.16);
  box-shadow: 0 0 0 1px rgba(173, 123, 0, 0.5);
  opacity: 0;
  pointer-events: none;
}
.btap.is-on { animation: tap .9s var(--ease) both; }
.is-press { transform: scale(0.94); transition: transform .16s ease; }

/* Writing fields: empty → active → typing (caret) → shared */
.bs__field { transition: border-color .6s var(--ease), background .6s var(--ease), box-shadow .6s var(--ease); }
.bs__field p { min-height: 2.7em; }
.bs__field.is-active { border-color: rgba(201, 168, 106, 0.7); background: #fff; box-shadow: 0 8px 20px -14px rgba(66, 47, 21, 0.35); }
.bs__ph { color: var(--ink-30); font-style: italic; }
.bs__typed:not(:empty) + .bs__ph { display: none; }
.is-typing .bs__typed::after {
  content: "";
  display: inline-block;
  width: 1px; height: 1.05em;
  margin-left: 2px;
  vertical-align: -0.15em;
  background: var(--gold-deep);
  animation: caret 1s steps(1) infinite;
}
.is-typing .bs__typed:empty + .bs__ph { display: none; }

.bs__actions { display: flex; justify-content: flex-end; min-height: 30px; margin: -2px 0 6px; }
.bs__done {
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--mocha);
  color: var(--bone);
  font-size: 11px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .5s var(--ease), color .5s var(--ease);
}
.bs__done.is-ready { opacity: 1; transform: none; }
.bs__done.is-sent { background: transparent; color: var(--gold-deep); padding-right: 2px; }

/* Soul Dive — the card flips when drawn; whoever's turn it is glows */
.dive__inner {
  position: relative;
  width: 100%;
  height: 262px;
  transform-style: preserve-3d;
  transition: transform 1.1s var(--ease);
}
.dive.is-flipped .dive__inner { transform: rotateY(180deg); }
.dive__face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.6);
}
.dive__face--back {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #3B2A12, #22170A);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 106, 0.35), 0 24px 40px -20px rgba(0, 0, 0, 0.6);
}
.dive__face--back .deck__logo { width: 104px; height: 58px; }
.dive__face--front {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 20px;
  background: linear-gradient(160deg, #FFFDF8 0%, #F8F1E4 100%);
  transform: rotateY(180deg);
}
.dive__face--front::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 9px;
  border: 1px solid rgba(201, 168, 106, 0.45);
}
.bs__turn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 11px;
  color: rgba(248, 241, 234, 0.7);
  transition: opacity .4s var(--ease);
}
.bs__turn.is-swap { opacity: 0; }
.bs__turn .bs__pair { margin-top: 0; opacity: 1; }
.bs__turn .bs__pair .avatar { box-shadow: 0 0 0 1.5px #1B1208; }
.bs__turn .avatar { width: 16px; height: 16px; box-shadow: 0 0 0 0 rgba(237, 204, 122, 0.5); }
.bs__turn.is-live .avatar { animation: speak 1.8s ease-out infinite; }
@keyframes speak {
  0%   { box-shadow: 0 0 0 0 rgba(237, 204, 122, 0.55); }
  100% { box-shadow: 0 0 0 9px rgba(237, 204, 122, 0); }
}

/* Fast-forward (clicking a step): jump states without transitions */
.is-ff .phone *, .is-ff .phone *::before, .is-ff .phone *::after { transition: none !important; }

/* ═══════════════════════════════════════════════════════
   QUOTE — the last word gathers itself
   ═══════════════════════════════════════════════════════ */
.quote {
  padding: clamp(140px, 18vw, 220px) var(--gutter) clamp(120px, 15vw, 190px);
  background: var(--blush);
  text-align: center;
  overflow-x: clip;
}
.quote__ornament {
  width: 76px;
  height: auto;
  margin: 0 auto 40px;
  opacity: 0.6;
}
.quote__text { max-width: var(--max); margin: 0 auto; }
.quote__line {
  text-wrap: balance;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.22;
  letter-spacing: -0.022em;
  color: var(--mocha);
}
.quote__line em { font-style: italic; color: var(--mocha-soft); }

.gather {
  --p: 1;                                   /* 0 = scattered, 1 = gathered (set by JS) */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  margin-top: clamp(110px, 13vw, 180px);
  isolation: isolate;
}
.gather__word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--mocha);
  white-space: nowrap;
}
.gather__word .l {
  display: inline-block;
  transform: translateX(calc(var(--o) * (1 - var(--p)) * 0.55em));
  opacity: calc(0.18 + 0.82 * var(--p));
  will-change: transform;
}

/* Flanking lockup lines: ·· —— Together. —— ·· */
.gather__rule {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: none;
  opacity: var(--p);
}
.gather__rule i {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.gather__rule b {
  display: block;
  width: clamp(28px, 6vw, 90px);
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(var(--p));
}
.gather__rule--l b { transform-origin: right; }
.gather__rule--r b { transform-origin: left; }

/* ═══════════════════════════════════════════════════════
   NUMBERS
   ═══════════════════════════════════════════════════════ */
.numbers {
  padding: 0 var(--gutter) clamp(120px, 16vw, 180px);
  background: var(--blush);
}
.numbers__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
  padding: 56px 0;
  gap: 24px;
}
.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.numbers__big {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--mocha);
}
.numbers__big small {
  font-size: 0.34em;
  font-style: italic;
  color: var(--gold);
  margin-left: 4px;
}
.numbers__lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-70);
}
.numbers__divider {
  width: 1px;
  height: 56px;
  background: var(--ink-15);
}

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */
.cta {
  padding: var(--section-pad) var(--gutter);
  background: var(--mocha);
  color: var(--blush);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__art {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(360px, 46vw, 680px);
  opacity: 0.14;
  filter: invert(1) sepia(0.4) hue-rotate(-10deg) saturate(0.9);
  animation: float 14s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50%      { transform: translateY(calc(-50% - 12px)) rotate(2deg); }
}
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta__logo {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 16px;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.018em;
  max-width: 22em;
  color: var(--bone);
}
.cta__title em {
  font-style: normal;
  color: var(--gold);
}

.cta__form {
  width: 100%;
  max-width: 540px;
  display: flex;
  gap: 8px;
  background: rgba(248, 241, 234, 0.06);
  border: 1px solid rgba(248, 241, 234, 0.18);
  border-radius: 999px;
  padding: 8px;
  margin-top: 20px;
  transition: border-color .4s var(--ease);
  position: relative;
}
.cta__form:focus-within { border-color: var(--gold); }
.cta__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 14px 22px;
  color: var(--blush);
  font-size: 0.9375rem;
  min-width: 0;
}
.cta__form input::placeholder { color: rgba(248, 241, 234, 0.42); }
.cta__form button {
  background: var(--blush);
  color: var(--mocha);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .4s var(--ease);
  white-space: nowrap;
}
@media (hover: hover) { .cta__form button:hover { background: var(--gold); } }
.cta__form button svg { transition: transform .4s var(--ease); }
@media (hover: hover) { .cta__form button:hover svg { transform: translateX(4px); } }
.cta__form.is-success::after {
  content: "✓  Reserved. Watch your inbox.";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(66, 47, 21, 0.98);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  animation: fadeIn .5s var(--ease);
}
.cta__form:lang(sv).is-success::after { content: "✓  Reserverad. Håll utkik i inkorgen."; }
.cta__form.is-sending button { opacity: .6; pointer-events: none; }
.cta__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.cta__micro {
  font-size: 0.8125rem;
  color: rgba(248, 241, 234, 0.5);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--blush);
  padding: clamp(72px, 10vw, 120px) var(--gutter) 36px;
  border-top: 1px solid var(--ink-08);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--ink-15);
}
.footer__logo {
  display: inline-flex;
  justify-self: start;
}
.footer__logo img {
  height: 88px;
  width: auto;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-self: end;
}
.footer__nav .caption {
  display: block;
  margin-bottom: 18px;
}
.footer__nav a {
  display: block;
  font-size: 0.9375rem;
  padding: 5px 0;
  color: var(--ink-90);
  transition: color .4s var(--ease);
}
@media (hover: hover) { .footer__nav a:hover { color: var(--gold); } }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  font-size: 12px;
  color: var(--ink-50);
  align-items: center;
}
.footer__bottom > :last-child { text-align: right; }
@media (hover: hover) { .footer__bottom a:hover { color: var(--mocha); } }
.footer__pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
}
.footer__pulse span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.1); }
}

/* ═══════════════════════════════════════════════════════
   REVEAL animations
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav__menu { gap: 22px; }
  .pillar { aspect-ratio: 4 / 6.1; padding: 26px 24px 28px; }
  .pillar__body { min-height: calc(1.55em * 4); }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__menu { display: none; }

  .pillars { grid-template-columns: 1fr; max-width: 460px; }
  .pillar { aspect-ratio: auto; min-height: 440px; }
  .pillar__body { min-height: 0; }


  .numbers__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    padding: 40px 0;
  }
  .numbers__divider { display: none; }

  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__nav { justify-self: start; }
  .footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .footer__bottom > :last-child { text-align: center; }
}
@media (max-width: 540px) {
  .dawn { --d: min(74vw, 44vh); --rest: 0.22; }
  .hero__meta { flex-wrap: wrap; justify-content: center; gap: 6px 12px; font-size: 10.5px; letter-spacing: .18em; }
  .gather__rule { display: none; }
  .footer__nav { grid-template-columns: 1fr; }
  .cta__form { flex-direction: column; border-radius: 28px; }
  .cta__form button { width: 100%; justify-content: center; }
  .cta__form.is-success::after { border-radius: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Swedish success message (index.html is lang="sv") */
html:lang(sv) .cta__form.is-success::after { content: "✓  Reserverad. Håll utkik i inkorgen."; }

/* ═══════════════════════════════════════════════════════
   NAV — page links, active page, mobile menu
   ═══════════════════════════════════════════════════════ */
.nav__end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__menu a[aria-current="page"]::after { right: 0; background: var(--gold); }

/* Language · a globe that opens a small card (desktop); listed under a hairline in the mobile sheet */
.lang { position: relative; display: flex; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 11px 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-70);
  transition: color .4s var(--ease), background .4s var(--ease);
}
.lang__btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}
.lang.is-open .lang__btn { color: var(--mocha); background: rgba(66, 47, 21, 0.05); }
@media (hover: hover) { .lang__btn:hover { color: var(--mocha); background: rgba(66, 47, 21, 0.05); } }
.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  background: #FBF7F2;
  border: 1px solid var(--ink-08);
  border-radius: 14px;
  box-shadow: 0 14px 34px -14px rgba(66, 47, 21, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.lang__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-70);
  transition: background .3s var(--ease), color .3s var(--ease);
}
@media (hover: hover) { .lang__menu a:hover { background: rgba(66, 47, 21, 0.05); color: var(--mocha); } }
.lang__menu a[aria-current],
.lang-sheet a[aria-current] { color: var(--mocha); }
.lang__menu a[aria-current]::after,
.lang-sheet a[aria-current]::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.lang-sheet { display: none; }

.nav__toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ink-30);
  transition: border-color .5s var(--ease);
}
.nav__toggle i {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1.25px;
  border-radius: 2px;
  background: var(--mocha);
  transition: top .5s var(--ease), transform .5s var(--ease);
}
.nav__toggle i:first-child { top: 17px; }
.nav__toggle i:last-child  { top: 23px; }
.nav.is-open .nav__toggle i:first-child { top: 20px; transform: rotate(45deg); }
.nav.is-open .nav__toggle i:last-child  { top: 20px; transform: rotate(-45deg); }

html.is-menu-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   SUBPAGES — shared
   ═══════════════════════════════════════════════════════ */
.page-hero {
  padding: clamp(160px, 20vw, 230px) var(--gutter) clamp(90px, 11vw, 130px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 24px;
  background:
    radial-gradient(60% 55% at 50% 0%, rgba(237, 204, 122, 0.16), transparent 70%),
    var(--blush);
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.4vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--mocha);
  text-wrap: balance;
}
.page-hero__title em { font-style: normal; color: var(--mocha-soft); }
.page-hero__lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 32em;
}
.page-hero__index {
  display: flex;
  gap: 30px;
  margin-top: 4px;
}
.page-hero__index a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-90);
}
.page-hero__index a span { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--gold); }
.page-hero__index a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--mocha);
  transition: right .55s var(--ease);
}
@media (hover: hover) { .page-hero__index a:hover::after { right: 0; } }

/* ·· —— ✦ —— ·· the logo lockup, as a divider */
.lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(340px, 70vw);
  margin: 14px 0 6px;
  color: var(--gold);
}
.lockup b { flex: 1; height: 1px; }
.lockup b:first-of-type { background: linear-gradient(90deg, transparent, var(--gold) 40%); }
.lockup b:last-of-type  { background: linear-gradient(90deg, var(--gold) 60%, transparent); }
.lockup i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.lockup__star { font-size: 9px; margin: 0 6px; }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(214, 154, 162, 0.18);
  color: #8A5A62;
}
.tag--quiet {
  background: transparent;
  border: 1px solid var(--ink-15);
  color: var(--ink-50);
}

/* ═══════════════════════════════════════════════════════
   OUR WORLD
   ═══════════════════════════════════════════════════════ */
.world {
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--ink-08);
}
.world--next { background: var(--paper); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 8px 14px;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}

/* Now — the three app features, as an editorial list */
.features {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--ink-15);
}
.feature {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--ink-15);
}
.feature__mark {
  height: 56px;
  display: flex;
  align-items: center;
  color: var(--gold);
}
.feature__mark .scale__beam { margin: 0; }
.emblem { width: 84px; overflow: visible; }
.emblem__line { fill: none; stroke: var(--gold); stroke-width: 1.25; stroke-linecap: round; }
.emblem__fill { fill: var(--gold); opacity: .9; }
.emblem__card { fill: var(--bone); stroke: var(--gold); stroke-width: 1.25; }

.feature .feature__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  column-gap: clamp(28px, 5vw, 72px);
  align-content: start;
}
.feature .feature__body > .caption  { grid-column: 1; grid-row: 1; }
.feature .feature__title             { grid-column: 1; grid-row: 2 / span 2; }
.feature .feature__text              { grid-column: 2; grid-row: 1 / span 2; }
.feature .feature__list              { grid-column: 2; grid-row: 3; }

.feature__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 2.8vw, 2.375rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--mocha);
  margin-top: 14px;
  text-wrap: balance;
}
.feature__title em { font-style: normal; color: var(--mocha-soft); }
.feature__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-70);
  max-width: 34em;
}
.feature__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  align-self: start;
}
.feature__list li {
  font-size: 12.5px;
  padding: 6px 12px;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  color: var(--ink-70);
}

.world__more {
  margin-top: clamp(48px, 6vw, 72px);
  text-align: center;
  font-size: 14px;
}
.world__more a {
  color: var(--mocha);
  font-weight: 500;
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 2px;
  transition: border-color .4s var(--ease);
}
@media (hover: hover) { .world__more a:hover { border-color: var(--mocha); } }

/* Soul Stone — rose quartz, drawn in CSS. Floats and breathes, very slowly. */
.stone {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  background: var(--bone);
  border: 1px solid var(--ink-08);
  border-radius: 28px;
}
.stone__art {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
}
.stone__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(236, 184, 190, 0.42), rgba(236, 184, 190, 0) 62%);
  animation: stoneGlow 9s ease-in-out infinite;
}
.stone__shadow {
  position: absolute;
  left: 30%;
  right: 30%;
  top: 68%;
  height: 7%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(66, 47, 21, 0.22), rgba(66, 47, 21, 0));
  animation: stoneShadow 9s ease-in-out infinite;
}
.stone__rock {
  position: relative;
  width: 54%;
  aspect-ratio: 1.42;
  border-radius: 58% 42% 50% 50% / 64% 58% 42% 36%;
  overflow: hidden;
  background:
    radial-gradient(34% 28% at 34% 28%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 72%),
    radial-gradient(70% 60% at 70% 80%, rgba(168, 96, 108, 0.42), rgba(168, 96, 108, 0) 70%),
    linear-gradient(150deg, #F8E0DF 0%, #EEC3C6 45%, #DCA3AB 100%);
  box-shadow:
    inset -10px -14px 26px rgba(150, 80, 95, 0.22),
    inset 8px 10px 18px rgba(255, 255, 255, 0.45);
  animation: stoneFloat 9s ease-in-out infinite;
}
.stone__vein {
  position: absolute;
  inset: 0;
  background:                    /* soft milky clouds inside the quartz */
    radial-gradient(40% 22% at 58% 46%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 70%),
    radial-gradient(28% 18% at 30% 66%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 70%),
    linear-gradient(128deg, transparent 46%, rgba(255, 255, 255, 0.16) 52%, transparent 60%);
  filter: blur(1.5px);
}
@keyframes stoneFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-7px) rotate(-7deg); }
}
@keyframes stoneShadow {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50%      { transform: scaleX(0.9); opacity: 0.7; }
}
@keyframes stoneGlow {
  0%, 100% { opacity: 0.7; transform: scale(0.96); }
  50%      { opacity: 1; transform: scale(1.03); }
}
.stone__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stone__body .feature__title { margin: 18px 0 20px; }
.stone__body .feature__text + .feature__text { margin-top: 14px; }
.stone__close {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-08);
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--mocha-soft);
}

/* Seeds — quieter hints of what's further out */
.seeds {
  max-width: 1080px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.seed {
  padding: 24px 22px 26px;
  border: 1px solid var(--ink-15);
  border-radius: 20px;
}
.seed__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--mocha);
  margin: 16px 0 8px;
}
.seed__title em { font-style: normal; color: var(--mocha-soft); }
.seed__text { font-size: 14px; line-height: 1.55; color: var(--ink-50); }

/* ─── Subpage + menu responsive ─── */
@media (max-width: 1000px) {
  .seeds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nav__toggle { display: inline-block; }

  /* Full-screen sheet */
  .nav .nav__menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: -1;
    justify-self: stretch;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    padding: 120px var(--gutter) 80px;
    background: var(--blush);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;                 /* while it fades out, taps go to the page */
    transition: opacity .6s var(--ease), visibility 0s linear .6s;
  }
  .nav.is-open .nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .6s var(--ease);
  }
  .nav__menu a {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 10vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    gap: 16px;
    color: var(--mocha);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .nav__menu a span { font-size: 15px; }
  .nav__menu a::after { display: none; }
  .nav__menu a[aria-current="page"] { color: var(--mocha-soft); }
  .nav.is-open .nav__menu a { opacity: 1; transform: none; }
  .nav.is-open .nav__menu a:nth-child(2) { transition-delay: .07s; }
  .nav.is-open .nav__menu a:nth-child(3) { transition-delay: .14s; }

  .nav__end .lang { display: none; }
  .nav .lang-sheet {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--ink-08);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .8s var(--ease) .21s, transform .8s var(--ease) .21s;
  }
  .nav.is-open .lang-sheet { opacity: 1; transform: none; }
  /* undo the big serif menu-link style for the language links */
  .nav__menu .lang-sheet a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--ink-50);
    opacity: 1;
    transform: none;
    padding: 7px 0;
  }
  .nav__menu .lang-sheet a[aria-current] { color: var(--mocha); }
  .nav__menu .lang-sheet a[aria-current]::after { display: block; position: static; }

  /* While open, the bar's layers fade away so the sheet reads as one surface */
  .nav.is-open,
  .nav.is-open.is-scrolled { border-bottom-color: transparent; }
  .nav.is-open::before,
  .nav.is-open::after { opacity: 0; }

  .feature { grid-template-columns: 1fr; gap: 20px; }
  .feature .feature__body { grid-template-columns: 1fr; }
  .feature .feature__body > * { grid-column: 1; grid-row: auto; }
  .feature .feature__title { margin-bottom: 16px; }

  .stone { grid-template-columns: 1fr; }
  .stone__art { max-width: 300px; }
}
@media (max-width: 540px) {
  .seeds { grid-template-columns: 1fr; }
  .nav__cta { padding: 10px 14px; font-size: 12.5px; }
  .nav__end { gap: 8px; }
}
/* the smallest phones: a short label, so the logo keeps its shape */
@media (max-width: 360px) {
  .nav { gap: 12px; }
  .nav__cta-full { display: none; }
  .nav__cta-short { display: inline; }
}

/* ═══════════════════════════════════════════════════════
   LEGAL — Privacy / Terms
   ═══════════════════════════════════════════════════════ */
.page-hero--legal { padding-bottom: clamp(56px, 7vw, 80px); }
.legal__updated {
  font-size: 12.5px;
  color: var(--ink-50);
  letter-spacing: 0.02em;
}

/* In short */
.summary {
  max-width: 980px;
  margin: 0 auto clamp(80px, 10vw, 120px);
  margin-inline: max(var(--gutter), calc((100% - 980px) / 2));
  padding: clamp(28px, 4vw, 44px);
  background: var(--bone);
  border: 1px solid var(--ink-08);
  border-radius: 24px;
}
.summary__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 44px;
  margin-top: 20px;
}
.summary__list li {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-70);
}
.summary__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.summary strong { font-weight: 500; color: var(--mocha); }

/* Contents + body */
.legal {
  display: grid;
  grid-template-columns: 200px minmax(0, 680px);
  justify-content: center;
  gap: clamp(48px, 7vw, 110px);
  padding: 0 var(--gutter) clamp(120px, 14vw, 180px);
}
.legal__toc {
  position: sticky;
  top: 110px;
  align-self: start;
}
.legal__toc ol { list-style: none; margin-top: 18px; border-left: 1px solid var(--ink-15); }
.legal__toc a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0 7px 18px;
  font-size: 13.5px;
  color: var(--ink-50);
  transition: color .4s var(--ease);
}
.legal__toc a span { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--gold); }
.legal__toc a::before {                  /* the gold marker slides onto the active line */
  content: "";
  position: absolute;
  left: -1px;
  top: 6px; bottom: 6px;
  width: 1px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform .5s var(--ease);
}
@media (hover: hover) { .legal__toc a:hover { color: var(--mocha); } }
.legal__toc a.is-on { color: var(--mocha); }
.legal__toc a.is-on::before { transform: scaleY(1); }

.legal__body section {
  scroll-margin-top: 110px;
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--ink-08);
}
.legal__body section:last-child { border-bottom: 0; margin-bottom: 0; }
.legal__body h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.625rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mocha);
  margin-bottom: 20px;
}
.legal__body h2 span { font-style: italic; font-size: .6em; color: var(--gold); }
.legal__body h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin: 28px 0 12px;
}
.legal__body h2 + h3 { margin-top: 0; }
.legal__body p,
.legal__body li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-70);
}
.legal__body p + p,
.legal__body ul + p,
.legal__body p + ul { margin-top: 14px; }
.legal__body ul { list-style: none; display: grid; gap: 8px; }
.legal__body li { position: relative; padding-left: 22px; }
.legal__body li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .8em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.legal__body strong { font-weight: 500; color: var(--mocha); }
.legal__body em { font-style: italic; }
.legal__body a,
.summary a {
  color: var(--mocha);
  border-bottom: 1px solid var(--ink-30);
  transition: border-color .4s var(--ease);
}
@media (hover: hover) { .legal__body a:hover,
.summary a:hover { border-color: var(--mocha); } }

@media (max-width: 900px) {
  .legal { grid-template-columns: minmax(0, 1fr); }
  .legal__toc { display: none; }
  .summary__list { grid-template-columns: 1fr; }
}
.cta__legal {
  margin-top: -16px;               /* sits close under the micro line (parent gap is 24px) */
  font-size: 12px;
  color: rgba(248, 241, 234, 0.42);
}
.cta__legal a {
  color: rgba(248, 241, 234, 0.7);
  border-bottom: 1px solid rgba(248, 241, 234, 0.25);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
@media (hover: hover) { .cta__legal a:hover { color: var(--blush); border-color: rgba(248, 241, 234, 0.6); } }

/* Showcase cards: .stone is the shared "featured next" card; --flip mirrors it */
.stone + .stone { margin-top: 16px; }
.stone--flip .stone__art { order: 2; }
.tag--gold { background: rgba(201, 168, 106, 0.18); color: var(--gold-deep); }
.stone__glow--warm { background: radial-gradient(circle at 50% 50%, rgba(237, 204, 122, 0.34), rgba(237, 204, 122, 0) 62%); }
.stone__shadow--book { left: 26%; right: 26%; top: 80%; }

/* Our Journey — a closed hardcover with the gold-foil logo. Floats like the stone. */
.book {
  position: relative;
  width: 50%;
  aspect-ratio: 0.72;
  container-type: inline-size;
  animation: bookFloat 9s ease-in-out infinite;
}
.book__cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4cqw;
  padding: 10cqw 12cqw;
  border-radius: 3px 8px 8px 3px;
  background:
    linear-gradient(90deg, rgba(66, 47, 21, 0.10) 0, rgba(66, 47, 21, 0) 7%),      /* spine crease */
    radial-gradient(90% 60% at 30% 20%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 70%),
    linear-gradient(160deg, #FFFDF8 0%, #F6EEDF 60%, #EDE1CB 100%);
  box-shadow:
    inset 0 0 0 1px rgba(66, 47, 21, 0.06),
    4px 0 0 -1px #F3EBDD, 6px 0 0 -2px #E9DDC6,                                    /* page edges */
    18px 26px 44px -18px rgba(66, 47, 21, 0.35);
  transform: perspective(900px) rotateY(-14deg) rotateZ(-3deg);
}
.book__logo {                     /* the current logo, in the same gold foil as the app's cards */
  width: 62cqw;
  aspect-ratio: 124 / 68;
  background: linear-gradient(105deg, #A57520 0%, #C9A86A 35%, #F2DCA2 50%, #C9A86A 65%, #9A6F1E 100%);
  -webkit-mask: url(Assets/Logo/Primary_logo_br-960.png) center / contain no-repeat;
          mask: url(Assets/Logo/Primary_logo_br-960.png) center / contain no-repeat;
}
.book__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 11cqw;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.book__rule { display: flex; align-items: center; gap: 2cqw; width: 50cqw; margin: 3cqw 0 1cqw; }
.book__rule b { flex: 1; height: 1px; background: var(--gold); opacity: .7; }
.book__rule i { width: 1.6cqw; height: 1.6cqw; border-radius: 50%; background: var(--gold); opacity: .8; }
@keyframes bookFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.seeds { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1000px) { .seeds { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px)  { .stone--flip .stone__art { order: 0; } }
@media (max-width: 540px)  { .seeds { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   ABOUT US — the photo as a faded backdrop, then one quiet column
   ═══════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(100svh, 1000px);
  display: grid;
  align-items: end;
  padding: 160px var(--gutter) clamp(70px, 9vw, 110px);
  text-align: center;
  background: var(--blush);
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
}
.about-hero__bg img {
  width: min(100%, 1040px);                       /* photo width on wide screens */
  height: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  object-fit: cover;
  object-position: 50% 26%;
  opacity: 0.55;                                  /* how faded the photo is */
  filter: saturate(0.8) sepia(0.12);              /* pulls it into the palette */
  transform-origin: 50% 35%;
  animation: aboutDrift 16s var(--ease-out) both;
}
.about-hero__bg::after {                          /* blush wash, dissolving into the page below */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(248, 241, 234, 0.35) 0%,
      rgba(248, 241, 234, 0.10) 30%,
      rgba(248, 241, 234, 0.70) 62%,
      var(--blush) 92%);
}
@media (max-width: 760px) {
  .about-hero__bg img { -webkit-mask-image: none; mask-image: none; }
}
@keyframes aboutDrift {                           /* a slow settle, once */
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.about-hero__content {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.story {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 50px) var(--gutter) 0;
}

.chapter {
  padding: clamp(44px, 5.5vw, 64px) 0;
  border-top: 1px solid var(--ink-15);
}
.chapter:first-child { border-top: 0; padding-top: 0; }
.chapter > p:not(.caption) {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-70);
}
.chapter > p:not(.caption) + p { margin-top: 16px; }
.chapter__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--mocha);
  margin: 14px 0 22px;
  text-wrap: balance;
}
.chapter__title em { font-style: normal; color: var(--mocha-soft); }

/* The belief, as a night card (same sky as the Presence pillar) */
.chapter__quote {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 34px;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 6vw, 64px);
  border-radius: 28px;
  background: radial-gradient(120% 80% at 50% 20%, #3A2810 0%, #20140A 60%, #100804 100%);
  color: var(--bone);
  text-align: center;
}
.chapter__quote::before {                         /* a few gold stars */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1.5px 1.5px at 14% 24%, var(--gold) 100%, transparent),
    radial-gradient(1px 1px at 82% 18%, var(--gold-soft) 100%, transparent),
    radial-gradient(1px 1px at 90% 62%, var(--gold) 100%, transparent),
    radial-gradient(1.5px 1.5px at 8% 72%, var(--gold-soft) 100%, transparent),
    radial-gradient(1px 1px at 64% 86%, var(--gold) 100%, transparent),
    radial-gradient(60% 50% at 50% 30%, rgba(201, 168, 106, 0.14), transparent 70%);
}
.chapter__quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.6;
  height: 0.45em;
  color: var(--gold);
}
.chapter__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3125rem, 2.3vw, 1.75rem);
  line-height: 1.4;
  color: var(--bone);
  text-wrap: balance;
}

.chapter__wants {
  list-style: none;
  margin-top: 26px;
  border-top: 1px solid var(--ink-08);
}
.chapter__wants li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-08);
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.4;
  color: var(--mocha);
}
.chapter__wants li::before {                      /* ·· the logo's two dots */
  content: "··";
  color: var(--gold);
  letter-spacing: 0.12em;
  font-family: var(--sans);
  font-weight: 600;
}

/* The founders, in the pillar colours: gold and mauve */
.founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.founder {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 26px;
  border-radius: 20px;
  color: var(--mocha);
  border: 1px solid transparent;
}
.founder--gold {
  background: linear-gradient(160deg, rgba(237, 204, 122, 0.16) 0%, rgba(201, 168, 106, 0.08) 100%);
  border-color: rgba(201, 168, 106, 0.30);
}
.founder--mauve {
  background: linear-gradient(160deg, rgba(140, 112, 118, 0.12) 0%, rgba(111, 83, 88, 0.05) 100%);
  border-color: rgba(111, 83, 88, 0.22);
}
.founder__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.15;
}
.founder__role {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.72;
}

.chapter__sign {
  margin-top: 34px !important;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem !important;
  color: var(--mocha) !important;
}

.about__beta {
  margin-top: clamp(50px, 7vw, 90px);
  padding: 0 var(--gutter) clamp(110px, 14vw, 170px);
}

@media (max-width: 540px) {
  .founders { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero__bg img { animation: none; }
}
.about-hero__us { font-style: italic; padding-right: 0.04em; }   /* the one italic word — echoes “us” in ii. */

/* ─── 404 ─── */
.notfound { min-height: 78vh; align-content: center; }
.notfound .page-hero__lead { text-wrap: balance; }
.notfound .page-hero__lead span { color: var(--ink-50); }
.notfound__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 12px; }
