@import url('../fonts/fonts.css');

/* ==========================================================================
   Benson Partners Chartered Accountants
   Brand palette sampled from the supplied logo artwork:
   charcoal #3d4744 · orange #f89552 · sky #3ac2d8 · lime #81ca9c · lemon #fed65c
   Orange, sky, lime and lemon are FILL/ACCENT colours — they fail contrast as
   small text on white. Use --ink-orange etc. for any coloured text.
   ========================================================================== */

:root {
  --charcoal:      #3d4744;
  --charcoal-900:  #2b3331;
  --charcoal-700:  #4e5b57;
  --charcoal-500:  #6b7975;

  --orange:        #f89552;
  --sky:           #3ac2d8;
  --lime:          #81ca9c;
  --lemon:         #fed65c;

  /* Darkened variants that pass WCAG AA as text on white */
  --ink-orange:    #b45f19;
  --ink-sky:       #10707f;
  --ink-lime:      #2f7a52;

  --paper:         #ffffff;
  --stone:         #f6f5f3;
  --stone-200:     #eceae6;
  --line:          #dedbd5;

  --text:          #2b3331;
  --text-muted:    #5d6a66;

  --font-display: 'Jost', 'Futura', 'Century Gothic', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(43,51,49,.06), 0 2px 8px rgba(43,51,49,.05);
  --shadow-md: 0 4px 12px rgba(43,51,49,.07), 0 12px 32px rgba(43,51,49,.08);
  --shadow-lg: 0 8px 24px rgba(43,51,49,.09), 0 28px 64px rgba(43,51,49,.12);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .97rem + .15vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.015em;
  color: var(--charcoal-900);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 1.6rem + 3.3vw, 4rem); }
