/* ============================================================
   Amura Audit — Minimalist institutional theme
   Inter for all text, IBM Plex Mono for regulatory labels/numerals.
   High-contrast white/near-black with slate-blue accent.
   ============================================================ */

:root {
  --paper:        #ffffff;
  --paper-2:      #F9FAFB;
  --ink:          #111827;
  --ink-soft:     #374151;
  --muted:        #6b7280;
  --accent:          #3B82F6;
  --accent-dark:     #2563EB;
  --accent-muted:    #EFF6FF;
  --line:         #E5E7EB;
  --line-strong:  #d1d5db;

  /* Two-register type system: Inter for all legal/editorial copy; IBM Plex Mono for
     technical indices, regulatory labels, eyebrows, numerals and nav items. */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* Texture vars — overridden per theme */
  --tex-dot: rgba(59,79,206,.12);

  --radius:      2px;
  --maxw:        1100px;
  --margin-col:  48px;
  --header-h:    66px;

  font-family: var(--font-sans);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2 {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 800;
  margin: 0 0 .4em;
  line-height: 1.03;
  letter-spacing: -0.05em;
}
h1 { font-size: clamp(3.2rem, 6.5vw, 6.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); letter-spacing: -0.04em; }
h3 {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 .35em;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  display: block;
  margin: 0 0 1rem;
}

/* ---------- Section layout ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--paper-2); }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 580px; }
.section-lead { color: var(--muted); font-size: 1.02rem; margin: .5em 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .04em;
  padding: .9em 1.9em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-sm { padding: .5em 1.1em; font-size: .78rem; }
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark { display: block; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color .15s;
}
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .2s;
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* ---------- Language toggle ---------- */
.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-btn {
  background: none;
  border: 0;
  padding: .3em .65em;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lang-btn:not(:last-child) { border-right: 1.5px solid var(--line-strong); }
.lang-btn.active { background: var(--ink); color: #fff; }
.lang-btn:hover:not(.active) { color: var(--ink); }

/* ---------- Mobile nav toggle ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 6px 8px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.page-body { display: block; }
.page-main { min-width: 0; }

/* Persistent left margin column */
.margin-col {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  overflow: hidden;
  align-self: start;
  z-index: 10;
}
.mc-brand {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .7;
  user-select: none;
}
.mc-section {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .05em;
  transition: opacity .3s;
  user-select: none;
}
.mc-copy {
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: .56rem;
  font-weight: 400;
  color: var(--muted);
  opacity: .5;
  letter-spacing: .1em;
  user-select: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(72px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
/* Indigo chromatic gradient — selected hero background */
.hero.hero-gradient {
  background:
    radial-gradient(ellipse 70% 60% at 20% 60%, rgba(99,102,241,0.15) 0%, transparent 100%),
    radial-gradient(ellipse 55% 50% at 80% 30%, rgba(139,92,246,0.098) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(79,70,229,0.063) 0%, transparent 100%);
  background-size: 200% 200%;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { background-position: 0% 0%; }
  33%  { background-position: 60% 40%; }
  66%  { background-position: 30% 80%; }
  100% { background-position: 80% 20%; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin: 0 0 1.1rem;
}
.hero-title { color: var(--ink); margin-bottom: .35em; }
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 500px;
}
.hero-cta { display: flex; gap: 12px; }

/* Scope panel */
.hero-scope {
  border: 1px solid var(--line-strong);
  padding: 22px;
  border-radius: var(--radius);
  align-self: start;
  margin-top: 8px;
}
.scope-label {
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.scope-list { display: flex; flex-direction: column; margin: 0 0 20px; }
.scope-list li {
  padding: 7px 0;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
}
.scope-list li::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--accent);
  flex-shrink: 0;
  border-radius: 50%;
}
.scope-stat { display: flex; flex-direction: column; gap: 3px; }
.scope-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.scope-caption {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
}

/* ============================================================
   METRICS STRIP
   ============================================================ */
.metrics-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px;
  border-right: 1px solid var(--line-strong);
  min-width: 0;
}
.metric:last-child { border-right: 0; }
.metric-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}

/* ============================================================
   DISCIPLINE PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: clamp(44px, 6vw, 72px) clamp(28px, 4vw, 56px);
}
.pillar-legal {
  border-right: 1px solid var(--line-strong);
}
.pillar-security {
  background: var(--ink);
}
.pillar-label {
  font-family: var(--font-mono);
  font-size: .63rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  display: block;
  margin: 0 0 1.1rem;
}
.pillar-security .pillar-label { color: rgba(255,255,255,.38); }
.pillar-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 1.8rem;
  color: var(--ink);
  max-width: 460px;
  min-height: 2.3em;
}
.pillar-security .pillar-title { color: var(--paper); }
.pillar-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.pillar-list li {
  font-family: var(--font-mono);
  font-size: .78rem;
  padding: 9px 0 9px 18px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--ink-soft);
  line-height: 1.4;
}
.pillar-list li:last-child { border-bottom: 1px solid var(--line); }
.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
}
.pillar-security .pillar-list li {
  border-top-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
}
.pillar-security .pillar-list li:last-child { border-bottom-color: rgba(255,255,255,.1); }
.pillar-security .pillar-list li::before { background: rgba(255,255,255,.45); border-radius: 0; }
.pillar-cta {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4em;
  transition: gap .15s, color .15s;
}
.pillar-cta:hover { text-decoration: none; gap: .75em; }
.pillar-security .pillar-cta { color: rgba(255,255,255,.5); }
.pillar-security .pillar-cta:hover { color: #fff; }

/* ============================================================
   REGULATORY FRAMEWORKS STRIP (kept for theme variants)
   ============================================================ */
.frameworks-strip {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
}
.frameworks-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.frameworks-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid var(--line-strong);
}
.frameworks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.frameworks-list li {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--muted);
  padding: 2px 12px;
  border-right: 1px solid var(--line);
  letter-spacing: .04em;
  white-space: nowrap;
}
.frameworks-list li:first-child { padding-left: 0; }
.frameworks-list li:last-child { border-right: 0; }

