/* ==========================================================================
   Leading Beyond Expertise — subdomain stylesheet
   Tokens and shared components are carried over from the main
   noblearc.co.uk stylesheet so the two sites read as one brand: Deep Teal /
   Bright Teal / Stone / Gold, Poppins 600 headings, Inter body, Lora italic
   for quotes only, plum as a punctuation-scale detail mark.
   Components new to this site are grouped under "SERIES COMPONENTS" below.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Inter:wght@300;400;500;600&family=Lora:ital@1&display=swap');

:root {
  color-scheme: light;

  /* Brand colour tokens — exact values from the brand board */
  --teal-deep: #0D3D42;
  --teal-bright: #187F86;
  --teal-bright-text: #0F6D73; /* bright teal, darkened for AA text on Stone */
  --teal-faded: #2E6F72;       /* background arcs — nothing else */
  --stone: #F6F5F3;
  --grey: #818181;
  --gold: #EFC180;
  --gold-700: #8A6226;         /* numerals on light grounds: gold darkened to 5:1 on Stone */
  --plum: #833E62;             /* detail mark only */
  --tint: #EFEEEB;
  --white: #FFFFFF;

  --teal-deep-80: #164852;
  --ink-muted: #4A4947;
  --bone-line: #E2E1DE;

  --color-bg: var(--stone);
  --color-text: var(--teal-deep);
  --color-text-muted: var(--ink-muted);
  --color-border: var(--bone-line);
  --color-focus: var(--teal-bright-text);

  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-quote: 'Lora', Georgia, serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-section: 6rem;
  --space-section-sm: 3.5rem;

  --radius-btn: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(13, 61, 66, 0.04), 0 8px 20px -12px rgba(13, 61, 66, 0.16);
  --shadow-lift: 0 2px 4px rgba(13, 61, 66, 0.05), 0 16px 32px -16px rgba(13, 61, 66, 0.22);

  --container-w: 1200px;
  --container-wide: 1440px;
  --header-h: 5.75rem;
  --border-hair: 1px solid var(--color-border);

  --on-teal: #FFFFFF;
  --on-teal-muted: #C5D4D4;
  --on-teal-rule: #2C585C;

  --fs-h1: clamp(2.1rem, 1.3rem + 3.2vw, 3.75rem);
  --fs-h2: clamp(1.85rem, 1.45rem + 1.7vw, 2.75rem);
}

/* --------------------------------------------------------------------- */
/* Reset                                                                  */
/* --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100svh;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); }

p { max-width: 62ch; }

/* --------------------------------------------------------------------- */
/* Accessibility                                                         */
/* --------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-teal :focus-visible,
.page-hero :focus-visible,
.site-footer :focus-visible { outline-color: var(--gold); }
/* The white enquiry card sits on a teal band: inside it the ring goes back
   to teal, or it would be gold on white. */
.on-teal .contact-card :focus-visible { outline-color: var(--color-focus); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--teal-deep);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.15s ease;
  font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* Anchor targets clear the floating header. */
#main, section[id], details[id] { scroll-margin-top: calc(var(--header-h) + 0.5rem); }

/* --------------------------------------------------------------------- */
/* Layout                                                                 */
/* --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

.section { padding-block: var(--space-section-sm); }
@media (min-width: 900px) { .section { padding-block: var(--space-section); } }

.band-bone { background: var(--tint); }
.band-teal { background: var(--teal-deep); color: var(--stone); }
.band-teal h2, .band-teal h3 { color: var(--white); }

/* --------------------------------------------------------------------- */
/* Buttons                                                                */
/* --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  text-align: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  min-height: 44px;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--teal-deep); color: var(--white); }
.btn-primary:hover { background: var(--teal-deep-80); }

.btn-secondary {
  background: transparent;
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}
.btn-secondary:hover { background: #EDF6F6; border-color: var(--teal-bright); color: var(--teal-bright-text); }

/* A Deep Teal button would vanish on a Deep Teal ground, so it goes white. */
.page-hero .btn-primary { background: var(--white); color: var(--teal-deep); }
.page-hero .btn-primary:hover { background: var(--stone); }
.btn-on-teal { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.btn-on-teal:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); color: var(--white); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--teal-bright-text);
  min-height: 44px;
}
.btn-link:hover { color: var(--teal-deep); }
.btn-link svg { transition: transform 0.15s ease; flex: none; }
.btn-link:hover svg { transform: translateX(3px); }

