  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #ffffff;
    --bg-soft: #fafaf9;
    --bg-sunken: #f4f4f2;
    --text: #0b0b0d;
    --text-2: #2a2a2e;
    --muted: #52525a;        /* was #6a6a72 — body text, readable */
    --muted-2: #78787f;      /* was #9a9aa0 — too light, raised */
    --muted-3: #a0a0a6;      /* new: for genuinely decorative labels only */
    --border: #e8e8e6;
    --border-strong: #d0d0cc;
    --accent: #3b5bdb;
    --accent-ink: #2a3fa3;
    --accent-soft: #eef1fb;

    /* ── Spacing scale ── */
    --sp-xs:  8px;
    --sp-sm:  16px;
    --sp-md:  24px;
    --sp-lg:  40px;
    --sp-xl:  64px;
    --sp-2xl: 100px;
    --sp-3xl: 140px;

    /* ── Typography scale ── */
    --label-size: 11px;
    --label-tracking: 0.11em;
    --body-size: 15px;
    --body-line: 1.72;
    --meta-size: 13px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }

  /* ── Layout ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
  .container-wide { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

  /* ── Shared section label — used across all sections ── */
  .section-label,
  .hero-meta,
  .proc-intro-label,
  .contact-label {
    font-size: var(--label-size);
    font-weight: 500;
    letter-spacing: var(--label-tracking);
    text-transform: uppercase;
    color: var(--muted-3);
    line-height: 1;
  }

  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .15s, color .15s, border-color .15s, transform .12s;
    white-space: nowrap;
  }
  .btn:active { transform: scale(0.98); }

  .btn-primary {
    background: #3b5bdb;
    color: #fff;
    border-color: #3b5bdb;
  }
  .btn-primary:hover { background: #2f4ac4; border-color: #2f4ac4; }

  .btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
  }
  .btn-secondary:hover { background: var(--bg-sunken); }

  .btn .arrow { display: inline-block; transition: transform .2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ── Nav ── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .nav-brand-mark {
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 4px;
    flex-shrink: 0;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    color: var(--text-2);
    font-weight: 450;
  }
  .nav-links a:hover { color: #3b5bdb; }

  /* ── Hero ── */
  .hero {
    padding: 140px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 96vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* atmospheric blue counterbalance — right side */
  .hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -180px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(
      ellipse at center,
      rgba(59, 91, 219, 0.07) 0%,
      rgba(59, 91, 219, 0.03) 45%,
      transparent 72%
    );
    pointer-events: none;
    z-index: 0;
  }

  /* ensure hero content sits above the orb */
  .hero .container { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

  .hero-meta {
    margin-bottom: 80px;
  }
  .hero-body {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 80px;
    align-items: end;
  }
  .hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -0.038em;
    color: var(--text);
    max-width: 16ch;
  }
  .hero-sub {
    max-width: 560px;
    font-size: var(--body-size);
    line-height: var(--body-line);
    color: var(--muted);
    margin-top: 36px;
  }
  .hero-actions { display: flex; gap: 12px; margin-top: 48px; }

  .h1-accent {
    color: var(--text);
    font-weight: inherit;
  }

  /* right column credential stack */
  .hero-cred {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: end;
    padding-bottom: 4px;
  }
  .hero-cred-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
  }
  .hero-cred-item:last-child {
    padding-bottom: 0;
  }
  .hero-cred-label {
    font-size: var(--label-size);
    font-weight: 500;
    letter-spacing: var(--label-tracking);
    text-transform: uppercase;
    color: var(--muted-3);
  }
  .hero-cred-value {
    font-size: var(--meta-size);
    font-weight: 400;
    color: var(--muted);
    letter-spacing: -0.01em;
    line-height: 1.4;
  }

  /* ── Working Across ── */
  .working {
    margin-top: 120px;
    padding: 0 0 96px;
  }
  .working-label {
    font-size: var(--label-size);
    letter-spacing: var(--label-tracking);
    text-transform: uppercase;
    color: var(--muted-3);
    font-weight: 500;
    margin-bottom: var(--sp-md);
    text-align: center;
  }
  .working-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }
  .working-item {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--muted-2);
    white-space: nowrap;
    transition: color .2s;
    cursor: default;
    padding: 4px 0;
  }
  .working-item:hover { color: var(--muted); }
  .working-sep {
    color: var(--border);
    padding: 0 18px;
    font-size: 16px;
    font-weight: 300;
    user-select: none;
    line-height: 1;
    align-self: center;
  }

  /* ── Statement ── */
  .statement {
    padding: 180px 0 0;
  }
  .statement-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--sp-xl);
    align-items: start;
    position: relative;
    z-index: 2;
  }
  .statement-left-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
  }
  .statement-meta {
    margin-top: var(--sp-lg);
    font-size: var(--meta-size);
    color: var(--muted-2);
    line-height: 1.7;
    letter-spacing: -0.005em;
  }

  /* headline — larger, more editorial, deliberate breaks via max-width */
  .statement h2 {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--text);
    max-width: 820px;
  }
  .statement h2 em {
    font-style: normal;
    color: #3b5bdb;
    font-weight: 400;
  }
  .statement-p {
    margin-top: 48px;
    font-size: var(--body-size);
    line-height: var(--body-line);
    max-width: 580px;
    color: var(--muted);
  }

  .statement-ops {
    margin-top: 96px;
    padding-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0;
    border-top: none;
    max-width: 580px;
  }
  .statement-ops-item {
    font-size: var(--label-size);
    font-weight: 400;
    color: var(--muted-3);
    letter-spacing: var(--label-tracking);
    text-transform: uppercase;
    line-height: 1;
    padding: 0;
    white-space: nowrap;
  }
  .statement-ops-item:first-child { padding-left: 0; }
  .statement-ops-item:last-child { border-right: none; }
  .statement-ops-sep {
    color: var(--border);
    padding: 0 20px;
    font-size: 11px;
    user-select: none;
  }

  /* ── Services ── */
  .services { padding: 160px 0 140px; }
  .svc-head {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--sp-xl);
    margin-bottom: 80px;
    align-items: start;
  }
  .svc-head h2 {
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 400;
    letter-spacing: -0.022em;
    line-height: 1.2;
    max-width: 520px;
    color: var(--text-2);
  }
  .svc-list { list-style: none; }

  .svc-row {
    border-bottom: 1px solid var(--border);
    transition: background .2s;
    cursor: pointer;
    user-select: none;
  }
  .svc-row-head {
    display: grid;
    grid-template-columns: 200px 1fr 1.8fr 32px;
    gap: 40px;
    align-items: start;
    padding: 32px 0;
    transition: padding .2s, margin .2s;
  }

  /* hover: subtle indent + faint tint */
  .svc-row:hover .svc-row-head,
  .svc-row.open .svc-row-head {
    padding: 32px 40px;
    margin: 0 -40px;
  }
  .svc-row:hover { background: rgba(59,91,219,0.025); }
  .svc-row.open  { background: rgba(59,91,219,0.04); }

  .svc-n {
    font-size: var(--label-size);
    font-weight: 400;
    color: var(--muted-3);
    font-variant-numeric: tabular-nums;
    letter-spacing: var(--label-tracking);
    padding-top: 7px;
  }
  .svc-title-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .svc-name {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
    transition: color .2s;
  }
  .svc-row:hover .svc-name,
  .svc-row.open .svc-name { color: var(--accent); }
  .svc-tag {
    font-size: var(--label-size);
    font-weight: 500;
    letter-spacing: var(--label-tracking);
    text-transform: uppercase;
    color: var(--muted-3);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .2s, transform .2s, color .2s;
  }
  .svc-row:hover .svc-tag,
  .svc-row.open .svc-tag { opacity: 1; transform: translateY(0); color: var(--accent); }

  .svc-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
    max-width: 420px;
    padding-top: 5px;
  }

  /* expand indicator */
  .svc-toggle {
    padding-top: 9px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .svc-toggle-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
    opacity: 0.28;
    transition: opacity .2s;
  }
  .svc-row:hover .svc-toggle-icon { opacity: 0.7; }
  .svc-row.open .svc-toggle-icon { opacity: 1; }
  .svc-toggle-icon::before,
  .svc-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--text);
    border-radius: 1px;
    transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .2s;
  }
  .svc-toggle-icon::before { width: 10px; height: 1px; top: 9px; left: 4px; }
  .svc-toggle-icon::after  { width: 1px; height: 10px; top: 4px; left: 9px; }
  .svc-row.open .svc-toggle-icon::after { transform: rotate(90deg); opacity: 0; }

  /* expandable detail panel */
  .svc-detail {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s cubic-bezier(.4,0,.2,1);
  }
  .svc-row.open .svc-detail { grid-template-rows: 1fr; }
  .svc-detail-inner {
    overflow: hidden;
  }
  .svc-detail-body {
    padding: 0 0 52px;
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 48px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }

  /* detail col label */
  .svc-detail-col-label {
    font-size: var(--label-size);
    font-weight: 500;
    letter-spacing: var(--label-tracking);
    text-transform: uppercase;
    color: var(--muted-3);
    margin-bottom: 18px;
  }
  /* detail col items */
  .svc-detail-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .svc-detail-col ul li {
    font-size: var(--meta-size);
    color: var(--muted);
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
  }
  .svc-detail-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 1px;
    background: var(--muted-2);
  }
  /* timeline / cadence note */
  .svc-cadence {
    margin: 0 0 36px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    border-top: none;
  }
  .svc-cadence-item {
    font-size: var(--meta-size);
    color: var(--muted-2);
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .svc-cadence-item::before { display: none; }

  /* ── How we work ── */
  .process {
    padding: 160px 0 160px;
    background: var(--bg);
  }

  .proc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
  }

  /* left: intro statement */
  .proc-intro {
    position: sticky;
    top: 80px;
  }
  .proc-intro-label {
    margin-bottom: 56px;
    display: block;
  }
  .proc-intro h2 {
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 400;
    letter-spacing: -0.024em;
    line-height: 1.18;
    color: var(--text);
    max-width: 400px;
    margin-bottom: 32px;
  }
  .proc-intro p {
    font-size: var(--body-size);
    line-height: var(--body-line);
    color: var(--muted);
    max-width: 360px;
  }

  /* right: editorial principle blocks */
  .proc-principles {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 4px;
  }
  .proc-principle {
    padding: 36px 0;
    border-top: 1px solid var(--border);
  }
  .proc-principle:last-child {
    border-bottom: 1px solid var(--border);
  }
  .proc-principle-title {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.018em;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
    transition: color .2s;
  }
  .proc-principle:hover .proc-principle-title { color: #3b5bdb; }
  .proc-principle p {
    font-size: 14px;
    line-height: var(--body-line);
    color: var(--muted);
    max-width: 400px;
  }

  /* ── Operating Principle — wave addition ── */
  /* ══════════════════════════════════════
     CONTACT + FOOTER — one continuous env
     ══════════════════════════════════════ */

  .contact-seam {
    display: block;
    height: 0;
  }

  /* contact: deep charcoal near-black */
  .contact,
  .footer {
    color: rgba(255,255,255,0.72);
  }

  /* ── Contact layout ── */
  .contact {
    background: #080B10;
    padding: 140px 0 0;
    margin-top: 120px;
    position: relative;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    padding-bottom: 140px;
  }

  .contact-label {
    margin-bottom: 56px;
    display: block;
    color: rgba(255,255,255,0.38);
  }

  .contact-headline {
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 400;
    letter-spacing: -0.024em;
    line-height: 1.15;
    color: rgba(255,255,255,0.92);
    max-width: 380px;
    margin-bottom: 32px;
  }

  .contact-sub {
    font-size: var(--body-size);
    line-height: var(--body-line);
    color: rgba(255,255,255,0.5);
    max-width: 380px;
    margin-bottom: 0;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .contact-detail-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .contact-detail-key {
    font-size: var(--label-size);
    font-weight: 500;
    letter-spacing: var(--label-tracking);
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
  }

  .contact-detail-val {
    font-size: var(--meta-size);
    color: rgba(255,255,255,0.68);
    font-weight: 400;
    transition: color .15s;
  }
  .contact-detail-val a { color: inherit; transition: color .15s; }
  .contact-detail-val a:hover { color: #8ba3f0; }

  /* right: bare underline form */
  .contact-form {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ufield {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 20px 0 14px;
    gap: 6px;
    transition: border-color .2s;
  }
  .ufield:focus-within { border-color: rgba(255,255,255,0.35); }

  .ufield label {
    font-size: var(--label-size);
    font-weight: 500;
    letter-spacing: var(--label-tracking);
    text-transform: uppercase;
    color: rgba(255,255,255,0.36);
    line-height: 1;
  }

  .ufield input,
  .ufield textarea {
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    padding: 0;
    line-height: 1.4;
    width: 100%;
    caret-color: rgba(255,255,255,0.6);
  }
  .ufield input::placeholder,
  .ufield textarea::placeholder { color: rgba(255,255,255,0.22); }
  .ufield textarea { resize: none; min-height: 72px; }

  .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-submit {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .btn-submit {
    display: inline-block;
    background: rgba(255,255,255,0.92);
    color: #080B10;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 16px 36px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background .15s;
  }
  .btn-submit:hover { background: #fff; }

  .form-reply-note {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.03em;
  }

  /* ── Footer — slightly darker than contact ── */
  .footer {
    background: #05070D;
    padding: 80px 0 56px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand-col {}

  .footer-wordmark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #F3F5FA;
    margin-bottom: 14px;
  }

  .footer-brand-mark {
    width: 18px;
    height: 18px;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
  }

  .footer-tagline {
    font-size: var(--meta-size);
    color: rgba(184,194,217,0.6);
    line-height: 1.65;
    max-width: 220px;
  }

  .footer-nav-col { padding-left: 0; }

  .footer-col-label {
    font-size: var(--label-size);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--label-tracking);
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    display: block;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-links a {
    font-size: var(--meta-size);
    font-weight: 400;
    color: rgba(184,194,217,0.7);
    transition: color .15s;
    line-height: 1;
  }
  .footer-links a:hover { color: #8ba3f0; }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    font-size: 12px;
    color: rgba(184,194,217,0.6);
    letter-spacing: 0.02em;
    border-top: 1px solid rgba(184,194,217,0.12);
  }
  .footer-legal {
    margin-top: 20px;
    font-size: 11px;
    color: rgba(184,194,217,0.55);
    letter-spacing: 0.02em;
  }

/* ══════════════════════════════════════════
   RESPONSIVE — 768px and below
   ══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Global ── */
  .container,
  .container-wide {
    padding: 0 24px;
  }
  html, body { overflow-x: hidden; }

  /* ── Nav ── */
  .nav-links { display: none; }
  .nav-inner { height: 52px; }
  .nav-brand { font-size: 15px; }
  .nav-brand-mark { width: 18px; height: 18px; }
  .nav-inner .btn-primary {
    padding: 0 14px;
    height: 36px;
    font-size: 13px;
  }

  /* ── Hero ── */
  .hero { padding: 80px 0 0; overflow: hidden; min-height: 96vh; }
  .hero::before { display: none; }
  .hero-meta { margin-bottom: 36px; font-size: 10px; }
  .hero-body { display: block; }
  .hero h1 {
    font-size: clamp(36px, 9vw, 52px);
    max-width: 100%;
    line-height: 1.0;
  }
  .hero-sub {
    font-size: 15px;
    margin-top: 24px;
    max-width: 100%;
  }
  .hero-actions {
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 10px;
  }
  .hero-cred {
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
  }
  .hero-cred-item {
    border-top: 1px solid var(--border);
    padding: 14px 0;
  }
  .hero-cred-item:last-child {
    padding-bottom: 0;
  }
  .working {
    margin-top: 72px;
    padding: 0 0 64px;
  }
  .working-label { text-align: left; }
  .working-row { flex-wrap: wrap; gap: 4px 0; justify-content: flex-start; }
  .working-item { font-size: 13px; }
  .working-sep { padding: 0 10px; }

  /* ── Statement (What we do) ── */
  .statement { padding: 100px 0 0; }
  .statement-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .statement-left-col { padding-top: 0; }
  .statement-meta { margin-top: 20px; }
  .statement h2 {
    font-size: clamp(26px, 6.5vw, 36px);
    line-height: 1.18;
  }
  .statement-p {
    font-size: 14px;
    max-width: 100%;
    margin-top: 36px;
  }
  .statement-ops {
    flex-wrap: wrap;
    gap: 8px 0;
    margin-top: 64px;
  }
  .statement-ops-sep { padding: 0 10px; }

  /* ── Services ── */
  .services { padding: 100px 0 80px; }
  .svc-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 56px;
  }
  .svc-row-head {
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
    padding: 24px 0;
    align-items: start;
  }
  /* collapse desc into its own full-width row */
  .svc-row-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0; }
  .svc-n { width: 36px; flex-shrink: 0; padding-top: 6px; font-size: 10px; }
  .svc-title-col { flex: 1; min-width: 0; }
  .svc-toggle { margin-left: auto; padding-top: 6px; flex-shrink: 0; }
  .svc-row-head .svc-desc {
    width: 100%;
    margin-top: 12px;
    padding-left: 36px;
    font-size: 13px;
    max-width: 100%;
  }
  .svc-name { font-size: 18px; }
  .svc-row.featured .svc-name { font-size: 20px; }
  .svc-row.featured .svc-row-head { padding: 28px 0; }
  .svc-row.featured {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  /* expanded detail — stack vertically */
  .svc-detail-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 32px;
    padding-top: 28px;
  }
  .svc-cadence {
    gap: 12px;
    flex-direction: column;
    margin: 0 0 24px;
  }

  /* ── How we work ── */
  .process { padding: 100px 0 100px; }
  .proc-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .proc-intro {
    position: static; /* disable sticky on mobile */
  }
  .proc-intro h2 {
    font-size: clamp(24px, 6vw, 32px);
    max-width: 100%;
    margin-bottom: 24px;
  }
  .proc-intro p { max-width: 100%; }
  .proc-principle { padding: 28px 0; }
  .proc-principle-title { font-size: 15px; }
  .proc-principle p { font-size: 14px; max-width: 100%; }

  /* ── Contact ── */
  .contact { padding: 80px 0 0; margin-top: 64px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-bottom: 80px;
  }
  .contact-headline {
    font-size: clamp(24px, 6vw, 34px);
    max-width: 100%;
  }
  .contact-sub { max-width: 100%; }
  .contact-form { padding-top: 0; }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-submit {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .btn-submit { width: 100%; text-align: center; justify-content: center; }

  /* ── Footer ── */
  .footer { padding: 60px 0 40px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-tagline { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 24px;
  }
}

/* ── Extra small — 390px and below ── */
@media (max-width: 390px) {
  .container, .container-wide { padding: 0 20px; }
  .hero h1 { font-size: 34px; }
  .statement h2 { font-size: 26px; }
  .btn { height: 38px; font-size: 13px; padding: 0 14px; }
  .nav-inner .btn-primary { display: none; } /* hide nav CTA on very small screens */
}

/* ══════════════════════════════════════════════════════════════
   Skip link, supporting pages, form status, focus styles
   Added during refactor. Safe to leave at end of file.
   ══════════════════════════════════════════════════════════════ */

/* ── Skip link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* ── Focus styles (visible only for keyboard nav) ──────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline-offset: 2px;
}
.svc-row-head:focus-visible {
  outline-offset: 0;
}

/* ── Page wrapper for non-landing pages ────────────────── */
.page {
  display: block;
  min-height: calc(100vh - 56px);
}

/* ── Status pages (404, thank-you) ─────────────────────── */
.page-status {
  padding: 140px 0 180px;
  position: relative;
  overflow: hidden;
}
.page-status::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -200px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 91, 219, 0.07) 0%,
    rgba(59, 91, 219, 0.03) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}
.page-status .container { position: relative; z-index: 1; }
.status-label {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: block;
  font-variant-numeric: tabular-nums;
}
.status-title {
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.02;
  color: var(--text);
  max-width: 16ch;
  margin-bottom: 32px;
}
.status-body {
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
}
.status-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Legal pages: hero + sticky TOC + prose ────────────── */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.page-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.page-hero-meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-hero-meta-label {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--muted-3);
}
.page-hero-meta-value {
  font-size: var(--meta-size);
  color: var(--muted);
}
.page-hero-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 24px;
}
.page-hero-lede {
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--muted);
  max-width: 560px;
}

