/* ============================================================
   SBL Law Firm — design system
   Palette: ink navy + champagne gold (#d4cbba, the brand accent)
   Type: Playfair Display (display) / Montserrat (UI, self-hosted)
   ============================================================ */

@font-face {
  font-family: 'Montserrat';
  src: url('../static/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../static/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../static/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --ink: #0c1015;
  --ink-2: #11161d;
  --ink-3: #171e27;
  --paper: #f4f1ea;
  --paper-2: #ece8de;
  --gold: #d4cbba;
  --gold-deep: #b9a67e;
  --text: #e9e7e2;
  --muted: #99a1ab;
  --muted-dark: #6b7078;
  --line: rgba(212, 203, 186, 0.16);
  --line-strong: rgba(212, 203, 186, 0.35);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --container: 1240px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- cross-page transitions (View Transitions API) ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 0.28s ease both; }
::view-transition-new(root) { animation: vt-in 0.42s ease both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } }

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- typography ---------- */
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6.2vw, 5.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--gold-deep); flex: none; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ''; width: 44px; height: 1px; background: var(--gold-deep); flex: none; }

.lede { color: var(--muted); font-size: 1.06rem; max-width: 56ch; }

/* ---------- layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: 110px 0; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn:hover { background: transparent; color: var(--gold); }
.btn.ghost { background: transparent; color: var(--gold); border-color: var(--line-strong); }
.btn.ghost:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 6px; border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s, gap 0.3s var(--ease);
}
.text-link:hover { border-color: var(--gold); gap: 16px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
.nav.scrolled {
  height: 68px;
  background: rgba(12, 16, 21, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo img { height: 46px; width: auto; transition: height 0.4s ease; }
.nav.scrolled .nav-logo img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a:not(.btn) {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text); position: relative; padding: 6px 0;
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.current::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: 13px 26px; }

.nav-burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px; z-index: 102;
}
.nav-burger span {
  display: block; width: 26px; height: 2px; background: var(--gold); margin: 6px 0;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 101; background: rgba(12, 16, 21, 0.97);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; color: var(--text); padding: 10px 0;
  opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }

/* ---------- hero (faithful original, refined) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.hero-media, .hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,16,21,0.5) 0%, rgba(12,16,21,0.28) 50%, rgba(12,16,21,0.62) 100%),
              linear-gradient(90deg, rgba(12,16,21,0.42) 0%, rgba(12,16,21,0.05) 55%);
}
.hero .hero-content { position: relative; z-index: 2; width: 100%; padding: 110px 28px 60px; }
.hero-row { display: flex; gap: 30px; }
.goldline {
  flex: none; width: 64px; height: 2px; background: var(--gold-deep);
  margin-top: clamp(22px, 2.2vw, 36px);
  transform-origin: left; animation: goldline-grow 1.1s var(--ease) both 0.15s;
}
@keyframes goldline-grow { from { transform: scaleX(0); } }
.hero h1 {
  font-family: var(--sans); font-weight: 400; line-height: 1.18;
  color: #fff; max-width: 15ch;
  font-size: clamp(2.4rem, 4.9vw, 4.1rem);
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}
.hero .lede { color: #e6e4df; margin-bottom: 44px; max-width: 52ch; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce) {
  .goldline { animation: none; }
}

/* ---------- values strip ---------- */
.values-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.values-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 30px 0; gap: 20px; flex-wrap: wrap;
}
.values-inner .v {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--muted);
  display: flex; align-items: center; gap: 20px; transition: color 0.4s;
}
.values-inner .v:hover { color: var(--gold); }
.values-inner .dot { width: 4px; height: 4px; background: var(--gold-deep); border-radius: 50%; }

/* ---------- split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.split .media { position: relative; }
.split .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; filter: grayscale(35%); transition: filter 0.7s ease; }
.split .media:hover img { filter: grayscale(0%); }
.split .media::before {
  content: ''; position: absolute; inset: -18px 18px 18px -18px;
  border: 1px solid var(--line-strong); z-index: -1;
}
.split .media .tag {
  position: absolute; right: -1px; bottom: -1px; background: var(--gold); color: var(--ink);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 14px 22px;
}
.split h2 { margin-bottom: 26px; }
.split p { color: var(--muted); margin-bottom: 20px; }
.split p strong, .split p a strong { color: var(--text); font-weight: 600; }
.split .text-link { margin-top: 14px; }

/* ---------- practice areas grid ---------- */
.bg-raised { background: var(--ink-2); }
.practice-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.practice-head h2 { max-width: 16ch; }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pcard {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 44px 38px 38px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 300px;
  transition: background 0.5s var(--ease);
}
.pcard::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.pcard:hover { background: var(--ink-3); }
.pcard:hover::after { transform: scaleX(1); }
.pcard .idx {
  font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--gold-deep);
  margin-bottom: 26px;
}
.pcard h3 { margin-bottom: 16px; transition: color 0.3s; }
.pcard:hover h3 { color: var(--gold); }
.pcard p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.pcard .go {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  opacity: 0.65; transition: opacity 0.3s, gap 0.3s var(--ease);
}
.pcard:hover .go { opacity: 1; gap: 16px; }

