:root {
  --ink: #10262b;
  --ink-soft: #43565a;
  --navy: #082b32;
  --navy-deep: #041e24;
  --navy-light: #0d3a43;
  --gold: #d7a846;
  --gold-light: #f0cf88;
  --cream: #f6f1e8;
  --paper: #fffdf9;
  --line: rgba(8, 43, 50, .13);
  --white: #fff;
  --green: #1d9d61;
  --shadow: 0 24px 60px rgba(4, 30, 36, .11);
  --radius: 3px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 24px;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(3.05rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2.4rem, 4.4vw, 4.35rem); }
h3 { line-height: 1.25; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 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;
}
.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 14px;
  color: var(--navy); background: var(--gold-light); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
  color: var(--gold-light); font-size: .74rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow--dark { color: #967126; }
.section-heading { max-width: 650px; }
.section-heading > p:last-child { color: var(--ink-soft); max-width: 600px; }
.section-heading--center { margin: 0 auto 62px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p:last-child { margin-inline: auto; }

.topbar { color: rgba(255,255,255,.7); background: var(--navy-deep); font-size: .72rem; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p, .topbar span { margin: 0; }
.topbar span { color: var(--gold-light); }
.header {
  position: absolute; z-index: 20; top: 34px; left: 0; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.13); transition: background .25s, box-shadow .25s;
}
.header.is-scrolled {
  position: fixed; top: 0; background: rgba(4,30,36,.96); box-shadow: 0 10px 35px rgba(0,0,0,.16); backdrop-filter: blur(10px);
}
.header__inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { flex: 0 1 360px; }
.brand img { width: min(100%, 360px); height: auto; }
.nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.86); font-size: .78rem; font-weight: 700; }
.nav > a:not(.nav__cta) { position: relative; padding: 32px 0; }
.nav > a:not(.nav__cta)::after {
  content: ""; position: absolute; bottom: 24px; left: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.nav > a:hover::after, .nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 12px 17px; color: var(--navy-deep); background: var(--gold); }
