/* ==========================================================================
   Gecko Solar & Electrical, styles.css
   Built against Design-System.md v1.0 ("Sun-Baked Craft")
   Tokens-first: change a custom property, it ripples site-wide.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Backgrounds */
  --colour-bg-dark:    #1A1613;   /* Warm near-black, logo ground */
  --colour-bg-light:   #F8F3E8;   /* Sun-bleached cream, primary light background */
  --colour-bg-mid:     #EDE6D4;   /* Warm sand, secondary light surface */
  --colour-bg-panel:   #262019;   /* Warm charcoal, card/panel on dark bg */

  /* Brand, derived from the Gecko logo */
  --colour-solar:      #F9E830;   /* Solar yellow (logo sun disc): primary accent, CTAs */
  --colour-solar-dark: #E6C90E;   /* Darker yellow: CTA hover */
  --colour-ember:      #F1471D;   /* Ember red-orange (logo ring): electrical, secondary accent; borders + fills */
  --colour-ember-ink:  #BF330E;   /* Darker ember for small TEXT on light (5.14:1 cream, 4.57:1 sand, clears AA) */

  /* Text */
  --colour-text-dark:  #1A1613;   /* Body text on light backgrounds */
  --colour-text-light: #F8F3E8;   /* Body text on dark backgrounds */
  --colour-text-muted: #8C8378;   /* Warm grey: meta text, labels (dark surfaces) */
  --colour-text-muted-ink: #6B6358; /* Darker muted for small text on light surfaces (5.3:1 cream, 4.8:1 sand, clears AA) */

  /* Utility */
  --colour-border:     #D5CDB8;   /* Borders on light backgrounds */
  --colour-border-dark:#3A322A;   /* Borders on dark backgrounds */
  --colour-white:      #FFFFFF;

  /* Fonts */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Zilla Slab', serif;
  --font-ui:      'Barlow', sans-serif;

  /* Type scale (desktop) */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-hero: 5.5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --container-max: 1200px;
  --container-pad: var(--space-6);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--colour-text-dark);
  background: var(--colour-bg-light);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
}

h1 { font-weight: 800; font-size: var(--text-5xl); }
h2 { font-weight: 700; font-size: var(--text-3xl); }
h3 { font-weight: 700; font-size: var(--text-xl); }
h4 { font-weight: 600; font-size: var(--text-lg); }

p { margin: 0 0 var(--space-4); }

a { color: inherit; }

ul { margin: 0; padding: 0; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section { padding: var(--space-16) 0; }
/* Sticky nav (57px) clearance for in-page anchor jumps + focused form fields */
section[id], .form-field, .form-field label, .form-field input, .form-field textarea, .form-field select { scroll-margin-top: 72px; }

.section--dark {
  background: var(--colour-bg-dark);
  color: var(--colour-text-light);
}
.section--mid { background: var(--colour-bg-mid); }
.section--light { background: var(--colour-bg-light); }

.section__lead {
  max-width: 48rem;
  font-size: var(--text-lg);
}
.section--dark .section__lead { color: var(--colour-text-muted); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-solar);
  margin: 0 0 var(--space-3);
  display: block;
}

/* On light/mid backgrounds, accents are ember not yellow (yellow too low-contrast on cream; matches card links) */
.section--light .eyebrow,
.section--mid .eyebrow { color: var(--colour-ember-ink); }
.section--light .step__num,
.section--mid .step__num { color: var(--colour-ember); }
.section--light .feature-list li::before,
.section--mid .feature-list li::before { background: var(--colour-ember); }

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--colour-solar);
  color: var(--colour-bg-dark);
  border: none;
}
.btn-primary:active,
.btn-secondary:active,
.btn-ghost:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent;
  color: var(--colour-text-light);
  border: 1.5px solid var(--colour-text-light);
}
.btn-secondary:hover { border-color: var(--colour-solar); color: var(--colour-solar); }

