  :root {
    --ink: #0a0909;
    --ivory: #f3f0e8;
    --paper: #e8e2d7;
    --gold: #c7a86c;
    --line: rgba(10, 9, 9, 0.18);
    --white-line: rgba(255, 255, 255, 0.18);
  }
  * {
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
  }
  .grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .site-header {
    height: 88px;
    padding: 0 4vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    border-bottom: 1px solid var(--white-line);
    color: white;
  }
  .brand {
    display: flex;
    gap: 13px;
    align-items: center;
    color: inherit;
    text-decoration: none;
  }
  .monogram {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    line-height: 1;
    color: var(--gold);
  }
  .brand-name {
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    line-height: 1.25;
    font-weight: 600;
  }
  .site-header nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .site-header nav a {
    color: white;
    text-decoration: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
  }
  .site-header nav a:not(.nav-cta) {
    opacity: 0.72;
    transition: 0.2s;
  }
  .site-header nav a:hover {
    opacity: 1;
  }
  .nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 13px 17px;
  }
  .nav-cta span,
  .button span {
    margin-left: 16px;
  }
  .menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 12px;
  }
  .hero {
    min-height: 100vh;
    background: var(--ink);
    color: white;
    position: relative;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    padding-top: 150px;
  }
  .hero-art {
    position: absolute;
    inset: 0;
    background-image: url('hero-editorial.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
  }
  .hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.04) 75%), linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
    z-index: -1;
  }
  .hero-content {
    padding: 0 4vw 9.5rem;
    width: min(920px, 72vw);
  }
  .eyebrow,
  .section-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 600;
  }
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd5c9;
  }
  .eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--gold);
  }
  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }
  h1,
  h2 {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.035em;
    line-height: 1.06;
    text-wrap: balance;
  }
  h1 {
    font-size: clamp(2.6rem, 5.2vw, 5.4rem);
    font-weight: 500;
    margin: 22px 0 26px;
  }
  h1 em,
  h2 em {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--gold);
  }
  .hero-copy {
    font-size: 1.08rem;
    max-width: 620px;
    color: #ded9d0;
    margin-bottom: 35px;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 215px;
    padding: 17px 20px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid;
    cursor: pointer;
    font-family: inherit;
  }
  .button-light {
    background: var(--ivory);
    border-color: var(--ivory);
    color: var(--ink);
  }
  .button-dark {
    background: var(--ink);
    border-color: var(--ink);
    color: white;
  }
  .text-link {
    color: white;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-underline-offset: 7px;
  }
  .text-link span {
    margin-left: 10px;
  }
  .hero-foot {
    position: absolute;
    left: 4vw;
    right: 4vw;
    bottom: 27px;
    padding-top: 19px;
    border-top: 1px solid var(--white-line);
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: #bdb8af;
  }
  .section-pad {
    padding: 120px 6vw;
  }
  .section-label {
    color: #766e63;
    margin-bottom: 50px;
  }
  .statement-grid {
    display: grid;
    grid-template-columns: 1.65fr 0.75fr;
    gap: 9vw;
    align-items: end;
  }
  .statement h2,
  .section-head h2,
  .process-title h2,
  .contact h2 {
    font-size: clamp(2.1rem, 3.6vw, 3.9rem);
    font-weight: 500;
    margin-bottom: 0;
  }
  .statement-copy {
    font-size: 1.02rem;
  }
  .statement-copy p {
    margin-bottom: 26px;
  }
  .proof-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 100px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .proof-row div {
    padding: 35px 28px;
    border-right: 1px solid var(--line);
  }
  .proof-row div:first-child {
    padding-left: 0;
  }
  .proof-row div:last-child {
    border: 0;
  }
  .proof-row strong {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    display: block;
  }
  .proof-row span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #6f675c;
  }
  .services {
    background: var(--ink);
    color: white;
  }
  .services .section-label {
    color: #9f968b;
  }
  .section-head {
    display: grid;
    grid-template-columns: 1.3fr 0.5fr;
    align-items: end;
    gap: 10vw;
    margin-bottom: 70px;
  }
  .section-head p:last-child {
    color: #aba69e;
    max-width: 390px;
  }
  .service-list {
    border-top: 1px solid var(--white-line);
  }
  .service-card {
    display: grid;
    grid-template-columns: 70px 1fr 50px;
    gap: 20px;
    align-items: start;
    padding: 35px 0;
    border-bottom: 1px solid var(--white-line);
  }
  .service-no {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    padding-top: 9px;
  }
  .service-card h3 {
    font-family: 'Manrope';
    font-size: clamp(1.3rem, 1.9vw, 1.85rem);
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-bottom: 9px;
  }
  .service-card p {
    max-width: 660px;
    color: #aca79f;
    margin: 0;
  }
  .service-mark {
    font-size: 1.5rem;
    color: var(--gold);
    text-align: right;
  }
  .signature {
    background: var(--gold);
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .signature-inner {
    border: 1px solid rgba(10, 9, 9, 0.38);
    padding: 70px;
    text-align: center;
    position: relative;
  }
  .signature .section-label {
    color: #4d3b21;
    margin-bottom: 22px;
  }
  .mini {
    font-family: 'Playfair Display', serif;
    font-style: italic;
  }
  .signature h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(2.8rem, 6vw, 6rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin: 22px 0 14px;
  }
  .signature sup {
    font-family: 'DM Sans';
    font-size: 0.9rem;
    vertical-align: top;
    letter-spacing: 0;
  }
  .signature-lede {
    font-size: 1.1rem;
    max-width: 570px;
    margin: 0 auto 35px;
  }
  .deliverables {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 38px;
  }
  .deliverables span {
    border: 1px solid rgba(10, 9, 9, 0.3);
    border-radius: 100px;
    padding: 9px 15px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .process-layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 10vw;
  }
  .process-title {
    position: sticky;
    top: 60px;
    align-self: start;
  }
  .process-title p {
    max-width: 390px;
    margin-top: 28px;
  }
  .steps {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .steps li {
    display: grid;
    grid-template-columns: 55px 1fr;
    border-top: 1px solid var(--line);
    padding: 35px 0;
  }
  .steps li:last-child {
    border-bottom: 1px solid var(--line);
  }
  .steps li > span {
    color: #8b7c69;
    font-size: 0.7rem;
  }
  .steps h3 {
    font-family: 'Manrope';
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .steps p {
    margin: 0;
    color: #675f54;
  }
  .fit {
    background: var(--paper);
  }
  .fit-card {
    background: var(--ivory);
    padding: 7vw;
    border-left: 7px solid var(--gold);
  }
  .fit-card h2 {
    font-size: clamp(2.1rem, 4vw, 4.4rem);
    font-weight: 500;
    max-width: 900px;
    margin-bottom: 60px;
  }
  .fit-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .fit-points span {
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .fit-points span::before {
    content: '✦';
    color: var(--gold);
    margin-right: 12px;
  }
  .contact {
    background: var(--ink);
    color: white;
  }
  .contact .section-label {
    color: #9f968b;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 10vw;
  }
  .contact-grid > div > p {
    max-width: 520px;
    color: #aaa59e;
    margin-top: 30px;
  }
  .inquiry-form {
    display: grid;
    gap: 22px;
  }
  .inquiry-form label {
    display: grid;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    color: #aaa59e;
  }
  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--white-line);
    color: white;
    padding: 12px 0;
    font: 400 1rem/1.5 'DM Sans';
    border-radius: 0;
  }
  .inquiry-form select {
    color: #d8d4cc;
  }
  .inquiry-form option {
    color: var(--ink);
  }
  .inquiry-form textarea {
    resize: vertical;
  }
  .inquiry-form input:focus,
  .inquiry-form select:focus,
  .inquiry-form textarea:focus {
    outline: 0;
    border-color: var(--gold);
  }
  .inquiry-form .button {
    margin-top: 10px;
  }
  .form-status {
    min-height: 24px;
    color: var(--gold);
    font-size: 0.85rem;
  }
  footer {
    background: #050505;
    color: white;
    padding: 80px 6vw 28px;
  }
  .footer-brand {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-brand .monogram {
    font-size: 4rem;
  }
  .footer-brand h2 {
    font-family: 'Manrope';
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 500;
    margin: 0;
  }
  .footer-links {
    display: flex;
    gap: 30px;
    margin: 65px 0;
  }
  .footer-links a,
  .footer-bottom a {
    color: white;
    text-decoration: none;
  }
  .footer-links a {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.72rem;
  }
  .footer-bottom {
    border-top: 1px solid var(--white-line);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #8b8985;
  }
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.75s ease,
      transform 0.75s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  @media (max-width: 800px) {
    .site-header {
      height: 74px;
    }
    .menu-toggle {
      display: grid;
      gap: 5px;
      z-index: 8;
    }
    .menu-toggle span:not(.sr-only) {
      display: block;
      width: 26px;
      height: 1px;
      background: #fff;
    }
    .site-header nav {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--ink);
      flex-direction: column;
      justify-content: center;
      gap: 30px;
    }
    .site-header nav.open {
      display: flex;
    }
    .site-header nav a {
      font-size: 1rem;
    }
    .nav-cta {
      margin-top: 20px;
    }
    .hero {
      min-height: 720px;
    }
    .hero-art {
      background-position: 62% center;
      opacity: 0.7;
    }
    .hero-shade {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35)), linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
    }
    .hero-content {
      width: auto;
      padding: 0 6vw 8.5rem;
    }
    .hero-copy {
      font-size: 1rem;
    }
    .hero-actions {
      align-items: flex-start;
      flex-direction: column;
      gap: 20px;
    }
    .hero-foot {
      left: 6vw;
      right: 6vw;
    }
    .hero-foot span:last-child {
      display: none;
    }
    .section-pad {
      padding: 80px 6vw;
    }
    .statement-grid,
    .section-head,
    .process-layout,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 45px;
    }
    .statement-grid {
      align-items: start;
    }
    .proof-row {
      grid-template-columns: 1fr;
      margin-top: 65px;
    }
    .proof-row div,
    .proof-row div:first-child {
      padding: 22px 0;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }
    .proof-row div:last-child {
      border-bottom: 0;
    }
    .section-head {
      margin-bottom: 45px;
    }
    .service-card {
      grid-template-columns: 38px 1fr 22px;
    }
    .signature {
      padding: 30px 4vw;
    }
    .signature-inner {
      padding: 55px 20px;
    }
    .deliverables {
      gap: 7px;
    }
    .process-title {
      position: static;
    }
    .fit-card {
      padding: 55px 7vw;
    }
    .fit-points {
      grid-template-columns: 1fr;
    }
    .footer-links {
      flex-wrap: wrap;
    }
    .footer-bottom {
      gap: 18px;
      flex-direction: column;
    }
    .footer-bottom span:nth-child(2) {
      display: none;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
  .brand-logo {
    display: block;
    width: 155px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
  }
  .footer-logo {
    display: block;
    width: min(360px, 76vw);
    height: auto;
  }
  .consent {
    grid-template-columns: 20px 1fr !important;
    align-items: start;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.84rem !important;
    line-height: 1.5;
    color: #c7c1b8 !important;
  }
  .consent input {
    appearance: auto !important;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--gold);
  }
  .consent a {
    color: var(--gold);
    text-underline-offset: 3px;
  }
  .form-status a {
    color: var(--gold);
    text-underline-offset: 3px;
  }
  .form-honey {
    display: none !important;
  }
  .thanks-main {
    min-height: 100vh;
    background: var(--ink);
    color: white;
    display: grid;
    place-items: center;
    padding: 130px 6vw 70px;
  }
  .thanks-card {
    width: min(850px, 100%);
    border: 1px solid var(--white-line);
    padding: clamp(40px, 8vw, 95px);
    text-align: center;
  }
  .thanks-mark {
    font:
      500 3rem/1 'Playfair Display',
      serif;
    color: var(--gold);
  }
  .thanks-card h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    margin: 25px 0;
  }
  .thanks-card p {
    max-width: 570px;
    margin: 0 auto 35px;
    color: #bdb7ae;
    font-size: 1.05rem;
  }
  .legal-body {
    background: var(--ivory);
  }
  .legal-header {
    position: relative;
    background: var(--ink);
  }
  .legal-main {
    padding: 90px 6vw 120px;
  }
  .legal-hero {
    max-width: 1000px;
    padding: 70px 0 65px;
    border-bottom: 1px solid var(--line);
  }
  .legal-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    color: var(--ink);
    margin: 18px 0 24px;
  }
  .legal-hero p {
    max-width: 720px;
    font-size: 1.08rem;
    color: #60584e;
  }
  .legal-effective {
    font-size: 0.72rem !important;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #82786c !important;
  }
  .legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 760px);
    gap: 9vw;
    padding-top: 70px;
  }
  .legal-nav {
    position: sticky;
    top: 35px;
    align-self: start;
    border-top: 1px solid var(--line);
  }
  .legal-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: #655d53;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .legal-content h2 {
    font-size: 1.6rem;
    line-height: 1.12;
    margin: 55px 0 17px;
  }
  .legal-content h2:first-child {
    margin-top: 0;
  }
  .legal-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.12rem;
    margin: 28px 0 10px;
  }
  .legal-content p,
  .legal-content li {
    color: #4f4941;
  }
  .legal-content ul {
    padding-left: 20px;
  }
  .legal-content li {
    margin-bottom: 9px;
  }
  .legal-callout {
    margin: 32px 0;
    padding: 24px;
    border-left: 4px solid var(--gold);
    background: var(--paper);
  }
  .legal-callout strong {
    display: block;
    margin-bottom: 6px;
  }
  .legal-back {
    display: inline-block;
    margin-top: 60px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    text-underline-offset: 5px;
  }
  @media (max-width: 800px) {
    .brand-logo {
      width: 115px;
      height: 58px;
    }
    .legal-main {
      padding-top: 50px;
    }
    .legal-hero {
      padding-top: 35px;
    }
    .legal-layout {
      grid-template-columns: 1fr;
      gap: 45px;
    }
    .legal-nav {
      position: static;
    }
    .footer-logo {
      width: 250px;
    }
  }
  .roster-hero {
    min-height: 690px;
    background: var(--ink);
    color: white;
    padding: 180px 6vw 75px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
  }
  .roster-hero::after {
    content: 'M';
    position: absolute;
    right: -0.02em;
    bottom: -0.35em;
    font:
      500 min(70vw, 850px)/1 'Playfair Display',
      serif;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(199, 168, 108, 0.19);
    pointer-events: none;
  }
  .roster-hero-inner {
    position: relative;
    z-index: 1;
  }
  .roster-hero h1 {
    font-size: clamp(3.2rem, 7vw, 7rem);
    margin: 18px 0 26px;
    max-width: 1000px;
  }
  .roster-hero-copy {
    max-width: 610px;
    color: #bdb7ae;
    font-size: 1.08rem;
  }
  .roster-counts {
    display: flex;
    gap: 55px;
    margin-top: 60px;
  }
  .roster-counts div {
    border-top: 1px solid var(--white-line);
    padding-top: 15px;
    min-width: 170px;
  }
  .roster-counts strong {
    font:
      500 2.3rem/1 'Playfair Display',
      serif;
    font-variant-numeric: tabular-nums;
    color: var(--gold);
    display: block;
  }
  .roster-counts span {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #aaa49b;
  }
  .roster-section {
    padding: 110px 6vw;
  }
  .roster-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 55px;
  }
  .roster-section-head h2 {
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    font-weight: 500;
    margin: 0;
  }
  .roster-section-head p {
    max-width: 420px;
    color: #6d655b;
  }
  .current-list {
    border-top: 1px solid var(--line);
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .current-list li {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }
  .current-list .number {
    color: #8a7e6e;
    font-size: 0.72rem;
  }
  .current-list .name {
    font:
      500 clamp(1.5rem, 2.8vw, 3rem)/1.1 'Manrope',
      sans-serif;
    letter-spacing: -0.03em;
  }
  .current-list .status {
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 7px 11px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.62rem;
    color: #6b6257;
  }
  .past-roster {
    background: var(--ink);
    color: white;
  }
  .past-roster .section-label,
  .past-roster .roster-section-head p {
    color: #aaa49b;
  }
  .past-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--white-line);
    border-left: 1px solid var(--white-line);
  }
  .past-card {
    min-height: 170px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--white-line);
    border-bottom: 1px solid var(--white-line);
  }
  .past-card span {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.12em;
  }
  .past-card h3 {
    font:
      500 clamp(1.1rem, 1.5vw, 1.5rem)/1.15 'Manrope',
      sans-serif;
    margin: 0;
  }
  .roster-cta {
    background: var(--gold);
    text-align: center;
    padding: 100px 6vw;
  }
  .roster-cta h2 {
    font-size: clamp(2.2rem, 4.6vw, 4.8rem);
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto 35px;
  }
  .roster-cta p {
    max-width: 560px;
    margin: 0 auto 30px;
  }
  @media (max-width: 800px) {
    .roster-hero {
      min-height: 620px;
      padding: 135px 6vw 65px;
    }
    .roster-hero h1 {
      font-size: clamp(2.8rem, 13vw, 4.4rem);
    }
    .roster-counts {
      gap: 20px;
    }
    .roster-counts div {
      min-width: 0;
      flex: 1;
    }
    .roster-section {
      padding: 75px 6vw;
    }
    .roster-section-head {
      display: block;
    }
    .roster-section-head p {
      margin-top: 20px;
    }
    .current-list li {
      grid-template-columns: 42px 1fr;
    }
    .current-list .status {
      display: none;
    }
    .past-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .past-card {
      min-height: 135px;
      padding: 18px;
    }
  }

  /* ==========================================================
   Interactive layer (v2)
   Sticky header, scroll progress, hero entrance + parallax,
   hover/focus states, staggered reveals, form states, 404.
   ========================================================== */

  /* Skip link */
  .skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 30;
    background: var(--gold);
    color: var(--ink);
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
  }
  .skip-link:focus {
    top: 12px;
  }

  /* Keyboard focus */
  a:focus-visible,
  button:focus-visible,
  .inquiry-form input:focus-visible,
  .inquiry-form select:focus-visible,
  .inquiry-form textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
  }

  /* Scroll progress bar (injected by site.js) */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 20;
    background: var(--gold);
    transform-origin: 0 50%;
    transform: scaleX(0);
    pointer-events: none;
  }

  /* Sticky header: fixed on dark-hero pages, solid once you scroll */
  .site-header:not(.legal-header) {
    position: fixed;
    transition:
      height 0.35s ease,
      border-color 0.35s ease;
  }
  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(10, 9, 9, 0.82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .site-header.is-scrolled {
    height: 70px;
    border-color: rgba(255, 255, 255, 0.08);
  }
  .site-header.is-scrolled::before {
    opacity: 1;
  }
  .brand-logo {
    transition: height 0.35s ease;
  }
  .site-header.is-scrolled .brand-logo {
    height: 56px;
  }

  /* Nav: animated underline + active section */
  .site-header nav a:not(.nav-cta) {
    position: relative;
  }
  .site-header nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .site-header nav a:not(.nav-cta):hover::after,
  .site-header nav a.is-active::after {
    transform: scaleX(1);
  }
  .site-header nav a.is-active {
    opacity: 1 !important;
  }
  .nav-cta {
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease;
  }
  .nav-cta:hover {
    background: var(--ivory);
    color: var(--ink) !important;
    border-color: var(--ivory);
  }
  .menu-toggle span:not(.sr-only) {
    transition: transform 0.3s ease;
  }
  .menu-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }
  body.nav-locked {
    overflow: hidden;
  }

  /* Buttons */
  .button {
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      transform 0.15s ease;
  }
  .button span,
  .nav-cta span,
  .text-link span {
    display: inline-block;
    transition: transform 0.25s ease;
  }
  .button:hover span,
  .nav-cta:hover span {
    transform: translate(3px, -3px);
  }
  .text-link:hover span {
    transform: translateY(3px);
  }
  .button-light:hover {
    background: var(--gold);
    border-color: var(--gold);
  }
  .button-dark:hover {
    background: transparent;
    color: var(--ink);
  }
  .button:active {
    transform: translateY(1px);
  }
  .button[disabled] {
    opacity: 0.65;
    cursor: progress;
  }
  .hero-content.reveal {
    opacity: 1;
    transform: none;
  }
  .hero-content > * {
    opacity: 0;
    transform: translateY(22px);
    animation: heroIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .hero-content > :nth-child(1) {
    animation-delay: 0.35s;
  }
  .hero-content > :nth-child(2) {
    animation-delay: 0.5s;
  }
  .hero-content > :nth-child(3) {
    animation-delay: 0.7s;
  }
  .hero-content > :nth-child(4) {
    animation-delay: 0.85s;
  }
  .hero-foot {
    opacity: 0;
    animation: heroIn 1s 1.1s ease forwards;
  }
  @keyframes heroIn {
    to {
      opacity: 1;
      transform: none;
    }
  }
  .eyebrow span {
    transform-origin: left;
    animation: lineGrow 1s 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  @keyframes lineGrow {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }

  /* Staggered reveals (delay set by site.js via --d) */
  .reveal {
    transition-delay: var(--d, 0s);
  }

  /* Service rows */
  .service-card {
    position: relative;
    transition: padding-left 0.35s ease;
  }
  .service-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  .service-card h3 {
    transition: color 0.3s ease;
  }
  .service-mark {
    transition: transform 0.45s ease;
  }
  .service-card:hover {
    padding-left: 14px;
  }
  .service-card:hover::before {
    transform: scaleX(1);
  }
  .service-card:hover h3 {
    color: var(--gold);
  }
  .service-card:hover .service-mark {
    transform: rotate(90deg);
  }

  /* Signature deliverables pop in once the card is visible */
  .deliverables span {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.45s ease,
      transform 0.45s ease,
      background 0.25s ease,
      color 0.25s ease;
    transition-delay: calc(var(--i, 0) * 70ms + 0.25s);
  }
  .signature-inner.visible .deliverables span {
    opacity: 1;
    transform: none;
  }
  .deliverables span:hover {
    background: var(--ink);
    color: var(--gold);
    transition-delay: 0s;
  }

  /* Process steps */
  .steps li {
    transition: padding-left 0.35s ease;
  }
  .steps li > span {
    transition: color 0.3s ease;
  }
  .steps li:hover {
    padding-left: 10px;
  }
  .steps li:hover > span {
    color: var(--ink);
  }

  /* Fit points */
  .fit-points span {
    transition: border-color 0.3s ease;
  }
  .fit-points span:hover {
    border-color: var(--gold);
  }

  /* Roster */
  .current-list li {
    transition: padding-left 0.35s ease;
  }
  .current-list .name {
    transition: color 0.3s ease;
  }
  .current-list li:hover {
    padding-left: 12px;
  }
  .current-list li:hover .name {
    color: #8a6d38;
  }
  .past-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .past-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .past-card span,
  .past-card h3 {
    transition: color 0.3s ease;
  }
  .past-card:hover::before {
    transform: none;
  }
  .past-card:hover span,
  .past-card:hover h3 {
    color: var(--ink);
  }

  /* Footer */
  .footer-links a {
    opacity: 0.75;
    transition: opacity 0.2s ease;
  }
  .footer-links a:hover {
    opacity: 1;
  }

  /* Form states */
  .inquiry-form label {
    position: relative;
  }
  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    transition: border-color 0.25s ease;
  }
  .inquiry-form .is-invalid {
    border-color: #d98b7a !important;
  }
  .field-error {
    display: block;
    min-height: 0;
    font-size: 0.74rem;
    letter-spacing: 0;
    text-transform: none;
    color: #e6a594;
  }
  .field-error:empty {
    display: none;
  }
  .form-status.is-error {
    color: #e6a594;
  }
  .button .spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }
  .button.is-loading .spinner {
    display: inline-block;
  }
  .button.is-loading .arrow {
    display: none;
  }
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* Thank-you page */
  .thanks-mark {
    display: inline-block;
    animation: markSpin 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  @keyframes markSpin {
    from {
      opacity: 0;
      transform: rotate(-120deg) scale(0.4);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  .thanks-card > *:not(.thanks-mark) {
    opacity: 0;
    transform: translateY(16px);
    animation: heroIn 0.8s ease forwards;
  }
  .thanks-card > :nth-child(2) {
    animation-delay: 0.35s;
  }
  .thanks-card > :nth-child(3) {
    animation-delay: 0.5s;
  }
  .thanks-card > :nth-child(4) {
    animation-delay: 0.65s;
  }
  .thanks-card > :nth-child(5) {
    animation-delay: 0.8s;
  }

  @media (max-width: 800px) {
    .site-header.is-scrolled {
      height: 64px;
    }
    .site-header.is-scrolled .brand-logo {
      height: 48px;
    }
    .site-header nav a::after {
      display: none;
    }
    .service-card:hover,
    .steps li:hover,
    .current-list li:hover {
      padding-left: 0;
    }
  }
  @media (hover: none) {
    .service-card:hover,
    .steps li:hover,
    .current-list li:hover {
      padding-left: 0;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-delay: 0s !important;
      transition-duration: 0.01ms !important;
      transition-delay: 0s !important;
    }
    .hero-art {
      translate: none;
    }
    .scroll-progress {
      display: none;
    }
  }
  .button .label {
    margin-left: 0 !important;
  }
  .button:hover .label {
    transform: none !important;
  }
  .button .spinner {
    margin-left: 16px;
  }

  /* 404 */
  .notfound-code {
    font:
      500 clamp(4rem, 10vw, 7rem)/1 'Playfair Display',
      serif;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 10px;
  }
  .consent .field-error {
    grid-column: 1/-1;
  }