.legal-content { padding: 96px 0 80px; }
.legal-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 80px;
  align-self: start;
}
.legal-toc-label {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--muted-3);
  margin-bottom: 20px;
}
.legal-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-toc-list a {
  font-size: var(--meta-size);
  color: var(--muted);
  line-height: 1.4;
  transition: color .15s;
  display: inline-block;
  padding: 2px 0;
}
.legal-toc-list a:hover { color: var(--accent); }

.legal-prose { max-width: 660px; }
.legal-prose h2 {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 56px 0 18px;
  scroll-margin-top: 80px;
  line-height: 1.25;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 32px 0 10px;
  line-height: 1.3;
}
.legal-prose p {
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-prose p:last-child { margin-bottom: 0; }
.legal-prose ul,
.legal-prose ol {
  list-style: none;
  margin: 4px 0 20px;
  padding: 0;
}
.legal-prose li {
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.legal-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--muted-2);
}
.legal-prose ol {
  counter-reset: leg;
}
.legal-prose ol li {
  counter-increment: leg;
}
.legal-prose ol li::before {
  content: counter(leg) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-variant-numeric: tabular-nums;
  color: var(--muted-3);
  font-size: var(--meta-size);
  line-height: var(--body-line);
}
.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(59, 91, 219, 0.28);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s, color .15s;
}
.legal-prose a:hover {
  text-decoration-color: rgba(59, 91, 219, 0.9);
}
.legal-prose strong {
  font-weight: 500;
  color: var(--text);
}
.legal-prose dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 24px;
  margin: 0 0 20px;
}
.legal-prose dt {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--muted-3);
  padding-top: 4px;
}
.legal-prose dd {
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--muted);
}