.btn-ghost {
  background: transparent;
  color: var(--colour-bg-dark);
  border: 1.5px solid var(--colour-bg-dark);
}
.btn-ghost:hover { background: var(--colour-bg-dark); color: var(--colour-text-light); }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--colour-solar);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn-phone:hover { color: var(--colour-solar-dark); }

/* ---------- Skip link (first focusable element, visible on focus) ---------- */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 300;
  background: var(--colour-solar);
  color: var(--colour-bg-dark);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-3) var(--space-4);
  border-radius: 2px;
  text-decoration: none;
}
.skip-link:focus { top: var(--space-4); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--colour-bg-dark);
  border-bottom: 1px solid var(--colour-border-dark);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--colour-text-light);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav__logo span { color: var(--colour-solar); }
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo-img { height: 40px; width: auto; }

.nav__links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}
.nav__links a {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-light);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--colour-solar); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--colour-solar);
  cursor: pointer;
  padding: var(--space-2);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(80vw, 320px);
  background: var(--colour-bg-dark);
  border-left: 1px solid var(--colour-border-dark);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--colour-text-light);
  cursor: pointer;
  padding: var(--space-2);
}
.nav__drawer-close svg { width: 28px; height: 28px; }
.nav__drawer ul { list-style: none; margin-top: var(--space-6); }
.nav__drawer a {
  display: block;
  min-height: 48px;
  line-height: 48px;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--colour-border-dark);
}
.nav__drawer a:hover { color: var(--colour-solar); }
.nav__drawer .btn-phone { margin-top: auto; padding-top: var(--space-6); }
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 19, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 150;
}
.nav__overlay.open { opacity: 1; visibility: visible; }

/* Services dropdown (desktop) */
.nav__item-has-menu { position: relative; }
.nav__menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-light);
  transition: color 0.15s ease;
}
.nav__menu-toggle:hover,
.nav__menu-toggle.is-active,
.nav__item-has-menu:hover .nav__menu-toggle,
.nav__item-has-menu:focus-within .nav__menu-toggle { color: var(--colour-solar); }
.nav__menu-caret { width: 14px; height: 14px; transition: transform 0.15s ease; }
.nav__item-has-menu:hover .nav__menu-caret,
.nav__menu-toggle[aria-expanded="true"] .nav__menu-caret { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  list-style: none;
  background: var(--colour-bg-dark);
  border: 1px solid var(--colour-border-dark);
  border-radius: 8px;
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 120;
}
.nav__item-has-menu:hover .nav__menu,
.nav__item-has-menu:focus-within .nav__menu,
.nav__menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-light);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav__menu a:hover,
.nav__menu a[aria-current="page"] { color: var(--colour-solar); background: rgba(255, 255, 255, 0.04); }

/* Drawer Services group (mobile) */
.nav__drawer-heading {
  margin-top: var(--space-4);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--colour-solar);
  line-height: 40px;
}
.nav__drawer a.nav__drawer-sub { padding-left: var(--space-4); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--colour-bg-dark);
  color: var(--colour-text-light);
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 64px);
}
.hero__content {
  padding: var(--space-24) var(--space-12) var(--space-24) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 38rem;
  margin-left: auto;
  padding-left: var(--container-pad);
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
}
.hero__headline {
  font-size: var(--text-hero);
  margin-bottom: var(--space-5);
}
.hero__headline .accent { color: var(--colour-solar); }
.hero__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--colour-text-muted);
  margin-bottom: var(--space-8);
}
.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.hero__phone { margin-top: var(--space-2); }
.hero__media {
  position: relative;
  background: var(--colour-bg-panel);
  overflow: hidden;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
/* Photo placeholder until Jordan's photos arrive */
.hero__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--colour-bg-panel);
}
.hero__placeholder span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-5xl);
  color: var(--colour-border-dark);
  letter-spacing: 0.04em;
}

