/* JRP Digital — site styles
   Brand pack (brand/): charcoal #222528, warm off-white #F3EFE9, gold #C79A4B,
   greys #5F5E5A (on light) and #B4B2A9 (on dark). Gold is an accent only and is
   never used as text on off-white (2.25:1). Tints below are the brand colours at
   reduced opacity, as the mark itself uses them (30% / 55%). */

:root {
  --charcoal: #222528;
  --offwhite: #f3efe9;
  --gold: #c79a4b;
  --grey-on-light: #5f5e5a;
  --grey-on-dark: #b4b2a9;

  --paper: var(--offwhite);
  --paper-tint: color-mix(in srgb, var(--charcoal) 5%, var(--offwhite));
  --ink: var(--charcoal);
  --ink-2: var(--grey-on-light);
  --line: color-mix(in srgb, var(--charcoal) 14%, transparent);
  --line-strong: color-mix(in srgb, var(--charcoal) 30%, transparent);
  --dark-line: color-mix(in srgb, var(--offwhite) 14%, transparent);
  --dark-raise-2: color-mix(in srgb, var(--offwhite) 9%, var(--charcoal));
  --faint-30: color-mix(in srgb, var(--offwhite) 30%, transparent);
  --faint-55: color-mix(in srgb, var(--offwhite) 55%, transparent);

  --sans: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(64px, 8.5vw, 116px);
  --motion: 700ms;
  --radius: 6px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 24px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-underline-offset: 0.2em; text-decoration-thickness: 1px; }
button { font: inherit; color: inherit; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; text-wrap: balance; }

:focus-visible { outline: 2px solid var(--charcoal); outline-offset: 3px; border-radius: 2px; }
.dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible, .booking :focus-visible, .journey :focus-visible { outline-color: var(--gold); }

.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--gold); color: var(--charcoal); padding: 10px 16px; border-radius: var(--radius); font-weight: 600; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-block: var(--section); }
.tint { background: var(--paper-tint); }
.dark { background: var(--charcoal); color: var(--offwhite); }

/* ---------- Type scale ---------- */
.display { font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.75rem); line-height: 1.02; letter-spacing: -0.04em; font-weight: 600; }
.h1 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.9rem); line-height: 1.05; letter-spacing: -0.035em; }
.h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); line-height: 1.08; letter-spacing: -0.03em; }
.h3 { font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem); line-height: 1.25; letter-spacing: -0.015em; }
.lede { font-size: clamp(1.1rem, 1.02rem + 0.35vw, 1.25rem); line-height: 1.55; color: var(--ink-2); max-width: 36em; }
.dark .lede, .dark .muted { color: var(--grey-on-dark); }
.muted { color: var(--ink-2); }
.small { font-size: 0.875rem; }
.label { display: inline-flex; align-items: center; gap: 10px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 20px; }
.label::before { content: ""; width: 22px; height: 12px; flex: none; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cg fill='none' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='M1 1.5h7' stroke='%23222528' stroke-opacity='.3'/%3E%3Cpath d='M1 6h12' stroke='%23222528' stroke-opacity='.55'/%3E%3Cpath d='M1 10.5h19M20 10.5l-3-2M20 10.5l-3 2' stroke='%23C79A4B' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E"); }
.dark .label { color: var(--grey-on-dark); }
.dark .label::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cg fill='none' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='M1 1.5h7' stroke='%23F3EFE9' stroke-opacity='.3'/%3E%3Cpath d='M1 6h12' stroke='%23F3EFE9' stroke-opacity='.55'/%3E%3Cpath d='M1 10.5h19M20 10.5l-3-2M20 10.5l-3 2' stroke='%23C79A4B' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E"); }
.gold { color: var(--gold); } /* on charcoal only */
.measure { max-width: 30em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 14px 22px; border-radius: var(--radius); border: 1px solid transparent;
  background: var(--charcoal); color: var(--offwhite); text-decoration: none; font-weight: 500; font-size: 1rem; line-height: 1.2; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.btn .arr { width: 18px; height: 18px; flex: none; color: var(--gold); transition: transform .2s var(--ease); }
.btn:hover { background: color-mix(in srgb, var(--offwhite) 14%, var(--charcoal)); }
.btn:hover .arr { transform: translateX(3px); }
.dark .btn, .site-header .btn, .booking .btn { background: var(--gold); color: var(--charcoal); }
.dark .btn .arr, .site-header .btn .arr, .booking .btn .arr { color: var(--charcoal); }
.dark .btn:hover, .site-header .btn:hover, .booking .btn:hover { background: color-mix(in srgb, var(--offwhite) 22%, var(--gold)); }
.link { font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.link:hover { border-color: currentColor; }
.dark .link { border-color: var(--dark-line); }
.dark .link:hover { border-color: var(--offwhite); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }

/* ---------- Review banner ---------- */
.review-banner { background: var(--charcoal); color: var(--grey-on-dark); border-bottom: 1px solid var(--dark-line); font-size: 0.8125rem; line-height: 1.4; padding: 8px var(--gutter); text-align: center; }
.review-banner strong { color: var(--offwhite); font-weight: 600; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: var(--charcoal); color: var(--offwhite); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; flex: none; }
.brand img { width: auto; height: 40px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) { text-decoration: none; font-size: 0.9375rem; font-weight: 500; padding: 10px 14px; color: var(--grey-on-dark); transition: color .15s var(--ease); }
.nav a:not(.btn):hover { color: var(--offwhite); box-shadow: inset 0 -1px 0 var(--faint-30); }
.nav a[aria-current="page"] { color: var(--offwhite); box-shadow: inset 0 -2px 0 var(--gold); }
.nav .btn { min-height: 44px; padding: 10px 16px; font-size: 0.9375rem; margin-left: 12px; }
.menu-btn { display: none; align-items: center; gap: 10px; background: none; border: 1px solid var(--dark-line); color: var(--offwhite); border-radius: var(--radius); min-height: 44px; padding: 8px 14px; font-weight: 500; cursor: pointer; }
.menu-btn .bars { width: 16px; height: 10px; position: relative; }
.menu-btn .bars::before, .menu-btn .bars::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform .2s var(--ease), top .2s var(--ease); }
.menu-btn .bars::before { top: 1px; } .menu-btn .bars::after { top: 7px; }
.menu-btn[aria-expanded="true"] .bars::before { top: 4px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .bars::after { top: 4px; transform: rotate(-45deg); }
@media (max-width: 899px) {
  :root { --header-h: 64px; }
  .brand img { height: 34px; }
  .menu-btn { display: inline-flex; }
  .nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--charcoal); border-top: 1px solid var(--dark-line); padding: 4px var(--gutter) 24px; box-shadow: 0 24px 40px -20px rgba(0,0,0,.5); }
  .nav.is-open { display: flex; }
  .nav a:not(.btn) { padding: 18px 0; border-bottom: 1px solid var(--dark-line); font-size: 1.125rem; color: var(--offwhite); }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--gold); padding-left: 14px; }
  .nav .btn { margin: 20px 0 0; min-height: 54px; }
}

