/* ============================================================
   SHAPIRO LAW OFFICE — Main Stylesheet
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:    #0b1d35;
  --navy2:   #122549;
  --gold:    #c8a84b;
  --gold-lt: #e0c07a;
  --cream:   #f7f3ec;
  --white:   #ffffff;
  --gray:    #6b7280;
  --border:  rgba(200,168,75,.22);
  --shadow:  0 4px 32px rgba(11,29,53,.12);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 4vw; }
.section    { padding: 80px 4vw; }
.section.dark  { background: var(--navy); }
.section.white { background: var(--white); }
.section.cream { background: var(--cream); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all .22s;
  border: 2px solid transparent;
}
.btn-gold    { background: var(--gold);  color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy    { background: var(--navy);  color: var(--gold); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy2); }

/* ── EYEBROW / SECTION LABELS ───────────────────────────── */
.eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); flex-shrink: 0; }

.sec-title { font-size: clamp(1.85rem, 3.6vw, 2.8rem); font-weight: 700; margin-bottom: 18px; }
.sec-body  { font-size: .91rem; line-height: 1.9; color: var(--gray); max-width: 640px; }
.dark .sec-title { color: var(--white); }
.dark .sec-body  { color: rgba(255,255,255,.52); }
.dark .eyebrow   { color: var(--gold-lt); }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  background: rgba(11,29,53,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo span:first-child { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--gold); }
.nav-logo span:last-child  { font-size: .6rem; color: rgba(255,255,255,.42); letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.62); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 8px 18px; border-radius: 2px; }
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed; top: 68px; left: 0; width: 100%; z-index: 199;
  background: var(--navy);
  padding: 16px 4vw 28px;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
}
.mob-menu.open { display: flex; }
.mob-menu a { display: block; padding: 13px 0; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.06); }
.mob-menu a:last-child { border-bottom: none; color: var(--gold); }
.mob-menu a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 110px 4vw 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero .sec-title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0; }
.page-hero .sec-title em { font-style: italic; color: var(--gold); }
.page-hero p.sub { color: rgba(255,255,255,.5); font-size: .92rem; margin-top: 12px; max-width: 580px; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 58px 4vw;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(1.45rem, 2.8vw, 2.1rem); font-weight: 700; color: var(--navy); max-width: 540px; line-height: 1.22; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: #070f1e; padding: 52px 4vw 26px; border-top: 1px solid var(--border); }
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
  max-width: 1160px; margin: 0 auto 40px;
}
.ft-brand p { font-size: .77rem; color: rgba(255,255,255,.33); line-height: 1.9; margin-top: 12px; max-width: 280px; }
.ft-col h5  { font-size: .59rem; font-weight: 700; letter-spacing: .23em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.ft-col ul  { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul a { font-size: .77rem; color: rgba(255,255,255,.38); transition: color .2s; }
.ft-col ul a:hover { color: var(--gold); }
.ft-bottom {
  max-width: 1160px; margin: 0 auto; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.ft-bottom p { font-size: .67rem; color: rgba(255,255,255,.2); }

/* ── AWARDS CAROUSEL ────────────────────────────────────── */
.awards-strip {
  background: var(--navy2); overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.aw-label {
  text-align: center; margin-bottom: 26px;
  font-size: .59rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.aw-label::before, .aw-label::after { content: ''; width: 42px; height: 1px; background: var(--gold); opacity: .4; }
.car-mask { position: relative; overflow: hidden; }
.car-mask::before, .car-mask::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.car-mask::before { left: 0;  background: linear-gradient(to right, var(--navy2), transparent); }
.car-mask::after  { right: 0; background: linear-gradient(to left,  var(--navy2), transparent); }
.car-track {
  display: flex; align-items: center; gap: 46px;
  animation: ticker 32s linear infinite; width: max-content;
}
.car-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.aw-logo {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  height: 88px; padding: 0 14px;
  filter: grayscale(1) brightness(1.6); opacity: .55;
  transition: filter .35s, opacity .35s, transform .35s;
}
.aw-logo:hover { filter: grayscale(0) brightness(1.05); opacity: 1; transform: scale(1.06); }
.aw-logo img { max-height: 76px; max-width: 148px; object-fit: contain; }

/* ── CALLOUT BOXES ──────────────────────────────────────── */
.callouts { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 18px; margin: 36px 0; }
.callout { background: var(--navy); padding: 26px 22px; border-radius: 3px; border-left: 3px solid var(--gold); }
.callout p { font-size: .79rem; color: rgba(255,255,255,.62); line-height: 1.7; margin: 0; }
.callout p strong { color: var(--gold); display: block; margin-bottom: 3px; font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-body p { font-size: .91rem; line-height: 1.95; color: var(--gray); margin-bottom: 18px; }
.about-body strong { color: var(--navy); font-weight: 700; }

.stat-sidebar { background: var(--navy); padding: 36px 28px; border-radius: 3px; border-top: 3px solid var(--gold); }
.stat-sidebar blockquote { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; color: var(--white); line-height: 1.4; margin-bottom: 20px; }
.stat-sidebar .sub { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 24px; }
.stat-row { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--border); }
.stat-row .label { font-size: .68rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .12em; }
.stat-row .value { font-family: 'Playfair Display', serif; font-size: .9rem; font-weight: 700; color: var(--gold); }

.media-note { margin-top: 16px; padding: 22px 24px; background: var(--cream); border-radius: 3px; border: 1.5px solid rgba(200,168,75,.3); }
.media-note p { font-size: .78rem; color: var(--gray); line-height: 1.75; }

.defense-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 24px; }
.defense-pill { background: rgba(255,255,255,.06); border: 1.5px solid rgba(200,168,75,.25); border-radius: 3px; padding: 12px 16px; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.75); text-align: center; }

.timeline { position: relative; padding-left: 36px; margin: 8px 0; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,168,75,.1)); }
.tl-item { position: relative; margin-bottom: 34px; }
.tl-dot  { position: absolute; left: -33px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold); }
.tl-year  { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tl-body  { font-size: .84rem; line-height: 1.8; color: var(--gray); }

/* ── SERVICES PAGE ──────────────────────────────────────── */
.svc-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(11,29,53,.08); border-radius: 4px; overflow: hidden; margin-bottom: 48px;
}
.svc-hero-card { background: var(--white); padding: 40px 32px; transition: background .25s; }
.svc-hero-card:hover { background: var(--navy); }
.svc-hero-card:hover h3, .svc-hero-card:hover p, .svc-hero-card:hover li { color: rgba(255,255,255,.75); }
.svc-hero-card:hover h3 { color: var(--white); }
.svc-hero-card:hover .svc-icon { color: var(--gold); }
.svc-icon  { font-size: 2rem; margin-bottom: 16px; color: var(--gold); transition: color .25s; }
.svc-hero-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; transition: color .25s; }
.svc-hero-card p  { font-size: .84rem; line-height: 1.85; color: var(--gray); margin-bottom: 12px; transition: color .25s; }
.svc-hero-card li { font-size: .8rem; color: var(--gray); padding-left: 16px; position: relative; margin-bottom: 5px; transition: color .25s; }
.svc-hero-card li::before { content: '›'; color: var(--gold); position: absolute; left: 0; font-size: 1rem; line-height: 1.2; }