/* ---------- Service cards ---------- */
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.card-service {
  background: var(--colour-white);
  border-radius: 4px;
  border-left: 4px solid var(--colour-solar);
  box-shadow: 0 2px 12px rgba(26, 22, 19, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-service__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.card-service__body { padding: var(--space-8); display: flex; flex-direction: column; flex-grow: 1; }
.card-service h3 { color: var(--colour-text-dark); }
.card-service p { color: var(--colour-text-dark); flex-grow: 1; }
.card-service a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-ember-ink);
  text-decoration: none;
  margin-top: var(--space-2);
}
.card-service a:hover { color: var(--colour-solar-dark); }

/* ---------- Trust strip ---------- */
.grid-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.card-trust {
  background: var(--colour-bg-panel);
  border-radius: 4px;
  padding: var(--space-6) var(--space-8);
  border-top: 3px solid var(--colour-solar);
}
.card-trust h3 { color: var(--colour-text-light); font-size: var(--text-lg); }
.card-trust p { color: var(--colour-text-muted); font-size: var(--text-sm); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--colour-solar);
  color: var(--colour-bg-dark);
  text-align: center;
  padding: var(--space-16) 0;
}
.cta-band h2 { color: var(--colour-bg-dark); }
.cta-band p { color: var(--colour-bg-dark); max-width: 40rem; margin: 0 auto var(--space-8); }
.cta-band .btn-ghost { border-color: var(--colour-bg-dark); }
.cta-band .ctas { display: flex; gap: var(--space-4); justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-band .btn-phone { color: var(--colour-bg-dark); }
.cta-band .btn-phone:hover { color: var(--colour-bg-panel); }

/* ---------- Process steps (service pages) ---------- */
.steps { margin-top: var(--space-10); display: flex; flex-direction: column; gap: var(--space-6); }
.step {
  border-left: 4px solid var(--colour-solar);
  padding: var(--space-2) var(--space-6);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--colour-solar);
}
.step h3 { margin: var(--space-2) 0; }

/* ---------- Service page intro / feature list ---------- */
.lead-block { max-width: 48rem; margin-top: var(--space-4); }
.feature-list { list-style: none; margin-top: var(--space-6); display: grid; gap: var(--space-4); }
.feature-list li {
  position: relative;
  padding-left: var(--space-8);
  font-size: var(--text-lg);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  background: var(--colour-solar);
  border-radius: 2px;
}
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; margin-top: var(--space-10); }
.split-media img { border-radius: 4px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Sticky mobile CTA (service pages) ---------- */
.sticky-cta { display: none; }
@media (max-width: 1023px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--colour-bg-dark);
    border-top: 2px solid var(--colour-solar);
    padding: var(--space-3) var(--container-pad);
  }
  .sticky-cta .btn-primary { display: block; width: 100%; text-align: center; }
  body.has-sticky-cta { padding-bottom: 84px; }
  .split-media { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ---------- FAQ accordion ---------- */
.faq { margin-top: var(--space-10); border-top: 1px solid var(--colour-border); }
.faq details {
  border-bottom: 1px solid var(--colour-border);
  padding: var(--space-4) 0;
}
.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--colour-solar); font-family: var(--font-display); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin-top: var(--space-4); margin-bottom: 0; }

/* ---------- Team cards (About) ---------- */
.grid-team { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); margin-top: var(--space-10); }
.card-team { background: var(--colour-bg-mid); border-radius: 4px; overflow: hidden; }
.card-team__photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; background: var(--colour-bg-panel); }
.card-team__placeholder {
  width: 100%; aspect-ratio: 4/5; background: var(--colour-bg-panel);
  display: flex; align-items: center; justify-content: center;
}
.card-team__placeholder span { font-family: var(--font-display); font-weight: 800; font-size: var(--text-3xl); color: var(--colour-border-dark); }
.card-team__body { padding: var(--space-6); }
.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  color: var(--colour-text-dark);
  border-left: 4px solid var(--colour-solar);
  padding-left: var(--space-6);
  margin: var(--space-12) 0;
  max-width: 44rem;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-12); margin-top: var(--space-8); }