/* ---------- team ---------- */
.team-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }
.team-head .lede { margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 34px; }
.tcard { display: block; position: relative; }
.tcard .photo {
  position: relative; aspect-ratio: 3 / 3.8; overflow: hidden; background: var(--ink-3);
  border: 1px solid var(--line);
}
.tcard .photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: grayscale(100%); transition: filter 0.7s ease, transform 1.2s var(--ease);
}
.tcard:hover .photo img { filter: grayscale(0%); transform: scale(1.04); }
.tcard .mono {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 4.4rem; font-style: italic; color: var(--gold-deep);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,203,186,0.08), transparent 60%),
    var(--ink-3);
  transition: color 0.5s;
}
.tcard:hover .mono { color: var(--gold); }
.tcard .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,16,21,0.82) 100%);
}
.tcard .meta { padding: 22px 2px 0; text-align: center; }
.tcard .meta h3 { transition: color 0.3s; }
.tcard:hover .meta h3 { color: var(--gold); }
.tcard .meta .role {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}
.tcard .meta .lang { font-family: var(--serif); font-style: italic; color: var(--muted-dark); font-size: 0.9rem; margin-top: 8px; }
.tcard .view {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 8px 14px;
  opacity: 0; transform: translateY(-6px); transition: opacity 0.35s, transform 0.35s var(--ease);
}
.tcard:hover .view { opacity: 1; transform: none; }

/* ---------- band (why us / cta) ---------- */
.band { position: relative; overflow: hidden; }
.band .band-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%); }
.band .band-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,16,21,0.95) 20%, rgba(12,16,21,0.72) 60%, rgba(12,16,21,0.45) 100%);
}
.band .band-media, .band .band-media::after { position: absolute; inset: 0; }
.band-content { position: relative; z-index: 2; max-width: 620px; padding: 130px 0; }
.band-content h2 { margin-bottom: 24px; }
.band-content p { color: var(--muted); margin-bottom: 18px; }

