/* =========================================================================
   Law Office of Angela Furman, LLC
   Black-and-white family-law website — LIGHT theme (white ground, black text)
   Traditional, credible firm structure. Type: Libre Baskerville + Source Sans 3
   ========================================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Tokens ---------- */
:root {
  --ink:      #14140f;   /* near-black text */
  --ink-2:    #2b2b26;
  --muted:    #5f5f58;
  --faint:    #8a8a82;
  --paper:    #ffffff;   /* main background */
  --bg-soft:  #f6f4ef;   /* warm off-white alt sections */
  --bg-soft-2:#efece5;
  --line:     rgba(20,20,15,.16);
  --line-2:   rgba(20,20,15,.09);

  /* brand accents (from the logo) — used restrained */
  --navy:     #1f2d44;
  --navy-900: #16202f;   /* dark section grounds */
  --gold:     #b08d57;
  --gold-soft: rgba(176,141,87,.5);
  --gold-faint: rgba(176,141,87,.28);

  --dark:     #16202f;   /* navy-tinted dark bands (footer / top bar / CTA / serve) */
  --dark-soft:rgba(255,255,255,.62);

  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans:  "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(20px, 4.5vw, 60px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: .5s;

  --nav-h: 78px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--ink); color: var(--paper);
  padding: .7rem 1.1rem; font-size: .85rem; font-weight: 600; border-radius: 2px;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1560px; }
.section { padding-block: clamp(60px, 8vw, 118px); }
.section--tight { padding-block: clamp(46px, 6vw, 82px); }
.bg-paper { background: var(--paper); }
.bg-soft { background: var(--bg-soft); }
.bg-dark { background: var(--dark); color: var(--paper); }
.hr { border: 0; border-top: 1px solid var(--line); }

.grid { display: grid; gap: clamp(28px, 4vw, 60px); }
.cols-12 { grid-template-columns: repeat(12, 1fr); }
@media (max-width: 920px){ .cols-12 { grid-template-columns: repeat(6, 1fr); } }
.col-3{grid-column:span 3}.col-4{grid-column:span 4}.col-5{grid-column:span 5}
.col-6{grid-column:span 6}.col-7{grid-column:span 7}.col-8{grid-column:span 8}.col-9{grid-column:span 9}
.start-6{grid-column-start:6}.start-7{grid-column-start:7}.start-8{grid-column-start:8}
@media (max-width: 920px){
  .col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9 { grid-column: 1 / -1; }
  .start-6,.start-7,.start-8 { grid-column-start: 1; }
}

/* ---------- Typography ---------- */
.display, h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.16; letter-spacing: -0.005em; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.overline {
  font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: .8em;
}
.overline .tick { width: 30px; height: 2px; background: var(--gold); display: inline-block; }