.svc-panel { background: var(--white); padding: 38px 34px; border-radius: 3px; border-top: 3px solid var(--gold); box-shadow: var(--shadow); }
.svc-panel h3 { font-size: 1.22rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.svc-panel p  { font-size: .87rem; line-height: 1.85; color: var(--gray); }
.svc-list     { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.svc-list li  { font-size: .79rem; color: var(--gray); padding-left: 17px; position: relative; }
.svc-list li::before { content: '›'; color: var(--gold); position: absolute; left: 0; font-size: 1rem; line-height: 1.2; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: steps; margin: 48px 0; }
.process-step  { padding: 36px 28px; border-right: 1px solid rgba(200,168,75,.2); counter-increment: steps; position: relative; }
.process-step:last-child { border-right: none; }
.process-step::before { content: counter(steps, decimal-leading-zero); font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: rgba(200,168,75,.18); position: absolute; top: 16px; right: 20px; line-height: 1; }
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step p  { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.75; }

.no-fee-box {
  padding: 36px 40px; background: var(--navy); border-radius: 3px; border-left: 4px solid var(--gold);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.no-fee-box .label { color: var(--gold); font-size: .63rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 6px; }
.no-fee-box h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); }
.no-fee-box .sub { color: rgba(255,255,255,.48); font-size: .84rem; margin-top: 6px; }
.no-fee-box .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── HIGH PROFILE CASES ─────────────────────────────────── */
.media-logos { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; padding: 28px 32px; background: var(--navy); border-radius: 3px; border-left: 4px solid var(--gold); }
.media-logo-label { font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; width: 100%; }
.media-tag { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); padding: 6px 14px; border-radius: 2px; letter-spacing: .06em; }