.text-link {
  color: var(--teal-bright-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.text-link:hover { color: var(--teal-deep); text-decoration-thickness: 2px; }

/* --------------------------------------------------------------------- */
/* Header / Nav — the same floating pill as the main site                 */
/* --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  padding-block: 0.85rem;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--stone);
  border-bottom: 1px solid var(--bone-line);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: -1;
}
.site-header.is-stuck::before { opacity: 1; }
.site-header > .container { max-width: var(--container-wide); }
.home .site-header { position: fixed; left: 0; right: 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 0.5rem 0.5rem 0.5rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--bone-line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 1100px) { .header-inner { padding: 0.45rem 1.15rem 0.45rem 1.5rem; } }

.brand-mark { display: inline-flex; align-items: center; min-height: 44px; }
.brand-mark img { height: 34px; width: auto; }
@media (min-width: 640px) { .brand-mark img { height: 38px; } }

.nav-desktop { display: none; }
@media (min-width: 1100px) {
  .nav-desktop { display: flex; align-items: center; }
  .nav-desktop ul { display: flex; gap: 1.15rem; }
  .nav-desktop a {
    font-weight: 500;
    font-size: 0.845rem;
    letter-spacing: -0.005em;
    padding: 0.5rem 0.1rem;
    position: relative;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.45rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.15s ease;
  }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-current::after { transform: scaleX(1); }
  .nav-desktop a.is-current { color: var(--teal-bright-text); }
}
@media (min-width: 1340px) { .nav-desktop ul { gap: var(--space-3); } .nav-desktop a { font-size: 0.9rem; } }

/* On this site the one action matters more than the nav, so the header CTA
   shows from tablet width up rather than only on wide screens. */
.header-cta { display: inline-flex; font-size: 0.85rem; padding: 0.6rem 1rem; margin-left: auto; }
.header-cta .cta-long { display: none; }
@media (min-width: 560px) {
  .header-cta { padding: 0.75rem 1.25rem; }
  .header-cta .cta-long { display: inline; }
  .header-cta .cta-short { display: none; }
}
@media (min-width: 1100px) { .header-cta { margin-left: 0; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: var(--border-hair);
  border-radius: var(--radius-sm);
}
@media (min-width: 1100px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile { display: none; }
.nav-mobile.is-open { display: block; margin-top: 0.6rem; }
@media (min-width: 1100px) { .nav-mobile { display: none !important; } }
.nav-mobile > .container { max-width: var(--container-wide); }
.nav-mobile .nav-mobile-panel {
  background: var(--white);
  border: 1px solid var(--bone-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 0.4rem 1.15rem 1rem;
  max-height: calc(100svh - var(--header-h) - 1.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-mobile ul { padding: 0.25rem 0; }
.nav-mobile li:last-child a { border-bottom: 0; }
.nav-mobile a:not(.btn) {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-weight: 500;
  font-size: 1.02rem;
  border-bottom: var(--border-hair);
}
.nav-mobile .header-cta .cta-long { display: inline; }
.nav-mobile .header-cta .cta-short { display: none; }
.nav-mobile .header-cta { display: inline-flex; margin: 0.75rem 0 0; width: 100%; font-size: 0.95rem; padding: 0.85rem 1.4rem; }

/* --------------------------------------------------------------------- */
/* Footer                                                                 */
/* --------------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
  color: rgba(250, 247, 243, 0.85);
  padding-block: var(--space-5) var(--space-4);
}
.footer-grid { display: grid; gap: var(--space-5); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand img { height: 26px; width: auto; margin-bottom: var(--space-3); }
.footer-brand p {
  color: rgba(250, 247, 243, 0.72);
  max-width: 44ch;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.footer-heading {
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(250, 247, 243, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(250, 247, 243, 0.62);
}
.footer-bottom p { max-width: 80ch; }
.footer-legal-links { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}
.footer-legal-links a:hover { color: var(--gold); }

/* --------------------------------------------------------------------- */
/* Overline                                                               */
/* --------------------------------------------------------------------- */
.overline.overline,
.overline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright-text);
  margin-bottom: var(--space-3);
}
.overline-gold.overline-gold { color: var(--gold); }
.on-teal .overline.overline { color: var(--gold); }
.on-teal .contact-card .overline.overline { color: var(--teal-bright-text); }

.full-stop { color: var(--plum); }
.on-teal .full-stop, .page-hero .full-stop { color: var(--gold); }

/* --------------------------------------------------------------------- */
/* Split hero                                                             */
/* --------------------------------------------------------------------- */
.split-hero {
  background: var(--stone);
  padding-block: calc(var(--header-h) + var(--space-5)) var(--space-6);
}
.split-hero-grid { display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 960px) {
  .split-hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: var(--space-6); }
}
.home .split-hero .container { max-width: var(--container-wide); }
.split-hero h1 { max-width: 14ch; margin-bottom: var(--space-3); }
.split-hero h1 .accent { color: var(--teal-bright-text); }
.split-hero-lede {
  font-size: clamp(1rem, 0.96rem + 0.35vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: var(--space-4);
}
.split-hero-lede:has(+ .split-hero-lede) { margin-bottom: var(--space-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }

/* --------------------------------------------------------------------- */
/* Interior page hero                                                     */
/* --------------------------------------------------------------------- */
.brand-arc {
  position: absolute;
  left: -4%;
  width: 108%;
  pointer-events: none;
  display: block;
}
.brand-arc path { fill: var(--teal-faded); }

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
  color: var(--on-teal);
  padding-block: var(--space-6) var(--space-6);
}
.page-hero .brand-arc { bottom: -34%; opacity: 0.5; height: 320px; max-width: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 20ch; margin-bottom: var(--space-3); color: var(--white); }
.page-hero-lede {
  font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}
.page-hero .hero-actions { margin-top: var(--space-4); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  margin-bottom: var(--space-3);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--on-teal-muted);
}
.back-link:hover { color: var(--white); }

/* --------------------------------------------------------------------- */
/* Statement band                                                         */
/* --------------------------------------------------------------------- */
.statement-band { background: var(--teal-deep); }
.statement-band-grid { display: grid; gap: var(--space-4); }
@media (min-width: 900px) {
  .statement-band-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: var(--space-6); align-items: start; }
}
.statement-band h2 { color: var(--white); max-width: 16ch; }
.statement-band-body { display: grid; gap: var(--space-3); }
.statement-band-body > p { color: rgba(255, 255, 255, 0.86); max-width: 66ch; font-size: 1.0625rem; line-height: 1.65; }

.fact-row {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 720px) { .fact-row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.fact-row h3 { color: var(--gold); font-size: 1.0625rem; margin-bottom: 0.4rem; }
.fact-row p { color: rgba(255, 255, 255, 0.78); font-size: 0.9375rem; line-height: 1.55; }

/* --------------------------------------------------------------------- */
/* Section intro                                                          */
/* --------------------------------------------------------------------- */
.section-intro { max-width: 62ch; margin-bottom: var(--space-5); }
.section-intro h2 { margin-bottom: var(--space-3); }
.section-intro p { color: var(--ink-muted); font-size: 1.0625rem; line-height: 1.65; }
.on-teal .section-intro p { color: rgba(255, 255, 255, 0.86); }

.contracting-note {
  margin-top: var(--space-4);
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 76ch;
}

/* --------------------------------------------------------------------- */
/* Accordion — native <details>, as on the main site                      */
/* --------------------------------------------------------------------- */
.accordion { border-top: var(--border-hair); }
.accordion details { border-bottom: var(--border-hair); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 56px;
  padding-block: 0.85rem;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary h3 {
  font-size: clamp(1rem, 0.96rem + 0.35vw, 1.1875rem);
  line-height: 1.3;
  color: var(--teal-deep);
}
.accordion summary::after {
  content: '';
  flex: none;
  width: 11px;
  height: 11px;
  margin-right: 4px;
  border-right: 2px solid var(--teal-bright-text);
  border-bottom: 2px solid var(--teal-bright-text);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms ease;
}
.accordion details[open] > summary::after { transform: translateY(2px) rotate(-135deg); }
.accordion summary:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.accordion summary:hover h3 { color: var(--teal-bright-text); }
.accordion details > p {
  color: var(--ink-muted);
  padding-bottom: var(--space-3);
  max-width: 62ch;
}

.accordion-rich summary { align-items: flex-start; padding-block: var(--space-3); }
.accordion-title { display: block; }
.accordion-rich .accordion-summary {
  display: block;
  margin-top: 0.4rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 68ch;
}
.accordion-rich summary::after { margin-top: 0.55rem; }
.accordion-panel { padding-bottom: var(--space-4); }
.accordion-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--teal-deep);
  margin-bottom: 0.6rem;
}
.accordion-list { display: grid; gap: 0.5rem; max-width: 72ch; }
.accordion-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.accordion-list li strong { color: var(--teal-deep); font-weight: 600; }
.accordion-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--plum);
}

/* --------------------------------------------------------------------- */
/* Step cards                                                             */
/* --------------------------------------------------------------------- */
.step-card-grid { display: grid; gap: var(--space-3); margin: 0; padding: 0; }
@media (min-width: 640px) { .step-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .step-card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: 0 1px 2px rgba(13, 61, 66, 0.06);
}
.step-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright-text);
  margin-bottom: 0.5rem;
}
.step-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--ink-muted); font-size: 0.9375rem; line-height: 1.6; }

