@font-face {
  font-family: "InterVar";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

  :root {
    --ink: #0F2A5F;
    --body: #4A5A75;
    --ground: #F5F8FC;
    --white: #FFFFFF;
    --line: #E1E8F0;
    --indigo: #1878CE;
    --indigo-deep: #125FA8;
    --violet: #2A5FC4;
    --cyan: #35B8EC;
    --pink: #EC4899;
    --green: #10B981;
    --grad: linear-gradient(100deg, #112C6F 0%, #1878CE 54%, #35B8EC 100%);
    --shadow-md: 0 6px 14px -3px rgba(15, 42, 95, 0.14), 0 3px 7px -3px rgba(15, 42, 95, 0.12);
    --shadow-lg: 0 24px 48px -12px rgba(15, 42, 95, 0.20), 0 10px 22px -8px rgba(15, 42, 95, 0.14);
  }

  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
  }
  body {
    margin: 0; background: var(--white); color: var(--ink);
    font-family: "InterVar", "Segoe UI", system-ui, -apple-system, sans-serif;
    line-height: 1.6; font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  .container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
  a { color: inherit; }
  :focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; }

  .mark-v { fill: var(--ink); }

  /* ---------- nav ---------- */
  header.nav {
    position: sticky; top: 0; z-index: 20;
    background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; gap: 30px; padding: 13px 28px; max-width: 1120px; margin: 0 auto; }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
  .brand .word { font-weight: 800; font-size: 17px; letter-spacing: 0.055em; line-height: 1; color: var(--ink); }
  .brand .desc { display: block; font-size: 7.5px; font-weight: 700; letter-spacing: 0.34em; color: var(--indigo); margin-top: 3px; }
  .nav-links { display: flex; gap: 24px; font-size: 14.5px; font-weight: 500; }
  .nav-links a { text-decoration: none; color: var(--body); }
  .nav-links a:hover { color: var(--ink); }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--indigo); color: #fff; border-radius: 99px;
    font-weight: 600; font-size: 14.5px; text-decoration: none;
    padding: 10px 20px; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .btn:hover { background: var(--indigo-deep); }
  .btn.big { font-size: 16px; padding: 13px 26px; box-shadow: var(--shadow-md); }
  .btn.big:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
  .btn.on-grad { background: #fff; color: var(--ink); }
  .btn.on-grad:hover { background: #EAF3FD; }
  .link-arrow { font-size: 15px; font-weight: 600; color: var(--indigo); text-decoration: none; }
  .link-arrow:hover { color: var(--indigo-deep); }
  .link-arrow::after { content: " \203A"; font-weight: 700; }
  @media (max-width: 760px) { .nav-links { display: none; } }

  /* ---------- hero ---------- */
  .hero { position: relative; overflow: hidden; background: var(--ground); }
  .hero::before {
    content: ""; position: absolute; left: -12%; right: -12%; top: -420px; height: 560px;
    background: linear-gradient(100deg, #DBE9FA 0%, #E4F1FD 32%, #D5EEFB 66%, #EAF3FE 100%);
    transform: skewY(-6deg);
  }
  .hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 92px 0 100px; }
  .kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--indigo);
    background: #E7F2FD; border: 1px solid #C6E1F8; border-radius: 99px;
    padding: 5px 14px; margin: 0 0 22px;
  }
  h1 {
    font-size: clamp(36px, 5.2vw, 56px); line-height: 1.06; letter-spacing: -0.03em;
    font-weight: 800; margin: 0 0 20px; text-wrap: balance;
  }
  h1 .grad-text {
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero p.sub { font-size: 18px; color: var(--body); max-width: 47ch; margin: 0 0 32px; }
  .hero p.sub strong { color: var(--ink); font-weight: 650; }
  .cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .cta-note { font-size: 13px; color: var(--body); margin: 14px 0 0; }

  /* AI answer visual */
  .answer-stack { position: relative; }
  .answer-glow {
    position: absolute; inset: -8% -6%; border-radius: 28px;
    background: var(--grad); opacity: 0.16; filter: blur(34px);
  }
  .answer-card {
    position: relative; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--line); padding: 22px 24px; font-size: 14px;
  }
  .answer-card .q { display: flex; gap: 10px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-weight: 600; }
  .answer-card .q .dot { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); flex: none; }
  .answer-card .a { padding-top: 14px; color: var(--body); line-height: 1.65; }
  .answer-card .a strong { color: var(--ink); font-weight: 650; }
  .cite {
    display: inline-block; background: #E7F2FD; border: 1px solid #C6E1F8; color: var(--indigo);
    font-size: 11.5px; font-weight: 600; border-radius: 6px; padding: 1px 7px; margin: 0 2px;
  }
  .answer-card .srcs { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
  .src-chip { font-size: 11.5px; font-weight: 600; color: var(--body); background: var(--ground); border: 1px solid var(--line); border-radius: 99px; padding: 4px 11px; }
  .src-chip.them { color: #fff; background: var(--ink); border-color: var(--ink); }
  .src-chip.missing { color: var(--pink); background: #FDF2F8; border: 1.5px dashed #F5BBD8; }
  .answer-tag {
    position: absolute; right: -10px; top: -14px; background: var(--ink); color: #fff;
    font-size: 11.5px; font-weight: 600; border-radius: 99px; padding: 6px 13px; box-shadow: var(--shadow-md);
    z-index: 2;   /* sits before the card in the DOM, so it needs to be lifted above it */
  }
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; padding: 68px 0 80px; }
    .answer-stack { max-width: 460px; }
  }

  /* ---------- proof bar ---------- */
  .stats { border-bottom: 1px solid var(--line); background: #fff; }
  .stats-inner { display: flex; flex-wrap: wrap; }
  .stat { flex: 1 1 200px; padding: 26px 26px 26px 0; }
  .stat + .stat { border-left: 1px solid var(--line); padding-left: 26px; }
  .stat .n { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .stat .d { font-size: 13px; color: var(--body); margin-top: 2px; }
  @media (max-width: 720px) { .stat + .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--line); } }

  /* ---------- sections ---------- */
  section { padding: 92px 0 0; }
  .sec-head { max-width: 660px; margin-bottom: 42px; }
  .overline { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--indigo); margin: 0 0 10px; }
  h2 { font-size: clamp(28px, 3.8vw, 40px); letter-spacing: -0.025em; font-weight: 800; margin: 0 0 14px; text-wrap: balance; }
  .sec-head p { color: var(--body); margin: 0; font-size: 16.5px; }

  /* audit section */
  .audit-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .audit-list { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
  .audit-list li { display: flex; gap: 14px; font-size: 15.5px; color: var(--body); }
  .audit-list li strong { color: var(--ink); font-weight: 650; }
  .check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: #E7F9F1; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
  .check svg { width: 12px; height: 12px; stroke: var(--green); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .audit-visual { background: var(--ground); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
  .gap-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; font-weight: 600; }
  .gap-row:last-of-type { border-bottom: none; }
  .gap-row .kq { color: var(--ink); }
  .pill { font-size: 11px; font-weight: 700; border-radius: 99px; padding: 3px 11px; white-space: nowrap; }
  .pill.cited { background: #E7F9F1; color: #0B815A; }
  .pill.gap { background: #FDF2F8; color: #BE185D; }
  .audit-visual .cap { font-size: 12px; color: var(--body); margin: 14px 0 0; }
  @media (max-width: 860px) { .audit-wrap { grid-template-columns: 1fr; gap: 40px; } }

  /* process */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
  .step .num {
    width: 30px; height: 30px; border-radius: 99px; background: var(--grad); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; margin-bottom: 14px;
  }
  .step h3 { font-size: 16.5px; margin: 0 0 6px; font-weight: 700; }
  .step p { font-size: 14px; color: var(--body); margin: 0; }
  @media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

  /* pricing ladder */
  .plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
  .plan { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 34px; display: flex; flex-direction: column; box-shadow: 0 2px 5px -1px rgba(15,42,95,0.08); }
  .plan.featured { border: 2px solid var(--indigo); box-shadow: var(--shadow-md); position: relative; }
  .plan .badge {
    position: absolute; top: -13px; left: 30px; background: var(--grad); color: #fff;
    font-size: 11.5px; font-weight: 700; border-radius: 99px; padding: 4px 14px;
  }
  .plan .tier { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo); margin: 0 0 8px; }
  .plan .price { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 0; }
  .plan .price span { font-size: 15px; font-weight: 500; color: var(--body); }
  .plan .for { font-size: 14px; color: var(--body); margin: 6px 0 22px; }
  .plan ul { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .plan ul li { display: flex; gap: 11px; font-size: 14.5px; color: var(--body); }
  .plan .cta-slot { margin-top: auto; }
  @media (max-width: 820px) { .plans { grid-template-columns: 1fr; } }

  /* why me */
  .why-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px; }
  .why-list li { display: flex; gap: 14px; font-size: 15.5px; color: var(--body); }
  .why-list li strong { color: var(--ink); font-weight: 650; }
  @media (max-width: 720px) { .why-list { grid-template-columns: 1fr; } }

  /* FAQ */
  .faq { max-width: 760px; }
  .faq details { border-bottom: 1px solid var(--line); }
  .faq summary {
    cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
    gap: 20px; padding: 20px 4px; font-size: 16.5px; font-weight: 650;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: "+"; font-size: 22px; font-weight: 500; color: var(--indigo); flex: none; }
  .faq details[open] summary::after { content: "\2212"; }
  .faq .ans { padding: 0 4px 22px; color: var(--body); font-size: 15px; max-width: 62ch; }

  /* about band */
  .about-band { background: var(--ground); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 92px; padding: 64px 0; }
  .about-band .inner { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; max-width: 880px; margin: 0 auto; padding: 0 28px; }
  .about-band svg { width: 80px; height: 80px; }
  .about-band p { margin: 0 0 10px; color: var(--body); font-size: 15.5px; }
  .about-band p strong { color: var(--ink); font-weight: 650; }
  @media (max-width: 640px) { .about-band .inner { grid-template-columns: 1fr; } }

  /* CTA */
  .cta { padding: 92px 0; }
  .cta-panel {
    background: var(--grad); border-radius: 20px; padding: 64px 40px; text-align: center;
    color: #fff; box-shadow: var(--shadow-lg);
  }
  .cta-panel h2 { color: #fff; margin-bottom: 12px; }
  .cta-panel p { color: rgba(255,255,255,0.87); max-width: 54ch; margin: 0 auto 32px; font-size: 16.5px; }
  .cta-panel .cta-row { justify-content: center; }
  .cta-panel .fine { font-size: 13px; color: rgba(255,255,255,0.75); margin: 22px auto 0; max-width: 46ch; }

  footer { border-top: 1px solid var(--line); padding: 28px 0 44px; background: #fff; }
  .foot-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--body); }
  .foot-inner .spacer { margin-left: auto; }

/* ============ multi-page additions ============ */

  img, svg { max-width: 100%; }
  .skip {
    position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
    padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100; font-weight: 600; font-size: 14px;
  }
  .skip:focus { left: 0; }

  /* nav: dropdown + mobile */
  .nav-links a.current { color: var(--ink); font-weight: 650; }
  .has-sub { position: relative; }
  .has-sub > summary {
    list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
    color: var(--body); font-weight: 500;
  }
  .has-sub > summary::-webkit-details-marker { display: none; }
  .has-sub > summary::after {
    content: ""; width: 6px; height: 6px; border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translate(-2px, -2px);
  }
  .has-sub[open] > summary { color: var(--ink); }
  .submenu {
    position: absolute; top: calc(100% + 14px); left: -18px; width: 288px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow-lg); padding: 8px; z-index: 30;
  }
  .submenu a {
    display: block; padding: 9px 12px; border-radius: 9px; text-decoration: none;
    font-size: 14px; font-weight: 600; color: var(--ink);
  }
  .submenu a span { display: block; font-weight: 400; font-size: 12.5px; color: var(--body); margin-top: 1px; }
  .submenu a:hover { background: var(--ground); }
  .nav-toggle {
    display: none; margin-left: auto; background: none; border: 1px solid var(--line);
    border-radius: 9px; padding: 7px 9px; cursor: pointer; line-height: 0;
  }
  .nav-toggle svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 2; fill: none; stroke-linecap: round; }
  @media (max-width: 900px) {
    .nav-inner { flex-wrap: wrap; gap: 0 14px; }
    .nav-toggle { display: block; }
    .nav-inner > .btn { display: none; }
    .nav-links {
      display: none; order: 3; width: 100%; flex-direction: column; gap: 0;
      border-top: 1px solid var(--line); margin-top: 12px; padding: 8px 0 14px;
    }
    .nav-inner.open .nav-links { display: flex; }
    .nav-inner.open > .btn { display: inline-flex; margin: 4px 0 10px; order: 4; }
    .nav-links > a, .has-sub > summary { padding: 11px 2px; font-size: 15.5px; }
    .has-sub { position: static; }
    .submenu { position: static; width: auto; box-shadow: none; border: none; padding: 0 0 6px 12px; }
    .submenu a { padding: 8px 10px; }
  }

  /* page hero (interior pages) */
  .page-hero { background: var(--ground); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
  .page-hero::before {
    content: ""; position: absolute; left: -12%; right: -12%; top: -430px; height: 540px;
    background: linear-gradient(100deg, #DBE9FA 0%, #E4F1FD 32%, #D5EEFB 66%, #EAF3FE 100%);
    transform: skewY(-6deg);
  }
  .page-hero .container { position: relative; }
  .page-hero-inner { padding: 54px 0 62px; max-width: 760px; }
  .page-hero h1 { font-size: clamp(32px, 4.6vw, 48px); margin-bottom: 18px; }
  .page-hero p.sub { font-size: 18px; color: var(--body); max-width: 60ch; margin: 0 0 28px; }
  .page-hero p.sub strong { color: var(--ink); font-weight: 650; }

  /* breadcrumbs */
  .crumbs { font-size: 13px; color: var(--body); padding: 16px 0 0; }
  .crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; }
  .crumbs a { color: var(--body); text-decoration: none; }
  .crumbs a:hover { color: var(--indigo); }
  .crumbs li + li::before { content: "\203A"; margin-right: 7px; color: #93A6BE; }
  .crumbs [aria-current] { color: var(--ink); font-weight: 600; }

  /* answer block: the AI-quotable definition under an H2 */
  .answer-first {
    background: var(--ground); border-left: 3px solid var(--indigo); border-radius: 0 12px 12px 0;
    padding: 18px 22px; margin: 0 0 26px; font-size: 16.5px; color: var(--ink); max-width: 72ch;
  }
  .answer-first strong { font-weight: 700; }

  /* generic prose */
  .prose { max-width: 72ch; }
  .prose p { color: var(--body); font-size: 16.5px; margin: 0 0 18px; }
  .prose h3 { font-size: 21px; font-weight: 750; letter-spacing: -0.015em; margin: 34px 0 10px; }
  .prose ul { margin: 0 0 20px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .prose ul li { position: relative; padding-left: 20px; font-size: 16px; color: var(--body); }
  .prose ul li strong { color: var(--ink); font-weight: 650; }
  .prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }
  .prose a { color: var(--indigo); font-weight: 600; }

  /* service card grid */
  .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .card {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px;
    display: flex; flex-direction: column; text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C7D8EA; }
  .card .chip {
    width: 40px; height: 40px; border-radius: 11px; background: var(--grad);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex: none;
  }
  .card .chip svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.015em; }
  .card p { font-size: 14.5px; color: var(--body); margin: 0 0 16px; }
  .card .go { margin-top: auto; font-size: 14px; font-weight: 650; color: var(--indigo); }
  .card .go::after { content: " \203A"; font-weight: 700; }
  @media (max-width: 940px) { .cards { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

  /* client wall */
  .wall { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; padding: 30px 0; }
  .wall p.lab { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--body); margin: 0 0 18px; text-align: center; }
  .wall-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
  .wall-row span { font-size: 17px; font-weight: 750; letter-spacing: -0.02em; color: #7589A5; }

  /* comparison table */
  .table-wrap { overflow-x: auto; margin: 0 0 26px; border: 1px solid var(--line); border-radius: 14px; }
  table { border-collapse: collapse; width: 100%; min-width: 540px; font-size: 14.5px; }
  caption { text-align: left; font-size: 13px; color: var(--body); padding: 0 0 10px; }
  th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
  thead th { background: var(--ground); font-size: 12.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink); }
  tbody tr:last-child td { border-bottom: none; }
  td strong { color: var(--ink); font-weight: 650; }
  td { color: var(--body); }

  /* testimonials */
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .quote { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
  .quote blockquote { margin: 0 0 16px; font-size: 15.5px; color: var(--ink); line-height: 1.62; }
  .quote figcaption { font-size: 13px; color: var(--body); display: flex; align-items: center; gap: 10px; }
  .quote .av {
    width: 32px; height: 32px; border-radius: 50%; background: var(--grad); color: #fff; flex: none;
    display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
  }
  @media (max-width: 940px) { .quotes { grid-template-columns: 1fr; } }

  /* results */
  .results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .result { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
  .result .metric { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
  .result h3 { font-size: 17px; margin: 10px 0 8px; font-weight: 700; }
  .result p { font-size: 14.5px; color: var(--body); margin: 0 0 6px; }
  .result .who { font-size: 12.5px; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; color: var(--indigo); }
  @media (max-width: 780px) { .results { grid-template-columns: 1fr; } }

  /* split */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  @media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }

  /* contact */
  .contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
  .contact-panel { background: var(--ground); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
  .contact-panel h3 { margin: 0 0 6px; font-size: 18px; }
  .contact-panel p { font-size: 14.5px; color: var(--body); margin: 0 0 18px; }
  .field-note { font-size: 13px; color: var(--body); margin: 16px 0 0; }
  @media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }

  /* footer */
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 34px; }
  .foot-grid h4 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px; }
  .foot-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-grid a { font-size: 14px; color: var(--body); text-decoration: none; }
  .foot-grid a:hover { color: var(--indigo); }
  .foot-blurb { font-size: 14px; color: var(--body); margin: 14px 0 0; max-width: 34ch; }
  .foot-bar { border-top: 1px solid var(--line); padding-top: 22px; }
  @media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
  @media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

  section.tight { padding-top: 68px; }
  .sec-head.wide { max-width: 780px; }
  .end-pad { padding-bottom: 20px; }

  /* footer tagline, straight from the logo lockup */
  .foot-tag {
    font-size: 12px; font-weight: 650; letter-spacing: 0.02em;
    color: var(--indigo); margin: 10px 0 0;
  }
  .brand svg { flex: none; }