.menu-button { display: none; width: 45px; height: 45px; padding: 10px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { width: 100%; height: 2px; display: block; margin: 6px 0; background: white; transition: transform .25s, opacity .25s; }

.hero { position: relative; min-height: 860px; display: flex; align-items: stretch; color: white; background: var(--navy-deep); overflow: hidden; }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media {
  background-image: url("assets/hero-previdenciario.webp"); background-position: center center; background-size: cover;
  animation: hero-zoom 16s ease-out both;
}
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(4,30,36,.98) 0%, rgba(4,30,36,.92) 34%, rgba(4,30,36,.52) 61%, rgba(4,30,36,.2) 100%),
    linear-gradient(0deg, rgba(4,30,36,.66) 0%, transparent 38%);
}
.hero__content { position: relative; z-index: 2; padding-top: 215px; padding-bottom: 205px; }
.hero__content h1 { max-width: 790px; margin-bottom: 28px; }
.hero__lead { max-width: 680px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin: 38px 0 24px; }
.button {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 15px 24px;
  border: 1px solid transparent; border-radius: var(--radius); font-size: .78rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; transition: transform .25s, background .25s, color .25s, box-shadow .25s;
}
.button svg { width: 20px; height: 20px; fill: currentColor; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button--gold { color: var(--navy-deep); background: var(--gold); box-shadow: 0 14px 30px rgba(215,168,70,.18); }
.button--gold:hover, .button--gold:focus-visible { background: var(--gold-light); box-shadow: 0 18px 35px rgba(215,168,70,.26); }
.button--whatsapp { color: white; background: var(--green); box-shadow: 0 14px 30px rgba(29,157,97,.24); }
.button--whatsapp:hover, .button--whatsapp:focus-visible { color: white; background: #178a54; box-shadow: 0 18px 35px rgba(29,157,97,.34); }
.button--outline { color: white; border-color: rgba(255,255,255,.5); }
.button--outline:hover, .button--outline:focus-visible { color: var(--navy); background: white; }
.text-link { padding: 10px 0; color: white; border-bottom: 1px solid rgba(255,255,255,.38); font-size: .82rem; font-weight: 700; }
.text-link span { margin-left: 7px; color: var(--gold); }
.hero__note { max-width: 620px; color: rgba(255,255,255,.52); font-size: .72rem; }
.hero__rail { position: absolute; z-index: 3; bottom: 0; left: 0; width: 100%; background: rgba(4,30,36,.86); border-top: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
.hero__rail-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__rail p { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; margin: 0; padding: 27px 34px; }
.hero__rail p + p { border-left: 1px solid rgba(255,255,255,.13); }
.hero__rail span { grid-row: 1 / 3; color: var(--gold); font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; line-height: 1; }
.hero__rail strong { font-size: .88rem; }
.hero__rail small { color: rgba(255,255,255,.56); font-size: .68rem; }
@keyframes hero-zoom { from { transform: scale(1.035); } to { transform: scale(1); } }

.intro { background: var(--cream); }
.intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.intro__copy > p { margin-bottom: 32px; color: var(--ink-soft); font-size: 1.06rem; }
.intro__points { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.intro__points span { padding: 20px 15px 0 0; font-size: .75rem; font-weight: 800; }
.intro__points span + span { padding-left: 20px; border-left: 1px solid var(--line); }

.services { background: var(--paper); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 350px; padding: 42px 38px 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: color .35s, background .35s, transform .35s, box-shadow .35s; }
.service-card::after { content: ""; position: absolute; right: -50px; bottom: -80px; width: 170px; height: 170px; border: 1px solid rgba(215,168,70,.25); border-radius: 50%; transition: transform .45s; }
.service-card__number { position: absolute; top: 24px; right: 25px; color: rgba(8,43,50,.22); font-family: "DM Serif Display", Georgia, serif; font-size: 1.3rem; }
.service-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 42px; color: #9b7529; background: rgba(215,168,70,.1); border-radius: 50%; }
.service-card__icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { max-width: 260px; margin-bottom: 16px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--ink-soft); font-size: .84rem; }
.service-card:hover { z-index: 2; color: white; background: var(--navy); transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card:hover p { color: rgba(255,255,255,.68); }
.service-card:hover .service-card__icon { color: var(--gold-light); background: rgba(255,255,255,.08); }
.service-card:hover .service-card__number { color: rgba(255,255,255,.24); }
.service-card:hover::after { transform: scale(1.7); }

.focus { position: relative; color: white; background: var(--navy); overflow: hidden; }
.focus__pattern { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(30deg, transparent 48%, var(--gold) 49%, var(--gold) 51%, transparent 52%); background-size: 90px 90px; mask-image: linear-gradient(90deg, transparent 40%, #000); }
.focus__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.focus__content > p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.72); }
.focus__content .button { margin-top: 18px; }
.focus__facts { padding: 38px; color: var(--ink); background: var(--cream); box-shadow: 24px 24px 0 rgba(215,168,70,.18); }
.focus__facts-title { padding-bottom: 18px; border-bottom: 1px solid var(--line); font-family: "DM Serif Display", Georgia, serif; font-size: 1.5rem; }
.focus__facts > div { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.focus__facts > div > span { color: #997427; font-family: "DM Serif Display", Georgia, serif; font-size: 1.25rem; }
.focus__facts p { margin: 0; color: var(--ink-soft); font-size: .78rem; }
.focus__facts strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: .85rem; }
.focus__facts small { display: block; margin-top: 20px; color: #667477; font-size: .66rem; }

.path { background: var(--cream); }
.path__steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: path; }
.path__steps li { position: relative; padding: 0 30px; text-align: center; }
.path__steps li + li::before { content: ""; position: absolute; top: 30px; left: -50%; width: 100%; height: 1px; background: rgba(150,113,38,.35); }
.path__steps li > span { position: relative; z-index: 1; width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 28px; color: var(--navy); background: var(--gold); border-radius: 50%; font-family: "DM Serif Display", Georgia, serif; font-size: 1.4rem; box-shadow: 0 0 0 10px var(--cream); }
.path__steps h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.path__steps p { margin: 0; color: var(--ink-soft); font-size: .78rem; }

.triage { color: white; background: var(--navy-deep); }
.triage__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.triage__intro > p:last-child { color: rgba(255,255,255,.58); }
.triage__panel { background: white; box-shadow: var(--shadow); }
.triage__choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #e9e5dd; }
.triage__choices button { min-height: 74px; padding: 16px 18px; color: var(--ink); background: var(--paper); border: 0; text-align: left; font-size: .78rem; font-weight: 800; cursor: pointer; transition: color .2s, background .2s; }
.triage__choices button:last-child:nth-child(odd) { grid-column: 1 / -1; }
.triage__choices button:hover, .triage__choices button[aria-pressed="true"] { color: white; background: var(--navy-light); }
.triage__result { padding: 30px; color: var(--ink); }
.triage__result > span { display: block; color: #7a8788; font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.triage__result > strong { display: block; margin: 6px 0 22px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.45rem; font-weight: 400; }

.team { background: var(--paper); }
.team__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.team__content > p:not(.eyebrow) { max-width: 650px; color: var(--ink-soft); }
.team__lawyers { border-top: 1px solid var(--line); }
.team__lawyers article { display: grid; grid-template-columns: 68px 1fr; gap: 22px; align-items: center; min-height: 128px; padding: 24px 28px; border-bottom: 1px solid var(--line); transition: background .25s, transform .25s; }
.team__lawyers article:hover { background: var(--cream); transform: translateX(6px); }
.team__lawyers article > span { width: 58px; height: 58px; display: grid; place-items: center; color: var(--gold-light); background: var(--navy); border-radius: 50%; font-size: .74rem; font-weight: 800; }
.team__lawyers h3 { margin: 0 0 4px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.team__lawyers p { margin: 0; color: #7c898b; font-size: .72rem; }

.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: start; }
.faq__list { border-top: 1px solid rgba(8,43,50,.28); }
.faq__item { border-bottom: 1px solid rgba(8,43,50,.28); }
.faq__item h3 { margin: 0; }
.faq__item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; color: var(--ink); background: transparent; border: 0; text-align: left; cursor: pointer; font-family: "DM Serif Display", Georgia, serif; font-size: 1.25rem; }
.faq__item i { position: relative; flex: 0 0 26px; width: 26px; height: 26px; border: 1px solid rgba(8,43,50,.3); border-radius: 50%; }
.faq__item i::before, .faq__item i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .25s; }
.faq__item i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item button[aria-expanded="true"] i::after { transform: translate(-50%, -50%) rotate(0); }
.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq__answer > p { overflow: hidden; margin: 0; color: var(--ink-soft); font-size: .82rem; }
.faq__item:has(button[aria-expanded="true"]) .faq__answer { grid-template-rows: 1fr; }
.faq__item:has(button[aria-expanded="true"]) .faq__answer > p { padding: 0 50px 24px 0; }

.contact { color: white; background: var(--navy); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.contact__content > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.66); }
.contact__content .button { margin-top: 15px; }
.contact__locations { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.18); }
.contact__locations article { min-height: 250px; padding: 34px; }
.contact__locations article + article { border-left: 1px solid rgba(255,255,255,.18); }
.contact__locations span { color: var(--gold-light); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact__locations h3 { margin: 48px 0 10px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.contact__locations p { margin: 0; color: rgba(255,255,255,.58); font-size: .75rem; }

.footer { padding: 62px 0 22px; color: rgba(255,255,255,.55); background: var(--navy-deep); font-size: .72rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 70px; padding-bottom: 50px; }
.footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer__grid img { width: 330px; height: auto; margin-bottom: 12px; }
.footer__grid strong { margin-bottom: 10px; color: white; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer__grid a:hover { color: var(--gold-light); }
.footer__bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 50; right: 22px; bottom: 22px; min-width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 0 19px; color: white; background: var(--green); border-radius: 50px; box-shadow: 0 14px 35px rgba(0,0,0,.22); font-size: .74rem; font-weight: 800; transition: transform .25s, box-shadow .25s; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.3); }
.whatsapp-float svg { width: 23px; height: 23px; fill: currentColor; }
.toast { position: fixed; z-index: 100; right: 22px; bottom: 94px; max-width: 330px; padding: 16px 18px; color: white; background: #162d32; border-left: 3px solid var(--gold); box-shadow: var(--shadow); opacity: 0; transform: translateY(15px); pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast strong, .toast span { display: block; }
.toast strong { font-size: .78rem; }
.toast span { color: rgba(255,255,255,.65); font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.services__grid .reveal:nth-child(2), .path__steps .reveal:nth-child(2) { transition-delay: .08s; }
.services__grid .reveal:nth-child(3), .path__steps .reveal:nth-child(3) { transition-delay: .16s; }
.services__grid .reveal:nth-child(4), .path__steps .reveal:nth-child(4) { transition-delay: .08s; }
.services__grid .reveal:nth-child(5) { transition-delay: .16s; }

@media (max-width: 1050px) {
  .nav { gap: 18px; }
  .nav > a:not(.nav__cta) { display: none; }
  .intro__grid, .focus__grid, .team__grid { gap: 60px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .path__steps { grid-template-columns: repeat(2, 1fr); gap: 55px 0; }
  .path__steps li:nth-child(3)::before { display: none; }
  .triage__grid, .faq__grid, .contact__grid { gap: 55px; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  .topbar { display: none; }
  .header, .header.is-scrolled { top: 0; }
  .header__inner { min-height: 72px; }
  .brand { flex-basis: 270px; }
  .brand img { width: 270px; }
  .menu-button { position: relative; z-index: 2; display: block; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: 90px 32px 40px; background: var(--navy-deep); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: opacity .25s, visibility .25s, transform .25s; }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav > a:not(.nav__cta) { display: block; padding: 8px 0; font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; font-weight: 400; }
  .nav > a:not(.nav__cta)::after { bottom: 4px; }
  .nav__cta { margin-top: 16px; }
  .hero { min-height: 820px; }
  .hero__media { background-position: 62% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(4,30,36,.96) 0%, rgba(4,30,36,.82) 65%, rgba(4,30,36,.45)); }
  .hero__content { padding-top: 160px; padding-bottom: 250px; }
  .hero__content h1 { font-size: clamp(2.75rem, 12vw, 4.5rem); }
  .hero__lead { font-size: .96rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .hero__rail-grid { grid-template-columns: 1fr; }
  .hero__rail p { grid-template-columns: 44px 1fr; padding: 14px 8px; }
  .hero__rail p + p { border-top: 1px solid rgba(255,255,255,.13); border-left: 0; }
  .hero__rail span { font-size: 1.4rem; }
  .hero__rail small { display: none; }
  .intro__grid, .focus__grid, .triage__grid, .team__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .intro__grid, .focus__grid, .triage__grid, .team__grid, .faq__grid, .contact__grid { gap: 45px; }
  .intro__points { grid-template-columns: 1fr; }
  .intro__points span, .intro__points span + span { padding: 15px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .focus__facts { box-shadow: 12px 12px 0 rgba(215,168,70,.18); }
  .path__steps { grid-template-columns: 1fr; gap: 0; }
  .path__steps li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 0 0 35px; text-align: left; }
  .path__steps li + li::before { top: -35px; left: 30px; width: 1px; height: 68px; }
  .path__steps li:nth-child(3)::before { display: block; }
  .path__steps li > span { margin: 0; }
  .triage__choices { grid-template-columns: 1fr; }
  .triage__choices button:last-child:nth-child(odd) { grid-column: auto; }
  .team__lawyers article { padding-inline: 18px; }
  .contact__locations { grid-template-columns: 1fr; }
  .contact__locations article + article { border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; }
  .whatsapp-float { width: 58px; padding: 0; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 460px) {
  .brand img { width: 225px; }
  h2 { font-size: 2.4rem; }
  .hero__content h1 { font-size: 2.85rem; }
  .hero__content { padding-top: 145px; }
  .button { width: 100%; }
  .hero__actions .text-link { width: auto; }
  .service-card { padding-inline: 28px; }
  .focus__facts { padding: 28px 23px; }
  .team__lawyers h3 { font-size: 1.05rem; }
  .contact__locations article { min-height: 210px; padding: 28px; }
}

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