h2 { font-size: clamp(1.85rem, 1.35rem + 2.1vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + .5vw, 1.45rem); }
h4 { font-size: 1.05rem; letter-spacing: 0; }
p  { margin: 0 0 1.15em; max-width: 68ch; text-wrap: pretty; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
strong { font-weight: 600; color: var(--charcoal-900); }
::selection { background: var(--orange); color: #fff; }

/* Links look like links — always. */
a { color: var(--ink-orange); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--charcoal-900); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -110%);
  background: var(--charcoal-900); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 8px 8px; z-index: 200; text-decoration: none; font-weight: 600;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: min(var(--wrap), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { width: min(760px, 100%); }
.section { padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem); }
.section--stone { background: var(--stone); }
.section--charcoal { background: var(--charcoal); color: #e8eae9; }
.section--charcoal h2, .section--charcoal h3 { color: #fff; }
.section--charcoal p { color: #c8cfcd; }
.section--charcoal a { color: var(--lemon); }
.section--charcoal a:hover { color: #fff; }

.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-orange); margin: 0 0 .9rem; display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--orange); flex: none; }
.section--charcoal .eyebrow { color: var(--lemon); }
.section--charcoal .eyebrow::before { background: var(--lemon); }

.lede { font-size: clamp(1.1rem, 1.02rem + .45vw, 1.35rem); line-height: 1.55; color: var(--text-muted); }
.section--charcoal .lede { color: #c8cfcd; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1rem + 3vw, 3.25rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  padding: .85rem 1.6rem; border-radius: 100px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: all .2s var(--ease); white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--charcoal); color: #fff; }
.btn--primary:hover { background: var(--charcoal-900); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--orange); color: var(--charcoal-900); }
.btn--accent:hover { background: #f5851f; color: var(--charcoal-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: currentColor; color: var(--charcoal-900); background: transparent; }
.btn--ghost:hover { background: var(--charcoal-900); color: #fff; border-color: var(--charcoal-900); }
.section--charcoal .btn--ghost { color: #fff; }
.section--charcoal .btn--ghost:hover { background: #fff; color: var(--charcoal-900); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Text link with arrow affordance */
.link-arrow {
  font-family: var(--font-display); font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  border-bottom: 2px solid var(--orange); padding-bottom: 2px;
}
.link-arrow::after { content: '→'; transition: transform .2s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; }
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 42px; width: auto; }
@media (max-width: 420px) { .brand img { height: 34px; } }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  color: var(--charcoal-700); text-decoration: none;
  padding: .5rem .85rem; border-radius: 8px; transition: all .18s var(--ease);
}
.nav a:hover { color: var(--charcoal-900); background: var(--stone); }
.nav a[aria-current="page"] { color: var(--charcoal-900); font-weight: 600; box-shadow: inset 0 -2px 0 var(--orange); border-radius: 8px 8px 0 0; }
.header-cta { margin-left: .75rem; padding: .6rem 1.25rem; font-size: .95rem; }

.nav-toggle {
  display: none; background: none; border: 0; padding: .5rem; cursor: pointer;
  color: var(--charcoal-900); margin-left: auto;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 78px 0 auto; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.75rem;
    gap: .25rem; box-shadow: var(--shadow-lg);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all .22s var(--ease);
  }
  .nav[data-open="true"] { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: .85rem 1rem; font-size: 1.1rem; border-bottom: 1px solid var(--stone-200); border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--orange); }
  .header-cta { margin: 1rem 0 0; justify-content: center; border-radius: 100px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--charcoal-900); color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--charcoal-900); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; background: var(--charcoal-900); }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(43,51,49,.96) 0%, rgba(43,51,49,.88) 42%, rgba(43,51,49,.62) 100%);
}
.hero__inner { padding-block: clamp(4.5rem, 3rem + 9vw, 8.5rem); position: relative; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__lede { font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem); color: #d3d9d7; max-width: 46ch; line-height: 1.5; }
.hero .eyebrow { color: var(--lemon); }
.hero .eyebrow::before { background: var(--lemon); }
.hero .btn-row { margin-top: 2.25rem; }

/* Colour bar under the hero — echoes the four brand "B" marks */
.brandbar { display: flex; height: 7px; }
.brandbar span { flex: 1; }
.brandbar span:nth-child(1) { background: var(--orange); }
.brandbar span:nth-child(2) { background: var(--sky); }
.brandbar span:nth-child(3) { background: var(--lime); }
.brandbar span:nth-child(4) { background: var(--lemon); }

/* Page header for interior pages */
.page-head { background: var(--charcoal); color: #fff; padding-block: clamp(3rem, 2rem + 5vw, 5rem); }
.page-head h1 { color: #fff; margin-bottom: .35rem; }
.page-head .lede { color: #c8cfcd; max-width: 54ch; }
.page-head .eyebrow { color: var(--lemon); }
.page-head .eyebrow::before { background: var(--lemon); }

/* ---------- Pillars (3 across) ---------- */
.pillars { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.75rem; position: relative; overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--orange); }
.pillar:nth-child(2)::before { background: var(--sky); }
.pillar:nth-child(3)::before { background: var(--lime); }
.pillar__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(248,149,82,.16); color: var(--ink-orange); margin-bottom: 1.1rem;
}
.pillar:nth-child(2) .pillar__icon { background: rgba(58,194,216,.16); color: var(--ink-sky); }
.pillar:nth-child(3) .pillar__icon { background: rgba(129,202,156,.18); color: var(--ink-lime); }
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { margin-bottom: .4rem; }
.pillar p { margin: 0; color: var(--text-muted); font-size: .98rem; }

/* ---------- Service rows (7 items — a row list, never a ragged grid) ---------- */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 4.5rem 1fr auto; align-items: center; gap: 1.5rem;
  padding: 1.5rem .5rem; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit; transition: background .2s var(--ease), padding .2s var(--ease);
}
.service-row:hover { background: var(--stone); padding-inline: 1.25rem .5rem; color: inherit; }
.service-row__num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  color: var(--charcoal-500); font-variant-numeric: tabular-nums;
}
.service-row:hover .service-row__num { color: var(--ink-orange); }
.service-row h3 { margin: 0 0 .2rem; }
.service-row p { margin: 0; color: var(--text-muted); font-size: .96rem; max-width: 62ch; }
.service-row__go {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--line);
  display: grid; place-items: center; color: var(--charcoal-700); flex: none;
  transition: all .2s var(--ease);
}
.service-row:hover .service-row__go { background: var(--orange); border-color: var(--orange); color: var(--charcoal-900); transform: translateX(3px); }
.service-row__go svg { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .service-row { grid-template-columns: 3rem 1fr; gap: 1rem; padding-block: 1.25rem; }
  .service-row__num { font-size: 1.25rem; }
  .service-row__go { display: none; }
}

