@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,500;0,600;0,700;1,500&family=Karla:wght@400;500;600;700&display=swap');

:root {
  --indigo: #1A1F3D;
  --rust: #C45C3A;
  --linen: #FFFFFF;
  --iron: #4A4F5C;
  --font-head: 'IBM Plex Serif', Georgia, serif;
  --font-body: 'Karla', system-ui, sans-serif;
  --max-w: 1180px;
  --rust-rule: 2px solid var(--rust);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); line-height: 1.72; font-size: 1.05rem; background: var(--linen); color: #111111; }
img { max-width: 100%; height: auto; display: block; }
a { color: currentColor; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 600; }

.surface-dark { background: var(--indigo); color: #FFFFFF; }
.surface-light { background: var(--linen); color: #111111; }
.surface-accent { background: var(--rust); color: #FFFFFF; }
.surface-iron { background: var(--iron); color: #FFFFFF; }
.surface-dark a:not(.btn), .surface-light a:not(.btn), .surface-iron a:not(.btn), .surface-accent a:not(.btn) { color: currentColor; text-decoration: underline; }
a.btn { text-decoration: none; }
a.btn-primary { color: var(--linen); }
a.btn-secondary { color: inherit; }
.surface-dark *:not([class*="surface-"]):not(.btn):not(.price-tag):not(.station-tag):not(.turbine-label) { color: inherit; }
.surface-light *:not([class*="surface-"]):not(.btn):not(.price-tag):not(.station-tag):not(.turbine-label):not(.stat-sidebar) { color: inherit; }
.surface-iron *:not([class*="surface-"]):not(.btn):not(.price-tag):not(.station-tag):not(.turbine-label) { color: inherit; }
.surface-accent *:not([class*="surface-"]):not(.btn):not(.price-tag):not(.station-tag):not(.turbine-label) { color: inherit; }

.container { width: min(100% - 2rem, var(--max-w)); margin-inline: auto; }
.section-pad { padding: 4.5rem 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.surface-light .section-label { color: var(--iron); }
.surface-dark .section-label,
.surface-iron .section-label,
.surface-accent .section-label { color: inherit; opacity: 0.85; }
.turbine-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  background: var(--rust);
  color: var(--linen);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

/* Header — underline nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(242, 235, 227, 0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  gap: 1rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.32rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  list-style: none;
}
.nav-list a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] {
  border-bottom-color: var(--rust);
}
.nav-list a[aria-current="page"] {
  font-weight: 600;
}
.nav-cta { margin-left: 0.5rem; }
.nav-btn {
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  border-bottom: none !important;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary { background: var(--rust); color: var(--linen); }
.btn-secondary {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
  clip-path: none;
  border-radius: 0;
}
.surface-dark .btn-primary { background: var(--rust); color: var(--linen); }
.surface-accent .btn-primary { background: var(--indigo); color: var(--linen); }
.surface-dark .btn-secondary { color: var(--linen); border-color: var(--linen); }
.surface-light .btn-secondary { color: var(--indigo); border-color: var(--indigo); }
.surface-accent .btn-secondary { color: var(--linen); border-color: var(--linen); }

/* Pattern D hero — stacked layered */
.hero-pattern-d {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}
.hero-pattern-d::before,
.hero-pattern-d::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-pattern-d::before {
  top: -15%;
  right: 8%;
  width: 55%;
  height: 70%;
  background: linear-gradient(135deg, rgba(196, 92, 58, 0.18) 0%, transparent 60%);
  transform: rotate(-6deg);
  clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 92%);
}
.hero-pattern-d::after {
  bottom: -8%;
  left: -5%;
  width: 45%;
  height: 55%;
  background: var(--iron);
  opacity: 0.12;
  transform: rotate(4deg);
  clip-path: polygon(0 15%, 92% 0, 100% 85%, 8% 100%);
}
.hero-layer-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-layer {
  position: absolute;
  border: 1px solid rgba(196, 92, 58, 0.25);
  background: rgba(26, 31, 61, 0.04);
}
.hero-layer--1 { top: 12%; left: 5%; width: 28%; height: 40%; transform: rotate(-3deg); }
.hero-layer--2 { top: 22%; right: 12%; width: 32%; height: 35%; transform: rotate(5deg); background: rgba(196, 92, 58, 0.06); }
.hero-layer--3 { bottom: 18%; left: 18%; width: 24%; height: 30%; transform: rotate(-2deg); }
.hero-pattern-d-text {
  position: relative;
  z-index: 2;
  flex: 0 0 55%;
  min-height: 55%;
  padding: 4rem 2rem 3rem clamp(1rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-pattern-d-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 45%;
  min-height: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 3rem) 2.5rem;
}
.hero-pattern-d-visual > img { display: none; }
.hero-pattern-d-visual .hero-caption { display: none; }
.hero-serial {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--rust);
}
.hero-pattern-d h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  margin-bottom: 1.1rem;
  max-width: 18ch;
}
.hero-sub {
  font-size: 1.08rem;
  max-width: 42ch;
  margin-bottom: 1.75rem;
  color: var(--iron);
}
.surface-dark .hero-sub { color: rgba(242, 235, 227, 0.82); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.5rem; }
.trust-strip { font-size: 0.82rem; opacity: 0.75; }
.hero-caption {
  font-size: 0.78rem;
  margin-top: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-thumb-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}
.hero-thumb-strip img {
  height: min(28vh, 200px);
  width: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: opacity 0.2s;
}
.hero-thumb-strip img:hover { opacity: 0.92; }
.hero-trust-float {
  position: absolute;
  top: -2.5rem;
  right: clamp(1rem, 4vw, 3rem);
  background: var(--linen);
  color: var(--indigo);
  padding: 1rem 1.25rem;
  border: 2px solid var(--rust);
  font-size: 0.82rem;
  max-width: 220px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(26, 31, 61, 0.15);
}

/* RPM strip */
.rpm-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rust-rule);
  border-bottom: var(--rust-rule);
}
.rpm-cell {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(242, 235, 227, 0.15);
}
.rpm-cell:last-child { border-right: none; }
.surface-light .rpm-cell { border-right-color: rgba(26, 31, 61, 0.1); }
.rpm-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.rpm-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--rust);
}
.surface-iron .rpm-num,
.surface-dark .rpm-num { color: var(--linen); }
.rpm-desc { font-size: 0.92rem; margin-top: 0.5rem; max-width: 22ch; margin-inline: auto; }