.form-field { margin-bottom: var(--space-5); }
.form-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid var(--colour-border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: var(--colour-white);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--colour-solar); }
.contact-detail { margin-bottom: var(--space-6); }
.contact-detail span {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-muted-ink);
  margin-bottom: var(--space-1);
}
.contact-detail a { color: var(--colour-text-dark); text-decoration: none; font-weight: 600; }
.contact-detail a:hover { color: var(--colour-ember-ink); }
.contact-card { background: var(--colour-bg-mid); border-radius: 4px; padding: var(--space-8); }
.contact-card .btn-phone { font-size: var(--text-2xl); margin-bottom: var(--space-6); }

/* Quote form */
.quote-form .req { color: var(--colour-ember); }
.quote-form fieldset {
  border: 0;
  margin: 0 0 var(--space-5);
  padding: 0;
}
.quote-form legend {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-3);
  padding: 0;
}
.radio-pills { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.radio-pills label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--colour-border);
  border-radius: 2px;
  background: var(--colour-white);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio-pills input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pills label:hover { border-color: var(--colour-text-muted); }
.radio-pills input:checked + span,
.radio-pills label:has(input:checked) {
  border-color: var(--colour-solar);
  background: var(--colour-solar);
  color: var(--colour-text-dark);
  font-weight: 600;
}
.radio-pills input:focus-visible + span { outline: 2px solid var(--colour-ember); outline-offset: 2px; }
.form-submit { margin-top: var(--space-2); }
.form-success {
  display: none;
  background: var(--colour-bg-mid);
  border-left: 4px solid var(--colour-solar);
  padding: var(--space-6);
  border-radius: 4px;
}
.form-success h3 { margin-bottom: var(--space-2); }
.form-success p { margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--colour-bg-dark);
  color: var(--colour-text-light);
  border-top: 3px solid var(--colour-solar);
  padding: var(--space-16) 0 var(--space-6);
}
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); }
.footer__logo span { color: var(--colour-solar); }
.footer__logo-img { height: 84px; width: auto; margin-bottom: var(--space-4); }
.footer p { color: var(--colour-text-muted); font-size: var(--text-sm); }
.footer h4 { color: var(--colour-text-light); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-ui); font-size: var(--text-sm); }
.footer ul { list-style: none; }
.footer ul a { color: var(--colour-text-muted); text-decoration: none; font-size: var(--text-sm); line-height: 2; }
.footer ul a:hover { color: var(--colour-solar); }
.footer__bottom {
  border-top: 1px solid var(--colour-border-dark);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--colour-text-muted);
}
.footer__bottom a { color: var(--colour-text-muted); }
.footer__bottom a:hover { color: var(--colour-solar); }

/* ---------- Animation ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__headline { animation: fadeUp 0.6s ease forwards; }
.hero__sub      { animation: fadeUp 0.6s ease 0.15s forwards; opacity: 0; }
.hero__ctas     { animation: fadeUp 0.6s ease 0.3s forwards; opacity: 0; }
.hero__phone    { animation: fadeUp 0.6s ease 0.4s forwards; opacity: 0; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__sub, .hero__ctas, .hero__phone { opacity: 1; }
}

/* ==========================================================================
   Responsive: lg (1024px) is the primary layout switch
   ========================================================================== */
@media (max-width: 1023px) {
  :root { --text-hero: 3.75rem; }

  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__inner { height: 56px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__media { order: -1; height: 50vh; }
  .hero__content {
    clip-path: none;
    padding: var(--space-12) var(--container-pad);
    max-width: none;
    margin-left: 0;
  }
  .hero__headline { font-size: var(--text-5xl); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn-primary,
  .hero__ctas .btn-secondary { text-align: center; }
  /* Phone already shows in the header and the sticky CTA on mobile — drop the
     third copy in the hero. Desktop keeps it (no sticky bar there). */
  .hero__phone { display: none; }

  .grid-services { grid-template-columns: 1fr; }
  .grid-trust { grid-template-columns: 1fr 1fr; }
  .grid-team { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-8); }

  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-2xl); }

  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: var(--space-8); }
  .footer ul { display: inline-block; text-align: left; }
  /* img is display:block globally, so it ignores text-align — centre it explicitly */
  .footer__logo-img { margin-left: auto; margin-right: auto; }
  .footer__phone { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: var(--space-2); text-align: center; align-items: center; }
}

