/* ─── Monique Verchai — Financial Broker ─────────────────────────
   Modern / minimal / quietly premium.
   Type: Cormorant Garamond display + Inter body + wide-tracked caps labels.
   Palette: warm off-white, near-black, muted ochre accent.
───────────────────────────────────────────────────────────────── */

:root {
  /* Color — Light theme (header/footer remain dark) */
  --bg:            #ffffff;          /* page — pure white */
  --bg-tint:       #f5f3ef;          /* soft panels */
  --bg-deep:       #2a2824;          /* dark gray — header/footer */
  --ink:           #0f0e0c;          /* near-black text */
  --ink-70:        rgba(15, 14, 12, 0.74);
  --ink-55:        rgba(15, 14, 12, 0.56);
  --ink-30:        rgba(15, 14, 12, 0.30);
  --ink-12:        rgba(15, 14, 12, 0.14);
  --ink-06:        rgba(15, 14, 12, 0.07);
  --accent:        #8a6a2a;          /* muted ochre on white */
  --accent-soft:   #c9b085;
  --cream:         #0f0e0c;

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

  /* Measure */
  --page-pad: clamp(24px, 5vw, 80px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  min-width: 0;
}

/* ─ Typography helpers ─ */
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-style: italic; /* light italic adds editorial feel */
}
.display-roman {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-55);
}
.eyebrow--dark {
  color: var(--ink);
}
.caps {
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
}
.rule {
  height: 1px; background: var(--ink-12); border: 0; margin: 0;
}
.rule--accent { background: var(--accent); height: 1px; }

/* ─ Nav ─ */
html { scroll-behavior: smooth; }
/* land anchored scrolls so the section title sits just below the sticky nav */
#services, #contact, #careers { scroll-margin-top: 96px; }
#about { scroll-margin-top: 120px; }
@media (max-width: 600px) {
  #services, #contact, #careers { scroll-margin-top: 72px; }
  #about { scroll-margin-top: 90px; }
}
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--ink-12);
}
.nav__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px var(--page-pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.nav__mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.nav__mark-img {
  display: block;
  height: 96px;
  width: auto;
  margin-left: 5%;
}
.nav__mark-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-70);
  line-height: 1;
  padding-left: 0.42em; /* compensate for trailing letter-spacing so it visually centers */
}
.nav__mark-sub {
  font-family: var(--sans); font-style: normal;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-55);
}
.nav__links {
  display: flex; gap: 40px; align-items: center;
}
.nav__link {
  position: relative;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-70); text-decoration: none;
  font-weight: 500;
  transition: color .25s;
}
.nav__link::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--accent);
  margin-top: 6px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.22,.7,.2,1);
}
.nav__link:hover { color: var(--ink); }
.nav__link--active { color: var(--ink); }
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link--active::after {
  transform: scaleX(1);
}
/* Old active-only underline rule kept as a safety no-op (overridden above) */
.nav__link--active::after { content: ""; display: block; height: 1px; background: var(--accent); margin-top: 6px; }
.nav__cta {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  font-weight: 500;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.nav__cta:hover { background: var(--accent-soft); }
.nav__ctas { display: flex; align-items: center; gap: 12px; }

/* Hamburger — mobile only */
.nav__burger {
  display: none;
  appearance: none; background: transparent; border: 1px solid var(--ink);
  width: 38px; height: 38px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer; flex: none;
}
.nav__burger span {
  display: block; width: 16px; height: 1.5px; background: var(--ink);
  transition: transform .3s ease, opacity .2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
@media (max-width: 980px) {
  .nav__burger { display: inline-flex; }
}

/* Mobile menu panel */
.nav__mobile {
  display: none;
  border-top: 1px solid var(--ink-12);
  background: var(--bg);
}
.nav.menu-open .nav__mobile { display: block; }
.nav__mlink {
  display: block;
  padding: 16px var(--page-pad);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--ink-06, rgba(15,14,12,0.06));
}
.nav__mlink:last-child { border-bottom: 0; }
.nav__mlink:hover { color: var(--accent); }

/* Mobile nav — keep both CTAs on screen without clipping */
@media (max-width: 600px) {
  .nav__inner { gap: 16px; padding: 12px 16px; }
  .nav__mark-img { height: 64px; margin-left: 0; }
  .nav__mark-label { font-size: 8px; letter-spacing: 0.32em; }
  .nav__ctas { gap: 8px; flex: none; }
  .nav__cta {
    padding: 10px 12px;
    font-size: 10px; letter-spacing: 0.1em;
    white-space: nowrap;
  }
}

/* ─ Contact drawer — slides from the right, matches the portfolio aesthetic ─ */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(15, 14, 12, 0.32);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(1080px, 95vw);
  background: var(--bg);
  border-left: 1px solid var(--ink-12);
  box-shadow: none;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22,.7,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); box-shadow: -32px 0 64px rgba(15, 14, 12, 0.12); }

.drawer__head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 28px 48px 24px;
  border-bottom: 1px solid var(--ink-12);
}
.drawer__eyebrow {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
}
.drawer__close {
  appearance: none; background: transparent; border: 0;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-70);
  cursor: pointer; padding: 6px 2px;
  transition: color .2s;
}
.drawer__close:hover { color: var(--ink); }
.drawer__head-title { font-size: clamp(30px, 3.4vw, 40px); position: relative; width: fit-content; }
/* hand-drawn pen underline, as on the About me title */
.drawer__head-title::after {
  content: ""; display: block; width: 100%; height: 12px; margin-top: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 14' preserveAspectRatio='none'><path d='M3 8 C 50 6, 110 9, 160 7 S 250 8, 300 6.5 S 350 7.5, 357 7' fill='none' stroke='%238a6a2a' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-size: 100% 100%; pointer-events: none;
}
.drawer__head { align-items: center; }

/* WhatsApp drawer — narrower, QR-centred */
.drawer--wa { width: min(560px, 92vw); }
.drawer__body--wa { align-items: flex-start; gap: 18px; }
.wa__number { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 36px); line-height: 1.1; }
.wa__number a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); transition: color .2s; }
.wa__number a:hover { color: var(--accent); }
.wa__hint { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-55); max-width: 38ch; }
.wa__qr {
  margin-top: 10px;
  border: 1px solid var(--ink-12); background: #fff;
  padding: 18px;
  align-self: center;
}
.wa__qr img { display: block; width: 240px; height: 240px; }
.wa__scan {
  margin: 0; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
  align-self: center;
}

.drawer__body {
  padding: 40px 48px 56px;
  display: flex; flex-direction: column; gap: 28px;
}
.drawer__title {
  font-family: var(--serif); font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.02; letter-spacing: -0.02em; color: var(--ink);
  font-weight: 400; margin: 0;
}
.drawer__title em { font-style: italic; color: var(--accent); }
.drawer__lede {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70);
  max-width: 52ch;
}