/* ---------- Hero (charcoal, oversized JRP mark) ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(56px, 8vw, 120px) clamp(64px, 9vw, 132px); }
.hero .wrap { position: relative; z-index: 1; }
.hero-copy { max-width: 700px; }
@media (min-width: 1040px) { .hero-copy { max-width: min(700px, 54vw); } }
.hero-title { margin: 0; font-weight: 600; }
.hero-title .t1 { display: block; font-size: clamp(3rem, 1.2rem + 7.4vw, 7.25rem); line-height: .94; letter-spacing: -0.05em; color: var(--offwhite); }
.hero-title .t2 { display: block; margin-top: .5em; font-size: clamp(1.45rem, 1rem + 1.9vw, 2.6rem); line-height: 1.12; letter-spacing: -0.03em; font-weight: 500; color: var(--grey-on-dark); max-width: 17em; }
.hero-title .t2 em { font-style: normal; color: var(--offwhite); }
.hero .lede { margin: 28px 0 36px; max-width: 32em; }
.hero-for { display: flex; align-items: flex-start; gap: 12px; margin: 30px 0 0; padding-top: 22px; border-top: 1px solid var(--dark-line); color: var(--grey-on-dark); font-size: 0.9688rem; max-width: 34em; }
.hero-for b { color: var(--offwhite); font-weight: 500; }
.hero-for::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: .55em; border-radius: 50%; background: var(--gold); }

/* the mark: geometry copied from brand/svg/jrp-mark-light.svg, scaled up */
.hero-mark { position: absolute; z-index: 0; pointer-events: none; top: 52%; right: -1.5vw; width: 44vw; max-width: 760px; transform: translateY(-50%); overflow: visible; }
@media (min-width: 1728px) { .hero-mark { right: calc(50% - 864px); } }
.hero-mark line, .hero-mark path { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6; }
.hero-mark .b1 { stroke: var(--offwhite); stroke-opacity: .14; }
.hero-mark .b2 { stroke: var(--offwhite); stroke-opacity: .26; }
.hero-mark .b3, .hero-mark .ah { stroke: var(--gold); }
.hero-mark .b3 { stroke-opacity: .9; }
/* The oversized mark only appears where it can sit beside the headline (laptop/desktop). */
@media (max-width: 1039px) { .hero-mark { display: none; } }

/* load sequence: headline lines rise, bars draw in order, arrow lands, then drifts forward very slightly */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-title .t1, .js .hero-title .t2, .js .hero .lede, .js .hero .cta-row, .js .hero-for { animation: rise .8s var(--ease) both; }
  .js .hero-title .t2 { animation-delay: .12s; }
  .js .hero .lede { animation-delay: .22s; }
  .js .hero .cta-row { animation-delay: .32s; }
  .js .hero-for { animation-delay: .42s; }
  .js .hero-mark .bar { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1s var(--ease) forwards; }
  .js .hero-mark .b1 { animation-delay: .3s; }
  .js .hero-mark .b2 { animation-delay: .55s; }
  .js .hero-mark .b3 { animation-delay: .8s; }
  .js .hero-mark .ah { opacity: 0; animation: land .5s var(--ease) 1.6s forwards; }
  .js .hero-mark .go { animation: drift 7s ease-in-out 2.4s infinite; }
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes land { from { opacity: 0; transform: translateX(-4px); } to { opacity: 1; transform: none; } }
@keyframes drift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(2.5px); } }