/* --------------------------------------------------------------------- */
/* Testimonial card                                                       */
/* --------------------------------------------------------------------- */
.say-card {
  margin: 0;
  background: var(--white);
  border: var(--border-hair);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.say-mark { width: 34px; height: 26px; fill: var(--plum); flex-shrink: 0; }
.lora-card p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.0625rem, 0.98rem + 0.4vw, 1.1875rem);
  line-height: 1.5;
  color: var(--teal-deep);
  max-width: 52ch;
}
.say-card cite {
  padding-top: var(--space-1);
  font-style: normal;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.quote-descriptor { margin-top: -0.6rem; font-size: 0.8125rem; color: var(--ink-muted); }

/* --------------------------------------------------------------------- */
/* Closing band                                                           */
/* --------------------------------------------------------------------- */
.closing { position: relative; padding-block: var(--space-4); }
.closing-light {
  background: var(--stone);
  border-top: var(--border-hair);
  border-bottom: 4px solid var(--gold);
}
.closing-lead {
  font-size: clamp(1.375rem, 1.15rem + 1.05vw, 1.875rem);
  max-width: 24ch;
}
.closing-grid { display: grid; gap: var(--space-3); }
.closing-action { display: flex; }
@media (min-width: 900px) {
  .closing-grid { grid-template-columns: minmax(0, 1fr) auto; column-gap: var(--space-5); align-items: center; }
}

/* --------------------------------------------------------------------- */
/* Forms                                                                  */
/* --------------------------------------------------------------------- */
.contact-grid { display: grid; gap: var(--space-5); }
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: var(--space-6); align-items: start; }
}
.contact-intro h2 { margin-bottom: var(--space-3); max-width: 14ch; }
.contact-details { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--color-border); }
.contact-follow {
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}
.contact-email { margin-top: var(--space-1); }
.contact-email a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; display: inline-flex; align-items: center; min-height: 36px; }