.drawer__form { display: grid; gap: 22px; margin-top: 8px; }
.drawer__row { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
.drawer__field { display: grid; gap: 8px; }
.drawer__label {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
}
.drawer__input, .drawer__textarea, .drawer__select {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: transparent; border: 0;
  border-bottom: 1px solid var(--ink-12);
  padding: 8px 0 10px;
  transition: border-color .2s;
  width: 100%;
}
.drawer__input:focus, .drawer__textarea:focus, .drawer__select:focus {
  outline: none; border-bottom-color: var(--accent);
}
.drawer__textarea { resize: vertical; min-height: 96px; font-family: var(--sans); }

/* Calendar embed — framed like the rest of the editorial panels */
.drawer__body:has(.drawer__cal) { flex: 1; padding-bottom: 32px; }
.drawer__cal {
  position: relative; flex: 1; min-height: 480px;
  border: 1px solid var(--ink-12); background: var(--bg);
}
.drawer__cal-frame {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; display: block; opacity: 0; transition: opacity .4s ease .1s;
}
.drawer.cal-ready .drawer__cal-frame { opacity: 1; }
.drawer__cal-loading {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
  transition: opacity .3s ease;
}
.drawer.cal-ready .drawer__cal-loading { opacity: 0; visibility: hidden; }
.drawer__cal-diamond { color: var(--accent); font-size: 14px; animation: calPulse 1.6s ease-in-out infinite; }
@keyframes calPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .drawer__cal-diamond { animation: none; } }

.drawer__submit {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; font-family: var(--sans);
  background: var(--ink); color: var(--bg);
  border: 0; cursor: pointer;
  transition: background .2s;
}
.drawer__submit:hover { background: var(--accent); color: #fff; }

.drawer__foot {
  margin-top: auto;
  padding: 24px 48px 32px;
  border-top: 1px solid var(--ink-12);
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink-55);
  display: flex; justify-content: space-between; gap: 16px;
}
.drawer__foot a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink-30); }

@media (max-width: 720px) {
  .drawer { width: 100vw; }
  .drawer__head, .drawer__body, .drawer__foot { padding-left: 24px; padding-right: 24px; }
  .drawer__row { grid-template-columns: 1fr; }
}

/* ─ Hero — split layout: carousel left, portrait right ─ */
.hero {
  padding: 0 var(--page-pad) 56px;
  max-width: 1320px; margin: 0 auto;
  position: relative;
}

/* When the hero uses the split layout, escape the .hero max-width so the
   portrait can sit a fixed 5vw from the viewport's right edge regardless of
   screen width. Left padding still aligns with the section content column. */
.hero:has(.hero__grid--split) {
  max-width: none;
  padding: 0 0 48px;
}

/* legacy centered grid kept for fallback */
.hero__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 56px 40px;
  align-items: start;
  justify-items: center;
}

/* NEW — split: left carousel | right portrait, 5vw gap to viewport right edge. */
.hero__grid--split {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 520px);
  grid-template-rows: auto;
  gap: 64px;
  align-items: center;
  justify-items: stretch;
  /* Align the carousel's left edge with the .section content column,
     while keeping the portrait pinned 5vw from the viewport right edge. */
  padding-left: max(var(--page-pad), calc((100vw - 1320px) / 2 + var(--page-pad)));
  padding-right: 5vw;
}

/* name band spans full width, sits above portrait */
.hero__name {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 36px;
  pointer-events: none;
  position: relative;
  z-index: 1;
  margin-bottom: -56px;
}

/* portrait centered in its own row, with a full-width dotted band behind it */
.hero__portrait {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 380px; height: 520px;
  position: relative;
  background: transparent;
  overflow: visible;
  z-index: 2;
  justify-self: center;
}

/* Override inside split layout: place portrait in the right column.
   align-self: start lifts the portrait so Moni's head lines up with the
   "About me" title at the top of the left column. */
.hero__grid--split .hero__portrait {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: 100%;
  max-width: 480px;
  height: 620px;
  margin-top: -40px;
}
/* Full-width dotted band — dots are most visible near the portrait, fade outward.
   A slow auto-drift on the dot grid adds subtle life without requiring pointer input. */
@keyframes heroDotsDrift {
  0%   { background-position: 0px 0px; }
  50%  { background-position: 9px 6px; }
  100% { background-position: 0px 0px; }
}
.hero__portrait::before {
  content: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__portrait::before { animation: none; }
}
/* (removed: pointer-reactive spotlight layer) */
.hero__portrait::after { content: none; }

/* fragments row — 4 equal columns below portrait */
.hero__frag--tl { grid-column: 1; grid-row: 2; justify-self: stretch; }
.hero__frag--tr { grid-column: 2; grid-row: 2; justify-self: stretch; }
.hero__frag--bl { grid-column: 3; grid-row: 2; justify-self: stretch; }
.hero__frag--br { grid-column: 4; grid-row: 2; justify-self: stretch; }

/* ─ Hero static intro (replaces the old rotating carousel) ─ */
.hero__intro {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 780px;
  justify-self: start;
  align-self: center;
  padding-left: 8px;
  padding-top: 24px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 6px;
  position: relative;
  width: fit-content;
  white-space: nowrap;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
/* Hand-drawn pen underline — only spans the actual text width */
.hero__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  margin-top: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 14' preserveAspectRatio='none'><path d='M3 8 C 50 6, 110 9, 160 7 S 250 8, 300 6.5 S 350 7.5, 357 7' fill='none' stroke='%238a6a2a' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
/* (body text shares the same left edge as the title) */
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--accent);
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__lede { display: flex; flex-direction: column; gap: 14px; }
.hero__lede p {
  font-size: 16.5px; line-height: 1.65;
  color: var(--ink-70);
  margin: 0;
  max-width: 72ch;
  text-align: justify;
  hyphens: auto;
}
.no-break { hyphens: none; white-space: nowrap; }
.hero__belief {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px !important;
  line-height: 1.35 !important;
  color: var(--ink) !important;
  letter-spacing: -0.005em;
  padding-top: 6px;
  max-width: none !important;
  text-align: left !important;
}
.hero__reflection {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
  max-width: 32ch;
  text-wrap: balance;
}
.hero__reflection em {
  font-style: italic;
  color: var(--accent);
  display: block;
  margin-top: 4px;
}
/* (emphasis on individual keywords removed) */
.hero__reflection .glow {
  font-style: inherit;
  color: inherit;
  background: none;
  padding-bottom: 0;
}
.hero__close {
  display: flex; flex-direction: column; gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-12);
}
.hero__close-text {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70);
  margin: 0;
  max-width: 72ch;
  text-align: justify;
  hyphens: auto;
}
.hero__close-text strong {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 17px; color: var(--ink);
}
.hero__cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 16px 26px;
  background: var(--ink); color: var(--bg);
  text-decoration: none;
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.hero__cta:hover { background: var(--accent); color: #fff; }
.hero__cta-arrow {
  position: relative;
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
}
.hero__cta-arrow::after {
  content: "";
  position: absolute; right: 0; top: -4px;
  width: 8px; height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.hero__carousel {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 520px;
  justify-self: start;
  align-self: center;
  padding-left: 8px;
}
.hero__carousel-stage {
  position: relative;
  display: grid;
  /* All slides stack in the same cell — stage auto-sizes to the tallest slide,
     so switching between slides of different heights doesn't jolt the layout. */
}
.hero__carousel-stage > .hero__slide {
  grid-column: 1; grid-row: 1;
}
.hero__slide {
  display: flex; flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.7,.2,1);
  pointer-events: none;
  visibility: hidden;
}
.hero__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.hero__slide-head {
  display: flex; align-items: center; gap: 18px;
}
.hero__slide-num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 48px; line-height: 1;
  color: var(--accent); letter-spacing: -0.02em;
}
.hero__slide-divider {
  flex: 0 0 64px; height: 1px; background: var(--accent);
  opacity: 0.6;
}
.hero__slide-label {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-70); font-weight: 500;
}
.hero__slide-body {
  font-size: 18px; line-height: 1.6; color: var(--ink);
  max-width: 44ch;
  font-weight: 400;
}
.hero__slide-body strong {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 21px; color: var(--ink);
}
.hero__slide-big {
  font-family: var(--serif);
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); font-weight: 400;
  max-width: 14ch;
}
.hero__slide-big em { font-style: italic; color: var(--accent); }
.hero__slide-cta {
  align-self: flex-start;
  margin-top: 8px;
  display: inline-flex; gap: 10px;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px; font-weight: 500;
  transition: color .2s, border-color .2s;
}
.hero__slide-cta:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Controls row */
.hero__controls {
  display: flex; align-items: center; gap: 28px;
}
.hero__ctrl {
  appearance: none; background: transparent; border: 0;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-70); font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
  transition: color .2s;
}
.hero__ctrl:hover { color: var(--ink); }
.hero__ctrl-arrow {
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1;
  color: var(--accent);
  transition: transform .2s;
}
.hero__ctrl:hover .hero__ctrl-arrow { transform: translateX(2px); }
.hero__ctrl[data-carousel-prev]:hover .hero__ctrl-arrow { transform: translateX(-2px); }