/* ---------- Section heads ---------- */
.head { display: grid; gap: 18px 64px; margin-bottom: clamp(40px, 5vw, 64px); }
@media (min-width: 900px) {
  .head--split { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
  .head--split > .label { grid-column: 1 / -1; margin-bottom: 0; }
  .head--split > .lede, .head--split > div { padding-top: .45em; }
}
.head--split > .label { margin-bottom: 0; }
.head .lede { margin: 0; }

/* ---------- Demand: sources + look-you-up journey ---------- */
.sources { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.sources li { font-size: 0.9375rem; font-weight: 500; padding: 7px 12px; border: 1px solid var(--line-strong); border-radius: 4px; }
.lookup { margin-top: clamp(40px, 5vw, 56px); position: relative; }
.lookup-head { margin-bottom: clamp(28px, 3.5vw, 40px); display: grid; gap: 10px; }
.lookup-head .then { display: inline-flex; align-items: center; gap: 10px; font-size: 0.8125rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
.lookup-head .then::before { content: ""; width: 2px; height: 28px; border-radius: 2px; background: linear-gradient(var(--line-strong), var(--gold)); }
.lookup-head p { margin: 0; color: var(--ink-2); max-width: 36em; }
.steps { display: grid; counter-reset: s; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 0 0 32px 48px; }
.step::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8125rem; font-weight: 600; background: var(--charcoal); color: var(--offwhite); z-index: 1; }
.step::after { content: ""; position: absolute; left: 14px; top: 30px; bottom: 0; width: 2px; background: var(--line-strong); transform-origin: top; }
@media (min-width: 900px) {
  .step { padding: 52px 28px 0 0; }
  .step::after { left: 30px; right: 0; top: 14px; bottom: auto; width: auto; height: 2px; transform-origin: left; }
}
.step h3 { font-size: 1.4rem; letter-spacing: -0.025em; margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-2); font-size: 0.9688rem; }
.step .eg { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.step .eg span { font-size: 0.8125rem; padding: 3px 8px; border-radius: 3px; background: color-mix(in srgb, var(--charcoal) 7%, transparent); }
.step:last-child::after { background: var(--gold); }
.step:last-child::before { background: var(--gold); color: var(--charcoal); }
@media (max-width: 899px) { .step:last-child { padding-bottom: 20px; } }
.outcomes { display: grid; gap: 12px; }
@media (min-width: 700px) { .outcomes { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .outcomes { margin-top: 32px; } }
.outcome { border-radius: var(--radius); padding: 18px 20px; }
.outcome b { display: block; font-weight: 600; margin-bottom: 2px; }
.outcome span { font-size: 0.9375rem; }
.outcome--yes { background: var(--charcoal); color: var(--offwhite); box-shadow: inset 3px 0 0 var(--gold); }
.outcome--yes span { color: var(--grey-on-dark); }
.outcome--no { border: 1px dashed var(--line-strong); color: var(--ink-2); }
.outcome--no b { color: var(--ink); }

/* ---------- The gap (centred composition, looping flow) ---------- */
.gap { text-align: center; }
.gap .label { justify-content: center; }
.gap .h2 { margin-inline: auto; max-width: 18em; }
.gap-diagram { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: clamp(10px, 2vw, 28px); max-width: 980px; margin: clamp(44px, 6vw, 76px) auto clamp(36px, 5vw, 56px); --loop: 7s; }
.gap-node { font-size: clamp(1.1rem, 0.85rem + 1.6vw, 2.2rem); font-weight: 600; letter-spacing: -0.03em; transition: color .4s var(--ease); }
.gap-line { height: 3px; border-radius: 3px; background: var(--faint-30); position: relative; overflow: hidden; }
.gap-line i { position: absolute; top: 0; bottom: 0; left: calc(var(--pw, 35%) * -1); width: var(--pw, 35%); background: linear-gradient(90deg, transparent, var(--gold)); opacity: 0; border-radius: 2px; }
.gap-q { position: relative; width: clamp(62px, 10vw, 124px); aspect-ratio: 1; border-radius: 50%; border: 2px dashed var(--gold); display: grid; place-items: center; font-size: clamp(1.7rem, 1rem + 3.2vw, 3.4rem); font-weight: 500; color: var(--gold); }
.gap-q::after { content: ""; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--gold); opacity: 0; }
.gap-caption { font-size: 0.8125rem; color: var(--grey-on-dark); margin: -18px 0 clamp(36px, 5vw, 56px); }
.gap-points { display: grid; max-width: 980px; margin: 0 auto; border-top: 1px solid var(--dark-line); }
@media (min-width: 800px) { .gap-points { grid-template-columns: repeat(3, 1fr); } }
.gap-points li { padding: 22px 12px; border-bottom: 1px solid var(--dark-line); color: var(--grey-on-dark); }
@media (min-width: 800px) { .gap-points li { padding: 26px 24px; } .gap-points li + li { border-left: 1px solid var(--dark-line); } }
.gap-points b { display: block; color: var(--offwhite); font-weight: 600; margin-bottom: 6px; }
.gap-honest { margin: 28px auto 0; color: var(--grey-on-dark); max-width: 40em; }
.gap-close { display: grid; justify-items: center; gap: 24px; margin-top: clamp(44px, 6vw, 72px); }
.gap-close .h2 { margin: 0; }

/* loop only while visible (.is-live) and only when motion is allowed */
@media (prefers-reduced-motion: no-preference) {
  .gap-diagram.is-live .gap-line.l1 i { animation: flow1 var(--loop) linear infinite; }
  .gap-diagram.is-live .gap-line.l2 i { animation: flow2 var(--loop) linear infinite; }
  .gap-diagram.is-live .gap-q { animation: qlight var(--loop) ease-in-out infinite; }
  .gap-diagram.is-live .gap-q::after { animation: qring var(--loop) ease-out infinite; }
  .gap-diagram.is-live .gap-node.to { animation: arrive var(--loop) ease-in-out infinite; }
}
@keyframes flow1 { 0% { left: calc(var(--pw, 35%) * -1); opacity: 0; } 4% { opacity: 1; } 34% { left: 100%; opacity: 1; } 35%, 100% { left: 100%; opacity: 0; } }
@keyframes flow2 { 0%, 44% { left: calc(var(--pw, 35%) * -1); opacity: 0; } 48% { opacity: 1; } 78% { left: 100%; opacity: 1; } 79%, 100% { left: 100%; opacity: 0; } }
@keyframes qlight { 0%, 30% { background: transparent; color: var(--gold); border-style: dashed; } 36%, 46% { background: color-mix(in srgb, var(--gold) 18%, transparent); color: var(--offwhite); border-style: solid; } 56%, 100% { background: transparent; color: var(--gold); border-style: dashed; } }
@keyframes qring { 0%, 33% { opacity: 0; transform: scale(1); } 36% { opacity: .7; transform: scale(1); } 52%, 100% { opacity: 0; transform: scale(1.35); } }
@keyframes arrive { 0%, 76% { color: var(--offwhite); } 82%, 92% { color: var(--gold); } 100% { color: var(--offwhite); } }
/* Phones: the lines are only ~40px wide here, so give them more room and a proportionate pulse.
   Same loop, same timing; desktop values are untouched. */
@media (max-width: 699px) {
  .gap-diagram { gap: 6px; }
  .gap-node { font-size: 1rem; }
  .gap-q { width: 48px; font-size: 1.6rem; }
  .gap-line { --pw: 60%; overflow: visible; clip-path: inset(-4px 0); }
  .gap-line i { box-shadow: 0 0 6px color-mix(in srgb, var(--gold) 70%, transparent); }
}
@media (prefers-reduced-motion: reduce) { .gap-q { border-style: solid; background: color-mix(in srgb, var(--gold) 14%, transparent); } }

/* ---------- Bridge: what's happening between being found and becoming a customer ---------- */
.bridge .h2 { max-width: 20em; }
.track { position: relative; display: grid; gap: 0; margin-top: clamp(36px, 5vw, 56px); counter-reset: t; }
@media (min-width: 900px) { .track { grid-template-columns: repeat(5, 1fr); } }
.track-line { position: absolute; left: 15px; top: 16px; bottom: 16px; width: 2px; background: var(--line); }
.track-line::after { content: ""; position: absolute; inset: 0; background: linear-gradient(var(--line-strong), var(--gold)); transform-origin: top; }
@media (min-width: 900px) {
  .track-line { left: 16px; right: 10%; top: 15px; bottom: auto; width: auto; height: 2px; }
  .track-line::after { background: linear-gradient(90deg, var(--line-strong), var(--gold)); transform-origin: left; }
}
.track.rv-armed .track-line::after { transform: scaleY(0); transition: transform 1.4s var(--ease) .1s; }
@media (min-width: 900px) { .track.rv-armed .track-line::after { transform: scaleX(0); } }
.track.rv-armed.is-in .track-line::after { transform: none; }
.tstop { position: relative; padding: 0 0 30px 52px; }
@media (min-width: 900px) { .tstop { padding: 52px 22px 0 0; } }
.tstop::before { counter-increment: t; content: counter(t); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8125rem; font-weight: 600; background: var(--paper); border: 2px solid var(--charcoal); color: var(--charcoal); }
.tstop:last-of-type::before { background: var(--gold); border-color: var(--gold); }
.tstop h3 { font-size: 1.35rem; letter-spacing: -0.025em; }
.tstop .q { margin: 6px 0 12px; font-weight: 500; }
.tstop .stall { margin: 0; font-size: 0.875rem; color: var(--ink-2); padding-top: 10px; border-top: 1px dashed var(--line-strong); }
.tstop .stall b { display: block; font-size: 0.6875rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 2px; }
.bridge-foot { margin-top: clamp(32px, 4vw, 48px); font-size: 1.125rem; font-weight: 500; max-width: 34em; }

/* ---------- Front-of-journey stages ---------- */
.stages { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 700px) { .stages { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .stages { grid-template-columns: repeat(4, 1fr); } }
.stage-card { position: relative; background: var(--paper); padding: clamp(22px, 2.6vw, 30px); display: grid; align-content: start; gap: 12px; transition: background-color .25s var(--ease); }
.stage-card::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.stage-card:hover { background: color-mix(in srgb, var(--charcoal) 3%, var(--paper)); }
.stage-card:hover::after { transform: none; }
.stage-card .for { font-size: 0.8125rem; color: var(--ink-2); }
.stage-card .for b { color: var(--ink); font-weight: 500; }
.stage-card .n { font-size: 0.75rem; font-weight: 500; letter-spacing: .12em; color: var(--ink-2); }
.stage-card .n::after { content: ""; display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--gold); margin-top: 10px; }
.stage-card h3 { font-size: 1.5rem; letter-spacing: -0.025em; }
.stage-card .purpose { margin: 0; font-weight: 500; }
.stage-card .ask { margin: 0; font-size: 0.9375rem; color: var(--ink-2); }
.stage-card ul { display: grid; gap: 8px; margin-top: 6px; padding-top: 16px; border-top: 1px solid var(--line); }
.stage-card li { font-size: 0.9375rem; color: var(--ink-2); padding-left: 16px; position: relative; }
.stage-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 2px; background: var(--ink-2); }
.chain { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin-top: 28px; font-size: 0.9375rem; color: var(--ink-2); }
.chain b { color: var(--ink); font-weight: 600; }
.chain .sep { color: var(--ink-2); }
.chain .later { color: var(--ink-2); }

/* ---------- System behind it ---------- */
.system-grid { display: grid; gap: clamp(40px, 5vw, 64px); align-items: start; }
@media (min-width: 1040px) { .system-grid { grid-template-columns: 0.85fr 1.15fr; } }
.loop3 { display: grid; border-top: 1px solid var(--line); margin-top: 32px; }
.loop3 li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.loop3 b { font-weight: 600; }
.loop3 span { color: var(--ink-2); font-size: 0.9688rem; }
.visibility { margin-top: 28px; }
.visibility .list-title { font-size: 0.8125rem; font-weight: 500; color: var(--ink-2); margin-bottom: 12px; }
.visibility ul { display: flex; flex-wrap: wrap; gap: 8px; }
.visibility li { font-size: 0.875rem; padding: 6px 10px; border-radius: 4px; border: 1px solid var(--line-strong); }
.system-note { margin-top: 24px; font-size: 0.9375rem; color: var(--ink-2); max-width: 34em; }
.system-cta { margin-top: 32px; }


/* ---------- Website vs JRP: one connected proposition ---------- */
.whole { margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(32px, 4vw, 44px); border-top: 1px solid var(--line); }
.whole-lead { margin: 0 0 24px; font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); line-height: 1.45; max-width: 40em; }
.whole-lead span { color: var(--ink-2); }
.whole-lead b { font-weight: 600; }
.whole-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 700px) { .whole-row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .whole-row { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0; } }
.whole-row li { position: relative; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--paper); }
.whole-row b { display: block; font-weight: 600; }
.whole-row span { font-size: 0.875rem; color: var(--ink-2); }
@media (min-width: 1100px) {
  .whole-row li { border-radius: 0; border-right-width: 0; padding-right: 22px; }
  .whole-row li:first-child { border-radius: var(--radius) 0 0 var(--radius); }
  .whole-row li:last-child { border-right-width: 1px; border-radius: 0 var(--radius) var(--radius) 0; }
  .whole-row li:not(:last-child)::after { content: ""; position: absolute; z-index: 1; right: -6px; top: 50%; width: 10px; height: 10px; border-top: 1px solid var(--line-strong); border-right: 1px solid var(--line-strong); background: var(--paper); transform: translateY(-50%) rotate(45deg); }
}
.whole-row li:last-child { background: var(--charcoal); border-color: var(--charcoal); color: var(--offwhite); }
.whole-row li:last-child span { color: var(--grey-on-dark); }
.whole-row li.is-auto { box-shadow: inset 0 -2px 0 var(--gold); }

