/* ==========================================================================
   Moonshot Growth — moonshotgrowth.co.uk
   Palette, type and layout derived from the client flyer.
   Self-hosted fonts per Draxiq master.md §1.45 (no googleapis.com references).
   ========================================================================== */

/* ---------- Fonts (variable, wght 100–900) ------------------------------- */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-latin-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-latin-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Brand — sampled from the flyer */
  --navy:        #06182C;
  --navy-mid:    #0B2A48;
  --navy-soft:   #16324F;
  --gold:        #C3872C;   /* brand gold — large display text / graphics only */
  --gold-lift:   #E3AE55;   /* gold on dark — 8.7:1 on navy */
  --gold-deep:   #9A6614;   /* gold on light — 4.9:1 on off-white, AA body text */
  --gold-rule:   #B0741C;

  /* Neutrals */
  --ink:         #0C1C2F;
  --body:        #4A5A6B;
  --paper:       #FFFFFF;
  --paper-warm:  #F9F8F8;
  --panel:       #F4F5F6;
  --line:        #E2E5E9;
  --line-dark:   rgba(255, 255, 255, .14);
  --on-navy:     #FFFFFF;
  --on-navy-mut: #C7D2DE;

  /* Type */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Montserrat', 'Inter', system-ui, -apple-system, Arial, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(6, 24, 44, .05), 0 8px 24px rgba(6, 24, 44, .06);
  --shadow-lift: 0 2px 4px rgba(6, 24, 44, .06), 0 16px 40px rgba(6, 24, 44, .12);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.015em;
  text-wrap: balance;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy); }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Utilities ---------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: .85rem 1.35rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus {
  left: 0;
  color: #fff;
}

/* icon sprite host — kept out of flow without display:none (which kills <use>) */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.inline-icon { vertical-align: -4px; margin-right: .4rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .9rem;
}

.eyebrow-light { color: var(--gold-lift); }

.section-head {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 3vw, 1.6rem);
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}
.section-head::before,
.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 3.2vw, 1.6rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
}

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn svg { flex: none; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(195, 135, 44, .32);
}
.btn-primary:hover {
  background: #D2942F;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(195, 135, 44, .4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-on-navy {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}
.btn-on-navy:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding-block: .7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex: none;
}
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.02rem, 3.4vw, 1.3rem);
  letter-spacing: .01em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--gold-deep); }
.brand-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .55rem;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--body);
  margin-top: .34rem;
  white-space: nowrap;
}

.header-cta { display: flex; align-items: center; gap: .85rem; }
/* Mobile: header shows the number only — the sticky call bar carries the CTA. */
.header-cta > .btn { display: none; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold-deep); }
.header-phone svg { color: var(--gold-deep); }

