/* =============================================================
   Summit Risk Solutions — v2 (bold + modern)
   Editorial sans, oversized type, asymmetric grids,
   cream + ink + cobalt + coral.
   ============================================================= */

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin:0; }
ul[role="list"], ol[role="list"] { list-style:none; padding:0; margin:0; }
img, picture, svg { max-width:100%; display:block; }
input, button, textarea, select { font:inherit; color:inherit; }
button { cursor:pointer; border:0; background:none; }
a { color:inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --c-bg: #F2EFE8;
  --c-paper: #FFFFFF;
  --c-ink: #0A0A0A;
  --c-ink-soft: #2C2C2E;
  --c-muted: #6E6E70;
  --c-border: #DDD7C8;
  --c-dark: #0E0F12;
  --c-darker: #050608;

  --c-blue: #1E5BFF;
  --c-blue-700: #1543C9;
  --c-blue-soft: #DCE4FF;

  --c-coral: #FF5A3D;
  --c-coral-700: #DB3D22;

  /* Type */
  --ff-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  /* Scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.25rem;
  --fs-lg: 1.625rem;
  --fs-xl: 2.5rem;
  --fs-2xl: 4rem;
  --fs-3xl: 6.5rem;
  --fs-4xl: 9rem;

  /* Spacing */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;
  --sp-9: 6rem;
  --sp-10: 9rem;

  /* Radius / shadow */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --shadow-1: 0 2px 8px rgba(10,10,10,0.06);
  --shadow-2: 0 18px 50px -16px rgba(10,10,10,0.18);

  /* Layout */
  --container: 1280px;
  --header-h: 120px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--c-ink);
}
h1 { font-size: clamp(3rem, 9vw, var(--fs-4xl)); font-weight: 600; }
h2 { font-size: clamp(2.25rem, 6vw, var(--fs-3xl)); line-height: 0.98; }
h3 { font-size: clamp(1.5rem, 3vw, var(--fs-xl)); line-height: 1.05; }
h4 { font-size: var(--fs-lg); line-height: 1.15; letter-spacing: -0.02em; }

p { color: var(--c-ink-soft); }
.muted { color: var(--c-muted); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
section { padding-block: clamp(4rem, 9vw, var(--sp-10)); }

.kicker {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--c-ink-soft);
  max-width: 56ch;
  line-height: 1.45;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 1.05rem 1.65rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0;
  transition: transform .15s ease, background .18s ease, color .18s ease, border-color .18s ease;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--c-ink); color: #fff; }