/* ---------- The system behind it: capture, organise, follow up, convert, measure ---------- */
.layers2 { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: clamp(28px, 4vw, 40px); }
@media (min-width: 800px) { .layers2 { grid-template-columns: 1fr 1fr; } }
.layers2 > div { background: var(--paper); padding: clamp(20px, 2.6vw, 28px); }
.layers2 .k { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.layers2 h3 { font-size: 1.35rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.layers2 p { margin: 0; color: var(--ink-2); }
.layers2 > div:last-child { background: var(--charcoal); color: var(--offwhite); }
.layers2 > div:last-child p, .layers2 > div:last-child .k { color: var(--grey-on-dark); }
.keyline { font-size: clamp(1.25rem, 1rem + 1vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; max-width: 30em; margin: 0 0 clamp(28px, 4vw, 40px); }
.keyline span { color: var(--ink-2); font-weight: 500; }

.ops { margin: 0; background: var(--charcoal); color: var(--offwhite); border-radius: 12px; overflow: hidden; font-size: 0.8125rem; box-shadow: 0 40px 80px -48px rgba(34,37,40,.6); }
.ops-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 14px 18px; border-bottom: 1px solid var(--dark-line); }
.ops-top .who { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9375rem; }
.ops-top .who img { width: 28px; height: auto; }
.ops-top .who span { color: var(--grey-on-dark); font-weight: 400; font-size: 0.8125rem; }
.badge { display: inline-flex; align-items: center; font-size: 0.6875rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); padding: 4px 8px; border-radius: 3px; }
.ops-in { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 12px 18px; border-bottom: 1px solid var(--dark-line); color: var(--grey-on-dark); }
.ops-in .src { padding: 4px 9px; border-radius: 3px; background: var(--dark-raise-2); color: var(--offwhite); transition: box-shadow .4s var(--ease), background-color .4s var(--ease); }
.ops-in .src.is-hot { background: color-mix(in srgb, var(--gold) 26%, var(--charcoal)); box-shadow: 0 0 0 1px var(--gold); }
.ops-t { font-size: 0.6875rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-on-dark); margin-right: 4px; }