/* ── Contact form: form status + invalid state ─────────── */
.form-status {
  min-height: 18px;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.5);
  transition: color .15s;
}
.form-status[data-kind="error"]   { color: #ef9a9a; }
.form-status[data-kind="success"] { color: #a5d6b4; }
.form-status[data-kind="pending"] { color: rgba(255,255,255,0.7); }

.ufield:has(input[aria-invalid="true"]),
.ufield:has(textarea[aria-invalid="true"]) {
  border-bottom-color: rgba(239, 154, 154, 0.7);
}

/* Honeypot — keep off-screen, never visible */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ══════════════════════════════════════════════════════════════
   Consent banner — privacy & fonts notice
   Slim, editorial bar that sits at the bottom of the viewport.
   Mirrors the nav's translucent blur treatment so it reads as
   part of the chrome, not a popup.
   ══════════════════════════════════════════════════════════════ */

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 32px -18px rgba(11, 11, 13, 0.18);
  transform: translateY(102%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}
.consent-banner.is-visible { transform: translateY(0); }
.consent-banner[hidden]    { display: none; }

.consent-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 18px 48px;
}

.consent-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.consent-banner-label {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--muted-3);
  line-height: 1;
}

.consent-banner-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  letter-spacing: -0.003em;
  max-width: 76ch;
}
.consent-banner-body strong {
  font-weight: 500;
  color: var(--text-2);
}

