﻿  :root {
    --ink: #0a0908;
    --ink-deep: #050504;
    --paper: #ece6d8;
    --paper-dim: #b3aa97;
    --paper-faint: #6c685e;
    --rule: #25231f;
    --rule-soft: #1a1916;
    --gold: #b9925a;
    --gold-bright: #d4a86a;
    --gold-deep: #7a6033;
    --surface: #131210;
  }

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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    background: var(--ink);
    color: var(--paper);
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    font-feature-settings: "kern", "liga", "calt";
  }

  /* Paper-grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.04;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
  }

  /* Subtle radial vignette */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at 50% 0%, transparent 0%, rgba(0,0,0,0.4) 100%);
  }

  /* Scroll progress bar */
  .progress {
    position: fixed;
    top: 0; left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-bright) 70%, transparent);
    z-index: 200;
    transition: width 0.15s linear;
  }

  .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
    position: relative;
    z-index: 2;
  }

  /* ---------- TYPOGRAPHY ---------- */
  .display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: -0.012em;
    line-height: 1.05;
    font-feature-settings: "kern", "liga", "dlig", "swsh";
  }
  .display em, .display i { font-style: italic; font-weight: 400; }

  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .section-no {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
  }

  .roman {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
  }

  a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
  a:hover { color: var(--gold-bright); }

  /* Hairline ornament */
  .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--gold-deep);
    padding: 32px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
  }
  .ornament::before, .ornament::after {
    content: '';
    height: 1px;
    flex: 0 0 60px;
    background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  }

  /* ---------- HEADER ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 110;
    padding: 24px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,9,8,0.92), rgba(10,9,8,0.0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .brand-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
  }
  .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--paper);
  }
  .brand-name .dot { color: var(--gold); margin: 0 5px; font-weight: 400; }
  .brand-suffix {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    color: var(--paper-dim);
    margin-top: 3px;
    text-transform: uppercase;
  }

  nav ul { list-style: none; display: flex; gap: 36px; }
  nav a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper-dim);
    position: relative;
  }
  nav a:hover { color: var(--paper); }
  nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -7px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  }
  nav a:hover::after { width: 100%; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 1px solid var(--rule);
    border-radius: 1px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: border-color 0.3s ease, background 0.3s ease;
  }

  .nav-toggle:hover {
    border-color: var(--gold);
    background: rgba(185, 146, 90, 0.06);
  }

  .nav-toggle-bar {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--paper);
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.25s ease,
                background 0.3s ease;
  }

  body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-toggle {
    border-color: var(--gold);
  }

  /* ---------- HERO ---------- */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 180px 0 100px;
    position: relative;
  }

  .hero-meta-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    margin-bottom: 60px;
    align-items: center;
  }
  .hero-meta-top .left {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
  }
  .hero-meta-top .center {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.08em;
    padding: 6px 24px;
    border: 1px solid var(--rule);
    border-radius: 1px;
  }
  .hero-meta-top .right {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
    text-align: right;
  }

  .hero h1 {
    font-size: clamp(48px, 8.6vw, 136px);
    font-weight: 300;
    color: var(--paper);
  }
  .hero h1 em { color: var(--gold); }

  .hero-bottom {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }

  .hero-lede {
    max-width: 540px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--paper-dim);
    font-weight: 300;
  }
  .hero-lede::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4em;
    color: var(--gold);
    font-weight: 400;
  }

  .hero-coords {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
  }
  .hero-coords > div { display: flex; flex-direction: column; gap: 8px; }
  .hero-coords .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
  }
  .hero-coords .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--paper);
    font-weight: 400;
    line-height: 1.15;
  }
  .hero-coords .value em { font-style: italic; color: var(--gold); }

  /* ---------- STANDING STATEMENT ---------- */
  .standing {
    padding: 140px 0 100px;
    border-top: 1px solid var(--rule);
    position: relative;
  }
  .standing::before {
    content: 'В·';
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: var(--gold);
    background: var(--ink);
    padding: 0 16px;
    line-height: 1;
  }
  .standing-body {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
  }
  .standing-body .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 80px;
    line-height: 0.5;
    color: var(--gold-deep);
    margin-bottom: 30px;
  }
  .standing-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--paper);
    letter-spacing: -0.005em;
  }
  .standing-body p em { font-style: italic; color: var(--gold); }
  .standing-body .attribution {
    margin-top: 44px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
  }

  /* ---------- SECTION HEAD ---------- */
  section.editorial {
    padding: 140px 0;
    border-top: 1px solid var(--rule);
  }

  .section-head {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    margin-bottom: 90px;
    align-items: start;
  }
  .section-head .left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 100px;
  }
  .section-head h2 {
    font-size: clamp(36px, 4.8vw, 68px);
    font-weight: 300;
    max-width: 13ch;
    line-height: 1.04;
  }
  .section-head h2 em { color: var(--gold); }
  .section-head .blurb {
    max-width: 580px;
    color: var(--paper-dim);
    font-size: 17px;
    line-height: 1.65;
    margin-top: 8px;
  }
  .section-head .roman-mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 64px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
  }

  /* ---------- PRACTICE ---------- */
  .practice-list {
    border-top: 1px solid var(--rule);
  }
  .practice-row {
    display: grid;
    grid-template-columns: 96px 1.4fr 2.4fr 1fr;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
    transition: background 0.6s ease, padding-left 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
  }
  .practice-row::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .practice-row:hover {
    background: linear-gradient(90deg, rgba(185, 146, 90, 0.04), transparent 60%);
    padding-left: 24px;
  }
  .practice-row:hover::before { width: 16px; }
  .practice-row .no {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--gold);
  }
  .practice-row h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--paper);
  }
  .practice-row .desc {
    font-size: 15px;
    color: var(--paper-dim);
    line-height: 1.6;
  }
  .practice-row .tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
    text-align: right;
  }

  /* ---------- STANDING / APPROACH GRID ---------- */
  .standing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .standing-cell {
    background: var(--ink);
    padding: 60px 52px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: background 0.5s ease;
  }
  .standing-cell:hover { background: var(--surface); }
  .standing-cell .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .standing-cell .no {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--gold);
  }
  .standing-cell .meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
  }
  .standing-cell h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.08;
    color: var(--paper);
  }
  .standing-cell h3 em { font-style: italic; color: var(--gold); }
  .standing-cell p {
    color: var(--paper-dim);
    font-size: 15.5px;
    line-height: 1.65;
    margin-top: auto;
  }

  /* ---------- REACH ---------- */
  .reach-frame {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .office {
    padding: 64px 44px;
    border-right: 1px solid var(--rule);
    position: relative;
    transition: background 0.5s ease;
  }
  .office:hover { background: var(--surface); }
  .office:last-child { border-right: none; }
  .office .role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .office .role::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
  }
  .office h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--paper);
    margin-bottom: 26px;
  }
  .office h4 em { font-style: italic; color: var(--gold); }
  .office .address {
    font-size: 14px;
    line-height: 1.7;
    color: var(--paper-dim);
  }
  .office .pin {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: var(--paper-faint);
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
  }
  .office .note {
    margin-top: 18px;
    font-size: 12px;
    color: var(--paper-faint);
    font-style: italic;
    line-height: 1.55;
  }

  /* ---------- ENGAGEMENT ---------- */
  .engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .engagement-step {
    background: var(--ink);
    padding: 50px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 280px;
  }
  .engagement-step .roman {
    font-size: 28px;
  }
  .engagement-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--paper);
  }
  .engagement-step p {
    font-size: 14px;
    color: var(--paper-dim);
    line-height: 1.6;
    margin-top: auto;
  }

  /* ---------- COUNSEL ---------- */
  .counsel-block {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0 20px;
  }
  .counsel-block .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 56px;
    line-height: 0.5;
    color: var(--gold-deep);
    margin-bottom: 24px;
  }
  .counsel-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--paper);
    margin-bottom: 28px;
  }
  .counsel-block p em { font-style: italic; color: var(--gold); }
  .counsel-block .meta {
    margin-top: 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
  }

  .counsel-disclosure {
    max-width: 760px;
    margin: 60px auto 0;
    padding: 32px;
    border: 1px solid var(--rule);
    border-radius: 1px;
    background: var(--surface);
  }
  .counsel-disclosure .head {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .counsel-disclosure p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--paper-dim);
  }

  /* ---------- CONTACT ---------- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 64px;
    padding-top: 40px;
  }
  .contact-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--paper);
    line-height: 1.15;
  }
  .contact-block h3 em { font-style: italic; color: var(--gold); }
  .contact-line {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 14.5px;
  }
  .contact-line:last-child { border-bottom: none; }
  .contact-line .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
    padding-top: 4px;
  }
  .contact-line .v { color: var(--paper); line-height: 1.65; }
  .contact-block .tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  /* ---------- FOOTER ---------- */
  footer {
    padding: 100px 0 50px;
    border-top: 1px solid var(--rule);
    background: var(--surface);
    position: relative;
    z-index: 2;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--rule);
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .footer-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--paper);
  }
  .footer-mark em { font-style: italic; color: var(--gold); }
  .footer-tag {
    font-size: 13.5px;
    color: var(--paper-dim);
    max-width: 380px;
    line-height: 1.65;
  }
  .footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    font-size: 13px;
    color: var(--paper-dim);
    padding: 5px 0;
    line-height: 1.5;
  }
  .footer-col a:hover { color: var(--paper); }

  .responsible-attorney {
    padding: 32px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
  }
  .responsible-attorney .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .responsible-attorney .value {
    font-size: 14px;
    color: var(--paper-dim);
    line-height: 1.7;
  }
  .responsible-attorney .value strong {
    color: var(--paper);
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    display: block;
    margin-bottom: 4px;
  }

  .disclaimer {
    padding-top: 36px;
    font-size: 11.5px;
    line-height: 1.75;
    color: var(--paper-faint);
  }
  .disclaimer p { margin-bottom: 16px; }
  .disclaimer strong { color: var(--paper-dim); font-weight: 500; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    margin-top: 28px;
    border-top: 1px solid var(--rule);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--paper-faint);
    text-transform: uppercase;
  }
  .footer-bottom .registration {
    text-align: right;
  }

  /* ---------- ANIMATION ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  .hero h1, .hero .hero-lede, .hero-coords, .hero-meta-top {
    opacity: 0;
    animation: fadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  }
  .hero-meta-top { animation-delay: 0.2s; }
  .hero .hero-lede { animation-delay: 0.7s; }
  .hero-coords { animation-delay: 1s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Desktop: nav sits in header bar (sibling, fixed top-right) */
  @media (min-width: 901px) {
    .site-nav {
      position: fixed;
      top: 0;
      right: 56px;
      z-index: 111;
      display: flex;
      align-items: center;
      height: 76px;
      min-height: 0;
      width: auto;
      padding: 0;
      background: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .site-nav[hidden] {
      display: block;
    }

    .site-nav ul {
      display: flex;
      gap: 36px;
    }
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1024px) {
    .section-head { grid-template-columns: 1fr; gap: 28px; }
    .section-head .left { position: static; }
    .engagement-grid { grid-template-columns: 1fr 1fr; }
    .standing-grid { grid-template-columns: 1fr; }
    .reach-frame { grid-template-columns: 1fr; }
    .office { border-right: none; border-bottom: 1px solid var(--rule); }
    .office:last-child { border-bottom: none; }
  }

  @media (max-width: 900px) {
    .nav-toggle { display: flex; }

    header {
      background: linear-gradient(to bottom, rgba(10, 9, 8, 0.98), rgba(10, 9, 8, 0.85));
    }

    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      min-height: 100vh;
      min-height: 100dvh;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding:
        calc(72px + env(safe-area-inset-top, 0px))
        28px
        calc(24px + env(safe-area-inset-bottom, 0px));
      box-sizing: border-box;
      background: rgba(10, 9, 8, 0.98);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  visibility 0.4s;
    }

    .site-nav[hidden] {
      display: flex;
    }

    body.nav-open .site-nav {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .site-nav ul {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
      padding: 0;
    }

    .site-nav li {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid var(--rule);
    }

    .site-nav li:first-child {
      border-top: 1px solid var(--rule);
    }

    .site-nav a {
      display: block;
      padding: 20px 16px;
      font-size: 11px;
      letter-spacing: 0.24em;
    }

    .site-nav a::after {
      display: none;
    }

    body.nav-open header {
      background: rgba(10, 9, 8, 0.98);
    }
  }

  @media (max-width: 768px) {
    .container { padding: 0 28px; }
    header { padding: 18px 28px; }
    .brand-suffix { display: none; }
    .hero { padding: 140px 0 80px; }
    .hero-meta-top { grid-template-columns: 1fr; text-align: center; gap: 14px; margin-bottom: 40px; }
    .hero-meta-top .right { text-align: center; }
    .hero-bottom { grid-template-columns: 1fr; gap: 50px; }
    .hero-coords { grid-template-columns: 1fr 1fr; gap: 22px; }
    .practice-row { grid-template-columns: 50px 1fr; gap: 16px; padding: 32px 0; }
    .practice-row .desc, .practice-row .tag { grid-column: 2 / 3; }
    .practice-row:hover { padding-left: 12px; }
    .standing-cell, .engagement-step { padding: 40px 28px; min-height: auto; }
    .engagement-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
    .responsible-attorney { grid-template-columns: 1fr; gap: 12px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .footer-bottom .registration { text-align: center; }
  }
  .choices[data-type*=select-one]::after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #33333300 transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none;
}