@media (max-width: 639px) {
  :root { --container-pad: 1.25rem; }
  .grid-trust { grid-template-columns: 1fr; }
  .cta-band .ctas { flex-direction: column; }
}

/* ==========================================================================
   Phase 2 additions (real-copy retrofit + new pages)
   Tokens only. New component classes for new content types.
   ========================================================================== */

/* ---------- Footer contact block: two labelled numbers + meta lines ---------- */
.footer__phone { display: flex; align-items: baseline; gap: var(--space-3); margin-bottom: var(--space-2); }
.footer__phone span {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-muted);
  min-width: 3.25rem;
}
.footer__phone .btn-phone { font-size: var(--text-lg); }
.footer__meta { color: var(--colour-text-muted); font-size: var(--text-sm); margin-top: var(--space-3); }
.footer__bottom .lic { white-space: nowrap; }

/* ---------- About: phone under each partner portrait ---------- */
.card-team__phone {
  display: inline-block;
  font-size: var(--text-xl);
  margin-top: var(--space-2);
  color: var(--colour-ember-ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
}
.card-team__phone:hover { color: var(--colour-solar-dark); }
.card-team__role {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-muted);
  display: block;
  margin-top: var(--space-3);
}

/* ---------- Battery brands grid ---------- */
.grid-brands { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); margin-top: var(--space-10); }
.card-brand {
  background: var(--colour-bg-panel);
  border-radius: 4px;
  padding: var(--space-6) var(--space-4);
  border-top: 3px solid var(--colour-solar);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-brand h3 { color: var(--colour-text-light); font-size: var(--text-base); margin: 0; line-height: 1.2; }

/* ---------- Electrical scope grid ---------- */
.grid-scope { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-top: var(--space-10); }
.card-scope {
  background: var(--colour-white);
  border-radius: 4px;
  border-left: 4px solid var(--colour-ember);
  box-shadow: 0 2px 12px rgba(26, 22, 19, 0.08);
  padding: var(--space-6);
}
.card-scope h3 { color: var(--colour-text-dark); font-size: var(--text-lg); margin-bottom: var(--space-4); }
.card-scope ul { list-style: none; }
.card-scope li {
  font-size: var(--text-sm);
  color: var(--colour-text-dark);
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  line-height: 1.5;
}
.card-scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--colour-ember);
  border-radius: 2px;
}

/* ---------- Packages: solution tiers ---------- */
.grid-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); margin-top: var(--space-10); }
.card-tier {
  background: var(--colour-white);
  border-radius: 4px;
  border-top: 4px solid var(--colour-solar);
  box-shadow: 0 2px 12px rgba(26, 22, 19, 0.08);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}
