
  :root {
    --bone: #F6F2E8;
    --bone-soft: #EFE9D9;
    --paper: #FAF7EE;
    --ink: #0B0F14;
    --ink-soft: #232A33;
    --ink-mute: #5E6772;
    --ink-quiet: #8F96A0;
    --navy: #0E2A47;
    --navy-deep: #061629;
    --navy-soft: #18375A;
    --brass: #C9954B;
    --brass-deep: #9A6F2D;
    --brass-soft: #E3BB7E;
    --rule: #DCD3BC;
    --rule-strong: #B7AB8B;
    --slate: #3A4250;
    --success: #2F6F4C;
    --signal: #B83E2D;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body {
    margin: 0; padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }
  h1, h2, h3, h4 { margin: 0; }

  .display {
    font-family: "Archivo", "Helvetica Neue", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.02;
  }
  .display--black { font-weight: 900; letter-spacing: -0.03em; }
  .mono {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .eyebrow {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass-deep);
    font-weight: 600;
  }

  /* ===== Shell ===== */
  .shell { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
  @media (max-width: 720px) { .shell { padding: 0 20px; } }

  /* ===== Topbar ===== */
  .topbar {
    background: var(--navy);
    color: var(--bone);
    font-size: 13px;
  }
  .topbar__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    align-items: center;
    padding: 10px 0;
  }
  .topbar__lic {
    font-family: "IBM Plex Mono", monospace;
    letter-spacing: 0.06em;
    color: var(--brass-soft);
    font-size: 12px;
  }
  .topbar__lic strong { color: var(--brass); }
  .topbar__phone {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--bone);
  }
  .topbar__phone:hover { color: var(--brass-soft); }
  .topbar__cta {
    background: var(--brass);
    color: var(--navy-deep);
    padding: 7px 16px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    transition: background 220ms ease;
  }
  .topbar__cta:hover { background: var(--brass-soft); }
  @media (max-width: 720px) {
    .topbar__inner { grid-template-columns: 1fr auto; }
    .topbar__cta { display: none; }
    .topbar__lic { font-size: 11px; }
  }

  /* ===== Header / Nav ===== */
  .header {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    position: sticky; top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
  }
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 18px 0;
    gap: 48px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .brand__mark {
    width: 40px; height: 40px;
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    flex-shrink: 0;
  }
  .brand__mark img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }
  .brand__name {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--ink);
  }
  .brand__name small {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
    margin-top: 2px;
  }
  .nav__links {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
  }
  .nav__links a {
    color: var(--ink-soft);
    padding: 6px 0;
    position: relative;
    transition: color 200ms ease;
  }
  .nav__links a::after {
    content: ""; position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--brass);
    transform: scaleX(0); transform-origin: left;
    transition: transform 240ms ease;
  }
  .nav__links a:hover { color: var(--ink); }
  .nav__links a:hover::after { transform: scaleX(1); }
  .nav__right { display: flex; align-items: center; gap: 14px; }
  .nav__btn {
    background: var(--navy);
    color: var(--bone);
    border: none;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 220ms ease, transform 220ms ease;
  }
  .nav__btn:hover { background: var(--navy-soft); transform: translateY(-1px); }
  @media (max-width: 900px) {
    .nav { grid-template-columns: 1fr auto; gap: 12px; }
    .nav__links { display: none; }
    .nav__btn { padding: 10px 14px; font-size: 12px; }
  }

  /* ===== Hero ===== */
  .hero {
    background: var(--navy);
    color: var(--bone);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--navy-deep);
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("/assets/ext/images/photo-1600585154340-be6161a56a0c-cb3ab66c.jpg");
    background-size: cover;
    background-position: center 38%;
    opacity: 0.55;
  }
  .hero__bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(14,42,71,0.94) 0%, rgba(14,42,71,0.78) 42%, rgba(14,42,71,0.42) 75%, rgba(14,42,71,0.62) 100%),
      linear-gradient(180deg, rgba(6,22,41,0.4) 0%, transparent 30%, transparent 70%, rgba(6,22,41,0.5) 100%);
  }
  .hero__inner {
    position: relative;
    padding: 100px 0 80px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: end;
    min-height: 640px;
  }
  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--brass-soft);
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 6px 14px 6px 0;
    border-left: 3px solid var(--brass);
    padding-left: 12px;
  }
  .hero__title {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 6.4vw, 96px);
    line-height: 1.0;
    letter-spacing: -0.032em;
    color: var(--bone);
    margin-bottom: 28px;
    max-width: 14ch;
  }
  .hero__title .accent { color: var(--brass); }
  .hero__sub {
    font-size: 18px;
    line-height: 1.55;
    color: #fff;
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 400;
  }
  .hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--brass);
    color: var(--navy-deep);
    border: none;
    padding: 18px 28px;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 220ms ease, transform 220ms ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-primary:hover { background: var(--brass-soft); }
  .btn-outline {
    background: transparent;
    color: var(--bone);
    border: 1.5px solid rgba(246,242,232,0.34);
    padding: 17px 26px;
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 220ms ease, border-color 220ms ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-outline:hover { background: rgba(246,242,232,0.08); border-color: var(--brass-soft); }
  .btn-arrow { display: inline-block; transition: transform 220ms ease; }
  .btn-primary:hover .btn-arrow,
  .btn-outline:hover .btn-arrow { transform: translateX(4px); }

  /* Hero right card */
  .hero__card {
    background: var(--bone);
    color: var(--ink);
    padding: 28px;
    border-top: 6px solid var(--brass);
    box-shadow: 0 30px 60px -20px rgba(6,22,41,0.45);
    width: 100%;
  }
  .hero__card-title {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
  }
  .hero__card-sub {
    font-size: 13px;
    color: var(--ink-mute);
    margin-bottom: 22px;
  }
  .hero__card-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 16px;
    padding: 14px 0;
    border-top: 1px solid var(--rule);
    align-items: center;
  }
  .hero__card-row:first-of-type { border-top: none; }
  .hero__check {
    width: 18px; height: 18px;
    background: var(--navy);
    color: var(--brass);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    font-weight: 900;
  }
  .hero__card-label {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .hero__card-foot {
    margin-top: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }
  .hero__card-foot strong { color: var(--navy); font-weight: 600; }

  @media (max-width: 1000px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 56px; min-height: auto; }
    .hero__card { max-width: none; }
  }

  /* ===== Stats strip ===== */
  .stats {
    background: var(--navy-deep);
    color: var(--bone);
    border-top: 1px solid rgba(201,149,75,0.18);
    border-bottom: 1px solid rgba(201,149,75,0.18);
  }
  .stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .stat {
    padding: 34px 18px;
    border-right: 1px solid rgba(246,242,232,0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .stat:last-child { border-right: none; }
  .stat__value {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: 52px;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--brass);
  }
  .stat__value sub {
    font-size: 22px;
    color: var(--bone);
    vertical-align: super;
    letter-spacing: 0;
    margin-left: 2px;
    font-weight: 700;
  }
  .stat__label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-quiet);
    margin-top: 8px;
    font-weight: 500;
  }
  .stat__meta {
    font-size: 13px;
    color: rgba(246,242,232,0.6);
    line-height: 1.4;
  }
  @media (max-width: 900px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 22px 18px; border-bottom: 1px solid rgba(246,242,232,0.08); }
    .stat:nth-child(2n) { border-right: none; }
    .stat__value { font-size: 38px; }
  }

  /* ===== Section common ===== */
  .section { padding: 110px 0 100px; background: var(--paper); }
  .section--bone { background: var(--bone); }
  @media (max-width: 900px) { .section { padding: 60px 0 56px; } }

  .section__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
  }
  .section__title {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4.6vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  .section__title .accent { color: var(--brass-deep); }
  .section__title .underline {
    position: relative;
    display: inline-block;
  }
  .section__title .underline::after {
    content: "";
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 4px; background: var(--brass);
  }
  .section__lede {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 480px;
    padding-bottom: 8px;
  }
  @media (max-width: 900px) {
    .section__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  }

  /* ===== Why hire us / Promise ===== */
  .promise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .promise__col {
    padding: 44px 36px 44px 0;
    border-right: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .promise__col:last-child { border-right: none; padding-right: 0; }
  .promise__col + .promise__col { padding-left: 36px; }
  .promise__fear {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--signal);
    font-weight: 600;
  }
  .promise__answer {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .promise__answer .accent { color: var(--brass-deep); }
  .promise__body {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .promise__link {
    margin-top: auto;
    padding-top: 18px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--navy);
    font-weight: 600;
    border-top: 1px solid var(--rule);
    display: flex; align-items: center; gap: 8px;
    transition: color 200ms ease, gap 200ms ease;
  }
  .promise__link:hover { color: var(--brass-deep); gap: 14px; }
  @media (max-width: 900px) {
    .promise { grid-template-columns: 1fr; }
    .promise__col { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--rule); }
    .promise__col + .promise__col { padding-left: 0; }
    .promise__col:last-child { border-bottom: none; }
  }

  /* ===== Services grid ===== */
  .services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: transparent;
    border: none;
  }
  .service {
    background: var(--paper);
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
    transition: background 280ms ease, transform 280ms ease, box-shadow 280ms ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--rule);
    isolation: isolate;
  }
  .service::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 320ms ease;
  }
  .service:hover { background: var(--bone); transform: translateY(-4px); box-shadow: 0 24px 40px -24px rgba(11,15,20,0.22); }
  .service:hover::after { transform: scaleX(1); }
  .service:hover .service__icon { color: var(--brass-deep); opacity: 0.16; transform: translate(8%, -6%) rotate(-2deg); }
  .service:hover .service__arrow { color: var(--brass-deep); transform: translate(4px, -4px); }

  .service__icon {
    position: absolute;
    top: -8%;
    right: -8%;
    width: 58%;
    height: 58%;
    color: var(--navy);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    transition: opacity 280ms ease, color 280ms ease, transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    background: transparent;
    display: block;
  }
  .service__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .service__num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    color: var(--brass-deep);
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
  }
  .service__name {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--ink);
    z-index: 1;
    position: relative;
    max-width: 80%;
    margin-top: 4px;
  }
  .service__desc {
    font-size: 13.5px;
    color: var(--ink-mute);
    line-height: 1.55;
    flex: 1;
    z-index: 1;
    position: relative;
    max-width: 90%;
    margin-top: 4px;
  }
  .service__price {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.5px;
    color: var(--brass-deep);
    font-weight: 600;
    letter-spacing: 0.04em;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    z-index: 1;
    position: relative;
  }
  .service__arrow {
    position: absolute;
    bottom: 22px; right: 22px;
    color: var(--ink-mute);
    font-size: 16px;
    transition: color 240ms ease, transform 240ms ease;
    z-index: 1;
  }
  @media (max-width: 900px) { .services { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    /* mobile: horizontal swipe row, next card peeks so it's clearly swipeable */
    .services { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 14px; scrollbar-width: none; }
    .services::-webkit-scrollbar { display: none; }
    .services > .service { flex: 0 0 80%; scroll-snap-align: start; }
  }

  /* ===== Recent work ===== */
  .work__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
  }
  .chip {
    background: transparent;
    border: 1px solid var(--rule-strong);
    color: var(--ink-soft);
    padding: 9px 16px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 200ms ease;
  }
  .chip:hover { border-color: var(--navy); color: var(--navy); }
  .chip.is-active {
    background: var(--navy);
    color: var(--bone);
    border-color: var(--navy);
  }
  .chip .count {
    color: var(--brass-deep);
    margin-left: 6px;
    font-weight: 600;
  }
  .chip.is-active .count { color: var(--brass-soft); }

  .work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .work__card {
    background: var(--paper);
    border: 1px solid var(--rule);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 320ms ease, border-color 320ms ease, opacity 240ms ease;
    cursor: pointer;
  }
  .work__card.is-hidden { display: none; }
  .work__card:hover {
    transform: translateY(-4px);
    border-color: var(--brass-deep);
  }
  .work__card:hover .work__img { transform: scale(1.04); filter: saturate(0.95); }
  .work__media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bone-soft);
    position: relative;
  }
  .work__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 700ms ease, filter 400ms ease;
  }
  .work__type-chip {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(11,15,20,0.78);
    color: var(--brass);
    padding: 5px 10px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(4px);
  }
  .work__body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
  .work__neigh {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }
  .work__name {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .work__meta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
  }
  .work__budget { color: var(--brass-deep); font-weight: 600; }
  @media (max-width: 900px) { .work__grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    /* mobile: horizontal swipe row, next card peeks so it's clearly swipeable */
    .work__grid { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 14px; scrollbar-width: none; }
    .work__grid::-webkit-scrollbar { display: none; }
    .work__grid > .work__card { flex: 0 0 80%; scroll-snap-align: start; }
  }

  /* Placeholder art for work cards */
  .ph { width: 100%; height: 100%; position: relative; overflow: hidden; }
  .ph::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.06) 0.5px, transparent 0.5px);
    background-size: 4px 4px;
    pointer-events: none;
  }
  .ph__label {
    position: absolute;
    bottom: 16px; left: 18px; right: 18px;
    color: #fff;
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.25;
  }
  .ph--clay { background: linear-gradient(150deg, #C9A78D 0%, #9F6B4F 100%); }
  .ph--navy { background: linear-gradient(150deg, #1F4470 0%, #08182A 100%); }
  .ph--bone { background: linear-gradient(150deg, #E8DDCD 0%, #B5A485 100%); }
  .ph--bone .ph__label { color: rgba(11,15,20,0.7); }
  .ph--oak  { background: linear-gradient(150deg, #B89972 0%, #6C4E32 100%); }
  .ph--brass { background: linear-gradient(150deg, #D8A968 0%, #8C6322 100%); }
  .ph--slate { background: linear-gradient(150deg, #4A5260 0%, #1A1F28 100%); }
  .ph__grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .ph--bone .ph__grid {
    background-image:
      linear-gradient(to right, rgba(11,15,20,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(11,15,20,0.04) 1px, transparent 1px);
  }

  /* ===== Process ===== */
  .process__rail {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
  }
  .process__rail::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 18px;
    height: 1px;
    background: var(--rule-strong);
  }
  .process__rail::after {
    content: "";
    position: absolute;
    left: 0; top: 17.5px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--brass-soft) 0%, var(--brass) 60%, var(--brass-deep) 100%);
    box-shadow: 0 0 10px rgba(201, 149, 75, 0.4);
    border-radius: 2px;
    transition: width 520ms cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    z-index: 0;
  }
  .process__rail:has(.pstep:nth-child(1):hover)::after { width: calc((100% / 6) * 1 + 4px); }
  .process__rail:has(.pstep:nth-child(2):hover)::after { width: calc((100% / 6) * 2 + 8px); }
  .process__rail:has(.pstep:nth-child(3):hover)::after { width: calc((100% / 6) * 3 + 12px); }
  .process__rail:has(.pstep:nth-child(4):hover)::after { width: calc((100% / 6) * 4 + 16px); }
  .process__rail:has(.pstep:nth-child(5):hover)::after { width: calc((100% / 6) * 5 + 20px); }
  .process__rail:has(.pstep:nth-child(6):hover)::after { width: 100%; }
  .pstep {
    position: relative;
    padding-top: 48px;
    cursor: default;
    z-index: 2;
  }
  .pstep__dot {
    position: absolute;
    top: 12px; left: 0;
    width: 12px; height: 12px;
    background: var(--brass);
    border: 4px solid var(--paper);
    box-shadow: 0 0 0 1.5px var(--brass-deep);
    border-radius: 50%;
    transition: transform 320ms cubic-bezier(.4, 0, .2, 1), box-shadow 320ms ease;
    z-index: 3;
  }
  .pstep:hover .pstep__dot {
    transform: scale(1.35);
    animation: pstep-pulse 1.8s ease-out infinite;
  }
  @keyframes pstep-pulse {
    0%   { box-shadow: 0 0 0 1.5px var(--brass-deep), 0 0 0 3px rgba(201, 149, 75, 0.55), 0 0 14px rgba(201, 149, 75, 0.55); }
    70%  { box-shadow: 0 0 0 1.5px var(--brass-deep), 0 0 0 16px rgba(201, 149, 75, 0),    0 0 14px rgba(201, 149, 75, 0); }
    100% { box-shadow: 0 0 0 1.5px var(--brass-deep), 0 0 0 0   rgba(201, 149, 75, 0),    0 0 14px rgba(201, 149, 75, 0); }
  }
  .pstep__name { transition: color 280ms ease; }
  .pstep:hover .pstep__name { color: var(--brass-deep); }
  .pstep__num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--brass-deep);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .pstep__week {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    color: var(--ink-mute);
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .pstep__name {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
  .pstep__body {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  @media (max-width: 900px) {
    .process__rail { grid-template-columns: 1fr; gap: 22px; }
    .process__rail::before { left: 6px; top: 6px; bottom: 6px; right: auto; width: 1px; height: auto; }
    .process__rail::after,
    .process__rail:has(.pstep:hover)::after { left: 5px; top: 6px; width: 3px; height: 0; background: linear-gradient(180deg, var(--brass-soft) 0%, var(--brass) 60%, var(--brass-deep) 100%); transition: height 520ms cubic-bezier(.4, 0, .2, 1); }
    .process__rail:has(.pstep:nth-child(1):hover)::after { height: calc((100% / 6) * 1 + 4px); width: 3px; }
    .process__rail:has(.pstep:nth-child(2):hover)::after { height: calc((100% / 6) * 2 + 8px); width: 3px; }
    .process__rail:has(.pstep:nth-child(3):hover)::after { height: calc((100% / 6) * 3 + 12px); width: 3px; }
    .process__rail:has(.pstep:nth-child(4):hover)::after { height: calc((100% / 6) * 4 + 16px); width: 3px; }
    .process__rail:has(.pstep:nth-child(5):hover)::after { height: calc((100% / 6) * 5 + 20px); width: 3px; }
    .process__rail:has(.pstep:nth-child(6):hover)::after { height: 100%; width: 3px; }
    .pstep { padding-top: 0; padding-left: 32px; padding-bottom: 8px; }
    .pstep__dot { left: 0; top: 4px; }
  }

  /* ===== Team ===== */
  .team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .member {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: border-color 220ms ease, transform 220ms ease;
  }
  .member:hover { border-color: var(--brass-deep); transform: translateY(-3px); }
  .team__more { text-align: center; margin-top: 40px; }
  .team__more a { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border: 1.5px solid var(--navy); color: var(--navy); font-family: "Archivo", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; transition: background 200ms ease, color 200ms ease, gap 200ms ease; }
  .team__more a:hover { background: var(--navy); color: var(--bone); }
  .member__photo {
    aspect-ratio: 4/5;
    background: var(--bone-soft);
    overflow: hidden;
    filter: grayscale(1) contrast(1.05) brightness(0.96);
  }
  .member__photo img { width: 100%; height: 100%; object-fit: cover; }
  .member__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
  .member__name {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
  }
  .member__role {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brass-deep);
    font-weight: 600;
  }
  .member__cred {
    font-size: 12.5px;
    color: var(--ink-mute);
    line-height: 1.45;
    margin-top: 6px;
  }
  .member__tenure {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    color: var(--ink-quiet);
    letter-spacing: 0.04em;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
  }
  /* Founder card — wider */
  .member--lead { grid-row: span 1; }
  .member--lead .member__photo { aspect-ratio: 4/5; }
  .member--lead .member__body { padding: 24px 24px 26px; }
  .member--lead .member__name { font-size: 22px; }
  .member--lead .member__role { color: var(--brass); background: var(--navy); padding: 4px 10px; align-self: flex-start; margin-bottom: 4px; }
  .member--lead .member__cred { font-size: 14px; }

  @media (max-width: 1100px) {
    .team__grid { grid-template-columns: 1fr 1fr 1fr; }
  }
  @media (max-width: 700px) {
    .team__grid { grid-template-columns: 1fr 1fr; }
  }
  .member__photo img { transition: filter 220ms ease; }
  .member:hover .member__photo { filter: grayscale(0) contrast(1.02) brightness(1); }

  /* ===== Reviews ===== */
  .reviews__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: end;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 48px;
  }
  .reviews__score {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .reviews__score-num {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: 72px;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--brass);
  }
  .reviews__score-meta {
    display: flex; flex-direction: column;
  }
  .reviews__stars { color: var(--brass); font-size: 18px; letter-spacing: 0.05em; }
  .reviews__score-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
    text-transform: uppercase;
    margin-top: 4px;
  }
  .reviews__platforms {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 500;
  }
  .reviews__platforms .p { display: flex; flex-direction: column; gap: 2px; }
  .reviews__platforms .p strong { font-family: "Archivo", sans-serif; font-size: 15px; }
  .reviews__platforms .p small { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase; }
  .reviews__count {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    color: var(--ink-mute);
    text-align: right;
  }
  .reviews__count strong { color: var(--ink); font-size: 15px; }

  .reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .review {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 200ms ease, transform 200ms ease;
  }
  .review:hover { border-color: var(--navy); transform: translateY(-2px); }
  .review__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .review__stars { color: var(--brass); font-size: 15px; letter-spacing: 0.06em; }
  .review__src {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }
  .review__src strong { color: var(--navy); }
  .review__text {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-soft);
  }
  .review__foot {
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
    display: flex;
    justify-content: space-between;
  }
  .review__foot strong { color: var(--ink); font-weight: 600; }
  @media (max-width: 900px) {
    .reviews__head { grid-template-columns: 1fr; gap: 20px; }
    .reviews__count { text-align: left; }
    .reviews__grid { grid-template-columns: 1fr; }
  }

  /* ===== Credentials / Boring stuff ===== */
  .creds__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    background: transparent;
    border: none;
  }
  .cred {
    background: var(--paper);
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 260px;
    transition: background 280ms ease, transform 280ms ease, box-shadow 280ms ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--rule);
    isolation: isolate;
  }
  .cred::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 320ms ease;
  }
  .cred:hover { background: var(--bone); transform: translateY(-4px); box-shadow: 0 24px 40px -24px rgba(11,15,20,0.22); }
  .cred:hover::after { transform: scaleX(1); }
  .cred:hover .cred__icon { color: var(--brass-deep); opacity: 0.16; transform: translate(8%, -6%) rotate(-2deg); }

  .cred__icon {
    position: absolute;
    top: -8%;
    right: -8%;
    width: 60%;
    height: 60%;
    color: var(--navy);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    transition: opacity 280ms ease, color 280ms ease, transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
  }
  .cred__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .cred__label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass-deep);
    font-weight: 700;
    z-index: 1;
    position: relative;
  }
  .cred__name {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: 19px;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ink);
    z-index: 1;
    position: relative;
    max-width: 80%;
    margin-top: 2px;
    flex: 1;
  }
  .cred__name strong { font-family: "Archivo"; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; }
  .cred__verify {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.06em;
    color: var(--navy);
    font-weight: 700;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 200ms ease, color 200ms ease;
  }
  .cred:hover .cred__verify { gap: 14px; color: var(--brass-deep); }
  .cred__verify::before {
    content: "↗";
    color: var(--brass-deep);
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: 13px;
  }
  @media (max-width: 1100px) {
    .creds__grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 720px) {
    .creds__grid { grid-template-columns: 1fr 1fr; }
  }

  /* ===== Service Areas Map ===== */
  .areas {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: stretch;
  }
  .areas__map { max-width: 100%;
    background: var(--bone);
    border: 1px solid var(--rule);
    position: relative;
    aspect-ratio: 5/4;
    overflow: hidden;
  }
  .areas__map-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(100%) contrast(1.06) brightness(0.98); pointer-events: none; }
  .areas__map-overlay { position: absolute; inset: 0; pointer-events: none; }
  .map-dot-group { position: absolute; transform: translate(-50%, -50%); pointer-events: auto; cursor: pointer; padding: 4px; }
  .map-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--navy-deep); border: 2px solid var(--bone); box-shadow: 0 1px 4px rgba(0,0,0,0.35); transition: width 180ms ease, height 180ms ease, background 180ms ease, border-color 180ms ease; display: block; }
  .map-dot-group.is-hq .map-dot { width: 16px; height: 16px; background: var(--navy-deep); border-color: var(--brass); }
  .map-dot-label { position: absolute; left: 50%; bottom: calc(100% - 4px); transform: translateX(-50%); font-family: "IBM Plex Mono", monospace; font-size: 10.5px; font-weight: 700; color: var(--navy-deep); background: var(--bone); padding: 3px 8px; border: 1px solid var(--navy-deep); white-space: nowrap; opacity: 0; transition: opacity 180ms ease; pointer-events: none; }
  .map-dot-group:hover .map-dot, .map-dot-group.is-active .map-dot { width: 18px; height: 18px; background: var(--brass); border-color: var(--navy-deep); }
  .map-dot-group:hover .map-dot-label, .map-dot-group.is-active .map-dot-label { opacity: 1; z-index: 5; }
  .areas__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 0;
    align-content: start;
  }
  .area {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    transition: padding-left 200ms ease, color 200ms ease;
    cursor: pointer;
  }
  .area:hover, .area.is-hover { padding-left: 8px; color: var(--brass-deep); background: rgba(201,149,75,0.06); }
  .area__name {
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    font-size: 15px;
  }
  .area__count {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
    align-self: center;
  }
  .area__count strong { color: var(--brass-deep); font-weight: 600; }
  @media (max-width: 900px) {
    .areas { grid-template-columns: 1fr; gap: 28px; }
    .areas__list { grid-template-columns: 1fr; }
  }

  /* ===== Lead form ===== */
  .lead {
    background: var(--navy);
    color: var(--bone);
    padding: 90px 0 88px;
  }
  .lead__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
  }
  .lead__title {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--bone);
    margin-bottom: 26px;
  }
  .lead__title .accent { color: var(--brass); }
  .lead__body {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 28px;
    max-width: 460px;
  }
  .lead__bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
  }
  .lead__bullet {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    font-size: 14px;
    color: #fff;
    line-height: 1.45;
  }
  .lead__bullet::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brass);
    margin-top: 7px;
    box-shadow: 0 0 0 4px rgba(201,149,75,0.16);
  }
  .lead__direct {
    padding-top: 24px;
    border-top: 1px solid rgba(246,242,232,0.16);
    display: flex; flex-direction: column; gap: 6px;
  }
  .lead__direct-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass-soft);
  }
  .lead__direct a {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--bone);
    letter-spacing: 0.01em;
    transition: color 200ms ease;
  }
  .lead__direct a:hover { color: var(--brass); }

  .form-card {
    background: var(--bone);
    color: var(--ink);
    border-top: 6px solid var(--brass);
    padding: 36px 36px 32px;
    box-shadow: 0 30px 80px -30px rgba(6,22,41,0.6);
  }
  .form__progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
  }
  .form__step-dot {
    display: flex; align-items: center; gap: 8px;
    flex: 1;
  }
  .form__step-num {
    width: 26px; height: 26px;
    border: 1.5px solid var(--rule-strong);
    background: var(--paper);
    color: var(--ink-mute);
    display: flex; align-items: center; justify-content: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 280ms ease;
  }
  .form__step-dot.is-active .form__step-num {
    background: var(--navy);
    color: var(--brass);
    border-color: var(--navy);
  }
  .form__step-dot.is-done .form__step-num {
    background: var(--brass);
    color: var(--navy-deep);
    border-color: var(--brass);
  }
  .form__step-line {
    flex: 1; height: 1.5px;
    background: var(--rule-strong);
    transition: background 280ms ease;
  }
  .form__step-line.is-done { background: var(--brass); }
  .form__step-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 26px;
  }
  .form__step-label strong { color: var(--navy); }
  .form__step-title {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
  }
  .form__step-hint {
    font-size: 13.5px;
    color: var(--ink-mute);
    margin-bottom: 24px;
  }
  .form__step { display: none; }
  .form__step.is-active { display: block; }
  .form__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .form__card {
    background: var(--paper);
    border: 1.5px solid var(--rule);
    padding: 18px 18px 16px;
    text-align: left;
    cursor: pointer;
    transition: all 200ms ease;
  }
  .form__card:hover { border-color: var(--navy); background: var(--bone-soft); }
  .form__card.is-selected {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--bone);
  }
  .form__card.is-selected .form__card-sub { color: var(--brass-soft); }
  .form__card-title {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
  }
  .form__card-sub {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }
  .form__inputs { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
  .form__input {
    width: 100%;
    background: var(--paper);
    border: 1.5px solid var(--rule);
    padding: 14px 16px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 200ms ease;
  }
  .form__input:focus { outline: none; border-color: var(--navy); }
  .form__input::placeholder { color: var(--ink-quiet); }
  .form__nav { display: flex; gap: 10px; }
  .form__back {
    background: transparent;
    border: 1.5px solid var(--rule-strong);
    color: var(--ink-soft);
    padding: 14px 22px;
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 200ms ease;
  }
  .form__back:hover { border-color: var(--navy); color: var(--navy); }
  .form__back:disabled { opacity: 0.35; cursor: not-allowed; }
  .form__next {
    flex: 1;
    background: var(--navy);
    color: var(--bone);
    border: none;
    padding: 14px 22px;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 200ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .form__next:hover { background: var(--navy-soft); }
  .form__submit-row {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
    line-height: 1.55;
  }
  @media (max-width: 900px) {
    .lead { padding: 56px 0 56px; }
    .lead__inner { grid-template-columns: 1fr; gap: 36px; }
    .form-card { padding: 26px 22px 22px; }
    .form__cards { grid-template-columns: 1fr; }
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--navy-deep);
    color: var(--bone);
    padding: 80px 0 32px;
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(246,242,232,0.16);
  }
  .footer__brand {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
  }
  .footer__brand .brand__mark { width: 52px; height: 52px; }
  .footer__brand .brand__mark img { filter: brightness(1.05); }
  .footer__brand .brand__name { color: var(--bone); font-size: 20px; }
  .footer__brand .brand__name small { color: var(--brass-soft); }
  .footer__pitch {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    max-width: 380px;
    margin-bottom: 24px;
  }
  .footer__badges {
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .footer__badge {
    background: rgba(246,242,232,0.06);
    color: var(--brass-soft);
    padding: 6px 12px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(201,149,75,0.18);
  }
  .footer__col h4, .footer__col [data-h] {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .footer__col a { color: #fff; font-size: 14px; transition: color 200ms ease; }
  .footer__col a:hover { color: var(--brass-soft); }
  .footer__bottom {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--ink-quiet);
    text-transform: uppercase;
  }
  @media (max-width: 900px) {
    .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 600px) {
    .footer__top { grid-template-columns: 1fr; }
  }

  /* ===== Reveal ===== */
  .reveal { opacity: 0; transform: translateY(36px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
  .reveal.is-visible { opacity: 1; transform: none; }
  /* =============================================
     CINEMATIC HERO OVERRIDE — replaces B's hero
     ============================================= */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: grid; grid-template-columns: auto 1fr auto; align-items: center;
    gap: 36px; padding: 22px 56px;
    transition: background 320ms ease, padding 320ms ease, border-color 320ms ease;
    border-bottom: 1px solid transparent;
  }
  .navbar.is-scrolled {
    background: rgba(6,22,41,0.82); backdrop-filter: blur(16px);
    padding: 14px 56px; border-color: rgba(201,149,75,0.18);
  }
  /* top scrim — darkens only the menu strip for nav contrast, fades out just below the menu */
  .navbar::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 0;
    height: 165%;
    background: linear-gradient(180deg, rgba(6,22,41,0.58) 0%, rgba(6,22,41,0.30) 50%, rgba(6,22,41,0) 100%);
    pointer-events: none;
    z-index: -1;
    transition: opacity 320ms ease;
  }
  .navbar.is-scrolled::before { opacity: 0; }
  @media (max-width: 720px) { .navbar { padding: 16px 22px; gap: 12px; } .navbar.is-scrolled { padding: 12px 22px; } }
  .navbar .brand__mark { background: transparent; color: var(--navy); }
  .navbar .brand__name { color: var(--bone); font-size: 16px; }
  .navbar .brand__name small { color: var(--brass-soft); }
  .navbar__links {
    display: flex; justify-content: center; gap: 28px;
    font-size: 13.5px; font-weight: 500; color: #fff;
  }
  .navbar__links a { padding: 6px 0; position: relative; transition: color 200ms ease; }
  .navbar__links a:hover { color: var(--bone); }
  .navbar__links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1.5px; background: var(--brass);
    transform: scaleX(0); transform-origin: left; transition: transform 240ms ease;
  }
  .navbar__links a:hover::after { transform: scaleX(1); }
  .navbar__right { display: flex; align-items: center; gap: 16px; }
  .navbar__phone { font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: 0.06em; color: var(--brass-soft); }
  .navbar__cta {
    background: var(--brass); color: var(--navy-deep); border: none;
    padding: 11px 20px;
    font-family: "Archivo", sans-serif; font-weight: 700;
    font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase;
    transition: background 220ms ease;
  }
  .navbar__cta:hover { background: var(--brass-soft); }

  /* ----- Services dropdown (desktop) ----- */
  .navbar__item { position: relative; }
  .navbar__item > a { display: inline-flex; align-items: center; gap: 6px; }
  .navbar__caret { width: 10px; height: 6px; opacity: 0.65; transition: transform 240ms ease, opacity 200ms ease; }
  .navbar__item:hover .navbar__caret, .navbar__item:focus-within .navbar__caret { transform: rotate(180deg); opacity: 1; }
  .navbar__item > a::after { display: none; }
  .navbar__dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-top: 12px; min-width: 264px; padding: 8px;
    background: rgba(6,22,41,0.97); backdrop-filter: blur(18px);
    border: 1px solid rgba(201,149,75,0.20); border-radius: 5px;
    box-shadow: 0 24px 60px rgba(4,16,31,0.55);
    display: flex; flex-direction: column; gap: 1px;
    opacity: 0; visibility: hidden; pointer-events: none; z-index: 120;
    transition: opacity 220ms ease, transform 240ms ease, visibility 240ms;
  }
  /* bridge the gap so hover doesn't drop */
  .navbar__dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
  .navbar__item:hover .navbar__dropdown, .navbar__item:focus-within .navbar__dropdown {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .navbar__dropdown a {
    padding: 10px 14px; font-size: 13px; line-height: 1.3; color: #fff;
    border-radius: 3px; white-space: nowrap; transition: background 180ms ease, color 180ms ease;
  }
  .navbar__dropdown a::after { display: none; }
  .navbar__dropdown a:hover { background: rgba(201,149,75,0.14); color: var(--bone); }
  .navbar__dropdown a.is-featured { color: var(--brass-soft); font-weight: 600; }
  .navbar__dropdown a.is-featured:hover { background: rgba(201,149,75,0.22); }

  /* ----- Mega menu (wide, with hover-preview image) ----- */
  .navbar__mega {
    width: min(660px, 74vw); left: 0; right: auto;
    transform: translateX(0) translateY(10px);
    padding: 16px; display: grid; grid-template-columns: 1fr 244px; gap: 18px;
  }
  .navbar__item:hover .navbar__mega, .navbar__item:focus-within .navbar__mega { transform: translateX(0) translateY(0); }
  .navbar__mega-list { display: flex; flex-direction: column; gap: 1px; }
  .navbar__mega-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .navbar__mega-arrow { flex-shrink: 0; opacity: 0; transform: translateX(-5px); transition: opacity 180ms ease, transform 180ms ease; color: var(--brass-soft); }
  .navbar__mega-list a:hover .navbar__mega-arrow, .navbar__mega-list a:focus .navbar__mega-arrow { opacity: 1; transform: translateX(0); }
  .navbar__mega-preview {
    position: relative; border-radius: 5px; overflow: hidden;
    background: rgba(246,242,232,0.05); border: 1px solid rgba(201,149,75,0.16); min-height: 250px;
  }
  .navbar__mega-img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.03); transition: opacity 280ms ease, transform 7s ease;
  }
  .navbar__mega-preview:hover .navbar__mega-img { transform: scale(1.09); }
  .navbar__mega-cap {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 13px 14px;
    background: linear-gradient(to top, rgba(4,16,31,0.94) 8%, rgba(4,16,31,0) 100%);
    color: var(--bone); font-family: "IBM Plex Mono", monospace;
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  }
  @media (max-width: 1000px) { .navbar__mega { width: min(560px, 70vw); grid-template-columns: 1fr 200px; } }

  /* ----- Burger (mobile) ----- */
  .navbar__burger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0; flex-shrink: 0;
    border: 1px solid rgba(201,149,75,0.32); border-radius: 5px;
    background: rgba(6,22,41,0.45);
  }
  .navbar__burger span { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--brass-soft); border-radius: 2px; transition: transform 300ms cubic-bezier(0.22,1,0.36,1), opacity 200ms ease; }
  .navbar__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar__burger.is-open span:nth-child(2) { opacity: 0; }
  .navbar__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ----- Compact call icon (mobile only) ----- */
  .navbar__call {
    display: none; align-items: center; justify-content: center;
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1px solid rgba(201,149,75,0.32); border-radius: 5px;
    background: rgba(6,22,41,0.45); color: var(--brass-soft);
  }
  .navbar__call:hover { color: var(--bone); border-color: var(--brass-soft); }

  /* ----- Mobile drawer ----- */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 95;
    background: linear-gradient(165deg, var(--navy-deep) 0%, #04101f 100%);
    padding: 100px 28px 36px; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 380ms cubic-bezier(0.22,1,0.36,1);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu > a {
    color: var(--bone); font-family: "Archivo", sans-serif; font-weight: 700;
    font-size: 22px; letter-spacing: -0.01em; padding: 15px 0;
    border-bottom: 1px solid rgba(201,149,75,0.12);
  }
  .mobile-menu__sub { display: flex; flex-direction: column; padding: 2px 0 8px; }
  .mobile-menu__sub a {
    color: #fff; font-size: 15.5px; font-weight: 500;
    padding: 11px 0 11px 18px; border-bottom: 1px solid rgba(201,149,75,0.07);
  }
  .mobile-menu__sub a.is-featured { color: var(--brass-soft); font-weight: 600; }
  .mobile-menu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 28px; }
  .mobile-menu__foot .navbar__phone { display: block; font-size: 15px; }
  .mobile-menu__foot .navbar__cta { width: 100%; padding: 16px; font-size: 13px; }
  body.menu-open { overflow: hidden; }

  @media (max-width: 900px) {
    .navbar__links, .navbar__phone { display: none; }
    .navbar__burger { display: flex; }
    .navbar__call { display: inline-flex; }
    .navbar__right { gap: 10px; }
    /* tagline drops onto its own full-width line under the logo + name (mobile only — desktop stays original) */
    .navbar .brand { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "mark name" "tag tag"; align-items: center; column-gap: 10px; row-gap: 2px; }
    .navbar .brand__mark { grid-area: mark; }
    .navbar .brand__name { display: contents; }
    .navbar .brand__tag { grid-area: tag; align-self: start; margin-top: 0; white-space: nowrap; }
  }
  @media (max-width: 480px) {
    .navbar .brand__name { font-size: 13.5px; }
    .navbar .brand__tag { font-size: 8px; }
    .navbar__right .navbar__cta { padding: 10px 13px; font-size: 11px; }
  }

  /* Cinematic hero — overrides B's hero */
  .hero {
    background: var(--navy-deep);
    color: var(--bone);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    border-bottom: none;
    display: flex;
    align-items: stretch;
  }
  .hero__bg {
    position: absolute; inset: 0;
    background-image: url("/assets/ext/images/photo-1600585154340-be6161a56a0c-b5130ed9.jpg");
    background-size: cover; background-position: center 40%;
    opacity: 1;
    transform: scale(1.06);
    filter: brightness(0.82) saturate(0.95);
    animation: hero-pan 28s ease-in-out infinite alternate;
  }
  @keyframes hero-pan {
    from { transform: scale(1.06) translateY(0); }
    to { transform: scale(1.12) translateY(-2%); }
  }
  .hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(120% 100% at 50% 100%, rgba(6,22,41,0.75) 0%, rgba(6,22,41,0.20) 55%, transparent 78%),
      linear-gradient(180deg, rgba(6,22,41,0.25) 0%, transparent 28%, transparent 62%, rgba(6,22,41,0.42) 100%),
      linear-gradient(90deg, rgba(6,22,41,0.45) 0%, rgba(6,22,41,0.10) 55%, transparent 100%);
  }
  .hero__grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.94 0 0 0 0 0.91 0 0 0 0 0.84 0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    opacity: 0.45;
    mix-blend-mode: overlay;
    pointer-events: none;
  }
  .hero__inner {
    position: relative; z-index: 2;
    width: 100%; max-width: 1440px;
    margin: 0 auto;
    padding: 110px 56px 70px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    min-height: auto;
  }
  @media (max-width: 1000px) { .hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 100px 22px 60px; } .hero { height: auto; min-height: auto; padding-bottom: 60px; } .hero__scrolldown { display: none; } }
  @media (max-width: 720px) { .hero__inner { padding: 90px 22px 50px; } }
  .hero__eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--brass);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0; padding: 0;
    border: none;
    justify-self: start;
    font-weight: 600;
  }
  .hero__eyebrow .pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brass);
    box-shadow: 0 0 0 0 rgba(201,149,75,0.6);
    animation: pulse 2s ease-out infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(201,149,75,0.6); }
    70% { box-shadow: 0 0 0 14px rgba(201,149,75,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,149,75,0); }
  }
  .hero__body { align-self: center; max-width: none; padding-bottom: 0; }
  .hero__title {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 4.2vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--bone);
    margin: 0 0 22px;
    max-width: 14ch;
  }
  .hero__title .accent {
    font-family: "Fraunces", Georgia, serif;
    font-style: italic;
    font-weight: 300;
    color: var(--brass);
    letter-spacing: -0.025em;
  }
  .hero__sub {
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.55;
    color: #fff;
    max-width: 480px;
    margin: 0 0 28px;
    font-weight: 300;
  }
  .hero__trust {
    display: flex; gap: 20px; flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(246,242,232,0.18);
    margin-top: 6px;
  }
  .hero__trust-cell { display: flex; flex-direction: column; gap: 2px; min-width: 120px; }
  .hero__trust-l { font-family: "IBM Plex Mono", monospace; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; font-weight: 500; }
  .hero__trust-v { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 13.5px; color: var(--bone); letter-spacing: -0.005em; }
  .hero__trust-v .em { color: var(--brass); font-weight: 800; }
  .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin: 0; }
  .hero__strip {
    align-self: end;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(246,242,232,0.18);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .hero__strip { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; } }
  .hero__strip-cell { display: flex; flex-direction: column; gap: 4px; }
  .hero__strip-l {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
  }
  .hero__strip-v {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--bone);
    letter-spacing: -0.005em;
  }
  .hero__strip-v .em { color: var(--brass); font-weight: 800; }
  .hero__scrolldown {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    pointer-events: none;
  }
  .hero__scrolldown .line {
    width: 1px; height: 32px;
    background: linear-gradient(180deg, var(--brass), transparent);
    animation: drop 2.2s ease-in-out infinite;
    transform-origin: top;
  }
  @keyframes drop {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
  }
  .topbar, .header { display: none !important; }

  /* ===== Quiz card ===== */
  .quiz {
    background: rgba(6,22,41,0.32);
    backdrop-filter: blur(26px) saturate(1.1);
    -webkit-backdrop-filter: blur(26px) saturate(1.1);
    color: var(--bone);
    border: 1px solid rgba(201,149,75,0.32);
    border-top: 4px solid var(--brass);
    box-shadow: 0 32px 60px -28px rgba(6,22,41,0.7), 0 10px 24px -14px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 420px;
    justify-self: end;
    overflow: hidden;
  }
  @media (max-width: 1000px) { .quiz { justify-self: center; max-width: 600px; } }
  .quiz__head {
    padding: 16px 22px 14px;
    border-bottom: 1px solid rgba(246,242,232,0.14);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: transparent;
  }
  .quiz__head-l { display: flex; flex-direction: column; gap: 2px; }
  .quiz__kicker {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--brass); font-weight: 600;
  }
  .quiz__title {
    font-family: "Archivo", sans-serif;
    font-weight: 800; font-size: 18px; letter-spacing: -0.015em;
    color: var(--bone);
  }
  .quiz__step-num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px; letter-spacing: 0.06em; color: #fff;
    font-weight: 600; text-transform: uppercase;
  }
  .quiz__step-num strong { color: var(--brass); }
  .quiz__progress {
    display: flex; gap: 5px;
    padding: 12px 22px 10px;
    border-bottom: 1px solid rgba(246,242,232,0.14);
  }
  .quiz__dot {
    flex: 1; height: 2.5px; background: rgba(246,242,232,0.18);
    transition: background 280ms ease;
  }
  .quiz__dot.is-done { background: var(--brass); }
  .quiz__dot.is-active { background: var(--bone); }
  .quiz__body { padding: 18px 22px 20px; }
  .quiz__step { display: none; }
  .quiz__step.is-active { display: block; }
  .quiz__q {
    font-family: "Archivo", sans-serif;
    font-weight: 700; font-size: 15px;
    letter-spacing: -0.005em; margin-bottom: 3px;
    color: var(--bone);
  }
  .quiz__hint {
    font-size: 12px; color: #fff;
    margin-bottom: 14px; line-height: 1.5;
  }
  .quiz__opts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  }
  .quiz__opt {
    background: var(--bone);
    border: 1.5px solid rgba(246,242,232,0.2);
    padding: 11px 12px 10px;
    text-align: left; cursor: pointer;
    transition: all 180ms ease;
    display: flex; flex-direction: column; gap: 3px;
    color: var(--ink);
  }
  .quiz__opt:hover { border-color: var(--brass); background: #fff; }
  .quiz__opt.is-selected {
    border-color: var(--navy); background: var(--navy); color: var(--bone);
  }
  .quiz__opt.is-selected .quiz__opt-sub { color: var(--brass-soft); }
  .quiz__opt-icon {
    width: 20px; height: 20px; color: var(--navy);
    margin-bottom: 1px; transition: color 180ms ease;
  }
  .quiz__opt-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .quiz__opt.is-selected .quiz__opt-icon { color: var(--brass); }
  .quiz__opt-name { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: -0.005em; }
  .quiz__opt-sub { font-family: "IBM Plex Mono", monospace; font-size: 9.5px; letter-spacing: 0.04em; color: var(--ink-mute); }

  .quiz__slider { padding: 4px 0 0; }
  .quiz__slider-val {
    display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px;
  }
  .quiz__slider-val strong { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 28px; color: var(--brass); letter-spacing: -0.02em; line-height: 1; }
  .quiz__slider-val span { font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: 0.06em; color: #fff; text-transform: uppercase; }
  .quiz__range { -webkit-appearance: none; width: 100%; height: 3px; background: rgba(246,242,232,0.2); outline: none; cursor: pointer; }
  .quiz__range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--bone); border: 2.5px solid var(--brass); cursor: pointer; }
  .quiz__range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--bone); border: 2.5px solid var(--brass); cursor: pointer; }
  .quiz__ticks { display: flex; justify-content: space-between; margin-top: 6px; font-family: "IBM Plex Mono", monospace; font-size: 9px; color: #fff; letter-spacing: 0.04em; }

  .quiz__inputs { display: flex; flex-direction: column; gap: 8px; }
  .quiz__input {
    width: 100%; background: var(--bone); border: 1.5px solid rgba(246,242,232,0.2);
    padding: 10px 12px; font-family: "Archivo", sans-serif;
    font-weight: 500; font-size: 13.5px; color: var(--ink);
    transition: border-color 200ms ease, background 200ms ease;
  }
  .quiz__input:focus { outline: none; border-color: var(--brass); background: #fff; }
  .quiz__input::placeholder { color: var(--ink-quiet); font-weight: 400; }
  .quiz__textarea { resize: vertical; min-height: 72px; line-height: 1.5; font-family: "Manrope", sans-serif; }

  .quiz__estimate {
    background: var(--navy); color: var(--bone);
    padding: 14px 16px; margin: 2px 0 12px;
    border-left: 3px solid var(--brass);
  }
  .quiz__estimate-l { font-family: "IBM Plex Mono", monospace; font-size: 9.5px; letter-spacing: 0.12em; color: var(--brass-soft); text-transform: uppercase; font-weight: 600; margin-bottom: 3px; }
  .quiz__estimate-v {
    font-family: "Archivo", sans-serif; font-weight: 900;
    font-size: 22px; letter-spacing: -0.025em; line-height: 1;
    color: var(--bone);
  }
  .quiz__estimate-v .em { color: var(--brass); }
  .quiz__estimate-meta { font-family: "IBM Plex Mono", monospace; font-size: 9.5px; letter-spacing: 0.04em; color: #fff; margin-top: 4px; }

  .quiz__foot {
    display: flex; gap: 8px;
    padding: 10px 22px 16px;
    border-top: 1px solid rgba(246,242,232,0.14);
    background: transparent;
  }
  .quiz__back {
    background: transparent; border: 1.5px solid rgba(246,242,232,0.28); color: #fff;
    padding: 10px 14px; font-family: "Archivo", sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
    transition: all 200ms ease;
  }
  .quiz__back:hover { border-color: var(--bone); color: var(--bone); background: rgba(246,242,232,0.08); }
  .quiz__back:disabled { opacity: 0.3; cursor: not-allowed; }
  .quiz__next {
    flex: 1; background: var(--brass); color: var(--navy-deep); border: none;
    padding: 12px 16px; font-family: "Archivo", sans-serif; font-weight: 800;
    font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 200ms ease;
  }
  .quiz__next:hover { background: var(--brass-soft); }
  .quiz__next.is-final { background: var(--brass); color: var(--navy-deep); }
  .quiz__next.is-final:hover { background: var(--brass-soft); }
  .quiz__assurance {
    padding: 10px 22px 14px;
    background: transparent;
    font-family: "IBM Plex Mono", monospace;
    font-size: 9.5px; letter-spacing: 0.04em; color: #fff;
    line-height: 1.5; text-align: center; border-top: 1px solid rgba(246,242,232,0.1);
  }
  .quiz__assurance strong { color: var(--brass); font-weight: 600; }

  /* Founder card in hero */
  .hero__founder {
    display: grid; grid-template-columns: 44px 1fr; gap: 14px;
    align-items: center;
    padding: 14px 0 18px;
    margin-top: 2px;
  }
  .hero__founder-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--brass);
    box-shadow: 0 0 0 2px rgba(6,22,41,0.6);
  }
  .hero__founder-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
  .hero__founder-name { display: block; font-family: "Archivo", sans-serif; font-weight: 700; font-size: 14px; color: var(--bone); letter-spacing: -0.005em; }
  .hero__founder-name em { color: var(--brass); font-style: normal; font-weight: 600; font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; margin-left: 6px; }
  .hero__founder-line { font-size: 12.5px; color: #fff; line-height: 1.4; }

  /* What-happens-next strip under quiz */
  .quiz__next-up {
    background: rgba(201,149,75,0.14);
    border-top: 1px solid rgba(201,149,75,0.3);
    padding: 12px 22px;
    display: grid; grid-template-columns: auto 1fr; gap: 12px;
    align-items: center;
  }
  .quiz__next-up::before {
    content: "→";
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    color: var(--brass);
    font-size: 16px;
  }
  .quiz__next-up-t {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px; letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.5;
  }
  .quiz__next-up-t strong { color: var(--brass); font-weight: 600; }

  .quiz__done {
    padding: 36px 28px;
    text-align: center;
    display: none;
  }
  .quiz__done.is-active { display: block; }
  .quiz__done-t {
    font-family: "Archivo", sans-serif; font-weight: 900; font-size: 28px;
    letter-spacing: -0.02em; color: var(--bone); margin-bottom: 10px;
  }
  .quiz__done-t .em { color: var(--brass); }
  .quiz__done-sub {
    font-size: 14px; color: #fff;
    line-height: 1.55; max-width: 360px; margin: 0 auto;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero__bg, .hero__scrolldown .line, .hero__eyebrow .pulse { animation: none !important; }
  }
  /* ===== Featured story ===== */
  .featured { padding: 110px 0; background: var(--paper); border-top: 1px solid var(--rule); }
  .featured__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
  .featured__copy { max-width: 560px; }
  .featured__kicker { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
  .featured__kicker::before { content: ""; width: 28px; height: 1.5px; background: var(--brass-deep); }
  .featured__title { font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(32px, 4vw, 56px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 20px; color: var(--ink); }
  .featured__title em { font-style: normal; color: var(--brass-deep); }
  .featured__lede { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 22px; }
  .featured__quote { font-family: "Archivo", sans-serif; font-weight: 500; font-size: 18px; line-height: 1.45; color: var(--ink); border-left: 3px solid var(--brass); padding: 8px 0 8px 18px; margin: 0 0 24px; font-style: normal; }
  .featured__quote cite { display: block; margin-top: 12px; font-family: "IBM Plex Mono", monospace; font-style: normal; font-size: 11px; letter-spacing: 0.06em; color: var(--ink-mute); font-weight: 600; }
  .featured__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; padding-top: 22px; border-top: 1px solid var(--rule); margin-bottom: 20px; }
  .featured__spec { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-mute); text-transform: uppercase; line-height: 1.5; }
  .featured__spec strong { display: block; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.015em; color: var(--navy); text-transform: none; margin-bottom: 2px; }
  .featured__cta { display: inline-flex; align-items: center; gap: 10px; font-family: "Archivo", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); border-bottom: 2px solid var(--brass); padding: 4px 0; transition: color 200ms ease, gap 200ms ease; }
  .featured__cta:hover { color: var(--brass-deep); }
  .featured__media { display: block; }
  .featured__media-main { position: relative; aspect-ratio: 4/3; background: #0b0f14; overflow: hidden; border-radius: 14px; }
  .featured__media-main video, .featured__media-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .featured__media-main .featured__poster { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: opacity 320ms ease; pointer-events: none; }
  .featured__media-main.is-playing .featured__poster { opacity: 0; }
  .featured__media-main.is-playing .featured__play { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(0.85); }
  .featured__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%; background: rgba(201, 149, 75, 0.92); color: var(--paper); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px rgba(255,255,255,0.18), 0 12px 30px rgba(0,0,0,0.45); transition: transform 240ms cubic-bezier(.4,0,.2,1), background 200ms ease, opacity 240ms ease; z-index: 3; }
  .featured__play::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; box-shadow: 0 0 0 0 rgba(201,149,75,0.55); animation: featured-play-pulse 2.2s ease-out infinite; }
  @keyframes featured-play-pulse { 0% { box-shadow: 0 0 0 0 rgba(201,149,75,0.45); } 70% { box-shadow: 0 0 0 22px rgba(201,149,75,0); } 100% { box-shadow: 0 0 0 0 rgba(201,149,75,0); } }
  .featured__play:hover { background: rgba(201, 149, 75, 1); transform: translate(-50%, -50%) scale(1.06); }
  .featured__play svg { width: 26px; height: 26px; margin-left: 4px; }
  .featured__media-cap { position: absolute; bottom: 14px; left: 14px; background: rgba(11,15,20,0.72); color: var(--brass); font-family: "IBM Plex Mono", monospace; font-size: 10.5px; letter-spacing: 0.08em; padding: 6px 10px; backdrop-filter: blur(6px); text-transform: uppercase; font-weight: 600; z-index: 2; }
  .featured__media-thumbs { display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
  .featured__thumb { position: relative; overflow: hidden; background: var(--bone-soft); }
  .featured__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 480ms cubic-bezier(.4,0,.2,1); }
  .featured__thumb:hover img { transform: scale(1.04); }
  .featured__thumb span { position: absolute; bottom: 10px; left: 12px; background: rgba(11,15,20,0.72); color: var(--bone); font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: 0.08em; padding: 4px 8px; text-transform: uppercase; font-weight: 600; z-index: 2; }
  @media (max-width: 900px) { .featured { padding: 60px 0; } .featured__inner { grid-template-columns: 1fr; gap: 36px; } .featured__media { grid-template-columns: 1fr; } .featured__media-main { aspect-ratio: 4/3; } .featured__media-thumbs { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } .featured__thumb { aspect-ratio: 4/3; } .featured__play { width: 64px; height: 64px; } }

  /* ===== Financing ===== */
  .financing { padding: 80px 0; background: var(--bone-soft); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .financing__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
  .financing__copy { max-width: 540px; }
  .financing__kicker { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; margin-bottom: 14px; }
  .financing__title { font-family: "Archivo", sans-serif; font-weight: 900; font-size: clamp(40px, 5.4vw, 84px); line-height: 0.98; letter-spacing: -0.035em; margin-bottom: 22px; color: var(--ink); }
  .financing__title em { font-style: normal; color: var(--brass-deep); font-weight: 900; }
  .financing__title-stripe { display: inline-block; background: var(--brass); color: var(--navy-deep); padding: 2px 14px 6px; margin-top: 8px; }
  .financing__lede { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 22px; }
  .financing__partners { display: flex; gap: 22px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--rule); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--ink-mute); text-transform: uppercase; }
  .financing__partners strong { color: var(--navy); font-family: "Archivo"; font-size: 13px; letter-spacing: -0.005em; text-transform: none; margin-right: 4px; }
  .financing__card { background: var(--navy); color: var(--bone); padding: 32px 32px 28px; border-top: 5px solid var(--brass); box-shadow: 0 30px 60px -28px rgba(11,15,20,0.3); display: flex; flex-direction: column; gap: 14px; }
  .financing__card-l { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-soft); font-weight: 600; }
  .financing__card-v { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 76px; letter-spacing: -0.045em; line-height: 0.9; color: var(--brass); }
  .financing__card-v small { font-family: "Archivo"; font-size: 22px; color: var(--bone); font-weight: 700; display: inline-block; margin-left: 4px; letter-spacing: -0.01em; text-transform: uppercase; }
  .financing__card-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-top: 1px dashed rgba(246,242,232,0.18); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.06em; color: #fff; text-transform: uppercase; }
  .financing__card-row strong { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 17px; color: var(--bone); letter-spacing: -0.005em; text-transform: none; }
  .financing__card-meta { font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #fff; letter-spacing: 0.04em; line-height: 1.55; padding-top: 14px; border-top: 1px solid rgba(246,242,232,0.16); }
  .financing__card-cta { background: var(--brass); color: var(--navy-deep); border: none; padding: 14px 20px; font-family: "Archivo"; font-weight: 800; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; display: flex; justify-content: space-between; align-items: center; transition: background 200ms ease; }
  .financing__card-cta:hover { background: var(--brass-soft); }
  @media (max-width: 900px) { .financing { padding: 56px 0; } .financing__inner { grid-template-columns: 1fr; gap: 32px; } .financing__card-v { font-size: 56px; } .financing__title-stripe { padding: 2px 10px 4px; } }

  /* ===== Showroom ===== */
  .showroom { padding: 110px 0; background: var(--brass); color: var(--navy-deep); position: relative; overflow: hidden; }
  .showroom__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: stretch; position: relative; }
  .showroom__gallery { display: flex; flex-direction: column; gap: 12px; }
  .showroom__main { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-deep); border: 0; }
  .showroom__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 320ms ease; }
  .showroom__main img.is-swapping { opacity: 0; }
  .showroom__badge { position: absolute; top: 18px; left: 18px; background: var(--navy-deep); color: var(--brass); font-family: "IBM Plex Mono", monospace; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; padding: 7px 12px; z-index: 2; }
  .showroom__main-cap { position: absolute; bottom: 16px; left: 18px; background: rgba(6,22,41,0.92); color: var(--brass); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.06em; padding: 7px 12px; z-index: 2; transition: opacity 200ms ease; font-weight: 600; }
  .showroom__thumbs-wrap { position: relative; }
  .showroom__thumbs { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 2px 0; -ms-overflow-style: none; scrollbar-width: none; cursor: grab; }
  .showroom__thumbs:active { cursor: grabbing; }
  .showroom__thumbs::-webkit-scrollbar { display: none; }
  .showroom__thumb { flex: 0 0 calc((100% - 42px) / 4.2); aspect-ratio: 4/3; overflow: hidden; background: var(--navy-deep); border: 0; padding: 0; cursor: pointer; transition: transform 200ms ease, border-color 200ms ease; position: relative; scroll-snap-align: start; }
  .showroom__thumb:hover { transform: translateY(-2px); }
  .showroom__thumb.is-active { box-shadow: 0 0 0 2px var(--bone); }
  .showroom__thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); transition: filter 200ms ease; pointer-events: none; }
  .showroom__thumb:hover img, .showroom__thumb.is-active img { filter: brightness(1); }

  .showroom__copy { display: flex; flex-direction: column; justify-content: center; padding: 8px 0; }
  .showroom__kicker { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-deep); font-weight: 700; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 12px; align-self: flex-start; }
  .showroom__kicker::before { content: ""; width: 28px; height: 1.5px; background: var(--navy-deep); }
  .showroom__title { font-family: "Archivo", sans-serif; font-weight: 900; font-size: clamp(32px, 4.4vw, 62px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 18px; color: var(--navy-deep); }
  .showroom__title em { font-style: normal; color: var(--bone); background: var(--navy-deep); padding: 2px 12px 6px; display: inline-block; }
  .showroom__lede { font-size: 16px; line-height: 1.65; color: rgba(6,22,41,0.78); margin-bottom: 28px; max-width: 520px; }

  .showroom__details { display: grid; grid-template-columns: 130px 1fr; gap: 14px 22px; margin: 0 0 28px; padding: 22px 0; border-top: 1.5px solid rgba(6,22,41,0.22); border-bottom: 1.5px solid rgba(6,22,41,0.22); }
  .showroom__details dt { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(6,22,41,0.6); font-weight: 700; padding-top: 3px; margin: 0; }
  .showroom__details dd { margin: 0; font-size: 14.5px; color: var(--navy-deep); line-height: 1.55; font-weight: 500; }
  .showroom__details dd a { color: var(--navy-deep); border-bottom: 1.5px solid var(--navy-deep); font-weight: 700; }
  .showroom__details dd a:hover { color: var(--bone); background: var(--navy-deep); padding: 0 4px; border-bottom-color: transparent; }

  .showroom__ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
  .showroom__cta-primary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 16px 24px; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; transition: background 200ms ease, color 200ms ease; cursor: pointer; }
  .showroom__cta-primary:hover { background: var(--navy); color: var(--bone); }
  .showroom__cta-secondary { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-deep); font-weight: 700; border-bottom: 1.5px solid var(--navy-deep); padding: 4px 0; transition: opacity 200ms ease; }
  .showroom__cta-secondary:hover { opacity: 0.7; }

  @media (max-width: 900px) { .showroom { padding: 60px 0; } .showroom__inner { grid-template-columns: 1fr; gap: 32px; } .showroom__thumb { flex: 0 0 calc((100% - 32px) / 3.2); } .showroom__details { grid-template-columns: 1fr; gap: 4px 22px; } .showroom__details dt { padding-top: 8px; } }
  @media (max-width: 520px) { .showroom__thumb { flex: 0 0 calc((100% - 20px) / 2.4); } }

  /* ===== Referral strip ===== */
  .referral { padding: 32px 0; background: var(--brass); color: var(--navy-deep); position: relative; }
  .referral__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
  .referral__icon { font-family: "Archivo"; font-weight: 900; font-size: 24px; color: var(--brass); background: var(--navy-deep); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: -0.02em; }
  .referral__copy { line-height: 1.4; }
  .referral__copy strong { display: block; font-family: "Archivo"; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: var(--navy-deep); margin-bottom: 4px; }
  .referral__copy span { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: 0.04em; color: rgba(6,22,41,0.78); }
  .referral__copy span b { color: var(--navy-deep); font-weight: 700; }
  .referral__cta { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 13px 22px; font-family: "Archivo"; font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; transition: all 200ms ease; }
  .referral__cta:hover { background: var(--navy); color: var(--bone); }
  @media (max-width: 720px) { .referral__inner { grid-template-columns: 1fr; gap: 18px; text-align: left; } }




  .subhero{ position:relative; background:var(--navy-deep); }
  .subhero .vslider__badge{ top:74px; }
  .subhero .vslider{ position:relative; }
  .subhero .vslider__foot{ position:absolute; left:50%; transform:translateX(-50%); bottom:16px; z-index:8;
    margin:0; padding:8px 15px; flex-direction:row; gap:13px; align-items:center;
    background:rgba(6,22,41,.42); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.14); border-radius:999px; }
  .subhero .vslider__dot{ background:rgba(255,255,255,.5); }
  .subhero .vslider__dot.is-active{ background:var(--brass); }
  .subhero .vslider__hint{ color:rgba(255,255,255,.82); }
  @media (max-width:560px){ .subhero .vslider__foot{ bottom:10px; padding:7px 12px; gap:10px; } }

  /* shared atoms */
  .sh-crumb{ font-family:"IBM Plex Mono",monospace; font-size:11px; letter-spacing:.12em; text-transform:uppercase; display:flex; gap:9px; align-items:center; }
  .sh-crumb a{ color:inherit; opacity:.72; text-decoration:none; }
  .sh-crumb a:hover{ opacity:1; color:var(--brass); }
  .sh-crumb span{ opacity:.4; }
  .sh-crumb b{ color:var(--brass); font-weight:600; }
  .sh-eyebrow{ font-family:"IBM Plex Mono",monospace; font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--brass); }
  .sh-title{ font-family:"Archivo",sans-serif; font-weight:800; letter-spacing:-.02em; line-height:1.03; font-size:clamp(30px,4.4vw,52px); margin:0; }
  .sh-sub{ font-family:"Manrope",sans-serif; font-size:clamp(15px,1.5vw,18px); line-height:1.5; margin:0; }
  .sh-chip{ display:inline-flex; align-items:center; gap:8px; align-self:flex-start;
    font-family:"IBM Plex Mono",monospace; font-size:10.5px; letter-spacing:.1em; text-transform:uppercase;
    border:1px solid rgba(201,149,75,.5); color:var(--brass-soft,#E4C596); border-radius:999px; padding:7px 14px; }

  /* V1 — tinted photo, centered */
  .sh1{ position:relative; overflow:hidden; min-height:344px; display:flex; }
  .sh1__bg{ position:absolute; inset:0; background:url("/assets/ext/miamifirstremodeling/kitchen-002/kitchen-001.webp") center/cover; }
  .sh1__bg::after{ content:""; position:absolute; inset:0;
    background:linear-gradient(180deg,rgba(6,22,41,.74),rgba(6,22,41,.60)); }
  .sh1 .sh-crumb{ position:absolute; top:92px; left:56px; z-index:3; color:var(--bone); }
  .sh1__in{ position:relative; z-index:2; width:100%; max-width:900px; margin:0 auto;
    padding:132px 56px 44px; color:var(--bone); text-align:center;
    display:flex; flex-direction:column; align-items:center; gap:15px; }
  .sh1__in .sh-sub{ max-width:60ch; }
  .sh1 .sh-chip{ align-self:center; }

  /* V2 — solid navy, left band */
  .sh2{ position:relative; overflow:hidden; background:var(--navy-deep); min-height:300px; display:flex; }
  .sh2::after{ content:""; position:absolute; inset:0; pointer-events:none;
    background:radial-gradient(120% 130% at 100% 0%, rgba(0,0,0,.38), transparent 60%); }
  .sh2__in{ position:relative; z-index:2; width:100%; max-width:1440px; margin:0 auto;
    padding:112px 56px 46px; color:var(--bone); display:flex; flex-direction:column; justify-content:center; gap:15px; }
  .sh2__col{ max-width:760px; display:flex; flex-direction:column; gap:15px; }
  .sh2__rule{ width:46px; height:2px; background:var(--brass); margin:3px 0 2px; }

  /* V3 — split founder panel */
  .sh3{ display:grid; grid-template-columns:1fr 1fr; min-height:400px; }
  .sh3__text{ background:var(--paper); color:var(--navy-deep); padding:112px 56px 42px;
    display:flex; flex-direction:column; justify-content:center; gap:14px; }
  .sh3__text .sh-crumb a{ opacity:.65; }
  .sh3__text .sh-sub{ color:var(--ink-mute); }
  .sh3__text .sh-chip{ border-color:rgba(14,42,71,.28); color:var(--navy); }
  .sh3__photo{ background:url("/assets/ext/miamifirstremodeling/05/MFR-Gil-Rukchin-headshot.jpg") center 22%/cover; min-height:100%; }

  /* V4 — ultra-compact bar */
  .sh4{ background:var(--paper); color:var(--navy-deep); border-bottom:1px solid var(--rule); min-height:212px; display:flex; }
  .sh4__in{ width:100%; max-width:1440px; margin:0 auto; padding:106px 56px 30px;
    display:flex; flex-direction:column; justify-content:center; gap:13px; }
  .sh4__in .sh-crumb a{ opacity:.6; }
  .sh4__facts{ font-family:"IBM Plex Mono",monospace; font-size:12px; letter-spacing:.04em;
    color:var(--ink-mute); display:flex; gap:11px; flex-wrap:wrap; }
  .sh4__facts span{ opacity:.45; }

  /* V5 — scrim photo + floating stat chip */
  .sh5{ position:relative; overflow:hidden; min-height:404px; display:flex; }
  .sh5__bg{ position:absolute; inset:0; background:url("/assets/ext/miamifirstremodeling/kitchen-001/kitchen-003.webp") center 45%/cover; }
  .sh5__bg::after{ content:""; position:absolute; inset:0;
    background:linear-gradient(0deg,rgba(6,22,41,.90) 0%,rgba(6,22,41,.30) 52%,rgba(6,22,41,.50) 100%); }
  .sh5 .sh-crumb{ position:absolute; top:92px; left:56px; z-index:3; color:var(--bone); }
  .sh5__in{ position:relative; z-index:2; width:100%; max-width:1440px; margin:0 auto;
    padding:104px 56px 42px; color:var(--bone); display:flex; flex-direction:column; justify-content:flex-end; gap:12px; }
  .sh5__in .sh-sub{ max-width:52ch; }
  .sh5__cta{ display:inline-flex; align-items:center; gap:8px; align-self:flex-start; margin-top:4px;
    font-family:"IBM Plex Mono",monospace; font-size:11px; letter-spacing:.12em; text-transform:uppercase;
    color:var(--brass); text-decoration:none; }
  .sh5__cta:hover{ color:var(--brass-soft,#E4C596); }
  .sh5__cta span{ transition:transform .2s ease; }
  .sh5__cta:hover span{ transform:translateX(4px); }
  .sh5__stat{ position:absolute; right:56px; bottom:42px; z-index:3;
    background:#fff; color:var(--navy-deep); border-radius:0; padding:15px 20px;
    box-shadow:0 18px 40px rgba(6,22,41,.34); text-align:left; }
  .sh5__stat b{ display:block; font-family:"Archivo",sans-serif; font-weight:900; font-size:30px; line-height:1; color:var(--brass); }
  .sh5__stat small{ display:block; margin-top:6px; font-family:"IBM Plex Mono",monospace; font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-mute); }

  @media (max-width:860px){
    .sh1 .sh-crumb, .sh5 .sh-crumb{ top:80px; left:22px; }
    .sh1__in{ padding:118px 22px 38px; }
    .sh2__in{ padding:100px 22px 40px; }
    .sh3{ grid-template-columns:1fr; min-height:auto; }
    .sh3__photo{ min-height:210px; order:-1; }
    .sh3__text{ padding:34px 22px 34px; }
    .sh4__in{ padding:96px 22px 26px; }
    .sh5__in{ padding:150px 22px 34px; }
    .sh5__stat{ position:static; align-self:flex-start; margin-top:6px; box-shadow:none; }
    .subhero .vslider__badge{ top:66px; }
  }



        .featured__media .showroom__main{ border:1px solid var(--rule); }
        .featured__media .showroom__thumb{ border:1px solid var(--rule); box-shadow:none; }
        .featured__media .showroom__thumb.is-active{ border-color:var(--navy); box-shadow:none; }
      


.gallery-modal{position:fixed;inset:0;z-index:10000;display:flex;align-items:center;justify-content:center;}
.gallery-modal__overlay{position:absolute;inset:0;background:rgba(6,22,41,.94);backdrop-filter:blur(2px);}
.gallery-modal__container{position:relative;width:92%;max-width:1120px;max-height:92vh;z-index:10001;display:flex;flex-direction:column;gap:14px;}
.gallery-modal__close{position:absolute;top:8px;right:8px;width:42px;height:42px;border:none;border-radius:50%;background:rgba(6,22,41,.6);color:var(--bone);font-size:26px;line-height:42px;text-align:center;cursor:pointer;z-index:10003;transition:transform .2s,background .2s;}
.gallery-modal__close:hover{transform:scale(1.08);background:var(--brass);color:var(--navy-deep);}
.gallery-modal__cap{font-family:"IBM Plex Mono",monospace;font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--brass-soft);font-weight:600;padding-right:54px;}
.gallery-modal__image-wrapper{flex:1 1 auto;min-height:0;display:flex;align-items:center;justify-content:center;width:100%;}
.gallery-modal__image{max-width:100%;max-height:70vh;object-fit:contain;border:1px solid rgba(227,187,126,.25);user-select:none;-webkit-user-drag:none;transition:opacity .25s ease;}
.gallery-modal__image.is-swapping{opacity:0;}
.gallery-modal__thumbs{display:flex;gap:10px;overflow-x:auto;scroll-behavior:smooth;padding:2px 2px 4px;flex:0 0 auto;-ms-overflow-style:none;scrollbar-width:none;}
.gallery-modal__thumbs::-webkit-scrollbar{display:none;}
.gallery-modal__thumb{flex:0 0 calc((100% - 50px)/6);aspect-ratio:4/3;overflow:hidden;background:var(--navy-deep);border:2px solid transparent;padding:0;cursor:pointer;opacity:.5;transition:opacity .2s,border-color .2s,transform .2s;}
.gallery-modal__thumb img{width:100%;height:100%;object-fit:cover;display:block;pointer-events:none;}
.gallery-modal__thumb:hover{opacity:.85;transform:translateY(-2px);}
.gallery-modal__thumb.active{opacity:1;border-color:var(--brass);}
@media(max-width:900px){.gallery-modal__thumb{flex:0 0 calc((100% - 30px)/4);}}
@media(max-width:768px){.gallery-modal__container{width:94%;max-height:94vh;}.gallery-modal__image{max-height:62vh;}.gallery-modal__thumb{flex:0 0 calc((100% - 20px)/3);}}
@media(max-width:520px){.gallery-modal__thumb{flex:0 0 calc((100% - 14px)/2.6);}}
.work__card{cursor:pointer;} .work__card:focus-visible{outline:2px solid var(--brass);outline-offset:3px;}



  /* ported from kitchen page: cropped logo + category-nav fit + mobile brand fix */
  .navbar .brand__mark{ width:auto; height:42px; }
  .navbar .brand__mark img{ width:auto; height:100%; object-fit:contain; }
  .navbar__links > .navbar__item > a, .navbar__links > a{ white-space:nowrap; }
  @media (max-width:1300px){ .navbar__links{ gap:18px; font-size:12.5px; } .navbar{ gap:22px; } }
  @media (max-width:1120px){ .navbar__links{ gap:13px; font-size:12px; } }
  @media (max-width:1024px){
    .navbar__links, .navbar__phone{ display:none !important; }
    .navbar__burger{ display:flex !important; }
    .navbar__call{ display:inline-flex !important; }
  }
  @media (max-width:560px){
    .navbar{ padding:14px 14px; gap:10px; }
    .navbar.is-scrolled{ padding:10px 14px; }
    .navbar__right{ gap:8px; }
    .navbar__right .navbar__cta{ padding:9px 12px; font-size:10.5px; }
    .navbar__call{ width:38px; height:38px; }
    .navbar .brand{ display:flex; align-items:center; gap:9px; }
    .navbar .brand__mark{ width:auto; height:36px; }
    .navbar .brand__name{ display:block; font-size:15px; line-height:1.15; max-width:150px; }
    .navbar .brand__tag{ display:none; }
  }
  @media (max-width:360px){
    .navbar__right .navbar__cta{ padding:8px 10px; font-size:10px; }
    .navbar .brand__mark{ height:32px; }
    .navbar .brand__name{ font-size:14px; max-width:120px; }
  }



  /* Item 8 — mobile logo tag: hide when it can't sit inline, instead of wrapping under the logo */
  @media (max-width: 560px){ .navbar .brand__tag{ display:none !important; } }

  .vslider{ position:relative; width:100%; }
  .vslider__viewport{ overflow:hidden; height:auto; transition:height 420ms cubic-bezier(.4,0,.2,1); }
  .vslider__track{ display:flex; align-items:flex-start; will-change:transform;
    transition:transform 460ms cubic-bezier(.4,0,.2,1); }
  .vslide{ flex:0 0 100%; width:100%; min-width:100%; }
  .vslider.is-dragging .vslider__track{ transition:none; }

  /* floating version badge — top-right of the block */
  .vslider__badge{ position:absolute; top:18px; right:24px; z-index:8;
    display:inline-flex; align-items:center; gap:8px; padding:7px 13px;
    background:var(--navy-deep); color:var(--bone); border:1px solid rgba(201,149,75,.35);
    border-radius:999px; font-family:"IBM Plex Mono",monospace; font-size:10.5px;
    letter-spacing:.12em; text-transform:uppercase; box-shadow:0 6px 22px rgba(6,22,41,.22);
    pointer-events:none; }
  .vslider__badge b{ color:var(--brass-soft); font-weight:600; }
  .vslider__badge .vslider__badge-name{ color:var(--brass-soft); }
  @media (max-width:560px){ .vslider__badge{ top:10px; right:12px; font-size:9px; padding:5px 10px; } }

  /* arrows */
  .vslider__arrow{ position:absolute; top:50%; transform:translateY(-50%); z-index:9;
    width:46px; height:46px; border-radius:50%; border:1px solid rgba(201,149,75,.4);
    background:rgba(6,22,41,.86); color:var(--brass-soft); backdrop-filter:blur(6px);
    display:flex; align-items:center; justify-content:center; font-size:22px; line-height:1;
    opacity:0; /* item8 — hidden until the block is hovered */
    transition:background 200ms ease, transform 200ms ease, opacity 220ms ease; }
  .vslider:hover .vslider__arrow{ opacity:1; }
  .vslider:hover .vslider__arrow[disabled]{ opacity:.22; }
  .vslider__arrow:hover{ background:var(--brass); color:var(--navy-deep); }
  .vslider__arrow--prev{ left:14px; }
  .vslider__arrow--next{ right:14px; }
  .vslider__arrow[disabled]{ cursor:default; }
  @media (max-width:900px){ .vslider__arrow{ width:38px; height:38px; font-size:18px; }
    .vslider__arrow--prev{ left:6px; } .vslider__arrow--next{ right:6px; } }
  /* touch devices have no hover — keep arrows lightly visible, swipe is primary */
  @media (hover:none){ .vslider__arrow{ opacity:.5; } .vslider__arrow[disabled]{ opacity:.12; } }

  /* item1+item9 — logo now cropped tight (no transparent padding), so box height = glyph height.
     Sized just above the Free Estimate button so the mark reads as a proper logo. */
  .navbar .brand__mark{ width:auto; height:42px; }
  .navbar .brand__mark img{ width:auto; height:100%; object-fit:contain; }
  @media (max-width:560px){ .navbar .brand__mark{ width:auto; height:36px; } }
  @media (max-width:360px){ .navbar .brand__mark{ height:32px; } }
  /* mobile header fix — keep the burger on-screen + clean brand name */
  @media (max-width:560px){
    .navbar{ padding:14px 14px; gap:10px; }
    .navbar.is-scrolled{ padding:10px 14px; }
    .navbar__right{ gap:8px; }
    .navbar__right .navbar__cta{ padding:9px 12px; font-size:10.5px; }
    .navbar__call{ width:38px; height:38px; }
    /* undo the display:contents grid trick (tag is hidden here) — plain flex, readable name */
    .navbar .brand{ display:flex; align-items:center; gap:9px; }
    .navbar .brand__mark{ width:auto; height:36px; }
    .navbar .brand__name{ display:block; font-size:15px; line-height:1.15; max-width:150px; }
    .navbar .brand__tag{ display:none; }
  }
  @media (max-width:360px){
    .navbar__right .navbar__cta{ padding:8px 10px; font-size:10px; }
    .navbar .brand__name{ font-size:14px; max-width:120px; }
  }
  /* item10 — 6 category items: tighten nav on mid-width desktops so nothing wraps */
  .navbar__links > .navbar__item > a, .navbar__links > a{ white-space:nowrap; }
  @media (max-width:1300px){ .navbar__links{ gap:18px; font-size:12.5px; } .navbar{ gap:22px; } }
  @media (max-width:1120px){ .navbar__links{ gap:13px; font-size:12px; } }
  /* below 1024 the 6-item nav gets cramped — switch to the burger drawer early */
  @media (max-width:1024px){
    .navbar__links, .navbar__phone{ display:none !important; }
    .navbar__burger{ display:flex !important; }
    .navbar__call{ display:inline-flex !important; }
  }

  /* item2 — homepage-style stats band below the hero (variant 2) */
  .hero-statsband{ background:var(--navy-deep); border-top:1px solid rgba(201,149,75,.18); margin-top:36px; }
  .hero-statsband__grid{ display:grid; grid-template-columns:repeat(5,1fr); }
  .hero-statsband .st{ padding:24px 20px; border-right:1px solid rgba(246,242,232,.08); }
  .hero-statsband .st:last-child{ border-right:none; }
  .hero-statsband .st__v{ font-family:"Archivo",sans-serif; font-weight:900; font-size:42px; letter-spacing:-.03em; line-height:1; color:var(--brass); }
  .hero-statsband .st__v sub{ font-size:18px; color:var(--bone); vertical-align:super; letter-spacing:0; margin-left:2px; font-weight:700; }
  .hero-statsband .st__l{ font-family:"IBM Plex Mono",monospace; font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-quiet); margin-top:9px; }
  .hero-statsband .st__m{ font-size:12.5px; color:rgba(246,242,232,.6); line-height:1.4; margin-top:4px; }
  @media (max-width:900px){ .hero-statsband__grid{ grid-template-columns:repeat(2,1fr); }
    .hero-statsband .st{ border-bottom:1px solid rgba(246,242,232,.08); padding:20px 18px; }
    .hero-statsband .st:nth-child(2n){ border-right:none; } .hero-statsband .st__v{ font-size:34px; } }
  /* item2 — slim credential ribbon below hero (variant 3) */
  .hero-ribbon{ margin-top:30px; border-top:1px solid rgba(227,187,126,.28); border-bottom:1px solid rgba(227,187,126,.28); padding:16px 0; display:flex; flex-wrap:wrap; align-items:center; gap:10px 20px; font-family:"IBM Plex Mono",monospace; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--brass-soft); }
  .hero-ribbon b{ color:var(--bone); font-weight:600; }
  .hero-ribbon .sep{ opacity:.4; }
  /* item2 fix — pin the stats band flush to the very bottom of the hero on its slide */
  section.hero .vslider__foot{ position:absolute; left:0; right:0; bottom:9px; z-index:6; margin:0; }
  section.hero:has(.vslide[data-label="Stats band below"].is-active){ padding-bottom:0; }
  section.hero .vslide[data-label="Stats band below"] .hero-statsband{ padding-bottom:24px; }

  /* item4 — SEO guide v2: text + sticky TOC on the right; mobile = chips on top */
  .guide2{ display:grid; grid-template-columns:1fr 240px; gap:56px; align-items:start; margin-top:8px; }
  .guide2__body{ max-width:760px; }
  .guide2__body h3{ font-family:"Archivo",sans-serif; font-size:22px; letter-spacing:-.01em; margin:30px 0 10px; scroll-margin-top:110px; }
  .guide2__body > p:first-child{ font-size:19px; line-height:1.6; color:var(--ink-soft); }
  .guide2__body p{ color:var(--ink-mute); line-height:1.7; margin:0 0 16px; }
  .guide2__toc{ position:sticky; top:110px; align-self:start; border-left:2px solid var(--brass); padding-left:18px; display:flex; flex-direction:column; gap:11px; font-family:"IBM Plex Mono",monospace; font-size:11.5px; letter-spacing:.05em; text-transform:uppercase; }
  .guide2__toc a{ color:var(--ink-soft); transition:color .2s; }
  .guide2__toc a:hover{ color:var(--brass-deep); }
  .guide2__toc-h{ font-family:"IBM Plex Mono",monospace; font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-quiet); margin-bottom:4px; }
  /* item12 — collapsible guide text on slide 2 (like slide 1) */
  .guide2__hidden{ display:none; }
  .guide2.is-open .guide2__hidden{ display:block; }
  .guide2__toggle{ display:inline-flex; align-items:center; gap:10px; margin-top:20px; padding:12px 22px; background:none; border:1px solid var(--ink); border-radius:999px; font-family:"IBM Plex Mono",monospace; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink); transition:background .2s ease, color .2s ease; }
  .guide2__toggle:hover{ background:var(--ink); color:var(--bone); }
  .guide2__toggle-arrow{ display:inline-block; transition:transform .3s ease; }
  .guide2.is-open .guide2__toggle-arrow{ transform:rotate(180deg); }
  .guide2__chips{ display:none; }
  @media (max-width:900px){
    .guide2{ grid-template-columns:1fr; gap:0; }
    .guide2__toc{ display:none; }
    .guide2__chips{ display:flex; gap:9px; overflow-x:auto; -webkit-overflow-scrolling:touch; padding:4px 0 18px; margin-bottom:8px; scrollbar-width:none; }
    .guide2__chips::-webkit-scrollbar{ display:none; }
    .guide2__chips a{ flex:0 0 auto; padding:8px 14px; border:1px solid var(--rule); border-radius:999px; font-family:"IBM Plex Mono",monospace; font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); white-space:nowrap; }
  }

  /* item4 — SEO guide v3: collapsible subheadings with an expand icon on the right */
  .guide3{ max-width:820px; margin-top:8px; border-top:1px solid var(--rule); }
  .guide3__lede{ font-size:19px; line-height:1.6; color:var(--ink-soft); padding:22px 0; border-bottom:1px solid var(--rule); }
  .guide3__item{ border-bottom:1px solid var(--rule); }
  .guide3__item summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:20px 0; font-family:"Archivo",sans-serif; font-size:19px; letter-spacing:-.01em; }
  .guide3__item summary::-webkit-details-marker{ display:none; }
  .guide3__ic{ flex:0 0 auto; width:30px; height:30px; border-radius:50%; border:1px solid var(--rule-strong); position:relative; transition:transform .3s ease, background .2s; }
  .guide3__ic::before,.guide3__ic::after{ content:""; position:absolute; background:var(--brass-deep); border-radius:2px; top:50%; left:50%; transform:translate(-50%,-50%); }
  .guide3__ic::before{ width:12px; height:2px; }
  .guide3__ic::after{ width:2px; height:12px; transition:opacity .3s ease; }
  .guide3__item[open] .guide3__ic{ background:var(--brass); border-color:var(--brass); transform:rotate(180deg); }
  .guide3__item[open] .guide3__ic::before,.guide3__item[open] .guide3__ic::after{ background:var(--navy-deep); }
  .guide3__item[open] .guide3__ic::after{ opacity:0; }
  .guide3__c{ padding:0 0 22px; }
  .guide3__c p{ color:var(--ink-mute); line-height:1.7; margin:0 0 16px; max-width:720px; }

  /* item5 — reviews: horizontal peek-carousel on mobile */
  .reviews__more{ margin-top:30px; text-align:center; }
  .reviews__more a{ display:inline-flex; align-items:center; gap:9px; padding:13px 26px; border:1px solid var(--ink); border-radius:999px; font-family:"IBM Plex Mono",monospace; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink); transition:background .2s,color .2s; }
  .reviews__more a:hover{ background:var(--ink); color:var(--bone); }
  @media (max-width:760px){
    .miniReviews{ display:flex !important; overflow-x:auto; scroll-snap-type:x mandatory; gap:14px; -webkit-overflow-scrolling:touch; margin:0 -20px; padding:4px 20px 14px; scrollbar-width:none; }
    .miniReviews::-webkit-scrollbar{ display:none; }
    .miniReviews .miniReview{ flex:0 0 84%; scroll-snap-align:start; }
  }

  /* item7 — review/accreditation logo wall */
  .logowall{ display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:34px 54px; margin-top:8px; }
  .logowall img{ height:34px; width:auto; opacity:.78; filter:grayscale(1); transition:opacity .25s ease, filter .25s ease; }
  .logowall img:hover{ opacity:1; filter:none; }
  @media (max-width:560px){ .logowall{ gap:24px 32px; } .logowall img{ height:26px; } }
  /* reviews v3 — stacked review column (overrides the mobile carousel) */
  .miniReviews--stack{ display:flex !important; flex-direction:column; gap:16px; overflow:visible !important; margin:0 !important; padding:0 !important; }
  .miniReviews--stack .miniReview{ flex:none !important; }
  /* hero v4 — floating spec card */
  .hero-card{ background:rgba(6,22,41,.72); backdrop-filter:blur(10px); border:1px solid rgba(201,149,75,.3); border-radius:16px; padding:26px 28px; max-width:300px; }
  .hero-card__row{ display:flex; justify-content:space-between; align-items:baseline; padding:14px 0; border-bottom:1px solid rgba(227,187,126,.16); }
  .hero-card__row:last-child{ border-bottom:none; }
  .hero-card__v{ font-family:"Archivo",sans-serif; font-weight:800; font-size:22px; color:var(--brass-soft); }
  .hero-card__l{ font-family:"IBM Plex Mono",monospace; font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:rgba(246,242,232,.75); }
  .hero__split{ display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; }
  @media (max-width:900px){ .hero__split{ grid-template-columns:1fr; } .hero-card{ max-width:none; } }
  /* explore v5 — numbered index */
  .xlink-index{ display:grid; grid-template-columns:repeat(2,1fr); gap:0 48px; margin-top:8px; }
  .xlink-index a{ display:flex; align-items:baseline; gap:16px; padding:16px 0; border-bottom:1px solid var(--rule); color:var(--ink); transition:color .2s, padding-left .2s; }
  .xlink-index a:hover{ color:var(--brass-deep); padding-left:8px; }
  .xlink-index a .n{ font-family:"IBM Plex Mono",monospace; font-size:12px; color:var(--brass-deep); }
  .xlink-index a .t{ font-family:"Archivo",sans-serif; font-weight:600; font-size:17px; }
  @media (max-width:640px){ .xlink-index{ grid-template-columns:1fr; } }

  /* scope v4 — horizontal image accordion */
  .hacc{ display:flex; gap:10px; height:440px; margin-top:8px; }
  .hacc__panel{ position:relative; flex:1; min-width:56px; border-radius:0; overflow:hidden; cursor:pointer; background-size:cover; background-position:center; transition:flex .55s cubic-bezier(.4,0,.2,1); }
  .hacc__panel::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(6,22,41,.12) 20%,rgba(6,22,41,.9)); }
  .hacc__panel.is-active{ flex:6; }
  .hacc__num{ display:none; }
  .hacc__label{ position:absolute; z-index:2; bottom:20px; left:0; right:0; text-align:center; color:var(--bone); font-family:"Archivo",sans-serif; font-weight:700; font-size:16px; writing-mode:vertical-rl; transform:rotate(180deg); margin:0 auto; white-space:nowrap; transition:opacity .3s; }
  .hacc__panel.is-active .hacc__label{ opacity:0; }
  .hacc__content{ position:absolute; z-index:2; left:26px; right:26px; bottom:26px; color:var(--bone); opacity:0; transform:translateY(10px); transition:opacity .4s .15s, transform .4s .15s; pointer-events:none; }
  .hacc__panel.is-active .hacc__content{ opacity:1; transform:none; }
  .hacc__content h3{ font-family:"Archivo",sans-serif; font-size:25px; margin-bottom:8px; }
  .hacc__content p{ font-size:14px; line-height:1.6; color:rgba(246,242,232,.85); max-width:440px; }
  @media (max-width:760px){ .hacc{ flex-direction:column; height:auto; }
    .hacc__panel{ min-height:66px; } .hacc__panel.is-active{ min-height:340px; }
    .hacc__label{ writing-mode:horizontal-tb; transform:none; bottom:auto; top:22px; left:22px; right:auto; text-align:left; }
    .hacc__panel.is-active .hacc__content{ position:absolute; } }

  /* scope v5 — vertical accordion with image */
  .vacc{ border-top:1px solid var(--rule); margin-top:8px; }
  .vacc__item{ border-bottom:1px solid var(--rule); }
  .vacc__item summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 0; font-family:"Archivo",sans-serif; font-size:21px; letter-spacing:-.01em; }
  .vacc__item summary::-webkit-details-marker{ display:none; }
  .vacc__num{ font-family:"IBM Plex Mono",monospace; font-size:13px; color:var(--brass-deep); margin-right:14px; }
  .vacc__ic{ flex:0 0 auto; width:30px; height:30px; border-radius:50%; border:1px solid var(--rule-strong); position:relative; transition:transform .3s, background .2s; }
  .vacc__ic::before,.vacc__ic::after{ content:""; position:absolute; background:var(--brass-deep); top:50%; left:50%; transform:translate(-50%,-50%); border-radius:2px; }
  .vacc__ic::before{ width:12px; height:2px; }
  .vacc__ic::after{ width:2px; height:12px; transition:opacity .3s; }
  .vacc__item[open] .vacc__ic{ background:var(--brass); border-color:var(--brass); transform:rotate(180deg); }
  .vacc__item[open] .vacc__ic::before,.vacc__item[open] .vacc__ic::after{ background:var(--navy-deep); }
  .vacc__item[open] .vacc__ic::after{ opacity:0; }
  .vacc__body{ display:grid; grid-template-columns:1fr 380px; gap:34px; align-items:center; padding:2px 0 30px; }
  .vacc__body p{ color:var(--ink-mute); line-height:1.7; margin:0; font-size:15.5px; }
  .vacc__body img{ width:100%; height:230px; object-fit:cover; border-radius:12px; }
  @media (max-width:760px){ .vacc__body{ grid-template-columns:1fr; gap:18px; } .vacc__body img{ height:190px; } }

  /* item11 — internal cross-link block (3 variants) */
  .xlink-cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:14px; margin-top:8px; }
  .xlink-cards a{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:20px 22px; border:1px solid var(--rule); border-radius:12px; background:var(--bone); color:var(--ink); font-family:"Archivo",sans-serif; font-weight:600; font-size:16px; transition:border-color .2s, transform .2s, background .2s; }
  .xlink-cards a:hover{ border-color:var(--brass); transform:translateY(-2px); }
  .xlink-cards a span{ color:var(--brass-deep); transition:transform .2s; }
  .xlink-cards a:hover span{ transform:translateX(4px); }
  .xlink-tiles{ display:flex; gap:16px; margin-top:8px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:12px; scrollbar-width:none; }
  .xlink-tiles a{ position:relative; flex:0 0 260px; scroll-snap-align:start; display:block; height:180px; border-radius:0; overflow:hidden; }
  .xlink-tiles img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
  .xlink-tiles a:hover img{ transform:scale(1.06); }
  .xlink-tiles__cap{ position:absolute; inset:0; display:flex; align-items:flex-end; padding:18px; background:linear-gradient(180deg,transparent 40%,rgba(6,22,41,.78)); color:var(--bone); font-family:"Archivo",sans-serif; font-weight:700; font-size:17px; }
  /* mobile: horizontal swipe with the next tile peeking */
  @media (max-width:760px){
    .xlink-tiles{ display:flex; grid-template-columns:none; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; gap:14px; margin:8px -20px 0; padding:0 20px 12px; scrollbar-width:none; }
    .xlink-tiles::-webkit-scrollbar{ display:none; }
    .xlink-tiles a{ flex:0 0 82%; scroll-snap-align:start; height:200px; }
  }
  .xlink-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
  .xlink-tags a{ display:inline-flex; align-items:center; gap:7px; padding:10px 16px; border-radius:999px; background:var(--navy-deep); color:var(--bone); font-family:"IBM Plex Mono",monospace; font-size:12px; letter-spacing:.04em; transition:background .2s, transform .15s; }
  .xlink-tags a:hover{ background:var(--brass); color:var(--navy-deep); transform:translateY(-2px); }
  .xlink-tags a.is-accent{ background:var(--brass); color:var(--navy-deep); }
  .xlink-tags a.is-accent:hover{ background:var(--brass-soft); }

  /* dots + hint */
  .vslider__foot{ display:flex; flex-direction:column; align-items:center; gap:7px;
    padding:16px 0 4px; }
  .vslider__dots{ display:flex; gap:9px; }
  .vslider__dot{ width:9px; height:9px; border-radius:50%; border:0; padding:0;
    background:var(--rule-strong); transition:transform 200ms ease, background 200ms ease; }
  .vslider__dot.is-active{ background:var(--brass); transform:scale(1.35); }
  .vslider__hint{ font-family:"IBM Plex Mono",monospace; font-size:9.5px; letter-spacing:.14em;
    text-transform:uppercase; color:var(--ink-quiet); }
  @media (hover:hover){ .vslider__hint--touch{ display:none; } }
  @media (hover:none){ .vslider__hint--mouse{ display:none; } }

/* 07/09: shared boring stuff block — swipe on mobile (scope-grid pattern) */
@media (max-width: 600px) {
  .creds__grid { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 14px; scrollbar-width: none; }
  .creds__grid::-webkit-scrollbar { display: none; }
  .creds__grid > .cred { flex: 0 0 80%; scroll-snap-align: start; }
}

/* 07/09: mega menu of the last items (About) must not overflow the right edge */
.navbar__item:nth-last-of-type(-n+2) .navbar__mega { left: auto; right: 0; }
/* 07/09: work grid (gallery/home) — swipe on mobile */
@media (max-width: 600px) {
  .work__grid { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 14px; scrollbar-width: none; }
  .work__grid::-webkit-scrollbar { display: none; }
  .work__grid > .work__card { flex: 0 0 80%; scroll-snap-align: start; }
}