/* ---------- Split feature ---------- */
.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; } .split--flip .split__media { order: -1; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media { position: relative; }
.split__badge {
  position: absolute; bottom: -22px; right: -14px; background: var(--lemon); color: var(--charcoal-900);
  padding: 1rem 1.35rem; border-radius: var(--radius); box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-weight: 600; line-height: 1.25; max-width: 210px;
}
.split__badge span { display: block; font-size: 1.8rem; line-height: 1; }
@media (max-width: 520px) { .split__badge { right: 0; bottom: -18px; padding: .8rem 1rem; } }

.tick-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.tick-list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .85rem; }
.tick-list svg { width: 22px; height: 22px; flex: none; color: var(--ink-lime); margin-top: .18em; }

/* ---------- Quote ---------- */
.quote { text-align: center; max-width: 34ch; margin-inline: auto; }
.quote blockquote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.6rem); line-height: 1.22; letter-spacing: -.02em;
  margin: 0 0 1rem; color: #fff;
}
.quote blockquote::before { content: '“'; color: var(--orange); }
.quote blockquote::after  { content: '”'; color: var(--orange); }
.quote cite { font-style: normal; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lemon); font-family: var(--font-display); font-weight: 600; }

/* ---------- Services detail page ---------- */
.svc-layout { display: grid; gap: clamp(2rem, 1rem + 4vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .svc-layout { grid-template-columns: 250px 1fr; } }
.svc-index { position: sticky; top: 6.5rem; }
@media (max-width: 939px) { .svc-index { position: static; } }
.svc-index h2 { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal-500); margin-bottom: 1rem; }
.svc-index ol { list-style: none; padding: 0; margin: 0; counter-reset: svc; }
.svc-index li { margin: 0; counter-increment: svc; }
.svc-index a {
  display: flex; gap: .7rem; padding: .55rem .75rem; border-radius: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  color: var(--charcoal-700); text-decoration: none; border-left: 3px solid transparent;
  transition: all .18s var(--ease); line-height: 1.3;
}
.svc-index a::before { content: counter(svc, decimal-leading-zero); color: var(--charcoal-500); font-variant-numeric: tabular-nums; }
.svc-index a:hover { background: var(--stone); color: var(--charcoal-900); }
.svc-index a.is-active { border-left-color: var(--orange); background: var(--stone); color: var(--charcoal-900); font-weight: 600; }
.svc-index a.is-active::before { color: var(--ink-orange); }

.svc-block { padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); border-bottom: 1px solid var(--line); scroll-margin-top: 6.5rem; }
.svc-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.svc-block__num {
  font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .18em;
  color: var(--ink-orange); display: block; margin-bottom: .5rem;
}
.svc-block h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.1rem); }

.process-steps { list-style: none; counter-reset: step; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .75rem; }
.process-steps li {
  counter-increment: step; display: flex; gap: 1rem; align-items: flex-start; margin: 0;
  background: var(--stone); border-radius: var(--radius); padding: .9rem 1.15rem;
}
.process-steps li::before {
  content: counter(step); flex: none;
  width: 28px; height: 28px; border-radius: 50%; background: var(--charcoal); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  display: grid; place-items: center;
}
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.25rem 0 0; list-style: none; }
.chip-list li {
  margin: 0; padding: .4rem .9rem; border-radius: 100px; background: rgba(58,194,216,.14);
  color: var(--ink-sky); font-size: .9rem; font-weight: 500;
}

