:root {
  --navy-975: #030a12;
  --navy-950: #07121f;
  --navy-900: #0a1827;
  --navy-800: #10253a;
  --ink: #18212a;
  --stone-200: #e7dfd1;
  --stone-100: #f2ede4;
  --stone-50: #faf8f3;
  --paper: #fffdf8;
  --bronze: #b9915d;
  --bronze-dark: #7c5c36;
  --bronze-light: #d6bd93;
  --white: #fff;
  --muted: #697079;
  --line: rgba(17, 35, 53, 0.16);
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page-x: clamp(22px, 6.5vw, 112px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--stone-50);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin-top: 0; }
.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; }

.review-bar {
  position: relative;
  z-index: 100;
  padding: 7px 24px;
  color: var(--navy-950);
  background: var(--bronze-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 94px;
  padding: 16px var(--page-x);
  display: grid;
  grid-template-columns: minmax(250px, .9fr) minmax(0, 1.8fr) minmax(175px, .55fr);
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .3s ease, min-height .3s ease, top .3s ease;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  min-height: 72px;
  background: rgba(7,18,31,.97);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--bronze-light);
  border-radius: 50%;
  color: var(--bronze-light);
  font: 27px/1 var(--serif);
}
.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong { font: 20px/1 var(--serif); letter-spacing: .01em; }
.brand-copy small { color: rgba(255,255,255,.62); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.5vw, 25px); }
.main-nav a { position: relative; white-space: nowrap; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--bronze-light); transition: width .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-call { justify-self: end; text-decoration: none; text-align: right; }
.header-call span { display: block; color: rgba(255,255,255,.58); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.header-call strong { color: var(--bronze-light); font-size: 14px; line-height: 1.9; }
.menu-toggle { display: none; }

.eyebrow { margin: 0 0 22px; color: var(--bronze-light); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.dark { color: var(--bronze-dark); }
h1, h2, h3, h4 { margin-top: 0; font-family: var(--serif); font-weight: 400; }
.display-title { margin-bottom: 30px; font-size: clamp(58px, 7vw, 112px); line-height: .94; letter-spacing: -.045em; }
.section-title { margin-bottom: 28px; color: var(--navy-900); font-size: clamp(42px, 4.7vw, 73px); line-height: 1.03; letter-spacing: -.035em; }
.subhead { margin-bottom: 22px; color: var(--navy-900); font-size: clamp(30px, 3.2vw, 48px); line-height: 1.08; letter-spacing: -.025em; }
.lede { color: rgba(255,255,255,.76); font: clamp(19px, 2vw, 27px)/1.55 var(--serif); }
.large-copy { color: var(--navy-800); font: clamp(20px, 2vw, 29px)/1.55 var(--serif); }
.body-copy { color: var(--muted); font-size: 16px; line-height: 1.86; }
.body-copy p { margin-bottom: 1.35em; }
.body-copy strong { color: var(--ink); }
.text-link { display: inline-flex; gap: 10px; margin-top: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--bronze); color: var(--bronze-dark); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.button { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; font-size: 10px; font-weight: 600; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--bronze-light); }
.button-primary:hover { background: var(--paper); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.36); background: rgba(4,11,19,.16); }
.button-ghost:hover { background: rgba(255,255,255,.1); }

.hero {
  position: relative;
  min-height: 880px;
  height: min(94vh, 1000px);
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--navy-950);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,13,23,.98) 0%, rgba(5,16,28,.88) 33%, rgba(7,18,31,.42) 66%, rgba(7,18,31,.18) 100%), linear-gradient(0deg, rgba(4,11,19,.65), transparent 48%); }
.hero-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 96px 96px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero-content { position: relative; z-index: 2; width: min(790px, 76vw); margin-left: var(--page-x); padding-top: 102px; }
.hero-firm-name { margin: 0 0 25px; color: rgba(255,255,255,.78); font: clamp(19px, 2vw, 27px)/1.35 var(--serif); }
.hero-content .display-title em { color: var(--bronze-light); font-weight: 400; }
.hero-lede { max-width: 650px; margin-bottom: 37px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { position: absolute; z-index: 2; right: var(--page-x); bottom: 56px; width: min(330px, 28vw); display: grid; grid-template-columns: auto 1fr; gap: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.35); }
.hero-note .note-number { color: var(--bronze-light); font-size: 10px; letter-spacing: .15em; }
.hero-note strong { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.hero-note p { margin: 8px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.55; }

.page-hero {
  position: relative;
  min-height: 565px;
  padding: 190px var(--page-x) 92px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 78% 24%, rgba(185,145,93,.17), transparent 22%), linear-gradient(135deg, var(--navy-800), var(--navy-975) 70%);
}
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 88px 88px; mask-image: linear-gradient(90deg, black, transparent); }
.page-hero-inner { position: relative; z-index: 1; max-width: 1020px; }
.page-hero .display-title { max-width: 1000px; margin-bottom: 20px; }
.page-hero .lede { max-width: 720px; margin-bottom: 0; }