.btn-primary:hover { background: var(--c-blue); transform: translateY(-1px); }
.btn-coral { background: var(--c-coral); color: #fff; }
.btn-coral:hover { background: var(--c-coral-700); transform: translateY(-1px); }
.btn-blue { background: var(--c-blue); color: #fff; }
.btn-blue:hover { background: var(--c-blue-700); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn-outline:hover { background: var(--c-ink); color: #fff; }
.btn-outline.is-light { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline.is-light:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(242, 239, 232, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--c-border); }
.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand__logo {
  height: 80px !important;
  width: 162px !important;
  min-width: 162px !important;
  max-width: 162px !important;
  aspect-ratio: 819 / 405;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 162px;
  object-fit: contain;
  object-position: left center;
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
}
.site-footer .brand__logo {
  height: 112px !important;
  width: 226px !important;
  min-width: 226px !important;
  max-width: 226px !important;
}
@media (max-width:1020px) {
  .brand__logo {
    height: 64px !important;
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
  }
}
@media (max-width:600px) {
  .brand__logo {
    height: 52px !important;
    width: 105px !important;
    min-width: 105px !important;
    max-width: 105px !important;
  }
  .site-footer .brand__logo {
    height: 76px !important;
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
  }
}
.nav { display: flex; align-items: center; gap: var(--sp-7); }
.nav__list {
  display: flex; align-items: center; gap: var(--sp-6);
  list-style: none; margin: 0; padding: 0;
  flex-wrap: nowrap;
}
.nav__link {
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--c-ink-soft);
  transition: color .15s ease;
  position: relative;
  white-space: nowrap;
}
.nav__link:hover { color: var(--c-ink); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -28px;
  height: 2px; background: var(--c-blue);
}
.nav__cta-row { display: flex; align-items: center; gap: var(--sp-4); }
.social-icons { display: flex; gap: var(--sp-3); align-items: center; }
.social-icons a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-ink);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.social-icons a:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: var(--c-paper);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--c-ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--c-ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 1020px) {
  .nav__list, .social-icons.in-header { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav__list {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); inset-inline: 0;
    background: var(--c-paper); padding: var(--sp-5);
    border-bottom: 1px solid var(--c-border); gap: 0;
  }
  .site-header.is-open .nav__list .nav__link {
    display: block;
    padding: var(--sp-5) var(--sp-3);
    border-bottom: 1px solid var(--c-border);
    font-size: var(--fs-md);
    line-height: 1.4;
    min-height: 48px;
  }
  /* Kill the active-page underline pseudo-element inside the mobile dropdown
     so it can't eat into the next item's tap area */
  .site-header.is-open .nav__list .nav__link[aria-current="page"]::after {
    display: none;
  }
  .site-header.is-open .nav__list .nav__link[aria-current="page"] {
    color: var(--c-blue);
    font-weight: 600;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
}
.hero__title {
  font-size: clamp(3.25rem, 11vw, 11rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
  font-weight: 600;
  margin-block: var(--sp-5);
}
.hero__title em {
  font-style: normal;
  color: var(--c-blue);
  font-family: var(--ff-display);
  font-weight: 600;
}
.hero__title .strike {
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--c-coral);
  color: var(--c-muted);
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-6);
  align-items: end;
  margin-top: var(--sp-7);
}
@media (max-width: 720px) {
  .hero__bottom { grid-template-columns: 1fr; }
}
.hero__lede { max-width: 50ch; }
.hero__ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1.5px solid var(--c-ink);
  background: var(--c-bg);
  padding-block: var(--sp-5);
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 4rem;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 4rem; }
.marquee__track .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--c-coral); display: inline-block;
  flex-shrink: 0;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- Service rows ---------- */
.services { border-top: 1.5px solid var(--c-ink); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr auto;
  gap: var(--sp-6);
  align-items: center;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1.5px solid var(--c-ink);
  text-decoration: none;
  color: inherit;
  transition: padding .25s ease, background .25s ease, color .25s ease;
  position: relative;
}
.service-row:hover {
  background: var(--c-ink);
  color: var(--c-bg);
  padding-inline: clamp(1rem, 3vw, 2rem);
}
.service-row:hover .service-row__num,
.service-row:hover p { color: rgba(255,255,255,0.65); }
.service-row__num {
  font-family: var(--ff-mono);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color .25s ease;
}
.service-row__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: inherit;
}
.service-row__desc {
  font-size: var(--fs-base);
  color: var(--c-ink-soft);
  max-width: 50ch;
}
.service-row__arrow {
  width: 56px; height: 56px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  flex-shrink: 0;
}
.service-row:hover .service-row__arrow {
  background: var(--c-coral); border-color: var(--c-coral); color: #fff;
  transform: rotate(-45deg) scale(1.1);
}
.service-row__arrow svg { transition: transform .25s ease; }
@media (max-width: 880px) {
  .service-row { grid-template-columns: 56px 1fr auto; gap: var(--sp-4); }
  .service-row__desc { display: none; }
  .service-row__arrow { width: 44px; height: 44px; }
}

/* ---------- Manifesto strip ---------- */
.manifesto {
  background: var(--c-dark);
  color: #FAFAFA;
  padding-block: clamp(5rem, 12vw, 9rem);
}
.manifesto h2 {
  color: #FAFAFA;
  font-size: clamp(2rem, 5.5vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  max-width: 22ch;
}
.manifesto h2 em {
  font-style: normal; color: var(--c-blue);
  font-family: var(--ff-display);
}
.manifesto p {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-md);
  max-width: 52ch;
  margin-top: var(--sp-6);
}
.manifesto__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7);
  margin-top: var(--sp-9);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--sp-7);
}
@media (max-width: 800px) { .manifesto__points { grid-template-columns: 1fr; gap: var(--sp-6); } }
.manifesto__points h4 {
  color: #fff;
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-3);
}
.manifesto__points p { font-size: var(--fs-sm); margin-top: 0; }
.manifesto__num {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: var(--c-coral);
  letter-spacing: 0.16em;
  margin-bottom: var(--sp-3);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  border-top: 1.5px solid var(--c-ink);
  border-bottom: 1.5px solid var(--c-ink);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}