.consent-banner-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(59, 91, 219, 0.28);
  text-underline-offset: 3px;
  white-space: nowrap;
  margin-left: 6px;
  transition: text-decoration-color .15s, color .15s;
}
.consent-banner-link:hover {
  text-decoration-color: rgba(59, 91, 219, 0.9);
  color: var(--accent-ink);
}

.consent-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.consent-banner-actions .btn {
  height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .consent-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 24px 18px;
  }
  .consent-banner-body { font-size: 13px; line-height: 1.55; }
  .consent-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .consent-banner-actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 390px) {
  .consent-banner-actions { flex-direction: column-reverse; align-items: stretch; }
  .consent-banner-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .consent-banner { transition: none; }
}

/* ── Mobile overrides for supporting pages ─────────────── */
@media (max-width: 768px) {
  .page-status { padding: 80px 0 120px; }
  .page-status::before { display: none; }
  .status-title { font-size: clamp(34px, 9vw, 48px); }

  .page-hero { padding: 48px 0 56px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-meta { padding-top: 0; flex-direction: row; flex-wrap: wrap; gap: 24px; }

  .legal-content { padding: 56px 0 40px; }
  .legal-grid { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; }
  .legal-toc-list { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .legal-prose h2 { margin: 40px 0 14px; }
  .legal-prose dl { grid-template-columns: 1fr; gap: 4px; }
  .legal-prose dt { padding-top: 12px; }
}