.hero__dots {
  display: flex; gap: 8px; align-items: center;
  flex: 1;
  justify-content: center;
}
.hero__dot {
  appearance: none; border: 0; background: transparent;
  width: 36px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
}
.hero__dot::after {
  content: ""; display: block;
  width: 100%; height: 1px;
  background: var(--ink-30);
  transition: background .3s, height .3s;
}
.hero__dot:hover::after { background: var(--ink-55); }
.hero__dot.is-active::after { background: var(--accent); height: 2px; }

/* (portrait positioning now defined inside .hero__grid) */
.hero__portrait-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 115%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: none;
}
/* (portrait glow moved to hero background) */
.hero__portrait-glow { display: none; }

/* Environmental photo variant — fills the frame and feathers into the page
   on every edge so the rectangular bounds melt away, keeping the same soft
   "fades into the background" feel as the original cutout. */
.hero__portrait--photo .hero__portrait-img {
  position: absolute;
  inset: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 13%, #000 68%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image:
    linear-gradient(to bottom, transparent 0%, #000 13%, #000 68%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
.hero__portrait-frame {
  display: none;
}

/* ── Portrait base treatments — gradient fade, monogram, line flourish ── */
.portrait-fx {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  pointer-events: none;
  display: none;
  z-index: 3;
}
.hero__portrait[data-portrait-treatment="fade"] .portrait-fx--fade { display: block; }
.hero__portrait[data-portrait-treatment="mono"] .portrait-fx--mono { display: block; }
.hero__portrait[data-portrait-treatment="rule"] .portrait-fx--rule { display: flex; }

/* A — gradient fade blends the portrait bottom into the page bg.
   Horizontally masked at the edges so it doesn't reveal the portrait's rectangular bounds
   against the dotted hero background. */
.portrait-fx--fade {
  left: 50%;
  bottom: 0;
  width: 110%;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 55%,
    rgba(255, 255, 255, 0.9) 90%,
    var(--bg) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 22%,
    rgba(0,0,0,1) 78%,
    rgba(0,0,0,0) 100%
  );
          mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 22%,
    rgba(0,0,0,1) 78%,
    rgba(0,0,0,0) 100%
  );
}

/* B — monogram ornament under the portrait */
.portrait-fx--mono {
  bottom: -80px;
  width: 280px;
  height: 120px;
  color: var(--accent);
  opacity: 0.9;
}

/* C — hairline rule with caps label */
.portrait-fx--rule {
  bottom: -48px;
  width: 480px;
  align-items: center;
  gap: 18px;
}
.portrait-fx__rule {
  flex: 1; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.portrait-fx__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 500;
}

/* text fragments — modern editorial: oversized numeral index + fine vertical rule + text */
.hero__frag {
  max-width: 280px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  position: relative;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 14px 16px;
  align-items: start;
}
.hero__frag::before {
  content: "";
  display: block;
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 1px;
  height: 100%;
  min-height: 72px;
  background: var(--ink-12);
}
.hero__frag-num {
  grid-column: 1;
  grid-row: 1 / span 3;
  font-family: "Bodoni Moda", "Didot", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  line-height: 0.95;
  color: var(--accent);
  letter-spacing: -0.02em;
  align-self: start;
  padding-top: 2px;
}
.hero__frag-label {
  grid-column: 3;
  grid-row: 1;
  display: block;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-55);
  font-weight: 500;
  margin-bottom: 10px;
}
.hero__frag-body,
.hero__frag-big {
  grid-column: 3;
  grid-row: 2;
}

/* (fragment placement now defined inside .hero__grid block above) */

.hero__frag-label {
  display: block;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-55); margin-bottom: 10px;
  font-weight: 500;
}
.hero__frag-body {
  font-size: 14.5px; line-height: 1.55; color: var(--ink);
  font-weight: 400;
}
.hero__frag-big {
  font-family: var(--serif); font-size: 28px; line-height: 1.1;
  letter-spacing: -0.01em; color: var(--ink);
  font-weight: 400;
}

/* (hero__name positioning now defined inside .hero__grid block) */
.hero__name-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(64px, 11vw, 148px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-weight: 400;
  white-space: nowrap;
}

/* ── Hero name font variants ────────────────────────────── */
/* A · Instrument Serif — contemporary editorial, elegant italic */
.hero__name[data-name-font="instrument"] .hero__name-text {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic; font-weight: 400;
  letter-spacing: -0.025em;
}
/* B · Fraunces — modern variable serif, soft & warm */
.hero__name[data-name-font="fraunces"] .hero__name-text {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  letter-spacing: -0.035em;
}
/* C · Playfair Display — high-contrast classical, confident */
.hero__name[data-name-font="playfair"] .hero__name-text {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic; font-weight: 500;
  letter-spacing: -0.03em;
}
/* D · DM Serif Display — bold display serif, strong personality */
.hero__name[data-name-font="dm"] .hero__name-text {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic; font-weight: 400;
  letter-spacing: -0.03em;
}
/* E · Bodoni Moda — high-fashion, cinematic */
.hero__name[data-name-font="bodoni"] .hero__name-text {
  font-family: "Bodoni Moda", "Didot", serif;
  font-style: italic; font-weight: 400;
  letter-spacing: -0.025em;
}
/* F · Space Grotesk — modern geometric sans, unexpected choice */
.hero__name[data-name-font="grotesk"] .hero__name-text {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-style: normal; font-weight: 400;
  letter-spacing: -0.045em;
}
/* G · Archivo — clean modern sans, technical feel */
.hero__name[data-name-font="archivo"] .hero__name-text {
  font-family: "Archivo", "Inter", sans-serif;
  font-style: italic; font-weight: 300;
  letter-spacing: -0.04em;
  font-stretch: 75%;
}
.hero__name-text--faded {
  color: rgba(15, 14, 12, 0.06);
  -webkit-text-stroke: 1.25px rgba(15, 14, 12, 0.35);
}