.board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--dark-line); }
@media (min-width: 760px) { .board { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .board { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.col { background: var(--charcoal); padding: 12px 10px 14px; min-height: 268px; transition: background-color .5s var(--ease); }
.col-h { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; padding: 0 2px 10px; }
.col-h span { font-size: 0.6875rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-on-dark); }
.col-h b { font-size: 1.25rem; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; transition: color .4s var(--ease); }
.col.is-active { background: color-mix(in srgb, var(--offwhite) 4%, var(--charcoal)); }
.col.is-active .col-h b { color: var(--gold); }
.col[data-stage="booked"] .col-h span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 6px; vertical-align: 1px; }
.ops-list { display: grid; gap: 6px; }
.op { background: var(--dark-raise-2); border-radius: 4px; padding: 8px 9px; display: grid; gap: 2px; border: 1px solid transparent; }
.op b { font-weight: 500; font-size: 0.8125rem; line-height: 1.3; }
.op span { color: var(--grey-on-dark); font-size: 0.75rem; }
.op em { font-style: normal; font-variant-numeric: tabular-nums; font-size: 0.75rem; color: var(--offwhite); }
.op--live { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 14%, var(--charcoal)); }
.op--live .op-status { color: var(--gold); font-weight: 600; }
.op.enter { animation: opEnter .6s var(--ease) both; }
@keyframes opEnter { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.more { color: var(--grey-on-dark); font-size: 0.75rem; padding: 2px 2px 0; }

.rail { display: grid; gap: 1px; background: var(--dark-line); border-top: 1px solid var(--dark-line); }
@media (min-width: 900px) { .rail { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.rail-h { grid-column: 1 / -1; background: var(--charcoal); padding: 12px 18px 4px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.rule { background: var(--charcoal); padding: 10px 18px 14px; display: grid; gap: 3px; transition: background-color .4s var(--ease); position: relative; }
@media (min-width: 900px) { .rule { padding: 10px 14px 14px; } }
.rule .when { font-size: 0.6875rem; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-on-dark); }
.rule .then { font-size: 0.8125rem; }
.rule .then::before { content: "→ "; color: var(--gold); }
.rule.is-firing { background: color-mix(in srgb, var(--gold) 12%, var(--charcoal)); }
.rule.is-firing::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--gold); }

.phases { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; padding: 12px 18px; border-top: 1px solid var(--dark-line); color: var(--grey-on-dark); font-size: 0.8125rem; }
.phases b { font-weight: 500; padding: 3px 8px; border-radius: 3px; transition: background-color .4s var(--ease), color .4s var(--ease); }
.phases b.is-on { background: var(--gold); color: var(--charcoal); }
.phases i { font-style: normal; opacity: .5; }

.vis { display: grid; gap: 1px; background: var(--dark-line); border-top: 1px solid var(--dark-line); }
@media (min-width: 760px) { .vis { grid-template-columns: 1.2fr 1fr; } }
.vis > div { background: var(--charcoal); padding: 12px 18px 16px; transition: background-color .4s var(--ease); }
.vis.is-on > div { background: color-mix(in srgb, var(--offwhite) 4%, var(--charcoal)); }
.vbars { display: grid; gap: 7px; margin-top: 8px; }
.vbars div { display: grid; grid-template-columns: 116px 1fr; gap: 10px; align-items: center; }
.vbars span { color: var(--grey-on-dark); }
.vbars i { display: block; height: 6px; border-radius: 2px; width: var(--w); background: var(--faint-55); }
.vbars div:first-child i { background: var(--gold); }
.vflow { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.vflow b { font-weight: 500; padding: 4px 8px; border-radius: 3px; background: var(--dark-raise-2); }
.vflow i { font-style: normal; color: var(--gold); }
.ops figcaption { padding: 12px 18px; border-top: 1px solid var(--dark-line); color: var(--grey-on-dark); font-size: 0.75rem; }
.system-foot { display: grid; gap: 22px; margin-top: clamp(28px, 4vw, 40px); }
@media (min-width: 900px) { .system-foot { grid-template-columns: 1fr auto; align-items: center; gap: 48px; } }
.system-foot p { margin: 0; color: var(--ink-2); max-width: 44em; }

/* ---------- See what this could look like: the journey varies by business ---------- */
.fit-grid { display: grid; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (min-width: 1000px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
.fit-grid .lede { margin-top: 20px; }
.fit-cta { margin-top: 32px; }
.fit-cta p { margin: 14px 0 0; color: var(--grey-on-dark); font-size: 0.9375rem; max-width: 30em; }
.vary { border-top: 1px solid var(--dark-line); }
.vary li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--dark-line); }
.vary .q { color: var(--grey-on-dark); }
.vary .a { position: relative; display: inline-block; min-width: 9.5em; text-align: right; font-weight: 600; color: var(--offwhite); }
.vary .a span { display: inline-block; }
.vary .a span.swap { animation: swap .5s var(--ease); }
@keyframes swap { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.vary li:last-child .a { color: var(--gold); }

/* ongoing section on a light background */
.tint .cycle, .tint .cycle > li, .tint .ongoing-note { border-color: var(--line); }
.tint .cycle::before { background: linear-gradient(90deg, var(--line-strong), var(--gold)); }
.tint .cycle .n { color: var(--ink-2); }
.tint .cycle p { color: var(--ink-2); }
.tint .cycle .inc li { background: color-mix(in srgb, var(--charcoal) 7%, transparent); color: var(--ink); }

/* ---------- Build / Launch / Manage / Improve ---------- */
.cycle { position: relative; display: grid; border-top: 1px solid var(--dark-line); }
.cycle::before { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px; background: linear-gradient(90deg, var(--faint-30), var(--gold)); transform-origin: left; }
.cycle.rv-armed::before { transform: scaleX(0); transition: transform 1.4s var(--ease); }
.cycle.rv-armed.is-in::before { transform: none; }
@media (min-width: 700px) { .cycle { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .cycle { grid-template-columns: repeat(4, 1fr); } }
.cycle > li { padding: 28px 24px 30px 0; border-bottom: 1px solid var(--dark-line); display: grid; align-content: start; gap: 10px; }
@media (min-width: 700px) and (max-width: 1099px) { .cycle > li:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--dark-line); } }
@media (min-width: 1100px) { .cycle > li { border-bottom: 0; } .cycle > li + li { padding-left: 24px; border-left: 1px solid var(--dark-line); } }
.cycle .n { font-size: 0.75rem; font-weight: 500; letter-spacing: .12em; color: var(--gold); }
.cycle h3 { font-size: 1.6rem; letter-spacing: -0.03em; }
.cycle p { margin: 0; color: var(--grey-on-dark); font-size: 0.9688rem; }
.cycle .inc { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.cycle .inc li { font-size: 0.8125rem; padding: 4px 9px; border-radius: 3px; background: var(--dark-raise-2); color: var(--offwhite); }
.ongoing-note { display: grid; gap: 24px; margin-top: clamp(40px, 5vw, 56px); padding-top: 32px; border-top: 1px solid var(--dark-line); }
@media (min-width: 900px) { .ongoing-note { grid-template-columns: 1fr auto; align-items: center; } }
.ongoing-note p { margin: 0; font-size: 1.15rem; max-width: 34em; }

/* ---------- Credibility ---------- */
.cred { display: grid; gap: clamp(40px, 5vw, 72px); }
@media (min-width: 900px) { .cred { grid-template-columns: 0.85fr 1.15fr; } }
.commit { display: grid; border-top: 1px solid var(--line); }
.commit li { display: grid; gap: 4px; padding: 20px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 700px) { .commit li { grid-template-columns: 210px 1fr; gap: 24px; } }
.commit b { font-weight: 600; }
.commit span { color: var(--ink-2); }
.faq-title { font-size: 0.8125rem; font-weight: 500; color: var(--ink-2); margin: 48px 0 8px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 0; font-weight: 500; font-size: 1.0625rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; font-size: 1.4rem; color: var(--ink-2); transition: transform .2s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 22px; color: var(--ink-2); max-width: 42em; }
.faq .a p { margin: 0; }

/* ---------- Final CTA ---------- */
.proof-cta { margin-top: clamp(40px, 5vw, 56px); display: flex; justify-content: flex-end; }
@media (max-width: 899px) { .proof-cta { justify-content: flex-start; } }
.final { display: grid; gap: 32px; }
@media (min-width: 900px) { .final { grid-template-columns: 1.3fr 0.7fr; align-items: end; gap: 64px; } }
.final .lede { margin: 20px 0 0; }
.final-wrap { position: relative; overflow: hidden; isolation: isolate; }
.final-wrap .wrap { position: relative; z-index: 1; }
.final-mark { position: absolute; z-index: 0; right: -3vw; top: 50%; transform: translateY(-50%); width: min(520px, 36vw); pointer-events: none; }
@media (max-width: 899px) { .final-mark { display: none; } }
.final-wrap .final { grid-template-columns: minmax(0, 1fr); }
.final-wrap .final > div:first-child { max-width: min(720px, 58vw); }
@media (max-width: 899px) { .final-wrap .final > div:first-child { max-width: none; } }
.final-mark line, .final-mark path { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6; }
.final-mark .b1 { stroke: var(--offwhite); stroke-opacity: .06; } .final-mark .b2 { stroke: var(--offwhite); stroke-opacity: .1; } .final-mark .b3, .final-mark .ah { stroke: var(--gold); stroke-opacity: .55; }

/* ---------- Inner pages ---------- */
.page-hero { padding-block: clamp(48px, 7vw, 104px) clamp(40px, 5vw, 72px); }
.page-hero .h1 { max-width: 15em; }
.page-hero .lede { margin-top: 22px; }
.steps-nav { position: sticky; top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); z-index: 20; background: var(--paper); border-bottom: 1px solid var(--line); }
.steps-nav ol { display: flex; gap: 4px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.steps-nav ol::-webkit-scrollbar { display: none; }
.steps-nav a { display: block; white-space: nowrap; text-decoration: none; font-size: 0.875rem; font-weight: 500; padding: 8px 12px; border-radius: 4px; color: var(--ink-2); }
.steps-nav a:hover { color: var(--ink); }
.steps-nav a.is-active { background: var(--charcoal); color: var(--offwhite); }
.stage { display: grid; gap: 24px; padding-block: clamp(48px, 7vw, 88px); border-top: 1px solid var(--line); }
@media (min-width: 900px) { .stage { grid-template-columns: 0.3fr 1fr 1fr; gap: 48px; } }
.stage .num { font-size: clamp(2.6rem, 2rem + 2.6vw, 4rem); line-height: .9; font-weight: 500; letter-spacing: -0.05em; color: var(--ink-2); }
.stage .num::after { content: ""; display: block; width: 22px; height: 3px; border-radius: 2px; background: var(--gold); margin-top: 14px; }
.stage .purpose { margin-top: 10px; font-size: 1.125rem; font-weight: 500; }
.stage .body { margin-top: 18px; color: var(--ink-2); }
.eg-line { margin-top: 18px; font-size: 0.9375rem; color: var(--ink-2); padding-left: 14px; border-left: 2px solid var(--line-strong); }
.eg-line b { color: var(--ink); font-weight: 600; }
.list-label { font-size: 0.8125rem; font-weight: 500; color: var(--ink-2); margin-bottom: 12px; }
.ticks { display: grid; border-top: 1px solid var(--line); }
.ticks li { padding: 13px 0 13px 22px; border-bottom: 1px solid var(--line); position: relative; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 1.3em; width: 9px; height: 2px; border-radius: 2px; background: var(--gold); }
.next-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 800px) { .next-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.next-steps li { background: var(--paper); padding: 18px; }
.next-steps b { display: block; font-weight: 600; margin-bottom: 4px; }
.next-steps span { font-size: 0.875rem; color: var(--ink-2); }
.examples { display: grid; border-top: 1px solid var(--line); margin-top: 24px; }
.examples li { display: grid; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 800px) { .examples li { grid-template-columns: 240px 1fr; gap: 32px; } }
.examples b { font-weight: 600; }
.examples span { color: var(--ink-2); }
.beliefs { counter-reset: b; border-top: 1px solid var(--line); }
.beliefs li { counter-increment: b; display: grid; gap: 8px; padding: 28px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .beliefs li { grid-template-columns: 64px 1fr 1.1fr; gap: 40px; align-items: baseline; } }
.beliefs li::before { content: "0" counter(b); font-size: 0.8125rem; font-weight: 500; letter-spacing: .1em; color: var(--ink-2); }
.beliefs p { margin: 0; color: var(--ink-2); }
.grid-2 { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.stack > * + * { margin-top: 1em; }

/* ---------- Contact / booking ---------- */
.book-grid { display: grid; gap: clamp(40px, 5vw, 64px); align-items: start; }
.expect { counter-reset: e; border-top: 1px solid var(--line); }
.expect li { counter-increment: e; display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.expect li::before { content: counter(e); width: 28px; height: 28px; border-radius: 50%; background: var(--charcoal); color: var(--offwhite); display: grid; place-items: center; font-size: 0.8125rem; font-weight: 600; }
.expect b { display: block; font-weight: 600; margin-bottom: 2px; }
.expect p { margin: 0; color: var(--ink-2); font-size: 0.9375rem; }
.booking { background: var(--charcoal); color: var(--offwhite); border-radius: 10px; padding: clamp(24px, 4vw, 44px); }
.booking .h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem); }
.booking p { color: var(--grey-on-dark); }
.booking-intro { margin: 12px 0 0; max-width: 40em; }
/* Calendly inline scheduler: full panel width so it can use its two-column desktop layout */
.calendly-inline-widget { margin-top: 0; min-width: 320px; height: 760px; border-radius: var(--radius); overflow: hidden; background: var(--offwhite); }
@media (max-width: 899px) { .calendly-inline-widget { height: 1240px; } } /* stacked mobile layout needs more height */
@media (max-width: 599px) {
  .booking { padding: 0; overflow: hidden; }
  .booking > .h2, .booking > .booking-intro, .booking > .config-note { margin-left: 20px; margin-right: 20px; }
  .calendly-inline-widget { border-radius: 0; }
}
/* What to expect: three steps side by side above the scheduler on wider screens */
@media (min-width: 900px) {
  .expect { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px; }
  .expect li { border-bottom: 0; }
}
.config-note { margin-top: 20px; padding: 14px 16px; border: 1px dashed var(--gold); border-radius: var(--radius); font-size: 0.875rem; color: var(--grey-on-dark); }
.config-note code { color: var(--offwhite); font-size: 0.8125rem; }
.btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }
.direct { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.9375rem; color: var(--ink-2); }

/* ---------- Placeholders (human-attention) ---------- */
.ph { background: color-mix(in srgb, var(--gold) 16%, transparent); border: 1px dashed var(--gold); border-radius: 3px; padding: 1px 6px; font-size: 0.85em; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.dark .ph, .site-footer .ph, .review-banner .ph, .booking .ph { color: var(--offwhite); }
.ph-block { display: block; padding: 12px 14px; margin: 14px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--grey-on-dark); padding-block: clamp(56px, 7vw, 88px) 32px; font-size: 0.9375rem; border-top: 1px solid var(--dark-line); }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 0.6fr 0.8fr; } }
.site-footer .brand img { height: 40px; }
.footer-line { font-size: 1.125rem; color: var(--offwhite); line-height: 1.4; margin: 22px 0 0; max-width: 22em; font-weight: 500; letter-spacing: -0.01em; }
.site-footer h2 { font-size: 0.75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-on-dark); margin-bottom: 14px; }
.site-footer ul { display: grid; gap: 8px; }
.site-footer a { text-decoration: none; color: var(--offwhite); }
.site-footer a:hover { text-decoration: underline; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--dark-line); font-size: 0.8125rem; }