.contact-card {
  background: var(--white);
  color: var(--teal-deep);
  border: var(--border-hair);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3);
}
@media (min-width: 640px) { .contact-card { padding: var(--space-5); } }

.field { display: grid; gap: 0.4rem; margin-bottom: var(--space-3); align-content: start; }
.field label, .check-group legend { font-weight: 500; font-size: 0.95rem; color: var(--teal-deep); }
.field .hint { font-size: 0.85rem; color: var(--ink-muted); }
.field input, .field textarea {
  background: var(--white);
  border: 1.5px solid #C9C8C3;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  min-height: 48px;
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--teal-bright); }
.field-required::after { content: ' *'; color: var(--teal-bright-text); }
.field-row { display: grid; column-gap: var(--space-3); }
@media (min-width: 640px) { .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.check-group { border: 0; padding: 0; margin: 0 0 var(--space-3); min-width: 0; }
.check-group legend { padding: 0; margin-bottom: 0.5rem; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.4rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--teal-deep);
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease;
}
.check:hover { background: var(--tint); border-color: #D9D8D3; }
.check:has(input:checked) { background: #EDF6F6; border-color: var(--teal-bright); }
.check input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
  accent-color: var(--teal-deep);
}
/* Session choices run two-up on wider screens so the form stays short. */
@media (min-width: 700px) {
  .check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.4rem 0.5rem; }
  .check-grid .check { margin-bottom: 0; }
}
.check-group-inline { display: flex; flex-wrap: wrap; gap: 0.4rem 0.5rem; }
.check-group-inline legend { width: 100%; float: left; }
.check-group-inline .check { margin-bottom: 0; }