.trust-strip { padding: 24px var(--page-x); display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; color: var(--navy-900); background: var(--bronze-light); }
.trust-strip p { margin: 0; position: relative; padding-left: 18px; font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.trust-strip p::before { content: ""; position: absolute; left: 0; top: 3px; width: 6px; height: 6px; border: 1px solid var(--navy-900); border-radius: 50%; }

.section { padding: clamp(84px, 10vw, 150px) var(--page-x); }
.section.paper { background: var(--paper); }
.section.stone { background: var(--stone-100); }
.section.navy { color: var(--white); background: var(--navy-900); }
.section.navy .section-title, .section.navy .subhead, .section.navy .large-copy { color: var(--white); }
.section.navy .body-copy { color: rgba(255,255,255,.67); }
.section.navy .body-copy strong { color: var(--bronze-light); }
.section.navy .text-link { color: var(--bronze-light); }
.content-grid { display: grid; grid-template-columns: minmax(210px, .56fr) minmax(0, 1.44fr); gap: clamp(48px, 10vw, 150px); }
.content-grid.single { display: block; }
.content-grid.single .content-prose { max-width: 980px; margin: 0 auto; }
.content-grid.reverse { grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); }
.content-grid.reverse > .side-label { grid-column: 2; grid-row: 1; }
.content-grid.reverse > .content-prose { grid-column: 1; grid-row: 1; }
.side-label { position: relative; }
.side-label::after { content: ""; display: block; width: 1px; height: 90px; margin: 28px 0 0 4px; background: var(--bronze); }
.side-label .number { display: block; margin-bottom: 18px; color: var(--bronze); font: 60px/1 var(--serif); }
.side-label h2 { color: inherit; font-size: clamp(30px, 3vw, 47px); line-height: 1.08; }
.content-prose { max-width: 850px; }
.content-prose > :last-child { margin-bottom: 0; }
.editorial-lead { margin-bottom: 62px; }
.editorial-lead .section-title { max-width: 900px; }
.editorial-lead .large-copy { max-width: 800px; }
.highlight-block { margin-top: 54px; padding: 38px clamp(26px, 4vw, 54px); border-left: 2px solid var(--bronze); background: rgba(185,145,93,.08); }
.highlight-block p:last-child { margin-bottom: 0; }

