/* =========================================================================
   SPIDER CONSTRUCTION LLC — Shared Design System
   "Spider Roofing" — strength, precision, protection
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700&family=Michroma&display=swap');

:root {
  /* Brand palette */
  --red:        #C1121F;
  --red-dark:   #98101a;
  --red-soft:   #e8d3d4;
  --black:      #111113;
  --ink:        #1c1c1f;
  --charcoal:   #2a2a2e;
  --gray-900:   #3a3a3f;
  --gray-700:   #5c5c63;
  --gray-500:   #8b8b92;
  --gray-300:   #d6d6da;
  --gray-200:   #e6e6ea;
  --gray-100:   #f1f1f3;
  --gray-50:    #f7f7f8;
  --white:      #ffffff;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(17,17,19,.06), 0 2px 8px rgba(17,17,19,.05);
  --shadow-md: 0 10px 30px rgba(17,17,19,.10);
  --shadow-lg: 0 24px 60px rgba(17,17,19,.18);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--black);
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.section--gray { background: var(--gray-50); }
.section--ink { background: var(--ink); color: var(--gray-100); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

/* ---- Eyebrow / kicker ---- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.section--ink .kicker { color: #ff5a64; }

/* ---- Type scale ---- */
.display {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.h2 { font-size: clamp(2rem, 4vw, 3.1rem); text-transform: uppercase; font-weight: 900; }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); text-transform: uppercase; letter-spacing: 0; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--gray-700);
  font-weight: 400;
  max-width: 60ch;
}
.section--ink .lead { color: var(--gray-300); }
.muted { color: var(--gray-700); }