/* ── Separator variants — hide all, show only the selected one ── */
.hero__name .hero__name-sep { display: none !important; }
.hero__name[data-name-sep="dot"]       .hero__name-sep[data-sep="dot"],
.hero__name[data-name-sep="ampersand"] .hero__name-sep[data-sep="ampersand"],
.hero__name[data-name-sep="diamond"]   .hero__name-sep[data-sep="diamond"],
.hero__name[data-name-sep="slash"]     .hero__name-sep[data-sep="slash"],
.hero__name[data-name-sep="pipe"]      .hero__name-sep[data-sep="pipe"],
.hero__name[data-name-sep="em"]        .hero__name-sep[data-sep="em"],
.hero__name[data-name-sep="asterisk"]  .hero__name-sep[data-sep="asterisk"],
.hero__name[data-name-sep="circle"]    .hero__name-sep[data-sep="circle"],
.hero__name[data-name-sep="space"]     .hero__name-sep[data-sep="space"] {
  display: inline-block !important;
}

/* Typographic treatment for separator glyphs */
.hero__name-sep {
  color: var(--accent);
  opacity: 0.9;
  padding: 0 0.15em;
}
.hero__name-sep[data-sep="ampersand"] {
  font-family: "Bodoni Moda", "Didot", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95em;
  transform: translateY(-0.02em);
}
.hero__name-sep[data-sep="diamond"],
.hero__name-sep[data-sep="asterisk"],
.hero__name-sep[data-sep="circle"] {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.35em;
  transform: translateY(-1.4em);
  padding: 0 0.8em;
}
.hero__name-sep[data-sep="slash"],
.hero__name-sep[data-sep="pipe"] {
  font-weight: 200;
  font-style: normal;
  font-size: 0.75em;
  padding: 0 0.25em;
  transform: translateY(-0.05em);
}
.hero__name-sep[data-sep="em"] {
  font-style: normal;
  font-size: 0.55em;
  transform: translateY(-0.55em);
  padding: 0 0.3em;
}
.hero__name-sep[data-sep="dot"] {
  font-size: 1em;
  transform: translateY(-0.1em);
}
.hero__name-sep[data-sep="space"] {
  padding: 0 0.3em;
}

/* Middle strap — full-width statement under the hero */
.strap {
  padding: 0 var(--page-pad) 120px;
  max-width: 1320px; margin: 0 auto;
  text-align: center;
}
.strap__kicker {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.strap__kicker::before,
.strap__kicker::after {
  content: ""; width: 40px; height: 1px; background: var(--accent);
}
.strap__statement {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 400;
  max-width: 820px; margin: 0 auto;
  color: var(--ink);
  text-wrap: balance;
}
.strap__statement em {
  font-style: italic; color: var(--accent);
}

/* ─ Section wrapper ─ — vertical rhythm matches the About hero (48px) */
.section {
  padding: 48px var(--page-pad);
  max-width: 1320px; margin: 0 auto;
}
.section--tint {
  background: var(--bg-tint);
  max-width: none; margin: 0;
  padding-left: 0; padding-right: 0;
}
.section--tint > .section__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 var(--page-pad);
}
.section__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  margin-bottom: 40px;
  align-items: end;
}
.section__no {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; color: var(--accent);
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 60px);
  letter-spacing: -0.02em; line-height: 1.0;
  font-weight: 400;
  color: var(--ink);
}
.section__title em { font-style: italic; }
.section__lede {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70);
  max-width: 48ch;
  margin-top: 14px;
}

/* ─ About ─ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__body p { margin: 0 0 18px; font-size: 16.5px; color: var(--ink-70); line-height: 1.65; }
.about__body p:first-child::first-letter {
  font-family: var(--serif); font-style: italic;
  font-size: 56px; line-height: 0.8; float: left;
  padding: 6px 10px 0 0; color: var(--accent);
}
.about__facts {
  display: grid; gap: 28px;
  padding: 36px; background: var(--bg-tint);
  border: 1px solid var(--ink-12);
}
.about__fact {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-06);
}
.about__fact:last-child { padding-bottom: 0; border-bottom: 0; }
.about__fact-k {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-55); padding-top: 4px; font-weight: 500;
}
.about__fact-v { font-size: 15px; color: var(--ink); line-height: 1.5; }
.about__fact-v strong { font-family: var(--serif); font-weight: 400; font-size: 18px; font-style: italic; }

/* ─ Services ─ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-12);
}
.service {
  padding: 48px 40px 40px;
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 340px;
  position: relative;
  background: transparent;
  transition: background .25s;
}
.service:last-child { border-right: 0; }
.service:hover { background: color-mix(in srgb, var(--accent-soft) 14%, transparent); }
.service__no {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--accent);
}
.service__title {
  font-family: var(--serif);
  font-size: 28px; line-height: 1.1; letter-spacing: -0.01em;
  font-weight: 400;
}
.service__title em { font-style: italic; }
.service__body {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70);
  margin-top: 4px;
}
.service__bullets {
  margin-top: auto; padding: 0; list-style: none;
  display: grid; gap: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--ink-12);
}
.service__bullets li {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-70); font-weight: 500;
}

/* ─ Contact ─ (dark band, a few shades lighter than the footer) */
.contact {
  background: #f4f4f2;
  color: var(--ink);
}
/* big section title row spans the whole grid, like "Services" */
.contact__big-head { grid-column: 1 / -1; margin-bottom: 40px; }
@media (max-width: 980px) {
  .contact__big-head { margin-bottom: 28px; }
}
.contact__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 64px var(--page-pad);
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: start;
}
.contact__eyebrow {
  color: var(--ink-55);
}
.contact__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.0; letter-spacing: -0.02em;
  font-weight: 400;
  margin: 20px 0 32px;
  text-wrap: balance;
}
.contact__title em { font-style: italic; color: var(--accent); }
.contact__body {
  font-size: 16.5px; color: var(--ink-70);
  line-height: 1.65; max-width: 48ch;
}
.contact__cta {
  display: inline-flex; align-items: center; gap: 18px;
  margin-top: 40px;
  padding: 22px 32px;
  background: var(--ink); color: #f1ece0;
  text-decoration: none;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  transition: background .2s;
}
.contact__cta:hover { background: var(--accent); }
.contact__cta-arrow {
  display: inline-block; width: 28px; height: 1px; background: #f1ece0;
  position: relative;
}
.contact__cta-arrow::after {
  content: ""; position: absolute; right: 0; top: -4px;
  width: 8px; height: 8px;
  border-top: 1px solid #f1ece0; border-right: 1px solid #f1ece0;
  transform: rotate(45deg);
}
.contact__meta {
  display: grid; gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
  align-self: start;
}
.contact__meta-row {
  padding: 24px 28px 28px;
  background: #fff;
}
.contact__meta-row:last-child { border-bottom: 0; }
.contact__meta-k {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; font-weight: 500;
}
.contact__meta-v {
  font-family: var(--serif); font-size: 22px; line-height: 1.3;
  color: var(--ink); font-weight: 400;
}
.contact__meta-v-sub {
  font-family: var(--sans); font-size: 13px; color: var(--ink-55);
  margin-top: 4px; letter-spacing: 0.02em;
}