/* ============================================================
   SERVICES — three-column practice grid
   ============================================================ */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 36px;
}
.practice-col-label {
  font-family: var(--font-mono);
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin: 0 0 14px;
  padding-bottom: 0;
  border-bottom: none;
}
.practice-index { border-top: none; display: flex; flex-direction: column; gap: 10px; }
.practice-row {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  align-items: start;
  gap: 18px;
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.practice-row::before { content: none; }
.practice-row:hover {
  padding-left: 20px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  border-color: var(--line-strong);
}
.prow-num {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .04em;
  padding-top: 3px;
}
.prow-body h3 { margin-bottom: .28em; font-size: 1rem; }
.prow-body p { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 0; }
.prow-arrow {
  color: var(--muted);
  font-size: .95rem;
  padding-top: 4px;
  justify-self: end;
  opacity: 0.4;
  transform: translateX(-4px);
  transition: transform .24s ease, color .24s ease, opacity .24s ease;
}
.practice-row:hover .prow-arrow {
  transform: translateX(3px);
  color: var(--accent);
  opacity: 1;
}

/* ============================================================
   WHY US
   ============================================================ */
.differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
.diff-primary {
  padding: 44px 40px;
  border-right: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
}
.diff-statement {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}
.diff-statement-sub { color: var(--muted); font-size: .95rem; margin: 0; line-height: 1.65; }
.diff-list { display: flex; flex-direction: column; background: var(--paper-2); }
.diff-item {
  padding: 26px 32px;
  border-bottom: 1px solid var(--line);
  flex: 1;
}
.diff-item:last-child { border-bottom: 0; }
.diff-item h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 .5em;
}
.diff-item p { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  border-top: 1px solid var(--line);
}
.about-firm-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}
.about-firm-grid .section-head {
  margin-bottom: 0;
}
.about-firm-body {
  border-top: 1.5px solid var(--line-strong);
  padding-top: 28px;
}
.about-firm-body > p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}
.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-photo { display: flex; flex-direction: column; gap: 10px; }
.headshot-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
}
.headshot-placeholder svg { opacity: .3; }
.headshot-placeholder-label {
  font-family: var(--font-mono);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
}
.about-name {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem) !important;
  letter-spacing: -0.04em;
  margin: 0 0 .15em !important;
}
.about-role {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 1.4em;
  display: block;
}
.about-body p { color: var(--ink-soft); line-height: 1.7; }
.creds { margin: 1.4em 0 0; display: flex; flex-direction: column; }
.creds li {
  font-size: .9rem;
  color: var(--muted);
  padding: 9px 0 9px 16px;
  border-top: 1px solid var(--line);
  position: relative;
}
.creds li:last-child { border-bottom: 1px solid var(--line); }
.creds li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--line-strong);
}
.step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.step:first-child { padding-left: 0; }
.step:last-child {
  border-right: 0;
  padding-right: 0;
}
.step-num {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--line-strong);
  display: block;
  margin-bottom: 20px;
}
.step h3 { font-size: .98rem; margin-bottom: .4em; }
.step p { color: var(--muted); font-size: .9rem; line-height: 1.55; margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-intro h2 { margin-bottom: .5em; }
.contact-intro > p { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: .93rem;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.ci-label {
  font-family: var(--font-mono);
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
}
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--accent); text-decoration: none; }