/* ---------- Hero --------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) 0; }
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.15rem, 6.4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-bottom: 1.4rem;
}
.hero h1 .accent { color: var(--gold-rule); }

.hero-rule {
  width: 84px;
  height: 3px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.5rem;
}

.hero-lead { font-size: clamp(1.05rem, 2.4vw, 1.2rem); margin-bottom: 1.6rem; }
.hero-lead strong {
  display: block;
  color: var(--gold-deep);
  font-weight: 600;
}

.hero-body { max-width: 54ch; }
.hero-body .emphasis {
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.9rem;
}
.hero-note {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--body);
}

/* Navy quote panel — mirrors the flyer's moon panel */
.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 85% 8%, #123253 0%, transparent 55%),
    linear-gradient(155deg, #08203A 0%, var(--navy) 62%);
  color: var(--on-navy);
  padding: clamp(1.85rem, 4.5vw, 2.9rem);
  box-shadow: var(--shadow-lift);
  isolation: isolate;
}
.hero-moon {
  position: absolute;
  top: -26%;
  right: -24%;
  width: min(56%, 250px);
  opacity: .38;
  z-index: -1;
  pointer-events: none;
}
.hero-stars { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.quote-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: .8;
  color: var(--gold-lift);
  margin-bottom: .6rem;
}
.hero-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.15rem;
  margin: 0 0 clamp(1.6rem, 4vw, 2.2rem);
}
.hero-quote p {
  font-size: clamp(1.15rem, 2.9vw, 1.42rem);
  line-height: 1.42;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.hero-quote .flip { color: var(--gold-lift); }

.hero-panel hr {
  border: 0;
  border-top: 1px solid var(--line-dark);
  margin: 0 0 clamp(1.5rem, 4vw, 2rem);
}

.stack-row {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.stack-icon {
  flex: none;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-lift);
}
.stack-row ul li {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
}
.stack-row ul li:last-child { color: var(--gold-lift); }

/* ---------- What we do --------------------------------------------------- */
.services { padding-block: var(--section-y); }
.service-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}
.service {
  padding: clamp(1.5rem, 3.5vw, 1.9rem) clamp(.5rem, 2vw, 1.4rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.service:last-child { border-bottom: 0; }
.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.15rem;
  color: var(--gold);
}
.service h3 {
  font-family: var(--font-display);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: .7rem;
}
.service p {
  font-size: .95rem;
  max-width: 30ch;
  margin-inline: auto;
}

/* ---------- Low-risk + process band -------------------------------------- */
.band {
  background: var(--panel);
  padding-block: var(--section-y);
}
.band-grid {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3rem);
}

.risk h2 {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.risk h2 svg { flex: none; width: 46px; height: 46px; color: var(--gold); }
.nowrap { white-space: nowrap; }

.checklist li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.checklist li:last-child { margin-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 1.2rem;
  height: .68rem;
  border-left: 2.5px solid var(--gold);
  border-bottom: 2.5px solid var(--gold);
  transform: rotate(-45deg);
}

.process h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 1.35rem .4rem;
  list-style: none;
}
.step { text-align: center; position: relative; }
.step-dot {
  width: 62px;
  height: 62px;
  margin: 0 auto .8rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-lift);
  display: grid;
  place-items: center;
}
.step-dot svg { width: 27px; height: 27px; }
.step h3 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.step p { font-size: .85rem; line-height: 1.45; }

/* Everyone-wins banner */
.wins {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.5rem;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.wins .accent { color: var(--gold-deep); }

/* ---------- About -------------------------------------------------------- */
.about { padding-block: var(--section-y); }
.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.about h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1.2rem;
}
.about-mission {
  max-width: 52ch;
  margin-bottom: 1.4rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink);
}

.about-body { max-width: 60ch; font-size: 1.05rem; }

.about-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: clamp(1.4rem, 3.5vw, 1.9rem);
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-card dl { margin: 0; display: grid; gap: .9rem; }
.about-card dt {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: .12rem;
}
.about-card dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}
.about-card dd a { color: var(--ink); text-decoration: none; }
.about-card dd a:hover { color: var(--gold-deep); text-decoration: underline; }