/* ─ Footer ─ */
.footer {
  background: #2a2824; color: rgba(241, 236, 224, 0.56);
  border-top: 1px solid rgba(241, 236, 224, 0.14);
}
.footer__top {
  max-width: 1320px; margin: 0 auto;
  padding: 48px var(--page-pad) 36px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(241, 236, 224, 0.12);
}
.footer__brand {
  display: flex; flex-direction: column; gap: 6px;
  max-width: 56ch;
}
.footer__brand-name {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 28px; letter-spacing: -0.01em;
  color: #f1ece0;
}
.footer__brand-sub {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(241, 236, 224, 0.6); font-weight: 500;
}
.footer__qr {
  display: flex; align-items: center; gap: 18px;
}
.footer__qr-frame {
  display: block;
  padding: 8px;
  background: #f1ece0;
  border: 1px solid rgba(241, 236, 224, 0.18);
  line-height: 0;
  transition: transform .2s;
}
.footer__qr-frame:hover { transform: translateY(-1px); }
.footer__qr-frame img {
  display: block;
  width: 150px; height: 150px;
  image-rendering: pixelated;
}
.footer__qr-meta {
  display: flex; flex-direction: column; gap: 4px;
  text-align: right;
}
.footer__qr-label {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #f1ece0;
}
.footer__qr-sub {
  font-family: var(--sans);
  font-size: 12px; line-height: 1.4; letter-spacing: 0;
  color: rgba(241, 236, 224, 0.55);
  text-transform: none;
  max-width: 22ch;
}
.footer__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 24px var(--page-pad);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.footer__links { display: flex; gap: 32px; }
.footer__links a { color: inherit; text-decoration: none; }
.footer__links a:hover { color: var(--accent-soft); }

/* ─ Responsive ─ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__grid--split {
    grid-template-columns: 1fr;
    padding-right: var(--page-pad);
    gap: 48px;
  }
  .hero__grid--split .hero__carousel,
  .hero__grid--split .hero__intro { grid-column: 1; grid-row: 2; max-width: none; padding-left: 0; }
  .hero__grid--split .hero__portrait { grid-column: 1; grid-row: 1; justify-self: center; max-width: 380px; height: 520px; }
  .hero__portrait { grid-column: 1; grid-row: auto; width: 100%; max-width: 420px; justify-self: center; }
  .hero__frag { max-width: none; text-align: left !important; justify-self: stretch !important; grid-column: 1 !important; grid-row: auto !important; }
  .hero__name { display: none; }
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .services__grid { grid-template-columns: 1fr; }
  .service { border-right: 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px var(--page-pad); }
  .nav__links { display: none; }
  .footer__top {
    flex-direction: column; align-items: flex-start;
    gap: 24px; padding: 36px var(--page-pad) 24px;
  }
  .footer__qr { align-self: stretch; justify-content: space-between; }
  .footer__qr-meta { text-align: left; }
}

/* ─── Modern unified button hover ──────────────────────────────
   An accent slab sweeps in from the left, easing into place behind
   the text. Arrows on the button slide forward at the same time.
   Subtle, editorial — quiet enough for a financial brand. */
.nav__cta,
.hero__cta,
.contact__cta,
.drawer__submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color .35s ease, border-color .35s ease;
}
.nav__cta::before,
.hero__cta::before,
.contact__cta::before,
.drawer__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.22,.7,.2,1);
  z-index: -1;
}
.nav__cta::before       { background: var(--ink); }
.hero__cta::before      { background: var(--accent); }
.contact__cta::before   { background: var(--accent); }
.drawer__submit::before { background: var(--accent); }

.nav__cta:hover::before,
.nav__cta:focus-visible::before,
.hero__cta:hover::before,
.hero__cta:focus-visible::before,
.contact__cta:hover::before,
.contact__cta:focus-visible::before,
.drawer__submit:hover::before,
.drawer__submit:focus-visible::before {
  transform: scaleX(1);
}

/* Replace the old abrupt background hovers with text/border changes only */
.nav__cta:hover       { background: transparent; color: #fff; border-color: var(--ink); }
.hero__cta:hover      { background: var(--ink); color: #fff; }
.contact__cta:hover   { background: var(--ink); color: #f1ece0; }
.drawer__submit:hover { background: var(--ink); color: #fff; }

/* Arrows ease forward as the slab sweeps in */
.hero__cta .hero__cta-arrow,
.contact__cta .contact__cta-arrow,
.drawer__submit > span[aria-hidden] {
  display: inline-block;
  transition: transform .45s cubic-bezier(.22,.7,.2,1);
  will-change: transform;
}
.hero__cta:hover .hero__cta-arrow,
.contact__cta:hover .contact__cta-arrow,
.drawer__submit:hover > span[aria-hidden] {
  transform: translateX(4px);
}

/* Quiet keyboard focus outline that matches the aesthetic */
.nav__cta:focus-visible,
.hero__cta:focus-visible,
.contact__cta:focus-visible,
.drawer__submit:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

/* ─── Added sections: Approach · Solutions · Quote · Career · Disclosures ─── */

/* 01 · Approach — process steps */
.approach__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--ink-12);
}
.approach__step {
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.approach__step-no {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1; color: var(--accent);
}
.approach__step-label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-55);
}
.approach__step-body {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70); margin: 0;
  max-width: 34ch;
}

/* 02 · Solutions — stacked pillars */
.pillars { border-top: 1px solid var(--ink-12); }

/* Solutions variants — toggled via Tweaks ("glance" default) */
#services[data-solutions="glance"] .solutions-detailed { display: none; }
#services[data-solutions="detailed"] .solutions-glance { display: none; }

/* Services band — white */
#services.section--tint { background: #fff; }
#services .section__title { white-space: nowrap; font-size: clamp(30px, 4.5vw, 60px); }
@media (max-width: 560px) {
  #services .section__title { white-space: normal; }
}

/* At a glance — four plain-language groups, one-pass scannable */
.glance {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
}
.glance__cell {
  padding: 40px 44px 44px;
  background: #fff;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background .4s ease;
}
/* hover — an accent hairline sweeps across the top, the cell warms,
   and the numeral steps forward; same vocabulary as the CTA slabs */