/* ---- Buttons ---- */
.btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  line-height: 1;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  --bg: transparent; --fg: var(--black);
  border-color: var(--gray-300);
}
.btn--ghost:hover { background: var(--black); border-color: var(--black); color: #fff; }
.section--ink .btn--ghost { --fg: #fff; border-color: rgba(255,255,255,.3); }
.section--ink .btn--ghost:hover { background: #fff; color: var(--black); border-color:#fff; }

.btn--light { --bg: #fff; --fg: var(--black); }
.btn--light:hover { background: var(--gray-100); border-color: var(--gray-100); color: var(--black); }

.btn--lg { padding: 20px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.topbar {
  background: var(--black);
  color: var(--gray-300);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 40px; gap: 16px; flex-wrap: wrap;
}
.topbar a, .topbar span { color: var(--gray-300); text-decoration: none; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar__group { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .badge { color: #fff; font-weight: 600; display:inline-flex; gap:7px; align-items:center; }
.topbar .badge::before { content:""; width:7px;height:7px;border-radius:50%;background:var(--red); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px;
}
/* ---- Brand lockup (emblem + Horizon-style wordmark) ---- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--black); }
.brand__logo { height: 46px; width: auto; display: block; flex: none; }
.brand__logo--full { height: auto; width: clamp(160px, 17vw, 188px); }
.brand__name { display: flex; flex-direction: column; line-height: 1; font-family: 'Michroma', var(--font-display); }
.brand__name b { font-weight: 400; font-size: 1.12rem; letter-spacing: .015em; color: currentColor; }
.brand__name small { font-size: .5rem; letter-spacing: .3em; color: currentColor; opacity: .68; margin-top: 5px; white-space: nowrap; }
.site-footer .brand { color: #fff; }
.brand--stack { flex-direction: column; gap: 11px; text-align: center; }
.brand--stack .brand__logo { height: 58px; }
.brand--stack .brand__name { align-items: center; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; color: var(--charcoal);
  font-weight: 600; font-size: 0.98rem;
  padding: 10px 14px; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--red); background: var(--gray-100); }
.nav a.active { color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { text-decoration:none; font-family:var(--font-display); font-weight:800; color:var(--black); white-space:nowrap; }
.header-phone:hover { color: var(--red); }

.nav-toggle { display: none; }

/* =========================================================================
   SPIDERWEB ACCENTS
   ========================================================================= */
.web-corner {
  position: absolute; top: 0; left: 0;
  width: clamp(180px, 22vw, 300px); height: auto; opacity: .07;
  pointer-events: none; z-index: 0;
}
.web-corner--tr { left: auto; right: 0; top: 0; transform: scaleX(-1); }
.web-corner--br { left: auto; right: 0; top: auto; bottom: 0; transform: scale(-1,-1); }
.web-corner--bl { top: auto; bottom: 0; transform: scaleY(-1); }
.section--ink .web-corner { opacity: .12; filter: invert(1); }
.section > .container { position: relative; z-index: 1; }

/* thin web divider */
.web-divider {
  height: 2px; border: 0; margin: 0;
  background-image: repeating-linear-gradient(90deg, var(--gray-300) 0 18px, transparent 18px 26px);
}
.web-divider--red { background-image: repeating-linear-gradient(90deg, var(--red) 0 18px, transparent 18px 26px); }

/* =========================================================================
   CARDS / GRID HELPERS
   ========================================================================= */
.grid { display: grid; gap: clamp(16px, 2vw, 28px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.card__icon {
  width: 54px; height: 54px; border-radius: var(--r-sm);
  background: var(--gray-100); display: grid; place-items: center;
  margin-bottom: 20px; color: var(--red);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-700); margin-bottom: 18px; font-size: 1rem; }
.card__link {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: .82rem; letter-spacing: .08em; color: var(--red);
  text-decoration: none; display: inline-flex; gap: 8px; align-items: center;
}
.card__link:hover { gap: 12px; }
.card__accent { position:absolute; top:0; left:0; width:100%; height:4px; background:var(--red); transform: scaleX(0); transform-origin:left; transition: transform .25s var(--ease); }
.card:hover .card__accent { transform: scaleX(1); }

/* Trust strip */
.trust {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  overflow: hidden; background: #fff;
}
.trust__item { padding: 28px 30px; display: flex; gap: 16px; align-items: center; border-right: 1px solid var(--gray-200); }
.trust__item:last-child { border-right: 0; }
.trust__item svg { width: 30px; height: 30px; color: var(--red); flex: none; }
.trust__item strong { font-family: var(--font-display); text-transform: uppercase; display:block; color: var(--black); font-size: .98rem; letter-spacing:.01em; }
.trust__item span { font-size: .9rem; color: var(--gray-700); }

/* =========================================================================
   IMAGE PLACEHOLDERS  (striped — for the developer to drop real photos)
   ========================================================================= */
.ph {
  position: relative;
  background-color: var(--gray-100);
  background-image: repeating-linear-gradient(45deg, var(--gray-200) 0 2px, transparent 2px 11px);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  color: var(--gray-500);
  overflow: hidden;
  min-height: 200px;
}
.ph__label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(255,255,255,.86); color: var(--gray-700);
  padding: 6px 12px; border-radius: 100px; border: 1px solid var(--gray-200);
  text-align: center; max-width: 86%;
}
.ph--dark { background-color: var(--charcoal); background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 11px); border-color: var(--gray-900); }
.ph--dark .ph__label { background: rgba(0,0,0,.4); color: var(--gray-300); border-color: var(--gray-900); }

/* before/after pair */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; border-radius: var(--r-md); overflow: hidden; }
.ba .ph { border-radius: 0; min-height: 220px; }
.ba__tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: .7rem; letter-spacing: .1em; color: #fff; background: var(--black);
  padding: 5px 11px; border-radius: var(--r-sm);
}
.ba__tag--after { background: var(--red); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--black); color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--charcoal);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 13px);
}
.hero__web { position: absolute; top: 0; right: 0; width: min(48vw, 560px); opacity: .16; z-index: 1; pointer-events: none; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(17,17,19,.96) 0%, rgba(17,17,19,.78) 48%, rgba(17,17,19,.45) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero--home .container { padding-block: clamp(72px, 12vw, 150px); max-width: 1200px; }
.hero__inner { max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero .lead { color: var(--gray-300); margin-bottom: 34px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__note { display:flex; gap:22px; flex-wrap:wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__note div { display:flex; gap:9px; align-items:center; font-size:.92rem; color: var(--gray-300); }
.hero__note svg { width:18px;height:18px;color:#ff5a64;flex:none; }

/* page hero (interior) */
.pagehero { background: var(--black); color:#fff; position: relative; overflow:hidden; }
.pagehero__bg { position:absolute; inset:0; background-color: var(--charcoal); background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 13px); }
.pagehero__web { position:absolute; right:0; top:0; width:min(40vw,420px); opacity:.14; pointer-events:none; }
.pagehero .container { position: relative; z-index:2; padding-block: clamp(54px, 8vw, 96px); }
.pagehero h1 { color:#fff; }
.pagehero .lead { color: var(--gray-300); margin-top: 16px; }
.breadcrumb { font-size:.82rem; color: var(--gray-500); margin-bottom:18px; display:flex; gap:8px; }
.breadcrumb a { color: var(--gray-300); text-decoration:none; }
.breadcrumb a:hover { color:#fff; }

/* =========================================================================
   SPLIT / FEATURE rows
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.split--media-first .split__media { order: -1; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; }
.feature-list svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }

/* stat row */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,28px); }
.stat { text-align: left; }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--red); line-height:1; }
.stat__label { font-size: .92rem; color: var(--gray-700); margin-top: 8px; }
.section--ink .stat__label { color: var(--gray-300); }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.cta-band__web { position:absolute; right:0; bottom:0; width: min(40vw, 380px); opacity:.16; filter: invert(0); pointer-events:none; transform: scale(-1,-1); }
.cta-band .container { position: relative; z-index:1; padding-block: clamp(48px,7vw,84px); display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.9); margin: 10px 0 0; max-width: 52ch; }
.cta-band .btn--light { --bg:#fff; --fg: var(--red); }
.cta-band .btn--light:hover { background: var(--black); color:#fff; border-color: var(--black); }

/* =========================================================================
   FORMS
   ========================================================================= */
.form-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; color: var(--charcoal); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm); padding: 13px 15px; width: 100%;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(193,18,31,.12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-500); }
.form-note { font-size: .85rem; color: var(--gray-500); margin-top: 4px; }

/* radio service chips */
.chip-group { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-flex; gap: 8px; align-items: center;
  border: 1.5px solid var(--gray-300); border-radius: 100px;
  padding: 10px 18px; font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all .15s; color: var(--charcoal);
}
.chip input:checked + span { background: var(--red); border-color: var(--red); color: #fff; }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(193,18,31,.2); }

.form-success {
  display: none; text-align: center; padding: 20px;
}
.form-success svg { width: 56px; height: 56px; color: var(--red); margin: 0 auto 14px; }

/* contact tiles */
.contact-tile { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--gray-200); }
.contact-tile:last-child { border-bottom: 0; }
.contact-tile__ic { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--black); color: #fff; display: grid; place-items: center; flex: none; }
.contact-tile__ic svg { width: 22px; height: 22px; }
.contact-tile h4 { font-family: var(--font-display); text-transform: uppercase; font-size: .82rem; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 4px; }
.contact-tile a, .contact-tile p { font-size: 1.18rem; font-weight: 600; color: var(--black); text-decoration: none; margin: 0; }
.contact-tile a:hover { color: var(--red); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { border-top: 1px solid var(--gray-200); }
.faq details { border-bottom: 1px solid var(--gray-200); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 50px 24px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem,1.6vw,1.25rem);
  color: var(--black); text-transform: none; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.7rem; color: var(--red); font-weight: 400; transition: transform .2s;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq__body { padding: 0 50px 26px 0; color: var(--gray-700); font-size: 1.02rem; }
.faq__body p { margin-bottom: .8em; }
.faq__body strong { color: var(--black); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--black); color: var(--gray-300); position: relative; overflow: hidden; }
.site-footer__web { position:absolute; left:0; bottom:0; width: min(34vw, 300px); opacity:.06; filter: invert(1); transform: scaleY(-1); pointer-events:none; }
.site-footer .container { position: relative; z-index:1; padding-block: clamp(48px,7vw,80px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer h5 { color: #fff; text-transform: uppercase; font-size: .82rem; letter-spacing: .12em; margin-bottom: 18px; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.site-footer a { color: var(--gray-300); text-decoration: none; font-size: .96rem; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand__name { color: #fff; }
.footer-about { color: var(--gray-500); font-size: .95rem; margin: 16px 0 0; max-width: 38ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size:.96rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--red); flex: none; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--gray-500); }
.footer-badges { display:flex; gap:14px; flex-wrap:wrap; }
.footer-badge { display:inline-flex; gap:8px; align-items:center; border:1px solid rgba(255,255,255,.16); border-radius:var(--r-sm); padding:7px 13px; font-size:.78rem; font-weight:600; color:var(--gray-300); text-transform:uppercase; letter-spacing:.06em; }
.footer-badge svg { width:15px;height:15px;color:#ff5a64; }

/* =========================================================================
   UTILITIES
   ========================================================================= */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.section__head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section__head.center { margin-inline: auto; }
.tag-row { display:flex; gap:10px; flex-wrap:wrap; margin-top: 20px; }
.tag { font-family: var(--font-display); font-weight:600; text-transform:uppercase; font-size:.72rem; letter-spacing:.08em; padding:7px 13px; border-radius:100px; background: var(--gray-100); color: var(--charcoal); }
.tag--red { background: var(--red-soft); color: var(--red-dark); }
.anim-up { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.anim-up.in { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  body { font-size: 17px; }
  .nav, .header-phone { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center; width: 46px; height: 46px;
    background: var(--black); border: 0; border-radius: var(--r-sm); cursor: pointer;
  }
  .nav-toggle svg { width: 24px; height: 24px; color: #fff; }
  .site-header .container { min-height: 64px; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-200);
    padding: 12px var(--gut) 20px; gap: 2px; box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 14px 12px; border-bottom: 1px solid var(--gray-100); }
  .split { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trust__item { border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .trust__item:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .topbar__group:first-child { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .anim-up { opacity: 1; transform: none; transition: none; }
}