/* ---------- Sequenced reveals: children appear in order (--i), connectors draw ---------- */
.seq.rv-armed > * { opacity: 0; transform: translateY(12px); transition: opacity var(--motion) var(--ease), transform var(--motion) var(--ease); transition-delay: calc(var(--i, 0) * 140ms); }
.seq.rv-armed.is-in > * { opacity: 1; transform: none; }
.steps.rv-armed .step::after { transform: scaleY(0); transition: transform .6s var(--ease); transition-delay: calc(var(--i, 0) * 140ms + 250ms); }
@media (min-width: 900px) { .steps.rv-armed .step::after { transform: scaleX(0); } }
.steps.rv-armed.is-in .step::after { transform: none; }

/* ---------- Reveal (only elements below the fold at load) ---------- */
.rv.rv-armed { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.rv-armed.is-in { opacity: 1; transform: none; }

.prose { max-width: 42em; }
.prose h2 { font-size: 1.4rem; margin: 2em 0 .6em; letter-spacing: -0.02em; }
.prose p { color: var(--ink-2); }
.prose ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1em; color: var(--ink-2); }
.prose li { margin-bottom: .4em; padding-left: .2em; }
.prose li::marker { color: var(--grey-on-light); }
.prose li strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--ink); text-decoration: underline; }
.prose .updated { font-size: 0.9375rem; margin-top: 14px; }
.page-hero .prose .h1 + .updated { margin-top: 14px; }

.mt-s { margin-top: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
}

.direct--after { margin-top: 0; padding-top: 0; border-top: 0; }