.glance__cell::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .5s cubic-bezier(.22,.7,.2,1);
}
.glance__cell:hover { background: #faf9f5; }
.glance__cell:hover::after { transform: scaleX(1); }
.glance__cell:hover .glance__no { transform: translateX(8px); }
.glance__cell:hover .glance__chips li { border-color: var(--ink-30, rgba(15,14,12,0.3)); }
@media (prefers-reduced-motion: reduce) {
  .glance__cell::after, .glance__no, .glance__chips li { transition: none; }
}

/* Themed cursors — one per card, drawn in the brand ochre */
.glance__cell:nth-of-type(1) { /* Protect — shield */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24"><path d="M12 3 L19 6 V11 C19 16 15.5 19.5 12 21 C8.5 19.5 5 16 5 11 V6 Z" fill="%23ffffff" stroke="%238a6a2a" stroke-width="1.6" stroke-linejoin="round"/></svg>') 13 13, auto;
}
.glance__cell:nth-of-type(2) { /* Grow — sprout */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24"><path d="M12 21 V10" fill="none" stroke="%238a6a2a" stroke-width="1.6" stroke-linecap="round"/><path d="M12 10 C12 6 9.5 4 5.5 4 C5.5 8 8 10 12 10 Z" fill="%23ffffff" stroke="%238a6a2a" stroke-width="1.6" stroke-linejoin="round"/><path d="M12 13 C12 9.5 14.5 7.5 18.5 7.5 C18.5 11.5 16 13 12 13 Z" fill="%23ffffff" stroke="%238a6a2a" stroke-width="1.6" stroke-linejoin="round"/></svg>') 13 13, auto;
}
.glance__cell:nth-of-type(3) { /* Retire — clock */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8.5" fill="%23ffffff" stroke="%238a6a2a" stroke-width="1.6"/><path d="M12 7.5 V12 L15.2 14" fill="none" stroke="%238a6a2a" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/></svg>') 13 13, auto;
}
.glance__cell:nth-of-type(4) { /* Beyond — compass */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8.5" fill="%23ffffff" stroke="%238a6a2a" stroke-width="1.6"/><path d="M14.8 9.2 L13.2 13.2 L9.2 14.8 L10.8 10.8 Z" fill="%238a6a2a" stroke="%238a6a2a" stroke-width="1" stroke-linejoin="round"/></svg>') 13 13, auto;
}
.glance__no {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 44px; line-height: 0.9; color: var(--accent);
  display: inline-block;
  transition: transform .5s cubic-bezier(.22,.7,.2,1);
  will-change: transform;
}
.glance__verb {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.2vw, 42px); line-height: 1.06; letter-spacing: -0.018em;
  color: var(--ink); margin: 0;
}
.glance__verb em { font-style: italic; color: var(--accent); }
.glance__line {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70); margin: 0; max-width: 42ch;
}
.glance__chips {
  list-style: none; margin: 12px 0 0; padding: 0;
  display: flex; flex-direction: column;
}
.glance__chips li {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-70);
  padding: 9px 0;
  border-bottom: 1px solid var(--ink-12);
  display: flex; align-items: center; gap: 10px;
  transition: color .25s ease, padding-left .25s ease, border-color .35s ease;
}
.glance__chips li:first-child { border-top: 1px solid var(--ink-12); }
.glance__chips li::before {
  content: "\25C6";
  font-size: 6px; line-height: 1;
  color: var(--accent);
  flex: none;
}
.glance__chips li:hover { color: var(--ink); padding-left: 6px; }
.glance__cta {
  grid-column: 1 / -1;
  background: var(--bg-deep);
  padding: 32px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.glance__cta-q {
  margin: 0; font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3; color: #f1ece0;
}
.glance__cta-q em { font-style: italic; color: var(--accent-soft); }
.glance__cta-btn { background: #f1ece0; color: #14120f; }
.glance__cta-btn:hover { background: var(--accent-soft); color: #14120f; }

/* Travel insurance — dark variant living in the full-width band (footer palette) */
.glance__cta--travel {
  display: block;
  padding: 48px 44px 44px;
}
.travelcard__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 64px;
  align-items: end;
  padding-bottom: 30px;
}
.travelcard__title {
  margin: 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4.5vw, 60px); line-height: 1;
  letter-spacing: -0.01em; color: #f1ece0; white-space: nowrap;
}
.travelcard__title em { font-style: italic; color: var(--accent-soft); }
.travelcard__lede {
  margin: 0; font-size: 16.5px; line-height: 1.65;
  color: rgba(241, 236, 224, 0.72); max-width: 52ch;
}
.travelcard__types {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px;
  border-top: 1px solid rgba(241, 236, 224, 0.16);
}
.travelcard__type {
  display: grid; grid-template-columns: 40px 1fr; gap: 18px;
  padding: 24px 0; border-bottom: 1px solid rgba(241, 236, 224, 0.14);
}
.travelcard__type-k {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--accent-soft);
}
.travelcard__type-t {
  font-family: var(--serif); font-size: 19px; color: #f1ece0; margin: 0 0 4px;
}
.travelcard__type-d {
  font-size: 16.5px; color: rgba(241, 236, 224, 0.6); line-height: 1.65; margin: 0;
}
.travelcard__note {
  margin: 28px 0 0; font-size: 13px; line-height: 1.6;
  color: rgba(241, 236, 224, 0.6);
  padding: 18px 20px;
  background: rgba(241, 236, 224, 0.05);
  border-left: 2px solid var(--accent-soft);
}
@media (max-width: 980px) {
  .glance__cta--travel { padding: 32px 28px; }
  .travelcard__head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .travelcard__title { white-space: normal; }
  .travelcard__types { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .glance { grid-template-columns: 1fr; }
  .glance__cell { padding: 32px 28px 36px; }
  .glance__cta { padding: 28px; }
}
.pillar {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.45fr;
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid var(--ink-12);
  align-items: start;
}
.pillar__head { display: flex; flex-direction: column; gap: 14px; }
.pillar__no {
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--accent);
}
.pillar__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink);
  margin: 0;
}
.pillar__title em { font-style: italic; color: var(--accent); }
.pillar__intro {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70);
  margin: 0; max-width: 38ch;
}
.pillar__offerings {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 36px;
  align-self: center;
}
.pillar__offerings li {
  position: relative;
  font-size: 14px; line-height: 1.4; color: var(--ink);
  padding-left: 22px;
}
.pillar__offerings li::before {
  content: "—"; position: absolute; left: 0; top: 0; color: var(--accent);
}

/* Product index — complete list */
.pindex { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--ink-12); }
.pindex__title { display: block; margin-bottom: 22px; }
.pindex__list {
  list-style: none; margin: 0; padding: 0;
  columns: 4; column-gap: 40px;
}
.pindex__list li {
  break-inside: avoid;
  font-size: 12.5px; letter-spacing: 0.02em; color: var(--ink-70);
  padding: 9px 0 9px 18px; border-bottom: 1px solid var(--ink-06);
  position: relative;
}
.pindex__list li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 5px; height: 5px; transform: translateY(-50%) rotate(45deg);
  border: 1px solid var(--accent);
}