.h-hero { font-size: clamp(2.3rem, 4.3vw, 3.7rem); line-height: 1.12; }
.h-xl   { font-size: clamp(1.9rem, 3.2vw, 2.9rem); }
.h-lg   { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.h-md   { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.lead { font-family: var(--sans); font-size: clamp(1.1rem, 1.4vw, 1.3rem); line-height: 1.62; color: var(--ink-2); }
.muted { color: var(--muted); }
.measure { max-width: 62ch; }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn {
  --bh: 54px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  height: var(--bh); padding-inline: 1.7rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1.5px solid var(--ink); overflow: hidden; isolation: isolate;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn__arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn__arrow, .btn:focus-visible .btn__arrow { transform: translateX(4px); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover, .btn--solid:focus-visible { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--ink); color: var(--paper); }
/* on dark grounds */
.bg-dark .btn--ghost { border-color: rgba(255,255,255,.55); color: var(--paper); }
.bg-dark .btn--ghost:hover, .bg-dark .btn--ghost:focus-visible { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.bg-dark .btn--solid { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.bg-dark .btn--solid:hover { background: transparent; color: var(--paper); }

.link {
  position: relative; display: inline-flex; align-items: center; gap: .5em; font-weight: 600;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1.5px; background-position: 0 100%; background-repeat: no-repeat;
  padding-bottom: 2px; transition: background-size .4s var(--ease), opacity .3s;
}
.link:hover { opacity: .7; }
.link .arrow { transition: transform .4s var(--ease); }
.link:hover .arrow { transform: translateX(4px); }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--dark); color: var(--paper); font-family: var(--sans); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; padding-block: .35rem; }
.topbar .tb-left { font-size: .82rem; letter-spacing: .02em; color: var(--dark-soft); }
.topbar .tb-right { display: flex; align-items: center; gap: 1.6rem; font-size: .84rem; }
.topbar .tb-right a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
.topbar .tb-right a:hover { opacity: .8; }
.topbar .tb-sep { width: 1px; height: 16px; background: rgba(255,255,255,.25); flex: none; }
.topbar .tb-hours { color: var(--dark-soft); white-space: nowrap; }
@media (max-width: 880px){
  .topbar .tb-left { display: none; }
  .topbar .container { justify-content: center; }
}
@media (max-width: 560px){
  .topbar .tb-hours, .topbar .tb-sep { display: none; }
}

/* ---------- Main header (sticky) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px -18px rgba(0,0,0,.5); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--nav-h); }

.brand { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: clamp(1.15rem, 1.7vw, 1.42rem); letter-spacing: -0.01em; }
.brand__sub { font-family: var(--sans); font-size: .58rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-top: .5em; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__links { display: flex; align-items: center; gap: clamp(.9rem, 1.7vw, 1.7rem); }
.nav__link {
  position: relative; font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; padding-block: .5rem; color: var(--ink);
}
.nav__link::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__link:hover::after, .nav__link[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { height: 46px; padding-inline: 1.2rem; }
@media (max-width: 1040px){ .nav__links { display: none; } }
@media (max-width: 1040px){ .nav__cta { display: none; } }

/* burger */
.burger { display: none; width: 46px; height: 46px; position: relative; z-index: 210; margin-right: -8px; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s var(--ease); }
.burger span:nth-child(1){ top: 16px; } .burger span:nth-child(2){ top: 22px; } .burger span:nth-child(3){ top: 28px; }
body.menu-open .burger span { background: var(--paper); }
body.menu-open .burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 1040px){ .burger { display: block; } }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200; background: var(--dark); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease); pointer-events: none;
}
body.menu-open .drawer { clip-path: inset(0 0 0 0); pointer-events: auto; }
.drawer__links { display: flex; flex-direction: column; }
.drawer__links a { font-family: var(--serif); font-size: clamp(1.6rem, 6vw, 2.4rem); font-weight: 700; padding-block: .28em; border-bottom: 1px solid rgba(255,255,255,.14); display: flex; align-items: baseline; gap: .7rem; opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.drawer__links a .idx { font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; color: rgba(255,255,255,.5); font-weight: 600; }
body.menu-open .drawer__links a { opacity: 1; transform: none; }
body.menu-open .drawer__links a:nth-child(1){transition-delay:.14s}body.menu-open .drawer__links a:nth-child(2){transition-delay:.19s}
body.menu-open .drawer__links a:nth-child(3){transition-delay:.24s}body.menu-open .drawer__links a:nth-child(4){transition-delay:.29s}
body.menu-open .drawer__links a:nth-child(5){transition-delay:.34s}body.menu-open .drawer__links a:nth-child(6){transition-delay:.39s}
.drawer__cta { margin-top: 2rem; align-self: flex-start; }
.drawer__foot { margin-top: auto; padding-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; font-size: .9rem; }
.drawer__foot a { color: rgba(255,255,255,.72); }
.drawer__close { position: absolute; top: 20px; right: var(--gutter); width: 46px; height: 46px; z-index: 210; }
.drawer__close::before, .drawer__close::after { content:""; position:absolute; top:22px; left:11px; width:24px; height:2px; background: var(--paper); }
.drawer__close::before { transform: rotate(45deg); } .drawer__close::after { transform: rotate(-45deg); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"]{transition-delay:.08s}[data-delay="2"]{transition-delay:.16s}[data-delay="3"]{transition-delay:.24s}[data-delay="4"]{transition-delay:.32s}

/* ---------- Robust two-column split (replaces buggy col/start offsets) ---------- */
.split { display: grid; gap: clamp(28px, 4vw, 60px); align-items: start; }
.split--5-7 { grid-template-columns: 5fr 7fr; }
.split--7-5 { grid-template-columns: 7fr 5fr; }
.split--6-6 { grid-template-columns: 1fr 1fr; }
.split--center { align-items: center; }
@media (max-width: 920px){ .split { grid-template-columns: 1fr !important; } }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(54px, 7vw, 108px); position: relative; z-index: 1; }
.hero__copy { max-width: 42rem; position: relative; z-index: 2; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero__meta { margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; }
.hero__meta .m { font-size: .82rem; letter-spacing: .01em; color: var(--muted); display: inline-flex; align-items: center; gap: .6rem; }
.hero__meta .m::before { content: ""; width: 7px; height: 7px; border: 2px solid var(--ink); border-radius: 50%; }
.hero__figure { position: relative; z-index: 1; }
.hero__figure .figure { will-change: transform; }
.hero__badge { position: absolute; left: -1.2rem; bottom: 1.6rem; background: var(--ink); color: var(--paper); padding: 1.1rem 1.3rem; max-width: 15.5rem; box-shadow: 0 24px 54px -26px rgba(0,0,0,.65); }
.hero__badge .b-k { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero__badge .b-v { font-family: var(--serif); font-weight: 700; font-size: 1.08rem; margin-top: .35rem; line-height: 1.25; }
.hero__watermark { position: absolute; top: 50%; right: -3%; transform: translateY(-50%); font-family: var(--serif); font-weight: 700; font-size: 24vw; color: rgba(20,20,15,.028); z-index: 0; pointer-events: none; white-space: nowrap; user-select: none; }
@media (max-width: 920px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; }
  .hero__watermark { display: none; }
  .hero__badge { left: 1rem; }
}

/* scroll cue */
.scroll-cue { display: inline-flex; align-items: center; gap: .7rem; margin-top: 2.6rem; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.scroll-cue .bar { width: 52px; height: 1.5px; background: var(--line); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 1.5px; background: var(--ink); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateX(-20px); } 100% { transform: translateX(52px); } }

/* headline line reveal */
.lines .ln { display: block; overflow: hidden; }
.lines .ln > span { display: block; transform: translateY(112%); transition: transform .95s var(--ease-out); }
.lines.in .ln > span { transform: translateY(0); }
.lines.in .ln:nth-child(2) > span { transition-delay: .1s; }
.lines.in .ln:nth-child(3) > span { transition-delay: .2s; }
.no-js .lines .ln > span { transform: none; }

/* ---------- Centered image hero ---------- */
.hero--image { position: relative; color: var(--paper); background: #0a0a0a; border-bottom: 0; }
.hero--image .hero__bg { position: absolute; inset: 0; z-index: 0; background: #10161f url("../img/hero.svg") center/cover no-repeat; transform: scale(1.06); animation: heroZoom 20s var(--ease-out) both; }
@keyframes heroZoom { from { transform: scale(1.16); } to { transform: scale(1.06); } }
.hero--image .hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18,26,40,.72) 0%, rgba(18,26,40,.46) 42%, rgba(18,26,40,.54) 70%, rgba(16,20,26,.86) 100%); }
.hero--image .container { position: relative; z-index: 2; }
.hero--image__inner { min-height: min(88vh, 860px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-block: clamp(96px, 15vh, 190px); }
.hero--image .overline { color: rgba(255,255,255,.78); }
.hero--image .overline .tick { background: var(--gold); }
.hero--image .h-hero { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero--image .lead { color: rgba(255,255,255,.86); margin-inline: auto; }
.hero--image .hero__cta { justify-content: center; }
.hero--image .hero__meta { justify-content: center; border-color: rgba(255,255,255,.22); }
.hero--image .hero__meta .m { color: rgba(255,255,255,.72); }
.hero--image .hero__meta .m::before { border-color: #fff; }
.hero--image .btn--solid { background: #fff; color: var(--ink); border-color: #fff; }
.hero--image .btn--solid:hover, .hero--image .btn--solid:focus-visible { background: transparent; color: #fff; }
.hero--image .btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.hero--image .btn--ghost:hover, .hero--image .btn--ghost:focus-visible { background: #fff; color: var(--ink); border-color: #fff; }
.hero--image .scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; margin: 0; color: rgba(255,255,255,.7); }
.hero--image .scroll-cue .bar { background: rgba(255,255,255,.3); }
.hero--image .scroll-cue .bar::after { background: #fff; }
.no-js .hero--image .hero__bg { animation: none; transform: scale(1.06); }

/* trust strip as a clean band under the image hero */
.trust-band { border-block: 1px solid var(--line); }
.trust-band .trust__item:first-child { padding-left: clamp(14px,1.6vw,26px); border-left: 0; }

/* hero trust strip */
.trust { border-top: 1px solid var(--line); background: var(--bg-soft); }
.trust__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { display: flex; align-items: center; gap: .8rem; padding: clamp(18px,2.4vw,28px) clamp(14px,1.6vw,26px); border-left: 1px solid var(--line); }
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__item .n { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.trust__item .mark { width: 8px; height: 8px; border: 2px solid var(--ink); border-radius: 50%; flex: none; }
@media (max-width: 820px){
  .trust__row { grid-template-columns: 1fr 1fr; }
  .trust__item { border-left: 1px solid var(--line); border-top: 1px solid var(--line); padding: clamp(16px,4vw,22px); }
  .trust__item:nth-child(odd){ border-left: 0; padding-left: 0; }
}

/* ---------- Figure / photo slot ---------- */
.figure { position: relative; overflow: hidden; background: var(--bg-soft-2); }
.figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.figure:hover img { transform: scale(1.04); }
.photo-slot {
  position: relative; border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, rgba(20,20,15,.03) 0 2px, transparent 2px 12px), var(--bg-soft-2);
  display: grid; place-items: center; overflow: hidden;
}
.photo-slot__mono { font-family: var(--serif); font-weight: 700; font-size: clamp(3.4rem, 10vw, 7rem); color: rgba(20,20,15,.14); line-height: 1; }
.photo-slot__label { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); padding-inline: 1rem; }
.ar-portrait { aspect-ratio: 4 / 5; }
.ar-tall { aspect-ratio: 3 / 4; }
.ar-wide { aspect-ratio: 16 / 10; }

/* ---------- Section head ---------- */
.sec-head { max-width: 62rem; margin-bottom: clamp(2rem, 3.6vw, 3.2rem); }
.sec-head .lead { margin-top: 1.1rem; }

/* ---------- Practice areas ---------- */
.parea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 22px); }
.parea {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  padding: clamp(24px, 2.4vw, 34px); min-height: 232px; display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.parea:hover, .parea:focus-within { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 18px 40px -30px rgba(0,0,0,.55); }
.parea__num { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--faint); }
.parea__rule { width: 34px; height: 2px; background: var(--gold); margin-top: 1.2rem; transition: width .4s var(--ease); }
.parea:hover .parea__rule, .parea:focus-within .parea__rule { width: 60px; }
.parea__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.25rem, 1.7vw, 1.5rem); margin-top: auto; padding-top: 1.6rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; line-height: 1.22; }
.parea__title .arrow { font-size: .95rem; opacity: 0; transform: translateX(-6px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.parea:hover .parea__title .arrow, .parea:focus-within .parea__title .arrow { opacity: 1; transform: none; }
.parea__desc { margin-top: .8rem; font-size: .96rem; color: var(--muted); }
.parea__link { position: absolute; inset: 0; text-indent: -9999px; }
@media (max-width: 940px){ .parea-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .parea-grid { grid-template-columns: 1fr; } .parea { min-height: 0; } }

/* ---------- About ---------- */
.cred-line { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid var(--gold); display: inline-block; }
.cred-line .name { font-family: var(--serif); font-weight: 700; font-size: clamp(1.35rem,1.9vw,1.7rem); }
.cred-line .role { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 40px); counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; border-top: 2px solid var(--gold); }
.step__num { position: absolute; top: -1.7rem; left: 0; font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem,3.4vw,3rem); background: var(--paper); padding-right: .6rem; line-height: 1; }
.bg-soft .step__num { background: var(--bg-soft); }
.step__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.3rem,1.9vw,1.6rem); }
.step__text { margin-top: .9rem; color: var(--muted); font-size: .98rem; }
@media (max-width: 780px){ .steps { grid-template-columns: 1fr; gap: 2.6rem; } }

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.4vw, 34px); }
.tcard { position: relative; overflow: hidden; background: var(--paper); border: 1px solid var(--line); padding: clamp(28px, 3vw, 46px); display: flex; flex-direction: column; }
.tcard::after { content: "\201D"; position: absolute; right: .18em; bottom: -.42em; font-family: var(--serif); font-weight: 700; font-size: 13rem; line-height: 1; color: rgba(31,45,68,.05); pointer-events: none; }
.tcard > * { position: relative; z-index: 1; }
.tcard .quote__mark { font-family: var(--serif); font-size: 3.2rem; line-height: .5; color: var(--gold); display: block; margin-bottom: 1.4rem; height: .5em; }
.quote { font-family: var(--serif); font-weight: 400; font-size: clamp(1.15rem, 1.55vw, 1.4rem); line-height: 1.5; font-style: italic; color: var(--ink-2); }
.quote__cite { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 780px){ .tgrid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.acc { border-top: 2px solid var(--ink); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; text-align: left; padding-block: clamp(1.2rem, 2vw, 1.7rem); }
.acc__q { font-family: var(--serif); font-weight: 700; font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.3; }
.acc__toggle { position: relative; width: 20px; height: 20px; flex: none; }
.acc__toggle::before, .acc__toggle::after { content:""; position:absolute; background: var(--ink); transition: transform .4s var(--ease); }
.acc__toggle::before { top: 9px; left: 0; width: 20px; height: 2px; }
.acc__toggle::after { left: 9px; top: 0; width: 2px; height: 20px; }
.acc__head[aria-expanded="true"] .acc__toggle::after { transform: scaleY(0); }
.acc__body { overflow: hidden; height: 0; transition: height .5s var(--ease); }
.acc__bodyinner { padding-bottom: clamp(1.2rem, 2vw, 1.7rem); color: var(--muted); max-width: 84ch; }
.acc__bodyinner p + p { margin-top: 1rem; }

/* ---------- Contact ---------- */
.detail-row { display: grid; grid-template-columns: 92px 1fr; gap: 1.2rem; padding-block: clamp(1.1rem,1.8vw,1.5rem); border-bottom: 1px solid var(--line); align-items: baseline; }
.detail-row:first-child { border-top: 1px solid var(--line); }
.detail-row .k { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.detail-row .v { font-family: var(--serif); font-weight: 700; font-size: clamp(1.1rem,1.5vw,1.35rem); line-height: 1.35; }
.detail-row .v small { display: block; font-family: var(--sans); font-weight: 400; font-size: .85rem; color: var(--muted); margin-top: .3rem; }

.form-card { background: var(--paper); border: 1px solid var(--line); padding: clamp(24px, 3vw, 42px); }
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }
.field > label { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field .req { color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 2px; padding: .8rem .9rem; width: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(20,20,15,.08); }
.field textarea { resize: vertical; min-height: 120px; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #b23b3b; }
.field__error { color: #a13030; font-size: .8rem; min-height: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; gap: 0; } }
.radio-set { display: flex; gap: 1.6rem; flex-wrap: wrap; padding-top: .2rem; }
.radio { display: inline-flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .96rem; }
.radio input { width: auto; }
.form-note { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.form-disclaimer { font-size: .8rem; color: var(--muted); line-height: 1.6; margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.form-status { margin-top: 1.3rem; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 2px; font-size: .92rem; background: var(--bg-soft); }
.form-status.success { border-color: var(--ink); }
.form-status.error { border-color: #b23b3b; color: #a13030; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--paper); padding-top: clamp(52px, 6vw, 88px); }
.site-footer a { color: rgba(255,255,255,.72); transition: color .3s; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.6rem; padding-bottom: clamp(40px,5vw,68px); }
.footer-grid h4 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.3rem; }
.footer-grid ul { display: grid; gap: .7rem; font-size: .96rem; }
.footer-brand .brand__name { font-size: 1.5rem; color: #fff; }
.footer-brand p { margin-top: 1rem; max-width: 42ch; font-size: .95rem; color: rgba(255,255,255,.66); }
.footer-legal { padding-block: 1.8rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .8rem; color: rgba(255,255,255,.58); line-height: 1.65; }
.footer-legal .disclaimer { max-width: 96ch; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between; align-items: center; padding-bottom: 2rem; font-size: .8rem; color: rgba(255,255,255,.5); }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--ink); color: var(--paper); padding: .7rem var(--gutter);
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.callbar.show { transform: translateY(0); }
.callbar .cb-label { font-size: .76rem; letter-spacing: .04em; color: rgba(255,255,255,.7); }
.callbar .cb-label strong { display: block; font-family: var(--serif); font-size: 1.1rem; color: #fff; }
.callbar .cb-btn { display: inline-flex; align-items: center; gap: .5rem; background: var(--paper); color: var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .8rem 1.2rem; border-radius: 2px; }
@media (max-width: 640px){ .callbar { display: flex; } body { padding-bottom: 62px; } }

/* ---------- Utilities ---------- */
.text-right { text-align: right; }
.stack > * + * { margin-top: var(--sp, 1.3rem); }
.mt-2{margin-top:2rem}.mt-3{margin-top:2.8rem}
.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; }

/* ---------- Page-load fade (pure CSS, safe with JS off) ---------- */
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
main { animation: pageIn .6s var(--ease-out) both; }

/* ---------- Interior page hero (image-backed, consistent with home) ---------- */
.page-hero { position: relative; background: var(--navy-900); color: var(--paper); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; background: var(--navy-900) url("../img/hero.svg") center/cover no-repeat; transform: scale(1.04); }
.page-hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18,26,40,.80) 0%, rgba(18,26,40,.62) 58%, rgba(16,20,26,.74) 100%); }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(52px, 7vw, 104px); }
.page-hero__crumbs { font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); display: flex; gap: .6rem; }
.page-hero__crumbs a { color: rgba(255,255,255,.62); transition: color .3s; }
.page-hero__crumbs a:hover { color: #fff; }
.page-hero__title { color: #fff; font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.12; margin-top: 1rem; max-width: 22ch; text-shadow: 0 2px 24px rgba(0,0,0,.32); }
.page-hero .lead { margin-top: 1.2rem; color: rgba(255,255,255,.82); }

/* ---------- Stats (count-up) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-block: 1px solid var(--line); }
.stat { padding: clamp(28px, 3vw, 46px) clamp(16px, 2vw, 30px); border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num { font-family: var(--serif); font-weight: 700; font-size: clamp(2.3rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.01em; }
.stat__num .suf { font-size: .5em; vertical-align: super; margin-left: .05em; }
.stat__label { margin-top: .9rem; font-size: .84rem; color: var(--muted); max-width: 22ch; }
@media (max-width: 780px){
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding-inline: 0; }
  .stat:nth-child(even){ border-left: 1px solid var(--line); padding-left: clamp(16px,5vw,28px); }
  .stat:nth-child(odd){ border-left: 0; padding-right: 16px; }
  .stat:nth-child(3), .stat:nth-child(4){ border-top: 1px solid var(--line); }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); }
.marquee__track { display: flex; width: max-content; gap: 2.8rem; padding-block: clamp(14px, 1.6vw, 22px); animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--serif); font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.7rem); display: inline-flex; align-items: center; gap: 2.8rem; white-space: nowrap; color: var(--muted); }
.marquee__item::after { content: "◆"; font-size: .5em; color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); color: var(--paper); }
.cta-band .container { padding-block: clamp(56px, 7vw, 100px); display: flex; align-items: center; justify-content: space-between; gap: 2rem 3rem; flex-wrap: wrap; }
.cta-band__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.15; max-width: 18ch; }
.cta-band__side { display: flex; flex-direction: column; gap: 1.1rem; }
.cta-band__side .phone { font-family: var(--serif); font-weight: 700; font-size: clamp(1.4rem, 2vw, 1.9rem); }

/* ---------- Staggered reveal group ---------- */
[data-stagger] > * { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1){transition-delay:.04s}[data-stagger].in > *:nth-child(2){transition-delay:.10s}
[data-stagger].in > *:nth-child(3){transition-delay:.16s}[data-stagger].in > *:nth-child(4){transition-delay:.22s}
[data-stagger].in > *:nth-child(5){transition-delay:.28s}[data-stagger].in > *:nth-child(6){transition-delay:.34s}
[data-stagger].in > *:nth-child(7){transition-delay:.40s}[data-stagger].in > *:nth-child(8){transition-delay:.46s}
[data-stagger].in > *:nth-child(9){transition-delay:.52s}

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border: 1.5px solid var(--ink); background: var(--paper); color: var(--ink); display: grid; place-items: center; border-radius: 50%; z-index: 80; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s, color .3s; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 640px){ .to-top { bottom: 74px; } }

/* ---------- Micro-typography pass ---------- */
::selection { background: var(--ink); color: var(--paper); }
body { font-feature-settings: "kern" 1, "liga" 1, "calt" 1; -moz-osx-font-smoothing: grayscale; }
/* balance headline line breaks; keep body copy from leaving orphans */
h1, h2, h3, .page-hero__title, .h-hero, .cta-band__title, .quote { text-wrap: balance; }
.lead, .parea__desc, .step__text, .acc__bodyinner, .footer-brand p { text-wrap: pretty; }
.display, h1, h2, h3 { -webkit-font-smoothing: antialiased; }
.h-hero { letter-spacing: -0.01em; }
.overline { line-height: 1; }
.overline .tick { transition: width .5s var(--ease); }
.hr { opacity: .9; }
/* crisper serif numerals in stats/steps */
.stat__num, .step__num, .parea__num, .detail-row .v { font-feature-settings: "kern" 1, "tnum" 0; }
/* refined focus without harsh box on inputs */
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: none; }
/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .drawer, .callbar, .to-top, .hero__bg, .hero__scrim,
  .page-hero__bg, .page-hero__scrim, .cta-band, .scroll-cue, .burger { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .hero--image, .page-hero { background: #fff !important; color: #000 !important; }
  .hero--image .h-hero, .hero--image .lead, .hero--image .overline,
  .page-hero__title, .page-hero .lead, .page-hero__crumbs { color: #000 !important; text-shadow: none !important; }
  .hero--image__inner { min-height: 0; text-align: left; padding-block: 0; }
  a { color: #000; text-decoration: underline; }
  .section, .section--tight { padding-block: 18pt; }
  .parea, .tcard, .form-card { break-inside: avoid; }
  main { animation: none; }
}

/* JS-off fallback */
.no-js [data-reveal], .no-js [data-stagger] > * { opacity: 1 !important; transform: none !important; }
.no-js .acc__body { height: auto !important; }
.no-js main { animation: none; }

/* ==========================================================================
   Additions: brand logo, DMV areas, view transitions, prose, insights, checklist
   ========================================================================== */

/* ---------- Brand logo ---------- */
.brand { display: inline-flex; flex-direction: row; align-items: center; gap: .7rem; }
.brand__logo { width: 46px; height: 46px; flex: none; object-fit: contain; }
.brand__text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.footer-brand .brand { flex-direction: column; align-items: flex-start; gap: 0; }
.is-scrolled .brand__logo { width: 42px; height: 42px; transition: width .4s var(--ease), height .4s var(--ease); }
@media (max-width: 560px){ .brand__sub { display: none; } .brand__logo { width: 40px; height: 40px; } .brand__name { font-size: 1.02rem; } }

/* ---------- View Transitions (cross-document) ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .34s; }
.topbar { view-transition-name: topbar; }
.site-header { view-transition-name: header; }
.site-footer { view-transition-name: footer; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

/* ---------- Areas We Serve (DMV) ---------- */
.serve { position: relative; overflow: hidden; }
.serve .overline { color: rgba(255,255,255,.72); }
.serve .overline .tick { background: var(--gold); }
.serve .lead { color: rgba(255,255,255,.82); }
.serve .container { position: relative; z-index: 1; }
.serve__rings { position: absolute; top: 50%; right: -160px; width: 640px; height: 640px; z-index: 0; pointer-events: none; }
.serve__rings span { position: absolute; top: 50%; left: 50%; width: 120px; height: 120px; margin: -60px 0 0 -60px; border: 1px solid var(--gold-faint); border-radius: 50%; opacity: 0; animation: serveRing 7s ease-out infinite; }
.serve__rings span:nth-child(2){ animation-delay: 1.75s; }
.serve__rings span:nth-child(3){ animation-delay: 3.5s; }
.serve__rings span:nth-child(4){ animation-delay: 5.25s; }
@keyframes serveRing { 0% { transform: scale(.25); opacity: .5; } 80% { opacity: .08; } 100% { transform: scale(4.2); opacity: 0; } }
.serve__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); margin-top: clamp(2rem, 3vw, 3rem); }
.serve__region { font-family: var(--serif); font-weight: 700; font-size: clamp(1.2rem, 1.7vw, 1.5rem); color: #fff; padding-bottom: .7rem; border-bottom: 1px solid var(--gold-soft); margin-bottom: 1rem; }
.serve__list { display: flex; flex-wrap: wrap; }
.serve__list li { font-size: .94rem; color: rgba(255,255,255,.72); }
.serve__list li:not(:last-child)::after { content: "·"; margin: 0 .5rem; color: rgba(255,255,255,.34); }
.serve__note { margin-top: clamp(2rem, 3vw, 2.6rem); font-size: .82rem; color: rgba(255,255,255,.5); max-width: 82ch; }
@media (max-width: 760px){ .serve__cols { grid-template-columns: 1fr; gap: 2rem; } .serve__rings { display: none; } }

/* ---------- Footer 4-column ---------- */
.footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr 1fr; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Prose (legal + article pages) ---------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.35rem, 2.1vw, 1.85rem); line-height: 1.2; margin-top: 2.4rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { list-style: disc; padding-left: 1.25rem; display: grid; gap: .5rem; }
.prose__meta { font-size: .82rem; color: var(--muted); }

/* ---------- Insights ---------- */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 22px); }
.insight-card { display: flex; flex-direction: column; gap: .7rem; background: var(--paper); border: 1px solid var(--line); padding: clamp(24px, 2.4vw, 32px); transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease); }
a.insight-card:hover, a.insight-card:focus-visible { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 18px 40px -30px rgba(0,0,0,.5); }
.insight-card__tag { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.insight-card__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.2rem, 1.7vw, 1.45rem); line-height: 1.25; }
.insight-card__excerpt { color: var(--muted); font-size: .95rem; }
.insight-card .link { margin-top: auto; }
.insight-card.is-soon { opacity: .62; }
.insight-card__soon { margin-top: auto; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px){ .insight-grid { grid-template-columns: 1fr; } }