.form-privacy { font-size: 0.875rem; color: var(--ink-muted); margin: var(--space-3) 0; }
.form-privacy a { color: var(--teal-bright-text); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy a:hover { color: var(--teal-deep); }
.contact-form .btn { width: 100%; }
@media (min-width: 520px) { .contact-form .btn { width: auto; } }

.form-trap { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

.form-status { padding: var(--space-3); border-radius: var(--radius-sm); font-size: 0.9375rem; margin-bottom: var(--space-4); }
.form-status-error { background: rgba(131, 62, 98, 0.08); border: 1px solid rgba(131, 62, 98, 0.25); color: var(--plum); }
.form-status-error a { color: inherit; text-decoration: underline; }

/* --------------------------------------------------------------------- */
/* Scroll reveal — identical behaviour to the main site                   */
/* --------------------------------------------------------------------- */
.reveal-ready [data-reveal],
.reveal-ready [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s cubic-bezier(0.33, 1, 0.68, 1), transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}
.reveal-ready [data-reveal].is-revealed,
.reveal-ready [data-reveal-stagger] > .is-revealed { opacity: 1; transform: none; }
.reveal-ready [data-reveal-stagger] { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===================================================================== */
/* SERIES COMPONENTS — new to this site                                   */
/* ===================================================================== */

/* At-a-glance card. The flyer's teal column, reworked as the hero's
   right-hand panel: gold-ruled price blocks, the white arc bleeding off the
   bottom-left corner at low opacity. */
.glance-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: 0 18px 40px rgba(13, 61, 66, 0.18);
}
@media (min-width: 640px) { .glance-card { padding: var(--space-5); } }
.glance-arc {
  position: absolute;
  z-index: -1;
  left: -10%;
  bottom: -9%;
  width: 120%;
  max-width: none;
  opacity: 0.12;
  fill: var(--white);
  pointer-events: none;
}
.glance-card .overline.overline { margin-bottom: var(--space-2); }
.glance-facts {
  display: grid;
  gap: 0.35rem;
  margin-bottom: var(--space-3);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.86);
}
.glance-facts strong { color: var(--white); font-weight: 600; }
.glance-prices { display: grid; gap: 0.75rem; }
@media (min-width: 480px) { .glance-prices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.glance-price {
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.15rem;
}
.glance-label {
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.glance-amount {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.125rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--gold);
}
.glance-amount span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  display: block;
  margin-top: 0.3rem;
  letter-spacing: 0;
  color: var(--on-teal-muted);
}
.glance-note { margin-top: var(--space-3); font-size: 0.9375rem; line-height: 1.55; color: rgba(255, 255, 255, 0.86); }
.glance-foot { margin-top: var(--space-2); font-size: 0.78rem; line-height: 1.5; color: var(--on-teal-muted); }

/* Session accordion: the gold numeral leads each row, as on the flyer. */
.session-accordion summary { justify-content: flex-start; gap: var(--space-2); transition: background-color 120ms cubic-bezier(.2, .6, .2, 1); }
@media (min-width: 640px) { .session-accordion summary { gap: var(--space-3); padding-inline: var(--space-2); } }
.session-accordion summary:hover { background: var(--tint); }
.session-accordion summary::after { margin-left: auto; }
.session-num {
  flex: none;
  width: 2rem;
  padding-top: 0.2rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-700);
}
.session-head { display: block; min-width: 0; }
.session-accordion summary h3 { font-size: clamp(1.0625rem, 1rem + 0.45vw, 1.3125rem); }
@media (min-width: 640px) { .session-panel { padding-left: calc(2rem + var(--space-3) + var(--space-2)); padding-right: var(--space-2); } }
.session-shift, .shift-card {
  background: var(--white);
  border: var(--border-hair);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3);
}
.session-shift { align-self: start; }
.session-shift-label {
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright-text);
  margin-bottom: var(--space-2);
}
/* The From / To pair. Shared by the accordion and the session page. */
.shift-pair { display: grid; gap: var(--space-2); }
.shift-pair > div { display: grid; grid-template-columns: 3.25rem minmax(0, 1fr); column-gap: 0.75rem; align-items: baseline; }
.shift-pair > div + div { padding-top: var(--space-2); border-top: var(--border-hair); }
.shift-pair dt { font-weight: 600; font-size: 0.8125rem; color: var(--ink-muted); }
.shift-pair dd {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--teal-deep);
}
.shift-pair > div:last-child dd { font-weight: 600; }
.session-panel-grid { display: grid; gap: var(--space-3); }
@media (min-width: 860px) { .session-panel-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-5); } }
.session-panel-grid .accordion-list + .accordion-label,
.session-panel-grid .session-text + .accordion-label { margin-top: var(--space-3); }
.session-text { color: var(--ink-muted); font-size: 0.9375rem; line-height: 1.6; }
.session-panel-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-3); margin-top: var(--space-4); }