.card-tier__img {
  width: calc(100% + 2 * var(--space-8));
  margin: calc(-1 * var(--space-8)) calc(-1 * var(--space-8)) var(--space-6);
  border-radius: 4px 4px 0 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.card-tier .eyebrow { color: var(--colour-ember-ink); }
.card-tier h3 { color: var(--colour-text-dark); font-size: var(--text-2xl); }
.card-tier > p { color: var(--colour-text-dark); }
.card-tier .feature-list { margin-top: var(--space-5); margin-bottom: var(--space-8); }
.card-tier .feature-list li { font-size: var(--text-base); }
.card-tier .btn-primary { margin-top: auto; align-self: flex-start; }

/* ---------- Resources hub ---------- */
.prose { max-width: 48rem; }
.prose h3 { margin-top: var(--space-8); }
.resource-toc { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-top: var(--space-10); }
.resource-toc a {
  display: block;
  background: var(--colour-white);
  border-left: 4px solid var(--colour-solar);
  box-shadow: 0 2px 12px rgba(26, 22, 19, 0.08);
  border-radius: 4px;
  padding: var(--space-6);
  text-decoration: none;
  color: var(--colour-text-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.resource-toc span {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--colour-ember-ink);
  font-weight: 600;
}
.resource-toc h3 { font-size: var(--text-lg); margin: var(--space-2) 0 0; }
.article { border-top: 1px solid var(--colour-border); padding-top: var(--space-12); margin-top: var(--space-12); }
.article:first-of-type { border-top: 0; padding-top: 0; margin-top: var(--space-10); }

@media (max-width: 1023px) {
  .grid-brands { grid-template-columns: 1fr 1fr; }
  .grid-scope { grid-template-columns: 1fr 1fr; }
  .grid-tiers { grid-template-columns: 1fr; }
  .resource-toc { grid-template-columns: 1fr; }
}
@media (max-width: 639px) {
  .grid-scope { grid-template-columns: 1fr; }
}

/* ---------- Contact form redesign (Phase 2) ---------- */
/* Anchor the form on a white card so the fields stop floating on the cream bg. */
.quote-card {
  background: var(--colour-white);
  border-radius: 4px;
  border-left: 4px solid var(--colour-solar);
  box-shadow: 0 2px 16px rgba(26, 22, 19, 0.08);
  padding: var(--space-8);
}

/* Rounder, roomier inputs with a clear focus ring */
.form-field input,
.form-field textarea,
.form-field select {
  border-radius: 4px;
  padding: 0.85rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--colour-solar);
  box-shadow: 0 0 0 3px rgba(249, 232, 48, 0.28);
}
.form-field select {
  appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231A1613' stroke-width='1.6' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 0.75rem;
  cursor: pointer;
}
.radio-pills label {
  border-radius: 4px;
  padding: 0.6rem 1rem;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

/* Contact card: flip to the dark panel so the yellow numbers carry it */
.contact-card {
  background: var(--colour-bg-dark);
  border-top: 4px solid var(--colour-solar);
}
.contact-card .contact-detail a { color: var(--colour-text-light); }
.contact-card .contact-detail a:hover { color: var(--colour-solar); }
.contact-card .contact-detail p { color: var(--colour-text-light); }
.contact-card .contact-detail .btn-phone { color: var(--colour-solar); }
.contact-card .contact-detail .btn-phone:hover { color: var(--colour-solar-dark); }

/* ==========================================================================
   Phase 3: Homepage + mobile hero premium pass
   Tokens only. Cinematic mobile hero, proof row, photo trust-tags, service
   hooks, "what happens next" reassurance, two-action sticky CTA, and tasteful
   CSS micro-interactions. Desktop split-hero stays untouched.
   ========================================================================== */

/* ---------- Cinematic mobile hero (all pages, mobile only) ---------- */
@media (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
    isolation: isolate;
  }
  .hero__media {
    position: absolute;
    inset: 0;
    order: 0;
    height: auto;
    z-index: -2;
  }
  .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(26, 22, 19, 0.86) 0%, rgba(26, 22, 19, 0.88) 45%, rgba(26, 22, 19, 0.95) 100%);
  }
  .hero__content {
    justify-content: center;
    min-height: auto;
    padding: var(--space-12) var(--container-pad);
  }
  /* Hero copy sits over the photo on mobile: lift the sub-line off the muted
     grey (which blurred into bright photos) to a readable cream, and add a
     functional text-shadow so all hero copy stays legible over any image. */
  .hero__content .eyebrow,
  .hero__headline,
  .hero__sub {
    text-shadow: 0 1px 8px rgba(26, 22, 19, 0.55);
  }
  .hero__sub {
    color: rgba(248, 243, 232, 0.92);
  }
}