/* ---------- Team (6 people → clean 3×2) ---------- */
.team-grid { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.person {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.person__mark {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: .02em;
  background: var(--charcoal); color: #fff; margin-bottom: 1.1rem;
}
.person:nth-child(6n+1) .person__mark { background: var(--charcoal); }
.person:nth-child(6n+2) .person__mark { background: var(--ink-orange); }
.person:nth-child(6n+3) .person__mark { background: var(--ink-sky); }
.person:nth-child(6n+4) .person__mark { background: var(--ink-lime); }
.person:nth-child(6n+5) .person__mark { background: var(--charcoal-700); }
.person:nth-child(6n+6) .person__mark { background: #a4761b; }
.person h3 { margin-bottom: .15rem; font-size: 1.2rem; }
.person__role { font-size: .92rem; color: var(--text-muted); margin: 0 0 1rem; }
.person__role .post-nominal { color: var(--ink-orange); font-weight: 600; }
.person a { margin-top: auto; font-size: .93rem; word-break: break-word; display: inline-flex; align-items: center; gap: .4rem; }
.person a svg { width: 15px; height: 15px; flex: none; }

/* ---------- Contact cards ---------- */
.contact-cards { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.contact-card {
  display: flex; flex-direction: column; gap: .35rem; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: inherit; }
.contact-card__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--stone); color: var(--charcoal); margin-bottom: .85rem; }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal-500); font-weight: 600; }
.contact-card__value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--charcoal-900); line-height: 1.25; word-break: break-word; }
a.contact-card .contact-card__value { border-bottom: 2px solid var(--orange); align-self: flex-start; padding-bottom: 2px; }
.contact-card__note { font-size: .9rem; color: var(--text-muted); margin: .35rem 0 0; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; border-bottom: 1px solid var(--line); margin: 0; }
.info-list dt, .info-list__k { color: var(--text-muted); font-size: .95rem; }
.info-list__v { font-weight: 600; text-align: right; }

/* ---------- Accreditations ---------- */
.accred { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 4rem); }
.accred img { height: 54px; width: auto; opacity: .62; filter: grayscale(1); transition: opacity .2s var(--ease), filter .2s var(--ease); }
.accred img:hover { opacity: 1; filter: grayscale(0); }
.accred--xero img { height: 46px; }

/* ---------- Accordion (collapsed by default) ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: .75rem; overflow: hidden; }
.acc > summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.35rem; display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--charcoal-900);
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary::after {
  content: ''; margin-left: auto; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--charcoal-500); border-bottom: 2px solid var(--charcoal-500);
  transform: rotate(45deg) translate(-2px,-2px); transition: transform .2s var(--ease);
}
.acc[open] > summary::after { transform: rotate(225deg) translate(-2px,-2px); }
.acc[open] > summary { border-bottom: 1px solid var(--line); }
.acc__body { padding: 1.25rem 1.35rem 1.35rem; }
.acc__body > :last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--charcoal); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.25rem, 1.5rem + 3vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(248,149,82,.22), transparent 68%);
  top: -140px; right: -90px; pointer-events: none;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c8cfcd; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.75rem; }

/* ---------- Prose (privacy policy) ---------- */
.prose h2 { font-size: clamp(1.3rem, 1.1rem + .9vw, 1.7rem); margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.prose h3 { margin-top: 1.75rem; font-size: 1.1rem; }
.prose ul { padding-left: 1.15em; }
.prose li { margin-bottom: .55em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-900); color: #b6bfbc; padding-block: clamp(3rem, 2rem + 3vw, 4.25rem) 0; font-size: .95rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer p { color: #b6bfbc; }
.site-footer a { color: #dfe4e2; text-decoration: none; }
.site-footer a:hover { color: var(--lemon); text-decoration: underline; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: .6rem; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 1.25rem; }
.footer-bottom {
  margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem); padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; align-items: center; justify-content: space-between;
  font-size: .875rem;
}
.social { display: flex; gap: .6rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.09); transition: background .2s var(--ease); }
.social a:hover { background: var(--orange); color: var(--charcoal-900); }
.social svg { width: 18px; height: 18px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Unconfirmed content markers ----------
   Deliberately loud. Every one of these must be resolved or removed before
   the site goes live — see LAUNCH-CHECKLIST.md. */
[data-confirm] {
  background: var(--lemon);
  color: var(--charcoal-900) !important;
  box-shadow: 0 0 0 3px var(--lemon);
  border-radius: 3px;
  font-weight: 600;
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .hero__media { display: none !important; }
  body { color: #000; font-size: 11pt; }
  a::after { content: ' (' attr(href) ')'; font-size: .85em; color: #555; }
}