/* Powertrain stations */
.powertrain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.station-card {
  padding: 1.75rem;
  border-left: 4px solid var(--rust);
  background: rgba(26, 31, 61, 0.03);
  position: relative;
}
.station-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--rust);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.15;
}
.station-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--rust);
  color: var(--linen);
  margin-bottom: 0.85rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.station-card h3 { margin-bottom: 0.65rem; font-size: 1.25rem; }

/* Facilitator panel */
.facilitator-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(242, 235, 227, 0.2);
}
.facilitator-step {
  padding: 1.75rem 1.25rem;
  border-right: 1px solid rgba(242, 235, 227, 0.15);
  text-align: center;
}
.facilitator-step:last-child { border-right: none; }
.facilitator-dot {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--rust);
  color: var(--linen);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.facilitator-step h4 { font-size: 1rem; margin-bottom: 0.45rem; }
.facilitator-step p { font-size: 0.88rem; opacity: 0.85; }

/* Programme cards */
.programme-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.programme-card {
  padding: 1.5rem;
  border: 1px solid rgba(26, 31, 61, 0.12);
  background: var(--linen);
  display: flex;
  flex-direction: column;
}
.programme-card--wide { grid-column: span 2; }
.programme-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-top: auto;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.programme-card h3 { margin-bottom: 0.5rem; }
.price-tag {
  font-weight: 700;
  color: var(--rust);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
.surface-dark .price-tag,
.surface-iron .price-tag { color: var(--linen); }
.surface-accent .price-tag { color: var(--linen); }

/* FAQ accordion */
.accordion { border-top: 1px solid rgba(26, 31, 61, 0.15); }
.accordion-item { border-bottom: 1px solid rgba(26, 31, 61, 0.15); }
.accordion-item summary {
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rust);
  transition: transform 0.2s;
}
.accordion-item[open] summary::after {
  content: '−';
}
.accordion-body {
  padding: 0 0 1.25rem;
  font-size: 0.98rem;
  color: var(--iron);
}
.surface-dark .accordion { border-color: rgba(242, 235, 227, 0.15); }
.surface-dark .accordion-item { border-color: rgba(242, 235, 227, 0.15); }
.surface-dark .accordion-body { color: rgba(242, 235, 227, 0.82); }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-band h2 { margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { max-width: 48ch; margin: 0 auto 1.5rem; }

/* Footer — horizontal links row */
.site-footer { padding: 3rem 0 2rem; }
.footer-wrap { display: flex; flex-direction: column; gap: 2rem; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(242, 235, 227, 0.15);
  border-bottom: 1px solid rgba(242, 235, 227, 0.15);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}
.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-right: 0.5rem;
  opacity: 0.7;
}
.footer-links a { text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { text-decoration: underline; color: var(--rust); }
.footer-address { font-size: 0.9rem; opacity: 0.85; }
.footer-address address { font-style: normal; margin-bottom: 0.35rem; }
.footer-bottom {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(242, 235, 227, 0.1);
  font-size: 0.82rem;
  opacity: 0.8;
}
.disclaimer { margin-top: 0.75rem; font-size: 0.78rem; line-height: 1.6; opacity: 0.7; }

/* About layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.about-narrative p { margin-bottom: 1.1rem; }
.stat-sidebar {
  padding: 1.75rem;
  background: var(--indigo);
  color: var(--linen);
  position: sticky;
  top: 5rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.surface-light .stat-sidebar,
.surface-light .stat-sidebar h3,
.surface-light .stat-sidebar .stat-row span {
  color: var(--linen);
}
.stat-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--rust);
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(242, 235, 227, 0.12);
  font-size: 0.9rem;
}
.stat-row strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--linen);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: var(--rust-rule);
}
.page-hero h1 { font-size: clamp(1.85rem, 3.5vw, 2.65rem); margin-bottom: 0.65rem; }
.page-hero .lead { font-size: 1.1rem; max-width: 58ch; color: var(--iron); }
.surface-dark .page-hero .lead { color: rgba(242, 235, 227, 0.8); }
.meta-updated { font-size: 0.82rem; margin-top: 0.75rem; opacity: 0.7; }

/* Programs grid */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.program-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  padding: 1.25rem;
  background: var(--linen);
}
.program-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.program-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* Services */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.service-split img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
  box-shadow: 8px 8px 0 var(--rust);
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-layout img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(26, 31, 61, 0.2);
  background: var(--linen);
  color: var(--indigo);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.consent-label { font-size: 0.88rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.consent-label input { margin-top: 0.25rem; flex-shrink: 0; }
.form-alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}
.form-alert.success { background: rgba(26, 31, 61, 0.08); border-left: 4px solid var(--indigo); }
.form-alert.error { background: rgba(196, 92, 58, 0.12); border-left: 4px solid var(--rust); }