/* Generic editorial form (reused by the quote) */
.fform { display: grid; gap: 22px; }
.fform__row { display: grid; gap: 22px 28px; grid-template-columns: 1fr 1fr; }
.fform__field { display: grid; gap: 8px; }
.fform__label {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
}
.fform__input, .fform__select, .fform__textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--ink-12);
  padding: 8px 0 10px; width: 100%; transition: border-color .2s;
}
.fform__input:focus, .fform__select:focus, .fform__textarea:focus {
  outline: none; border-bottom-color: var(--accent);
}
.fform__textarea { resize: vertical; min-height: 80px; }
.fform__submit {
  margin-top: 8px; justify-self: start;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  background: var(--ink); color: var(--bg); border: 0; cursor: pointer;
  font-family: var(--sans); transition: background .2s, color .2s;
}
.fform__submit:hover { background: var(--accent); color: #fff; }
.fform__sent { margin: 4px 0 0; font-size: 13px; color: var(--accent); letter-spacing: .02em; }

/* 03 · Quote layout — form removed; types row spans the section */
.quote__grid { display: grid; grid-template-columns: 1fr; }
.quote__aside { display: flex; flex-direction: column; gap: 28px; }
.quote__types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px; border-top: 1px solid var(--ink-12); }
.quote__type {
  display: grid; grid-template-columns: 40px 1fr; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--ink-12);
}
.quote__type-k {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--accent);
}
.quote__type-t {
  font-family: var(--serif); font-size: 19px; color: var(--ink); margin: 0 0 4px;
}
.quote__type-d { font-size: 16.5px; color: var(--ink-70); line-height: 1.65; margin: 0; }
.quote__note {
  font-size: 13px; line-height: 1.6; color: var(--ink-55);
  padding: 18px 20px; background: var(--bg-tint); border-left: 2px solid var(--accent);
  margin: 0; max-width: 64ch;
}

/* 04 · Career — matches the white Services band */
#careers.section--tint { background: #fff; }
.career__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start;
}
.career__lede-col { display: flex; flex-direction: column; gap: 22px; }
.career__lede-col .section__title { margin-top: 4px; }
/* heading left, copy + CTA right — same split rhythm as About the approach */
.career__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 64px;
  align-items: start;
}
.career__cols .section__title { max-width: none; }
.career__copy-col { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; margin-top: 6px; }
/* pull the content closer to the big Career title */
.career .section__big-head { margin-bottom: 20px; }
@media (max-width: 980px) {
  .career__cols { grid-template-columns: 1fr; gap: 24px; }
  .career__cols .section__title br { display: none; }
  .career__copy-col { margin-top: 0; }
}
.career__body {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70); margin: 0; max-width: 52ch;
}
.career__cta { align-self: flex-start; margin-top: 8px; }
.career__points {
  display: grid; gap: 1px; background: var(--ink-12);
  border: 1px solid var(--ink-12); align-self: start;
}
/* top of the first card aligns with the section title, not the eyebrow */
@media (min-width: 981px) {
  .career__points { margin-top: 43px; }
}
.career__point {
  padding: 24px 28px 28px; background: #fff;
  display: flex; flex-direction: column; gap: 8px;
}
.career__point-k {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink);
}
.career__point p { font-size: 14px; line-height: 1.55; color: var(--ink-70); margin: 0; }

/* Contact meta links */
.contact__meta-link {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: color .2s, border-color .2s;
}
.contact__meta-link:hover { color: var(--accent); }
.contact__meta-ig { display: inline-flex; align-items: center; gap: 12px; }
.contact__meta-ig svg { width: 20px; height: 20px; flex: none; }

/* Disclosures / legal */
.legal { max-width: 1320px; margin: 0 auto; padding: 48px var(--page-pad); }
.legal__inner {
  display: grid; grid-template-columns: 200px 1fr; gap: 48px;
  padding-top: 0;
}
.legal__body { display: flex; flex-direction: column; gap: 14px; max-width: 90ch; }
.legal__body p { font-size: 12px; line-height: 1.7; color: var(--ink-55); margin: 0; }
.legal__hq {
  margin-top: 12px; display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: var(--ink-70);
}
.legal__hq-k {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
}

/* Responsive — new sections */
@media (max-width: 980px) {
  .approach__steps { grid-template-columns: 1fr; gap: 0; border-top: 0; }
  .approach__step { padding: 28px 0; border-bottom: 1px solid var(--ink-12); }
  .approach__step:first-child { border-top: 1px solid var(--ink-12); }
  .pillar { grid-template-columns: 1fr; gap: 24px; }
  .pindex__list { columns: 2; }
  .quote__grid { grid-template-columns: 1fr; gap: 40px; }
  .quote__types { grid-template-columns: 1fr; }
  .career__grid { grid-template-columns: 1fr; gap: 40px; }
  .fform__row { grid-template-columns: 1fr; }
  .legal__inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .pillar__offerings { grid-template-columns: 1fr; }
  .pindex__list { columns: 1; }
}

/* ─── v2 · Richer educational modules (booklet) ─────────────────── */

/* ─── About the Process — bundles Approach · Why · Honest questions ─────
   Spacing echoes the hero "About me": one calm background, generous
   vertical rhythm, sub-parts separated by hairline rules. */
.process { padding: 4px 0 0; }
.process__inner { max-width: 1320px; margin: 0 auto; padding: 0 var(--page-pad); }

.process__intro {
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
  max-width: 60ch;
}
.process__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 4.6vw, 60px); line-height: 1.0; letter-spacing: -0.025em;
  color: var(--ink); margin: 0; position: relative; width: fit-content;
}
.process__title em { font-style: italic; color: var(--accent); }
/* same hand-drawn pen underline as the hero "About me" title */
.process__title::after {
  content: ""; display: block; width: 100%; height: 14px; margin-top: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 14' preserveAspectRatio='none'><path d='M3 8 C 50 6, 110 9, 160 7 S 250 8, 300 6.5 S 350 7.5, 357 7' fill='none' stroke='%238a6a2a' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-size: 100% 100%; pointer-events: none;
}
.process__lede {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70); max-width: 48ch; margin: 0;
}

/* Big section title (About-me style) reused by other sections */
.section__big-head { margin-bottom: 40px; }
@media (max-width: 980px) {
  .section__big-head { margin-bottom: 28px; }
}

/* each sub-part: hairline rule + generous breathing, like .hero__close */
.process__block {
  margin-top: 40px; padding-top: 36px;
}
/* editorial split — big title left, heading + copy right, fills the width */
.process__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}
.process__inner--split .process__intro { max-width: none; }
.process__inner--split .process__block { margin-top: 0; padding-top: 0; }
.process__inner--split .process__block-head { max-width: 56ch; margin-bottom: 0; }
/* title on top, heading + copy in two columns below — fills the width, no right-side gap */
.process__block--cols { margin-top: 0; padding-top: 0; }
.process__block--cols .process__block-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: start;
  max-width: none;
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .process__inner--split { grid-template-columns: 1fr; gap: 24px; }
  .process__inner--split .process__block { margin-top: 4px; }
  .process__block--cols .process__block-head { grid-template-columns: 1fr; gap: 18px; }
}
/* media variant — text left, educational photo fills the right */
.process__block--media {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}
.process__block--media .process__block-head { max-width: 50ch; margin-bottom: 0; }
.process__media {
  display: block;
  width: 100%;
  height: 440px;
}
/* a block that opens its column (e.g. right after the dark band) drops the rule */
.process__inner > .process__block:first-child { margin-top: 0; padding-top: 0; border-top: 0; }

.process__block-head {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 60ch; margin-bottom: 28px;
}
.process__sub {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
}
.process__heading {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.06; letter-spacing: -0.02em;
  color: var(--ink); margin: 0; max-width: 22ch;
}
.process__heading em { font-style: italic; color: var(--accent); }
.process__copy {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70); max-width: 52ch; margin: 0;
}

/* philosophy interlude rhythm handled in its own block below */