/* ---------- Contact ------------------------------------------------------ */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(100% 120% at 88% 0%, #123253 0%, transparent 58%),
    linear-gradient(160deg, #08203A 0%, var(--navy) 65%);
  color: var(--on-navy);
  padding-block: var(--section-y);
  isolation: isolate;
}
.contact-stars { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.contact h2 {
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}
.contact h2 .accent { color: var(--gold-lift); }
.contact-lead {
  color: var(--on-navy-mut);
  font-size: 1.08rem;
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.contact-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

.contact-list { display: grid; gap: 1.4rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item .ci-icon {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(227, 174, 85, .55);
  display: grid;
  place-items: center;
  color: var(--gold-lift);
}
.ci-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-navy-mut);
  margin-bottom: .2rem;
}
.ci-value {
  font-size: clamp(1.1rem, 3.2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  word-break: break-word;
}
a.ci-value:hover { color: var(--gold-lift); }

.partners-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  padding: clamp(1.5rem, 4vw, 2.1rem);
}
.partners-card h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: .9rem;
}
.partners-card h3 .accent { color: var(--gold-lift); }
.partners-card p { color: var(--on-navy-mut); font-size: .98rem; }
.partners-card .btn { margin-top: 1.1rem; width: 100%; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq {
  background: var(--panel);
  padding-block: var(--section-y);
}
.faq-list {
  max-width: 62rem;
  margin-inline: auto;
  display: grid;
  gap: .75rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  /* the whole row is the hit target — comfortably over 44px */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1.1rem, 3vw, 1.6rem);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  line-height: 1.4;
  color: var(--ink);
  list-style: none;
}
/* Safari still paints the disclosure triangle without this */
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: .15rem;
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) center/13px 2px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) center/2px 13px no-repeat;
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  /* plus becomes minus: hide the vertical bar, keep the horizontal one */
  background: linear-gradient(var(--gold-deep), var(--gold-deep)) center/13px 2px no-repeat;
  transform: rotate(180deg);
}
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}
.faq-answer {
  padding: 0 clamp(1.1rem, 3vw, 1.6rem) 1.3rem;
  max-width: 66ch;
}
.faq-answer p { color: var(--body); font-size: 1rem; }
.faq-answer a { color: var(--gold-deep); }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  background: #04101F;
  color: var(--on-navy-mut);
  padding-block: 2.25rem;
  font-size: .9rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: .65rem; }
.footer-brand svg { width: 32px; height: 32px; }
.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: .01em;
}
.footer-links { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; justify-content: center; }
.footer-links a { color: var(--on-navy-mut); text-decoration: none; }
.footer-links a:hover { color: var(--gold-lift); text-decoration: underline; }
.footer-legal { color: #7D8FA3; font-size: .82rem; }
.footer-legal a { color: #7D8FA3; }
.footer-legal a:hover { color: var(--gold-lift); }

/* ---------- Sticky mobile call bar --------------------------------------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  gap: .6rem;
  padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(6, 24, 44, .1);
}
.callbar .btn { flex: 1; min-height: 50px; font-size: .97rem; }
body { padding-bottom: 74px; }

/* ---------- Reveal (progressive enhancement) ----------------------------- */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.js-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */
/* Small phones: keep the header lockup + number on one line without clipping */
@media (max-width: 559px) {
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: .9rem; }
  .brand-tag { font-size: .48rem; letter-spacing: .14em; }
  .header-phone { font-size: .9rem; gap: .35rem; }
  .header-phone svg { display: none; }
  .header-inner { min-height: 64px; gap: .5rem; }
}

@media (min-width: 560px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service { border-bottom: 1px solid var(--line); }
  .service:nth-last-child(-n+1) { border-bottom: 0; }
  .service:nth-child(odd) { border-right: 1px solid var(--line); }
  .partners-card .btn { width: auto; }
}

@media (min-width: 860px) {
  .header-cta > .btn { display: inline-flex; }
  .about-grid { grid-template-columns: 1.35fr .8fr; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .band-grid { grid-template-columns: .78fr 1.22fr; }
  .steps { grid-template-columns: repeat(5, 1fr); }

  /* vertical divider between low-risk list and process, as on the flyer */
  .process {
    border-left: 1px solid var(--line);
    padding-left: clamp(2rem, 4vw, 3rem);
  }

  .callbar { display: none; }
  body { padding-bottom: 0; }
}

@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.06fr .94fr; }
  .hero { padding-block: clamp(3rem, 5vw, 5rem) 0; }

  .service-grid { grid-template-columns: repeat(5, 1fr); }
  .service {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding-inline: clamp(.6rem, 1.4vw, 1rem);
  }
  .service:last-child { border-right: 0; }
  .service:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ---------- Motion / print ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js-reveal .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .callbar, .hero-actions, .partners-card .btn { display: none; }
  body { padding-bottom: 0; color: #000; }
  .contact, .hero-panel { background: #fff; color: #000; }
}