/* ---------- Proof row (homepage only) ---------- */
.proof-row { background: var(--colour-bg-dark); border-top: 1px solid var(--colour-border-dark); }
.proof-row__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}
.proof { display: flex; flex-direction: column; gap: var(--space-1); }
.proof strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--colour-solar);
  letter-spacing: -0.01em;
}
.proof span {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-muted);
}

/* ---------- Photo trust-tags (homepage service images) ---------- */
.card-service__media { position: relative; overflow: hidden; margin: 0; }

/* ---------- Service card hook line (homepage) ---------- */
.card-service__hook {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1.15;
  color: var(--colour-text-dark);
  margin: 0 0 var(--space-3);
}

/* ---------- Homepage reassurance echo ---------- */
.reassure-echo {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--colour-text-muted-ink);
  max-width: 40rem;
  margin-top: var(--space-8);
}

/* ---------- "What happens next" reassurance (contact) ---------- */
.grid-next { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); margin-top: var(--space-10); }
.next { display: flex; flex-direction: column; gap: var(--space-3); }
.next__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  color: var(--colour-ember-ink);
  line-height: 1;
}
.next p { margin: 0; font-size: var(--text-lg); }

/* ---------- Two-action sticky mobile CTA (shared, all pages) ---------- */
.btn-phone { transition: color 0.15s ease; }
@media (max-width: 1023px) {
  .sticky-cta--duo { display: flex; gap: var(--space-3); }
  .sticky-cta__call,
  .sticky-cta__quote {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 48px;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .sticky-cta__call {
    background: transparent;
    color: var(--colour-solar);
    border: 1.5px solid var(--colour-solar);
  }
  .sticky-cta__call:hover { background: var(--colour-solar); color: var(--colour-bg-dark); }
  .sticky-cta__quote {
    background: var(--colour-solar);
    color: var(--colour-bg-dark);
    border: 1.5px solid var(--colour-solar);
  }
  .sticky-cta__quote:hover { background: var(--colour-solar-dark); border-color: var(--colour-solar-dark); }
  .sticky-cta__call:active,
  .sticky-cta__quote:active { transform: scale(0.97); }
  .sticky-cta__call svg { width: 18px; height: 18px; }
}

/* ---------- Micro-interactions (CSS-first, GPU-cheap) ---------- */
/* Hover lifts/scales gated to real pointers so they never stick on a mobile tap. */
.card-service__media img { transition: transform 0.4s ease; }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--colour-solar-dark); transform: translateY(-1px); }
  .card-service:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26, 22, 19, 0.14); }
  .card-service:hover .card-service__media img { transform: scale(1.03); }
  .resource-toc a:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26, 22, 19, 0.14); }
}

/* ---------- Responsive trims for Phase 3 ---------- */
@media (max-width: 1023px) {
  .proof-row__inner { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .grid-next { grid-template-columns: 1fr; gap: var(--space-6); }
}
@media (prefers-reduced-motion: reduce) {
  .card-service:hover .card-service__media img { transform: none; }
}

/* ==========================================================================
   Phase 4: Option B redesign (composition + two signature moments)
   Tokens unchanged (only --colour-sage removed). New layout language:
   full-bleed hero, asymmetric services, SM1 "same two hands" job journey,
   SM2 "Yamba to Forster" place band, founder presence band.
   Desktop split-hero (.hero, no modifier) kept for not-yet-rebuilt pages.
   ========================================================================== */

/* ---------- Full-bleed hero (homepage; service pages adopt later) ---------- */
.hero--fullbleed {
  display: block;
  grid-template-columns: none;
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 64px);
}
.hero--fullbleed .hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--colour-bg-panel);
}
.hero--fullbleed .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero--fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(26,22,19,0.93) 0%, rgba(26,22,19,0.74) 40%, rgba(26,22,19,0.30) 72%, rgba(26,22,19,0.12) 100%),
    linear-gradient(0deg, rgba(26,22,19,0.85) 0%, rgba(26,22,19,0) 48%);
}
.hero--fullbleed .hero__inner {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--space-24);
  padding-bottom: var(--space-16);
}
.hero--fullbleed .hero__content {
  clip-path: none;
  padding: 0;
  margin-left: 0;
  max-width: 46rem;
}