/* ---------- Consultation checklist ---------- */
.cl-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 3vw, 2.6rem); }
.cl-sheet { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 3vw, 44px) clamp(32px, 5vw, 72px); }
.cl-group__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.15rem, 1.7vw, 1.4rem); display: flex; align-items: baseline; gap: .7rem; padding-bottom: .8rem; border-bottom: 2px solid var(--ink); }
.cl-num { font-size: .8rem; font-weight: 700; color: var(--muted); font-family: var(--sans); letter-spacing: .08em; }
.cl-list { margin-top: 1rem; display: grid; gap: .8rem; }
.cl-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-2); font-size: .98rem; line-height: 1.5; }
.cl-box { flex: none; width: 18px; height: 18px; border: 1.5px solid var(--ink); border-radius: 3px; margin-top: .18rem; }
@media (max-width: 720px){ .cl-sheet { grid-template-columns: 1fr; } }
@media print {
  .cl-actions { display: none !important; }
  .cl-sheet { grid-template-columns: 1fr 1fr; gap: 14pt 28pt; }
  .cl-box { border-color: #000; }
  .cl-group { break-inside: avoid; }
}

/* ==========================================================================
   Aesthetic pass: brand accents, drop cap, image masks, grain, footer logo
   ========================================================================== */

/* Subtle paper grain (very low opacity, non-interactive) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 2000; pointer-events: none; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* Drop cap for a lead paragraph */
.dropcap::first-letter {
  font-family: var(--serif); font-weight: 700; float: left;
  font-size: 3.5em; line-height: .74; margin: .06em .1em 0 0; color: var(--navy);
}

/* Image reveal mask (wipes up as it enters view; uses the same .in from the observer) */
[data-mask] { clip-path: inset(0 0 101% 0); transition: clip-path 1.1s var(--ease-out); }
[data-mask].in { clip-path: inset(0 0 0 0); }
.no-js [data-mask] { clip-path: none; }

/* Gold accents on a few remaining hairlines */
.acc { border-top-color: var(--gold); }
.serve__list li:not(:last-child)::after { color: var(--gold-faint); }

/* Footer knockout logo */
.footer-logo { width: 54px; height: 54px; display: block; margin-bottom: 1.1rem; opacity: .95; }

/* Link hover picks up a hint of gold underline on interior text links */
.prose a.link:hover, .detail-row .link:hover { color: var(--navy); opacity: 1; }

/* ---------- Attorney photo (fills the portrait slot; B&W → color on hover) ---------- */
.portrait-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.portrait-photo.is-broken { display: none; }

/* ---------- Payments callout (LawPay / pay-over-time) ---------- */
.pay-note { margin-top: clamp(2.4rem, 4vw, 3.6rem); background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: clamp(24px, 3vw, 40px); display: flex; align-items: center; justify-content: space-between; gap: 1.4rem 2.4rem; flex-wrap: wrap; }
.pay-note .btn { flex: none; }
@media (max-width: 640px){ .pay-note { align-items: flex-start; } }

/* ---------- Mobile: keep long contact values from clipping ---------- */
.detail-row .v { overflow-wrap: anywhere; }
.detail-row .v a.link { display: inline; }   /* allow the email to wrap */
@media (max-width: 480px){
  .detail-row { grid-template-columns: 1fr; gap: .35rem; }
  .detail-row .k { margin-bottom: .1rem; }
}