@media (max-width: 1100px) { .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7); } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } }
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-weight: 600;
  color: var(--c-ink);
}
.stat__num em {
  font-style: normal;
  color: var(--c-blue);
  font-family: var(--ff-display);
  font-weight: 600;
}
.stat__label {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: var(--sp-4);
  max-width: 24ch;
}

/* ---------- Featured / Instagram-style feed ---------- */
.feed-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-6);
  align-items: end;
  margin-bottom: var(--sp-7);
}
@media (max-width: 720px) { .feed-head { grid-template-columns: 1fr; } }
.feed-head__handle {
  font-family: var(--ff-mono);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  display: inline-flex; align-items: center; gap: var(--sp-2);
}
.feed-head__handle a { color: var(--c-blue); text-decoration: none; }
.feed-head__handle a:hover { text-decoration: underline; }

.feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
@media (max-width: 900px) { .feed { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feed { grid-template-columns: 1fr; } }

.post {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.post__type {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--c-paper);
  border: 1px solid var(--c-ink);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.post__inner {
  flex: 1;
  padding: var(--sp-6);
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.post__quote {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-weight: 500;
}
.post__caption {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted);
  letter-spacing: 0.04em;
  margin-top: var(--sp-4);
}
.post--blue { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.post--blue .post__caption { color: rgba(255,255,255,0.7); }
.post--blue .post__type { background: var(--c-blue); color: #fff; border-color: rgba(255,255,255,0.4); }
.post--coral { background: var(--c-coral); color: #fff; border-color: var(--c-coral); }
.post--coral .post__caption { color: rgba(255,255,255,0.75); }
.post--coral .post__type { background: var(--c-coral); color: #fff; border-color: rgba(255,255,255,0.4); }
.post--ink { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.post--ink .post__caption { color: rgba(255,255,255,0.65); }
.post--ink .post__type { background: var(--c-ink); color: #fff; border-color: rgba(255,255,255,0.4); }
.post--cream { background: var(--c-bg); border-color: var(--c-ink); }
.post__big-num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.feed-cta {
  margin-top: var(--sp-7);
  display: flex; justify-content: center;
}

/* ---------- Big quote section ---------- */
.bigquote {
  background: var(--c-blue);
  color: #fff;
}
.bigquote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}
@media (max-width: 880px) {
  .bigquote__inner { grid-template-columns: 1fr; }
}
.bigquote h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  max-width: 18ch;
}
.bigquote h2 em {
  font-style: normal;
  color: var(--c-coral);
  font-family: var(--ff-display);
}
.bigquote__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-weight: 500;
}
.bigquote__author {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  margin-top: var(--sp-5);
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* ---------- Final CTA ---------- */
.finalcta {
  background: var(--c-ink);
  color: #fff;
  padding-block: clamp(5rem, 12vw, 9rem);
}
.finalcta h2 {
  color: #fff;
  font-size: clamp(3rem, 11vw, 12rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: var(--sp-7);
}
.finalcta h2 em { font-style: normal; color: var(--c-coral); font-family: var(--ff-display); }
.finalcta p { color: rgba(255,255,255,0.7); font-size: var(--fs-md); max-width: 50ch; }
.finalcta__row {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
  margin-top: var(--sp-6);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-darker);
  color: rgba(255,255,255,0.7);
  padding-block: var(--sp-9) var(--sp-6);
}
.site-footer a { color: rgba(255,255,255,0.78); text-decoration: none; transition: color .15s ease; }
.site-footer a:hover { color: #fff; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }
.footer__tag {
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  max-width: 38ch;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer__col h5 {
  color: #fff;
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); }
.footer__col li a { font-size: var(--fs-sm); }
.footer__social {
  display: flex; gap: var(--sp-3); margin-top: var(--sp-4);
}
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: background .18s ease, border-color .18s ease;
}
.footer__social a:hover { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: var(--sp-4);
  align-items: center; flex-wrap: wrap;
  margin-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}
.footer__legal { display: flex; gap: var(--sp-5); flex-wrap: wrap; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 1.5px solid var(--c-ink);
}
.page-hero h1 { font-size: clamp(2.75rem, 8vw, 7rem); letter-spacing: -0.05em; line-height: 0.95; margin-block: var(--sp-4); }
.page-hero h1 em { font-style: normal; color: var(--c-blue); font-family: var(--ff-display); }
.page-hero .lede { margin-top: var(--sp-5); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.page-hero .breadcrumbs {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}
.page-hero .breadcrumbs a { color: var(--c-ink-soft); text-decoration: none; }
.page-hero__ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-7); }

/* ---------- Coverage cards ---------- */
.coverage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-3);
  border-top: 1.5px solid var(--c-ink);
}
.coverage__item {
  border-right: 1.5px solid var(--c-ink);
  border-bottom: 1.5px solid var(--c-ink);
  padding: var(--sp-6);
  background: var(--c-bg);
  transition: background .2s ease;
}
.coverage__item:hover { background: var(--c-paper); }
.coverage__item h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}
.coverage__item p { font-size: var(--fs-sm); }
.coverage__item .num {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: var(--c-coral);
  letter-spacing: 0.14em;
  margin-bottom: var(--sp-4);
  display: block;
}

/* ---------- Split (interior pages) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split__list { list-style: none; padding: 0; margin: var(--sp-5) 0 0; }
.split__list li {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
  display: flex; gap: var(--sp-3); align-items: flex-start;
}
.split__list li:last-child { border-bottom: 0; }
.split__list li::before {
  content: "→"; color: var(--c-blue); font-weight: 700;
  font-family: var(--ff-mono);
}
.split__card {
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-7);
}
.split__card h3 { color: #fff; margin-bottom: var(--sp-4); }
.split__card p, .split__card .split__list li { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.15); }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; }
.faq details {
  border-top: 1.5px solid var(--c-ink);
  padding-block: var(--sp-5);
}
.faq details:last-of-type { border-bottom: 1.5px solid var(--c-ink); }
.faq summary {
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  color: var(--c-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--c-coral);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: var(--sp-3);
  font-size: var(--fs-base);
  max-width: 65ch;
  color: var(--c-ink-soft);
}

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
.tag {
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.04em;
}

/* ---------- Form ---------- */
.quote-form {
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: var(--r-md);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.field { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-ink); }
.field label .opt { color: var(--c-muted); font-weight: 500; font-size: var(--fs-xs); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--c-ink);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  background: var(--c-bg);
  font-size: var(--fs-sm);
  transition: background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; background: #fff;
  box-shadow: 4px 4px 0 var(--c-blue);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-disclaimer { font-size: var(--fs-xs); color: var(--c-muted); margin-top: var(--sp-3); font-family: var(--ff-mono); letter-spacing: 0.04em; }

.contact-cards { display: grid; gap: var(--sp-3); }
.contact-card {
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: var(--r-md);
  padding: var(--sp-5);
}
.contact-card__label { font-family: var(--ff-mono); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--sp-2); }
.contact-card__value { font-family: var(--ff-display); font-size: 1.5rem; color: var(--c-ink); line-height: 1.1; letter-spacing: -0.02em; }
.contact-card__value a { text-decoration: none; }
.contact-card__sub { font-size: var(--fs-sm); color: var(--c-ink-soft); margin-top: var(--sp-2); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 0.85s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-stagger.in-view > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.12s; }
.reveal-stagger.in-view > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.20s; }
.reveal-stagger.in-view > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.28s; }
.reveal-stagger.in-view > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 0.36s; }
.reveal-stagger.in-view > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 0.44s; }
.reveal-stagger.in-view > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 0.52s; }
.reveal-stagger.in-view > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 0.60s; }
.reveal-stagger.in-view > *:nth-child(n+9) { opacity: 1; transform: none; transition-delay: 0.68s; }

/* Backstop: if .in-view never gets added (page load, JS off, fast scroll past), items still become visible after 2s */
@keyframes reveal-fallback { to { opacity: 1; transform: none; } }
.reveal-stagger > * { animation: reveal-fallback 0.7s ease-out 2s forwards; }
.reveal-stagger.in-view > * { animation: none; }

/* Service-row slide reveal */
.service-row.reveal { transform: translateX(-20px); }
.service-row.reveal.in-view { transform: none; }

/* Misc reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