/* ---------- Services: three equal cards, authored by big numerals ---------- */
.card-service__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 1;
  color: var(--colour-ember-ink);
  margin-bottom: var(--space-2);
}

/* ---------- SM1: "The same two hands" job journey ---------- */
.journey__track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
}
/* Connector line draws in on reveal (uses the existing IO; .reveal observed in main.js) */
.journey__line {
  position: absolute;
  top: 18px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: var(--colour-solar);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
  z-index: 0;
}
.journey__line.visible { opacity: 1; transform: scaleX(1); }
.journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.journey__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--colour-solar);
  color: var(--colour-bg-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.journey__media { margin: 0; border-radius: 4px; overflow: hidden; background: var(--colour-bg-panel); }
.journey__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.journey__step h3 { color: var(--colour-text-light); font-size: var(--text-lg); margin: 0; }
.journey__step p { color: var(--colour-text-muted); font-size: var(--text-sm); margin: 0; }
.journey__who {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--colour-solar);
}

/* ---------- SM2: "From Yamba to Forster" place band ---------- */
.places__names {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-3) var(--space-5);
  margin-top: var(--space-8);
}
.places__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-5xl);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--colour-text-dark);
}
.places__name--accent { color: var(--colour-ember-ink); }
.places__dot { color: var(--colour-text-muted); font-size: var(--text-3xl); line-height: 1; }
.places__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}
.places__strip img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 4px; }

/* ---------- Founder presence band ---------- */
.founders__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-top: var(--space-8);
}
.founders__portraits { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.founders__portraits figure { margin: 0; }  /* level: two equal co-owners, no vertical ranking */
.founders__portraits img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  background: var(--colour-bg-panel);
}
.founders__portraits figcaption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  margin-top: var(--space-2);
}
.founders__portraits .role {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-muted-ink);
  font-weight: 600;
}
.founders__copy .pull-quote { margin-top: 0; }

/* ---------- SM1 mini-band: 3-step journey for service pages ---------- */
.journey__track--mini { grid-template-columns: repeat(3, 1fr); }

/* ---------- Spec/credentials strip (service pages) ---------- */
.spec-strip { background: var(--colour-bg-panel); border-top: 2px solid var(--colour-ember); }
.spec-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}
.spec-strip__item .eyebrow { color: var(--colour-solar); }
.spec-strip__item h3 {
  color: var(--colour-text-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  margin: var(--space-2) 0 var(--space-3);
}
.spec-strip__item p { color: var(--colour-text-muted); font-size: var(--text-sm); margin: 0; }

/* ---------- Phase 4 responsive ---------- */
@media (max-width: 1023px) {
  /* Mobile hero: content-sized, not full-viewport — kills the dead sky above the
     headline and lifts the copy clear of the fixed sticky CTA. Desktop unchanged. */
  .hero--fullbleed { min-height: auto; }
  .hero--fullbleed .hero__inner {
    min-height: auto;
    justify-content: center;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .journey__track { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .journey__line { display: none; }

  .places__name { font-size: var(--text-4xl); }
  /* Stack the town names so separator dots never orphan at a line start */
  .places__names { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
  .places__dot { display: none; }
  .places__strip { grid-template-columns: 1fr 1fr; }

  .founders__grid { grid-template-columns: 1fr; gap: var(--space-8); }

  .spec-strip__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}
@media (max-width: 639px) {
  .journey__track { grid-template-columns: 1fr; }
  /* Smaller hero headline + tighter sub so the people-promise reads calm, not shouting */
  .hero--fullbleed .hero__headline { font-size: var(--text-4xl); }
  .hero--fullbleed .hero__sub { font-size: var(--text-base); margin-bottom: var(--space-6); }
}