.notable-cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 40px 0; }
.case-card { background: var(--white); border-radius: 3px; padding: 28px 24px; border-top: 3px solid var(--gold); box-shadow: var(--shadow); }
.case-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.case-card p  { font-size: .8rem; line-height: 1.75; color: var(--gray); }
.case-tag { display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: rgba(200,168,75,.1); padding: 3px 10px; border-radius: 2px; margin-bottom: 10px; }

.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 14px; }
.press-item { background: var(--white); border-radius: 3px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.press-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,29,53,.18); }
.press-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── ATTORNEYS PAGE ─────────────────────────────────────── */
.atty-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 52px; align-items: start; }
.atty-card { background: var(--navy); padding: 34px 26px; border-radius: 3px; border-top: 3px solid var(--gold); text-align: center; position: sticky; top: 88px; }
.atty-card img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; object-position: top center; margin: 0 auto 16px; border: 3px solid var(--gold); }
.atty-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 5px; }
.atty-card .title { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.atty-card .ci { margin-top: 20px; font-size: .77rem; color: rgba(255,255,255,.48); line-height: 2.1; }
.atty-card .ci a { color: var(--gold-lt); }

.atty-det h3 { font-size: 1.25rem; color: var(--navy); margin: 30px 0 12px; }
.atty-det h3:first-child { margin-top: 0; }
.atty-det p  { font-size: .87rem; line-height: 1.9; color: var(--gray); margin-bottom: 11px; }
.admit-list  { display: flex; flex-direction: column; gap: 6px; }
.admit-list li { font-size: .79rem; color: var(--gray); padding-left: 17px; position: relative; }
.admit-list li::before { content: '✦'; color: var(--gold); position: absolute; left: 0; font-size: .52rem; top: 4px; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; }
.ci-panel h3 { font-size: 1.18rem; color: var(--navy); margin-bottom: 18px; }
.ib { margin-bottom: 22px; }
.ib label { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.ib p { font-size: .87rem; color: var(--gray); line-height: 1.7; }
.ib a { color: var(--navy); font-weight: 700; }
.ib a:hover { color: var(--gold); }
.cont-box { background: var(--navy); padding: 26px 22px; border-radius: 3px; border-left: 3px solid var(--gold); margin-top: 28px; }
.cont-box p { font-size: .79rem; color: rgba(255,255,255,.58); line-height: 1.8; margin: 0; }
.cont-box p + p { margin-top: 9px; }
.cont-box strong { color: var(--gold-lt); }

/* Form */
.cform { display: flex; flex-direction: column; gap: 16px; }
.frow  { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.frow3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 13px; }
.fg    { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: .63rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--navy); }
.fg input, .fg select, .fg textarea {
  padding: 10px 13px;
  border: 1.5px solid #d9d0c0;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: .84rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg input[aria-invalid="true"], .fg select[aria-invalid="true"], .fg textarea[aria-invalid="true"] { border-color: #dc3545; }
.fg textarea { resize: vertical; min-height: 110px; }
.form-ok  { display: none; background: #d4edda; border: 1px solid #b8dfc4; color: #155724; padding: 22px 24px; border-radius: 3px; margin-bottom: 20px; font-size: .9rem; line-height: 1.7; }
.form-err { display: none; background: #f8d7da; border: 1px solid #f1aeb5; color: #842029; padding: 16px 20px; border-radius: 3px; margin-bottom: 20px; font-size: .85rem; }
.field-err { color: #dc3545; font-size: .75rem; margin-top: 4px; display: block; }
.form-note { font-size: .7rem; color: var(--gray); margin-top: 12px; text-align: center; }
.submit-btn { width: 100%; padding: 16px; font-size: .76rem; border: none; cursor: pointer; }

/* ── AWARDS CAROUSEL ────────────────────────────────────── */
.awards-strip {
  background: var(--white);
  padding: 36px 0 32px;
  border-bottom: 1px solid rgba(11,29,53,.08);
  overflow: hidden;
}
.aw-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 22px;
}
.car-mask {
  overflow: hidden;
  width: 100%;
  position: relative;
}


.car-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.car-track:hover { animation-play-state: paused; }

.aw-logo {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aw-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HOME PAGE ──────────────────────────────────────────── */
.hero {
  position: relative; height: calc(100vh - 68px); min-height: 580px;
  display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
  padding-top: 68px;
}
.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; height: 100%;
  object-fit: cover; object-position: left center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.85) 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.85) 100%);
}
.hero-ov {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right, rgba(11,29,53,.97) 0%, rgba(11,29,53,.88) 38%, rgba(11,29,53,.45) 65%, rgba(11,29,53,.1) 100%);
}
.hero-ct { position: relative; z-index: 3; max-width: 1160px; width: 100%; padding: 0 4vw; }
.hero-ey { font-size: .61rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hero-ey::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-h1 { font-size: clamp(2.9rem, 7.2vw, 5.6rem); font-weight: 900; color: var(--white); line-height: 1.03; margin-bottom: 10px; }
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.05rem, 2.3vw, 1.55rem); color: rgba(255,255,255,.58); margin-bottom: 18px; }
.hero-desc { font-size: .87rem; color: rgba(255,255,255,.52); line-height: 1.85; max-width: 460px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; margin-top: 52px; border-top: 1px solid var(--border); padding-top: 28px; flex-wrap: wrap; }
.stat { padding: 0 28px 0 0; }
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid var(--border); padding-left: 28px; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-l { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 4px; }