/* Legal prose */
.legal-prose h2 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.legal-prose h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-prose p, .legal-prose li { margin-bottom: 0.85rem; }
.legal-prose ul, .legal-prose ol { margin: 0.5rem 0 1rem 1.5rem; }

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.error-page h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }

/* Reveal — keep content visible */
.js .reveal { opacity: 1; transform: translateY(18px); transition: transform 0.55s ease; }
.js .reveal.is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { transform: none; transition: none; }
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.25rem;
  border-top: 2px solid var(--rust);
  box-shadow: 0 -4px 24px rgba(26, 31, 61, 0.2);
}
#cookie-banner.is-hidden { display: none; }
.cookie-inner { max-width: var(--max-w); margin: 0 auto; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }
.cookie-actions button {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}
#cookie-accept { background: var(--rust); border-color: var(--rust); color: var(--linen); }
#cookie-custom { display: none; margin-top: 0.85rem; font-size: 0.9rem; }
#cookie-custom label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 960px) {
  .hero-pattern-d { min-height: 70vh; }
  .hero-pattern-d-text { flex: none; min-height: auto; padding: 3rem 1rem 2rem; }
  .hero-pattern-d-visual { flex: none; min-height: auto; padding: 0 1rem 2rem; }
  .hero-trust-float { position: static; margin-bottom: 1rem; max-width: none; }
  .powertrain-grid,
  .programme-row,
  .program-grid,
  .service-split,
  .contact-layout,
  .about-layout { grid-template-columns: 1fr; }
  .programme-card--wide { grid-column: span 1; }
  .facilitator-panel { grid-template-columns: repeat(2, 1fr); }
  .facilitator-step:nth-child(2) { border-right: none; }
  .rpm-strip { grid-template-columns: 1fr; }
  .rpm-cell { border-right: none; border-bottom: 1px solid rgba(242, 235, 227, 0.15); }
  .rpm-cell:last-child { border-bottom: none; }
  .stat-sidebar { position: static; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .site-nav {
    display: none;
    width: 100%;
    order: 3;
    background: var(--indigo);
    padding: 1rem 0;
    border-top: 1px solid rgba(242, 235, 227, 0.12);
    max-height: none;
    overflow: visible;
  }
  .site-nav.is-open { display: block; padding: 1rem 0; border-bottom: 1px solid rgba(242, 235, 227, 0.12); }
  .nav-list { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .facilitator-panel { grid-template-columns: 1fr; }
  .facilitator-step { border-right: none; border-bottom: 1px solid rgba(242, 235, 227, 0.15); }
  .footer-links-row { flex-direction: column; gap: 1.25rem; }
  .hero-thumb-strip { grid-template-columns: 1fr; }
  .hero-thumb-strip img { height: 180px; }
}