.contact-form { display: flex; flex-direction: column; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-mono);
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-soft);
}
.optional-label {
  color: var(--muted);
  font-weight: 400;
}
.field input, .field textarea {
  font-family: var(--font-sans);
  font-size: .97rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .7em .95em;
  width: 100%;
  transition: border-color .15s;
  outline: none;
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 110px; }
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.form-status { font-size: .86rem; margin: 8px 0 0; min-height: 1.4em; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  color: rgba(255,255,255,.7);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -0.02em;
}
.footer-note {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  margin: 0;
  flex: 1;
  text-align: center;
  letter-spacing: .04em;
}
.site-footer .lang-toggle { border-color: rgba(255,255,255,.2); overflow: visible; }
.site-footer .lang-btn { color: rgba(255,255,255,.4); }
.site-footer .lang-btn:not(:last-child) { border-right-color: rgba(255,255,255,.2); }
.site-footer .lang-btn.active { background: rgba(255,255,255,.15); color: #fff; }
.site-footer .lang-btn:hover:not(.active) { color: #fff; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 240px; gap: 40px; }
  .practice-grid { gap: 0 24px; }
}

@media (max-width: 880px) {
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(3) { border-top: 1px solid var(--line-strong); }
  .metric:nth-child(4) { border-top: 1px solid var(--line-strong); border-right: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-scope { max-width: 340px; }
  .practice-grid { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .practice-col:last-child { grid-column: 1 / -1; margin-top: 40px; }
  .practice-col + .practice-col:not(:last-child) { margin-top: 0; }
  .differentiators { grid-template-columns: 1fr; }
  .diff-primary { border-right: 0; border-bottom: 1px solid var(--line-strong); padding: 32px; }
  .about-firm-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-firm-grid .section-head { max-width: 620px; }
  .about-grid { grid-template-columns: 180px 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; padding-right: 0; }
  .step:nth-child(3) { padding-left: 0; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--line); padding-top: 32px; }
  .step:nth-child(4) { border-right: 0; padding-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    gap: 0;
    z-index: 40;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .8rem; }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }

  .hero { padding: 52px 0 44px; }

  .frameworks-list li { font-size: .62rem; padding: 2px 8px; }

  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .pillar-legal { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .practice-grid { grid-template-columns: 1fr; gap: 0; }
  .practice-col:last-child { grid-column: auto; margin-top: 40px; }
  .practice-row { grid-template-columns: 32px 1fr 18px; gap: 12px; padding: 18px 16px; }
  .prow-arrow { display: none; }

  .diff-primary { padding: 28px 20px; }
  .diff-item { padding: 20px; }

  .about-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; padding-left: 0; padding-right: 0; border-top: 1px solid var(--line); padding-top: 28px; }
  .step:first-child { border-top: 0; padding-top: 0; }

  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
  .footer-note { flex: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.8rem; }
}