.practice-overview { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.practice-overview article { min-height: 330px; padding: 38px clamp(24px, 3vw, 44px); display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.practice-overview article:first-child { border-left: 0; }
.practice-overview .card-index { margin-bottom: auto; color: var(--bronze-dark); font-size: 10px; letter-spacing: .16em; }
.practice-overview h3 { margin-bottom: 18px; color: var(--navy-900); font-size: clamp(28px, 2.5vw, 42px); line-height: 1.08; }
.practice-overview p { color: var(--muted); font-size: 14px; line-height: 1.72; }

.service-list { margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; list-style: none; border-top: 1px solid var(--line); }
.service-list li { position: relative; padding: 20px 0 20px 25px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 14px; line-height: 1.55; }
.service-list li::before { content: ""; position: absolute; left: 0; top: 26px; width: 7px; height: 7px; border: 1px solid var(--bronze-dark); border-radius: 50%; }
.navy .service-list { border-color: rgba(255,255,255,.17); }
.navy .service-list li { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.17); }

.location-panel { position: relative; overflow: hidden; }
.location-panel::after { content: "TX"; position: absolute; right: -1vw; bottom: -10vw; color: rgba(185,145,93,.08); font: min(31vw, 470px)/1 var(--serif); }
.location-panel .content-grid { position: relative; z-index: 1; }

.attorney-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(45px, 8vw, 120px); align-items: start; }
.portrait-frame { position: sticky; top: 112px; max-width: 430px; padding: 14px; background: var(--paper); box-shadow: 0 28px 80px rgba(7,18,31,.15); }
.portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
.portrait-caption { padding: 22px 12px 10px; }
.portrait-caption span { color: var(--bronze-dark); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.portrait-caption strong { display: block; margin-top: 6px; color: var(--navy-900); font: 29px/1.15 var(--serif); }
.credentials { margin: 44px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.credentials li { padding: 17px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 14px; }
.credentials span { color: var(--bronze-dark); font-weight: 600; }

.process-timeline { margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-step { position: relative; padding: 0 0 70px 106px; counter-increment: process; }
.process-step::before { content: ""; position: absolute; left: 0; top: -7px; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--bronze); border-radius: 50%; color: var(--bronze-dark); font: 22px/1 var(--serif); }
.process-step::after { content: ""; position: absolute; left: 32px; top: 64px; bottom: 0; width: 1px; background: var(--line); }
.process-step:last-child { padding-bottom: 0; }
.process-step:last-child::after { display: none; }
.process-step h2 { margin-bottom: 15px; color: var(--navy-900); font-size: clamp(31px, 3vw, 46px); }
.process-step p { max-width: 800px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }

.after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.after-card { min-height: 360px; padding: clamp(30px, 5vw, 64px); background: var(--paper); }
.after-card .card-index { display: block; margin-bottom: 60px; color: var(--bronze-dark); font-size: 10px; letter-spacing: .16em; }
.after-card h2 { margin-bottom: 20px; color: var(--navy-900); font-size: clamp(31px, 3.2vw, 49px); line-height: 1.07; }
.after-card p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.after-card:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 300px; }

.faq-list { max-width: 1000px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 28px 0; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; color: var(--navy-900); border: 0; background: transparent; text-align: left; cursor: pointer; font: clamp(23px, 2.6vw, 36px)/1.22 var(--serif); }
.faq-question .plus { position: relative; width: 27px; height: 27px; }
.faq-question .plus::before, .faq-question .plus::after { content: ""; position: absolute; left: 3px; right: 3px; top: 13px; height: 1px; background: var(--bronze-dark); transition: transform .25s ease; }
.faq-question .plus::after { transform: rotate(90deg); }
.faq-item.open .plus::after { transform: rotate(0); }
.faq-answer { padding: 0 80px 32px 0; color: var(--muted); font-size: 16px; line-height: 1.84; }

.warning-panel { padding: clamp(36px, 6vw, 72px); color: var(--white); background: var(--navy-900); }
.warning-panel .eyebrow { margin-bottom: 18px; }
.warning-panel h2 { max-width: 700px; margin-bottom: 24px; font-size: clamp(37px, 4.5vw, 66px); line-height: 1.04; }
.warning-panel p { max-width: 850px; margin-bottom: 0; color: rgba(255,255,255,.67); font-size: 16px; line-height: 1.83; }

.contact-section { padding: clamp(84px, 10vw, 145px) var(--page-x); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 140px); color: var(--white); background: var(--navy-950); }
.contact-section .section-title { color: var(--white); }
.contact-section .body-copy { color: rgba(255,255,255,.63); }
.contact-details { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-details p { margin-bottom: 22px; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.7; }
.contact-details strong { color: var(--bronze-light); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.contact-details a { color: var(--white); text-decoration: none; }
.phone-display { display: inline-block; margin-top: 8px; color: var(--bronze-light) !important; font: clamp(29px, 3.2vw, 47px)/1 var(--serif); }
.contact-form { position: relative; padding: clamp(28px, 4vw, 55px); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 9px; padding: 13px 0; color: var(--white); border: 0; border-bottom: 1px solid rgba(255,255,255,.24); border-radius: 0; background: transparent; font: 15px var(--sans); }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-bottom-color: var(--bronze-light); }
.contact-form .button { width: 100%; margin-top: 6px; border: 0; }
.contact-form .button:disabled { cursor: wait; opacity: .7; }
.contact-form small { display: block; margin-top: 17px; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.6; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { margin: 17px 0 0; padding: 12px 14px; color: var(--white); border-left: 2px solid var(--bronze-light); background: rgba(255,255,255,.06); font-size: 12px; line-height: 1.6; }
.form-status.success { border-left-color: #85c89a; }
.form-status.error { border-left-color: #d39b88; }
.form-status a { color: var(--bronze-light); }

.cta-band { padding: 72px var(--page-x); display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; color: var(--navy-950); background: var(--bronze-light); }
.cta-band h2 { max-width: 810px; margin: 0; font-size: clamp(34px, 4vw, 61px); line-height: 1.06; }
.cta-band .cta-copy { max-width: 900px; margin: 0; font: clamp(34px, 4vw, 61px)/1.06 var(--serif); }
.cta-band p { max-width: 720px; margin: 20px 0 0; font-size: 14px; line-height: 1.7; }
.cta-band .button { border-color: var(--navy-900); }

.site-footer { position: relative; padding: 70px var(--page-x) 34px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 7vw; color: rgba(255,255,255,.58); background: var(--navy-975); font-size: 12px; line-height: 1.7; }
.footer-brand { display: flex; align-items: flex-start; gap: 18px; }
.footer-brand strong { color: var(--white); font: 22px/1.2 var(--serif); }
.footer-brand p { max-width: 400px; }
.brand-mark.small { flex: 0 0 auto; width: 42px; height: 42px; font-size: 24px; }
.site-footer strong { color: var(--bronze-light); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.site-footer a { text-decoration: none; }
.footer-bottom { grid-column: 1/-1; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.3); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

.whatsapp-fab {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 110;
  min-height: 52px;
  padding: 0 20px 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: #176b52;
  box-shadow: 0 15px 38px rgba(4,13,23,.3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.whatsapp-fab svg { width: 25px; height: 25px; fill: currentColor; }
.whatsapp-fab:hover,
.whatsapp-fab:focus-visible { color: var(--white); background: #12815d; transform: translateY(-2px); box-shadow: 0 18px 44px rgba(4,13,23,.38); }
.whatsapp-fab:focus-visible { outline: 2px solid var(--bronze-light); outline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1240px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-call { display: none; }
  .main-nav { justify-self: end; }
}

@media (max-width: 1000px) {
  .menu-toggle { display: grid; gap: 4px; justify-self: end; width: 42px; height: 42px; padding: 12px 9px; border: 1px solid rgba(255,255,255,.2); background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: var(--white); }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 28px var(--page-x); flex-direction: column; align-items: flex-start; gap: 23px; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.12); }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 11px; }
  .content-grid, .content-grid.reverse, .contact-section { grid-template-columns: 1fr; }
  .content-grid.reverse > .side-label, .content-grid.reverse > .content-prose { grid-column: 1; grid-row: auto; }
  .side-label::after { height: 45px; }
  .practice-overview { grid-template-columns: 1fr; }
  .practice-overview article { min-height: 280px; border-left: 0; border-top: 1px solid var(--line); }
  .practice-overview article:first-child { border-top: 0; }
  .attorney-grid { grid-template-columns: .65fr 1fr; gap: 50px; }
  .after-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .review-bar { padding-inline: 12px; font-size: 8px; }
  .site-header { top: 0; min-height: 76px; padding: 13px 20px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 40px; height: 40px; font-size: 23px; }
  .brand-copy strong { font-size: 18px; }
  .hero { min-height: 780px; height: 100svh; }
  .hero-image { object-position: 64% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(4,13,23,.96), rgba(5,16,28,.67)), linear-gradient(0deg, rgba(4,11,19,.68), transparent 50%); }
  .hero-content { width: auto; margin: 0 22px; padding-top: 100px; }
  .display-title { font-size: clamp(50px, 15.5vw, 75px); }
  .hero-note { display: none; }
  .page-hero { min-height: 500px; padding: 165px 22px 70px; }
  .page-hero .display-title { font-size: clamp(48px, 14vw, 70px); }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 21px 22px; gap: 17px; }
  .section { padding: 78px 22px; }
  .section-title { font-size: 43px; }
  .content-grid { gap: 42px; }
  .service-list { grid-template-columns: 1fr; }
  .attorney-grid { grid-template-columns: 1fr; }
  .portrait-frame { position: relative; top: 0; width: min(100%, 330px); }
  .credentials li { grid-template-columns: 1fr; gap: 6px; }
  .process-step { padding: 0 0 58px 76px; }
  .process-step::before { width: 52px; height: 52px; }
  .process-step::after { left: 26px; top: 52px; }
  .after-card { min-height: 0; }
  .after-card .card-index { margin-bottom: 35px; }
  .faq-question { padding: 23px 0; font-size: 24px; }
  .faq-answer { padding-right: 0; }
  .contact-section { padding: 78px 22px; gap: 55px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-band { padding: 58px 22px; grid-template-columns: 1fr; gap: 28px; }
  .site-footer { grid-template-columns: 1fr; padding: 60px 22px 27px; }
  .footer-bottom { grid-column: 1; }
  .whatsapp-fab { right: 16px; bottom: 16px; min-width: 52px; width: 52px; padding: 0; justify-content: center; }
  .whatsapp-fab span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