/* Who it is for + Evidence of application: a quiet two-up block between the
   statement band and the sessions. Deliberately restrained: no cards, no
   figures, modest headings. */
.section-compact { padding-block: var(--space-5); }
@media (min-width: 900px) { .section-compact { padding-block: var(--space-6); } }
.brief-grid { display: grid; gap: var(--space-5); }
@media (min-width: 860px) { .brief-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-6); } }
.brief-block .overline.overline { margin-bottom: var(--space-2); }
.brief-block h2 { font-size: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem); margin-bottom: var(--space-2); }
.brief-block p:not(.overline) { color: var(--ink-muted); line-height: 1.65; }
.brief-block p + p { margin-top: var(--space-2); }

/* Pricing: two offers, deliberately given equal weight. */
.price-grid { display: grid; gap: var(--space-3); }
@media (min-width: 800px) { .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-4); } }
.price-card, .aside-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: var(--border-hair);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
}
@media (min-width: 640px) { .price-card { padding: var(--space-5); } }
.price-card .overline.overline, .aside-card .overline.overline { margin-bottom: var(--space-1); }
.price-amount {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.25rem, 1.9rem + 1.4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--teal-deep);
  margin-bottom: var(--space-2);
}
.price-amount span {
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  letter-spacing: 0;
  color: var(--ink-muted);
}
.price-lede { color: var(--teal-deep); font-weight: 500; margin-bottom: var(--space-3); }
/* The saving is supporting information, not the headline. */
.price-saving { margin: calc(var(--space-2) * -1) 0 var(--space-3); font-size: 0.875rem; color: var(--ink-muted); }
.price-card .accordion-list { margin-bottom: var(--space-4); }
.price-card .btn { margin-top: auto; align-self: flex-start; }
.includes-block {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.6rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.includes-block p { max-width: 90ch; }
.includes-block strong { color: var(--teal-deep); font-weight: 600; }
.includes-foot { font-size: 0.8125rem; }

/* Facilitator */
.facilitator-grid { display: grid; gap: var(--space-5); align-items: start; }
@media (min-width: 900px) { .facilitator-grid { grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: var(--space-6); } }
.facilitator-photo { position: relative; max-width: 420px; }
.facilitator-photo > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(13, 61, 66, 0.18);
}
.founder-badge {
  position: absolute;
  right: -10px;
  bottom: -10px;
  display: block;
  width: clamp(76px, 20vw, 104px);
  height: clamp(76px, 20vw, 104px);
  padding: 4px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lift);
}
.founder-badge img { width: 100%; height: 100%; border-radius: 50%; }
.facilitator-body h2 { margin-bottom: var(--space-1); }
.facilitator-body .overline.overline { margin-bottom: var(--space-2); }
.facilitator-credentials { font-weight: 600; font-size: 0.9375rem; color: var(--teal-bright-text); margin-bottom: var(--space-3); }
.facilitator-credentials span { color: var(--grey); padding-inline: 0.3rem; }
.facilitator-body > p:not(.overline):not(.facilitator-credentials) { color: var(--ink-muted); font-size: 1.0625rem; line-height: 1.65; margin-bottom: var(--space-2); }
.facilitator-actions { display: flex; flex-wrap: wrap; gap: 0 var(--space-4); margin-bottom: var(--space-4); }