@media (max-width: 980px) {
  .process { padding: 0 0 0; }
  .process__block { margin-top: 40px; padding-top: 36px; }
  .process__block-head { margin-bottom: 28px; }
  /* media block stacks on smaller screens */
  .process__block--media { grid-template-columns: 1fr; gap: 32px; }
  .process__block--media .process__block-head { max-width: none; margin-bottom: 0; }
  .process__media { height: 320px; }
  /* approach steps already supply a divider when stacked — avoid a doubled rule */
  .process .manifesto { margin-top: 32px; padding-top: 0; border-top: 0; }
}
@media (max-width: 560px) {
  .manifesto__statement { white-space: normal; text-wrap: balance; }
}

/* Diamond ornament motif */
.diamond-rule {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  color: var(--accent); margin: 56px auto 0; max-width: 320px; font-size: 12px;
}
.diamond-rule::before, .diamond-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--ink-12);
}

/* Philosophy interlude — talks to the process section: same warm ground,
   left-aligned to the column, but bespoke (oversized serif + diamond rule). */
.manifesto {
  margin-top: 40px; padding-top: 36px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
}
.manifesto__statement {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0; color: var(--ink); white-space: nowrap;
}
.manifesto__statement em { font-style: italic; color: var(--accent); }
.manifesto__rule {
  display: flex; align-items: center; gap: 14px; color: var(--accent); font-size: 11px;
}
.manifesto__rule span { display: block; width: 44px; height: 1px; background: var(--accent); opacity: 0.5; }
.manifesto__rule span:last-child { display: none; }
.manifesto__sub {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-70); max-width: 52ch; margin: 0;
}

/* Steps */
.steps { border-top: 1px solid var(--ink-12); }
.step {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 72px;
  padding: 64px 0; border-bottom: 1px solid var(--ink-12); align-items: center;
}
.step:nth-child(even) .step__head { order: 2; }
.step__head { display: flex; flex-direction: column; gap: 16px; }
.step__no {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 56px; line-height: 0.9; color: var(--accent);
}
.step__kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 500;
}
.step__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px); line-height: 1.12; letter-spacing: -0.015em;
  color: var(--ink); margin: 0; max-width: 20ch;
}
.step__title em { font-style: italic; color: var(--accent); }
.step__lead { font-size: 16.5px; line-height: 1.65; color: var(--ink-70); margin: 0; max-width: 46ch; }
.step__points { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 8px; }
.step__points li { position: relative; padding-left: 22px; font-size: 14px; color: var(--ink); }
.step__points li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.step__caption { font-size: 13px; line-height: 1.6; color: var(--ink-55); margin: 4px 0 0; max-width: 46ch; }
.step__viz { display: flex; flex-direction: column; gap: 18px; }

/* One vs many (independent) */
.onemany { display: flex; flex-direction: column; gap: 22px; width: 100%; }
.onemany__row { display: flex; align-items: center; gap: 18px; padding: 20px 22px; border: 1px solid var(--ink-12); background: var(--bg); }
.onemany__row--many { border-color: var(--accent); background: color-mix(in srgb, var(--accent-soft) 14%, transparent); }
.onemany__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--ink-30); flex: none; }
.onemany__dots { display: flex; gap: 7px; flex: none; }
.onemany__dots i { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); display: block; }
.onemany__k { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-55); font-weight: 500; }
.onemany__k--hi { color: var(--accent); margin-left: auto; }

/* Plain-words pull quote */
.vquote {
  margin: 0; padding: 28px 30px; border-left: 2px solid var(--accent); background: var(--bg);
  font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3vw, 32px);
  line-height: 1.22; color: var(--ink); display: flex; flex-direction: column; gap: 16px;
}
.vquote cite {
  font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-55); font-weight: 500;
}

/* Province mark */
.provmark { display: flex; align-items: center; gap: 24px; }
.provmark__ab, .provmark__bc {
  font-family: var(--serif); font-size: clamp(64px, 9vw, 104px); line-height: 0.9;
  letter-spacing: -0.02em; color: var(--ink);
}
.provmark__bc { color: var(--accent); }
.provmark__dot { color: var(--accent); font-size: 18px; }
.provmark__cap { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-55); font-weight: 500; margin: 0; }

/* Big number (30 minutes) */
.bignum { display: flex; align-items: flex-end; gap: 28px; }
.bignum__n { font-family: var(--serif); font-size: clamp(80px, 12vw, 150px); line-height: 0.82; color: var(--accent); letter-spacing: -0.04em; }
.bignum__u { font-family: var(--sans); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-70); line-height: 1.5; font-weight: 500; }

/* Self-assessment */
.assess { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink-12); display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.assess__item { border-bottom: 1px solid var(--ink-12); }
.assess__toggle {
  width: 100%; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 18px;
  background: transparent; border: 0; cursor: pointer; text-align: left;
  padding: 22px 6px; font-family: var(--sans); transition: background .2s;
}
.assess__toggle:hover { background: color-mix(in srgb, var(--accent-soft) 12%, transparent); }
.assess__box { width: 22px; height: 22px; border: 1px solid var(--ink-30); position: relative; transition: border-color .2s; }
.assess__box::after {
  content: ""; position: absolute; inset: 5px; transform: rotate(45deg) scale(0); transform-origin: center;
  background: var(--accent); transition: transform .2s;
}
.assess__toggle[aria-pressed="true"] .assess__box { border-color: var(--accent); }
.assess__toggle[aria-pressed="true"] .assess__box::after { transform: rotate(45deg) scale(1); }
.assess__num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--accent); }
.assess__q { font-size: 15px; line-height: 1.45; color: var(--ink); }
.assess__toggle[aria-pressed="true"] .assess__q { color: var(--ink-55); }
.assess__foot { margin-top: 48px; display: grid; grid-template-columns: auto 1fr auto; gap: 44px; align-items: center; }
.assess__meter { display: flex; flex-direction: column; gap: 6px; }
.assess__count { font-family: var(--serif); font-size: 48px; line-height: 1; color: var(--ink); }
.assess__count > span { color: var(--ink-30); }
.assess__count strong { font-weight: 400; color: var(--accent); }
.assess__count-lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-55); font-weight: 500; }
.assess__quote { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.4; color: var(--ink); margin: 0; max-width: 50ch; }
.assess__quote em { color: var(--accent); }
.assess__cta { align-self: center; white-space: nowrap; }

/* Responsive — feature modules */
@media (max-width: 980px) {
  .step { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .step:nth-child(even) .step__head { order: 0; }
  .assess { grid-template-columns: 1fr; }
  .assess__foot { grid-template-columns: 1fr; gap: 24px; }
  .onemany__k--hi { margin-left: auto; }
}
@media (max-width: 560px) {
  .provmark { gap: 16px; }
  .bignum { flex-direction: column; align-items: flex-start; gap: 6px; }
  .manifesto__inner { padding: 80px var(--page-pad); }
}

/* Narrow phones — keep the header CTAs and burger inside the viewport */
@media (max-width: 420px) {
  .nav__inner { gap: 10px; padding: 12px 12px; }
  .nav__ctas { gap: 6px; }
  .nav__cta { padding: 9px 9px; font-size: 9px; }
}