/* Home practice grid */
.home-svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 1px; background: rgba(11,29,53,.1); border: 1px solid rgba(11,29,53,.1); border-radius: 3px; overflow: hidden; }
.home-svc-card { background: var(--white); padding: 32px 24px; transition: background .25s; }
.home-svc-card:hover { background: var(--navy); }
.home-svc-card:hover .sc-t, .home-svc-card:hover .sc-d { color: var(--white); }
.home-svc-card:hover .sc-i { color: var(--gold); }
.sc-i { font-size: 1.65rem; color: var(--gold); margin-bottom: 12px; transition: color .25s; }
.sc-t { font-size: .98rem; font-weight: 700; margin-bottom: 7px; transition: color .25s; }
.sc-d { font-size: .77rem; line-height: 1.75; color: var(--gray); transition: color .25s; }

/* Why us */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.why-pts  { display: flex; flex-direction: column; gap: 26px; }
.why-pt   { display: flex; gap: 16px; align-items: flex-start; }
.why-n    { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 700; color: var(--gold); opacity: .32; line-height: 1; flex-shrink: 0; width: 42px; }
.why-pt h4 { font-size: .81rem; font-weight: 700; color: var(--white); margin-bottom: 4px; letter-spacing: .04em; }
.why-pt p  { font-size: .77rem; color: rgba(255,255,255,.46); line-height: 1.75; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid, .grid-2, .svc-full, .contact-grid, .atty-layout, .svc-hero-grid { grid-template-columns: 1fr; }
  .atty-card { position: static; }
  .ft-grid   { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(200,168,75,.2); }
  .process-step:nth-child(2), .process-step:nth-child(4) { border-bottom: none; }
  .about-intro-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .stat + .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 14px; }
  .frow, .frow3 { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; }
  .press-grid { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-bottom: 1px solid rgba(200,168,75,.2); border-right: none; }
  .process-step:last-child { border-bottom: none; }
  .no-fee-box { flex-direction: column; }
}