/* FAQs sit beside their heading on wide screens. */
@media (min-width: 960px) {
  .faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: var(--space-6); align-items: start; }
  .faq-grid .section-intro { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 1rem); }
}

/* Enquiry band: Deep Teal, closed off from the footer by the gold sign-off
   rule the main site uses on its closing bands. */
.enquire-band { background: var(--teal-deep); border-bottom: 4px solid var(--gold); }
.enquire-band .contact-intro h2 { color: var(--white); }
.enquire-band .contact-intro > p:not(.overline) { color: rgba(255, 255, 255, 0.86); font-size: 1.0625rem; line-height: 1.65; }
.enquire-band .contact-details { border-top-color: var(--on-teal-rule); }
.enquire-band .contact-follow { color: var(--gold); }
.enquire-band .contact-email a { color: var(--white); }
.enquire-band .contact-email a:hover { color: var(--gold); }

/* Session page */
.session-layout { display: grid; gap: var(--space-5); align-items: start; }
@media (min-width: 960px) {
  .session-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: var(--space-6); }
  .session-aside { position: sticky; top: calc(var(--header-h) + 1rem); }
}
.session-main { display: grid; gap: var(--space-5); }
.session-block h2 { font-size: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem); margin-bottom: var(--space-2); }
.session-block > p { color: var(--ink-muted); font-size: 1.0625rem; line-height: 1.65; max-width: 68ch; }
.session-block .accordion-list li { font-size: 1.0313rem; }

.shift-card { padding: var(--space-4); }
.shift-card .overline.overline { margin-bottom: var(--space-3); line-height: 1.4; }
.shift-card .shift-pair dd { font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem); }

.aside-card .price-amount { font-size: 2.5rem; }
.aside-facts { display: grid; gap: 0; margin-bottom: var(--space-3); border-top: var(--border-hair); }
.aside-facts li { padding: 0.6rem 0; border-bottom: var(--border-hair); color: var(--ink-muted); font-size: 0.9375rem; }
.aside-note { margin-top: var(--space-3); font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.55; }
.aside-foot { margin-top: var(--space-2); font-size: 0.78rem; color: var(--ink-muted); line-height: 1.5; }

.session-pager { border-top: var(--border-hair); background: var(--tint); }
.session-pager-inner { display: grid; gap: 0; }
@media (min-width: 700px) { .session-pager-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pager-link { display: grid; gap: 0.2rem; padding-block: var(--space-3); transition: color 0.12s ease; }
.pager-next { border-top: var(--border-hair); }
@media (min-width: 700px) {
  .pager-next { text-align: right; border-top: 0; border-left: var(--border-hair); padding-left: var(--space-3); }
  .pager-prev { padding-right: var(--space-3); }
}
.pager-dir { font-weight: 600; font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-bright-text); }
.pager-title { font-family: var(--font-head); font-weight: 600; font-size: 1.0625rem; line-height: 1.3; color: var(--teal-deep); }
.pager-link:hover .pager-title { color: var(--teal-bright-text); }

/* --------------------------------------------------------------------- */
/* Print — the A4 flyer stays the print artefact; this just keeps a       */
/* browser print legible. main.js opens every accordion before printing.  */
/* --------------------------------------------------------------------- */
@media print {
  .site-header, .nav-mobile, .enquire-band, .session-pager, .hero-actions, .session-panel-actions, .skip-link { display: none !important; }
  .split-hero { padding-top: 1rem; }
  .section { padding-block: 1.5rem; }
  body { font-size: 11pt; }
  .glance-card, .band-teal, .statement-band, .page-hero, .site-footer { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  details { break-inside: avoid; }
}