/* ---------- offices ---------- */
.offices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; border: 1px solid var(--line); }
.office {
  padding: 44px 38px; border-right: 1px solid var(--line); text-align: center;
  transition: background 0.4s;
}
.office:last-child { border-right: 0; }
.office:hover { background: var(--ink-3); }
.office .city { font-family: var(--serif); font-size: 1.5rem; }
.office .country {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}
.office .oaddr { font-size: 0.85rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.office .tel { display: block; margin-top: 16px; color: var(--gold); font-size: 0.9rem; transition: color 0.3s; }
.office .tel:hover { color: #fff; }

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 7vw, 100px); }
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { color: var(--muted); font-size: 0.95rem; margin-bottom: 34px; }
.contact-rows { display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 4px; border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease), background 0.3s;
}
.contact-row:hover { padding-left: 12px; background: rgba(212,203,186,0.03); }
.contact-row .k { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.contact-row .v { font-family: var(--serif); font-size: 1.05rem; color: var(--text); text-align: right; }
.contact-row .v:hover { color: var(--gold); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  padding: 12px 2px; color: var(--text); font-family: var(--sans); font-size: 1rem;
  transition: border-color 0.3s; border-radius: 0;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { grid-column: 1 / -1; justify-self: start; margin-top: 8px; cursor: pointer; }
.form-note { grid-column: 1 / -1; font-size: 0.8rem; color: var(--muted-dark); }

.map-wrap { border-top: 1px solid var(--line); line-height: 0; }
.map-wrap iframe { width: 100%; height: 460px; border: 0; filter: grayscale(100%) invert(92%) contrast(85%); }

/* ---------- footer ---------- */
.footer { background: #090c10; border-top: 1px solid var(--line); }
.footer-main {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(36px, 6vw, 90px);
  padding: 80px 0 60px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 26px; }
.footer-brand p { color: var(--muted-dark); font-size: 0.9rem; max-width: 42ch; }
.footer h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 7px 0; transition: color 0.3s, padding-left 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); padding-left: 8px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 26px 0; font-size: 0.78rem; color: var(--muted-dark);
}
.footer-bottom a { color: var(--muted); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- subpage hero ---------- */
.page-hero { padding: calc(var(--nav-h) + 90px) 0 70px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero .bg-index {
  position: absolute; right: -0.05em; bottom: -0.22em; z-index: 0;
  font-family: var(--serif); font-style: italic; font-size: clamp(9rem, 24vw, 20rem);
  color: transparent; -webkit-text-stroke: 1px rgba(212,203,186,0.1); line-height: 1;
  pointer-events: none; user-select: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 18ch; }
.page-hero .sub { color: var(--muted); margin-top: 24px; max-width: 62ch; }
.crumbs { display: flex; gap: 12px; align-items: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 34px; }
.crumbs a { color: var(--muted); transition: color 0.3s; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--gold-deep); }

/* ---------- practice detail ---------- */
.practice-body { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.prose p { color: var(--muted); margin-bottom: 22px; }
.prose h2 { font-size: 1.7rem; margin: 40px 0 20px; }
.prose h2:first-child { margin-top: 0; }
.svc-list { border-top: 1px solid var(--line); margin: 30px 0 36px; }
.svc-list li {
  display: flex; gap: 20px; align-items: baseline; padding: 16px 4px;
  border-bottom: 1px solid var(--line); color: var(--text); font-size: 0.98rem;
  transition: padding-left 0.3s var(--ease), background 0.3s;
}
.svc-list li:hover { padding-left: 14px; background: rgba(212,203,186,0.03); }
.svc-list li::before { content: counter(list-item, decimal-leading-zero); font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 0.9rem; }
.svc-list { counter-reset: list-item; }
.svc-list li { counter-increment: list-item; }

.side-nav { position: sticky; top: calc(var(--nav-h) + 30px); border: 1px solid var(--line); padding: 34px 30px; background: var(--ink-2); }
.side-nav h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.side-nav a:not(.btn) { display: block; padding: 11px 0; color: var(--muted); font-size: 0.92rem; border-bottom: 1px solid var(--line); transition: color 0.3s, padding-left 0.3s var(--ease); }
.side-nav a:not(.btn):last-of-type { border-bottom: 0; }
.side-nav a:not(.btn):hover { color: var(--gold); padding-left: 8px; }
.side-nav a.here { color: var(--gold); }
.side-nav a.btn:hover { color: var(--gold); }
.side-nav .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ---------- attorney bio ---------- */
.bio-wrap { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.bio-side { position: sticky; top: calc(var(--nav-h) + 30px); }
.bio-portrait { position: relative; border: 1px solid var(--line); overflow: hidden; }
.bio-portrait img { width: 100%; aspect-ratio: 3 / 3.8; object-fit: cover; object-position: top center; filter: grayscale(70%); transition: filter 0.7s; }
.bio-portrait:hover img { filter: grayscale(0%); }
.bio-portrait .mono {
  display: flex; align-items: center; justify-content: center; aspect-ratio: 3 / 3.4;
  font-family: var(--serif); font-size: 5rem; font-style: italic; color: var(--gold-deep);
  background: radial-gradient(ellipse at 30% 20%, rgba(212,203,186,0.08), transparent 60%), var(--ink-3);
}
.bio-facts { border: 1px solid var(--line); border-top: 0; padding: 30px; background: var(--ink-2); }
.bio-facts .row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.bio-facts .row:last-child { border-bottom: 0; padding-bottom: 0; }
.bio-facts .row:first-child { padding-top: 0; }
.bio-facts .k { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 6px; }
.bio-facts .v { font-size: 0.92rem; color: var(--text); }
.bio-facts .v a { color: var(--gold); }
.bio-facts .v a:hover { text-decoration: underline; }
.bio-main .role-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 8px 16px; margin-bottom: 28px;
}
.bio-main h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 18px; }
.bio-main .cred { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1.08rem; margin-bottom: 36px; padding-left: 22px; border-left: 2px solid var(--gold-deep); }
.bio-main .prose { margin-bottom: 40px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 40px; }
.chip {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--line-strong); color: var(--muted); padding: 9px 16px;
  transition: color 0.3s, border-color 0.3s;
}
.chip:hover { color: var(--gold); border-color: var(--gold); }
.bio-sign img { max-height: 110px; width: auto; opacity: 0.9; }
.bio-pager {
  display: flex; justify-content: space-between; gap: 20px;
  border-top: 1px solid var(--line); margin-top: 70px; padding-top: 34px;
}
.bio-pager a { display: flex; flex-direction: column; gap: 8px; max-width: 45%; }
.bio-pager .dir { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-dark); }
.bio-pager .who { font-family: var(--serif); font-size: 1.2rem; color: var(--text); transition: color 0.3s; }
.bio-pager a:hover .who { color: var(--gold); }
.bio-pager .next { text-align: right; margin-left: auto; }

/* ---------- CTA strip ---------- */
.cta-strip { border-top: 1px solid var(--line); background: var(--ink-2); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 70px 0; flex-wrap: wrap; }
.cta-inner h2 { max-width: 22ch; }
.cta-inner h2 em { font-style: italic; color: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .split, .contact-wrap, .practice-body, .bio-wrap { grid-template-columns: 1fr; }
  .bio-side, .side-nav { position: static; }
  .split .media { order: -1; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .section-pad { padding: 80px 0; }
  .band-content { padding: 90px 0; }
  .office { border-right: 0; border-bottom: 1px solid var(--line); }
  .office:last-child { border-bottom: 0; }
}
@media (max-width: 600px) {
  .form { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .container { padding: 0 20px; }
  .hero .hero-content { padding: 120px 20px 60px; }
  .goldline { display: none; }
  .values-inner { justify-content: center; }
  .bio-pager a { max-width: 100%; }
}
