:root {
  --primary: #171512;
  --primary-soft: #28241f;
  --ink: #25211c;
  --muted: #6b6257;
  --paper: #f7f3eb;
  --paper-deep: #eae1d2;
  --surface: #fffdf8;
  --accent: #bb9860;
  --accent-light: #dec99f;
  --line: #d9cebd;
  --footer: #151310;
  --radius-sm: 9px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 55px rgba(35, 29, 21, .10);
  --shadow-soft: 0 12px 35px rgba(35, 29, 21, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.72 Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 56px)); margin-inline: auto; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 235, .92);
  border-bottom: 1px solid rgba(187, 152, 96, .24);
  backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.scrolled {
  background: rgba(247, 243, 235, .98);
  box-shadow: 0 8px 28px rgba(31, 26, 19, .08);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  transition: min-height .3s ease;
}

.site-header.scrolled .nav { min-height: 76px; }
.brand { display: block; flex: 0 0 auto; text-decoration: none; }
.brand img {
  display: block;
  width: 214px;
  height: 68px;
  object-fit: cover;
  object-position: center 43%;
  transition: width .3s ease, height .3s ease;
}

.site-header.scrolled .brand img { width: 194px; height: 58px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  color: #3c352d;
  font: 600 14px/1.25 Arial, sans-serif;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: right .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; color: var(--primary); font-size: 27px; cursor: pointer; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--accent);
  font: 700 12px/1.2 Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before { width: 34px; height: 1px; content: ""; background: currentColor; }
.eyebrow.no-line::before { display: none; }
h1, h2, h3 { margin: 0 0 20px; font-weight: 400; line-height: 1.1; letter-spacing: -.025em; }
h1 { font-size: clamp(44px, 6vw, 78px); }
h2 { color: var(--primary); font-size: clamp(36px, 4.4vw, 58px); }
h3 { color: var(--primary); font-size: 25px; }
p { margin: 0 0 20px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: #171512;
  background: var(--accent);
  font: 700 14px/1.2 Arial, sans-serif;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover { transform: translateY(-2px); background: #c8a66d; box-shadow: 0 10px 25px rgba(187, 152, 96, .25); }
.button.secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.45); }
.button.secondary:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.hero {
  position: relative;
  min-height: clamp(590px, 78vh, 760px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(187, 152, 96, .18) 0, rgba(187, 152, 96, .07) 18%, transparent 39%),
    radial-gradient(circle at 63% 78%, rgba(91, 76, 51, .14), transparent 32%),
    linear-gradient(112deg, #12110f 0%, #211e19 49%, #3b3225 100%);
  background-position: center calc(50% + var(--parallax-y, 0px));
  background-repeat: no-repeat;
}

.hero::before {
  position: absolute;
  top: -215px;
  right: -105px;
  width: 545px;
  height: 545px;
  border: 1px solid rgba(222, 201, 159, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(222, 201, 159, .025), 0 0 0 84px rgba(222, 201, 159, .018);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  content: "";
  background: linear-gradient(transparent, rgba(12, 11, 9, .28));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .58fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  padding-block: 86px;
}

.hero-copy h1 { max-width: 800px; }
.hero-copy > p { max-width: 640px; color: #e9e2d7; font-size: 20px; }
.hero-meta {
  padding: 30px;
  border: 1px solid rgba(222, 201, 159, .35);
  border-radius: var(--radius);
  background: rgba(19, 17, 14, .55);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.hero-meta-label { margin: 0 0 7px; color: var(--accent-light); font: 700 11px/1.2 Arial, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.hero-meta strong { display: block; margin-bottom: 19px; color: #fff; font-size: 19px; font-weight: 400; line-height: 1.35; }
.hero-meta strong:last-child { margin-bottom: 0; }

.trust-strip { position: relative; z-index: 2; margin-top: -1px; color: #eee6da; background: var(--primary); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 25px 32px; border-right: 1px solid #3e382f; text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--accent-light); font: 700 12px/1.2 Arial, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.trust-item span { color: #bfb6a9; font: 13px/1.45 Arial, sans-serif; }

.section { padding: clamp(76px, 9vw, 118px) 0; }
.section.alt { background: var(--paper-deep); }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head h1, .section-head h2 { margin-inline: auto; }
.section-head p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 8vw, 105px); }
.statement { margin-top: 30px; padding: 3px 0 3px 24px; border-left: 3px solid var(--accent); color: #4a4238; font-size: 20px; }

.home-lawyer-photo,
.office-photo {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4 / 5;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.home-lawyer-photo::before,
.office-photo::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(222, 201, 159, .48);
  border-radius: calc(var(--radius-lg) - 8px);
  content: "";
  pointer-events: none;
}

.home-lawyer-photo img,
.office-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.lawyer-photo-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 55px 28px 25px; color: #fff; background: linear-gradient(transparent, rgba(14, 13, 11, .92)); font: 400 26px/1.2 Georgia, serif; text-align: center; }

.home-areas { position: relative; }
.home-area-grid,
.areas-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.home-area-grid { margin-bottom: 34px; }
.area-card,
.card {
  position: relative;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(187, 152, 96, .25);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.area-card::before,
.card::before { position: absolute; top: 0; left: 0; width: 100%; height: 3px; content: ""; background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.area-card:hover, .card:hover { transform: translateY(-5px); border-color: rgba(187, 152, 96, .55); box-shadow: var(--shadow); }
.area-card-index { display: block; margin-bottom: 20px; color: var(--accent); font: 700 11px/1 Arial, sans-serif; letter-spacing: .14em; }
.area-card h3 { margin-bottom: 13px; font-size: 23px; }
.area-card p, .card p { color: var(--muted); font: 16px/1.58 Arial, sans-serif; }
.areas-grid { margin-top: 44px; }
.areas-grid .area-card { min-height: 235px; }
.areas-grid .area-card:last-child:nth-child(3n + 1) { grid-column: 2; }

.page-hero {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 80% 20%, #4a4030 0, #211e19 42%, #151310 76%);
}

.page-hero::after { position: absolute; top: -110px; right: -60px; width: 390px; height: 390px; border: 1px solid rgba(222,201,159,.18); border-radius: 50%; content: ""; box-shadow: 0 0 0 45px rgba(222,201,159,.025), 0 0 0 90px rgba(222,201,159,.02); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 680px; color: #cfc6b9; font-size: 19px; }

.office-intro { align-items: start; }
.office-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.office-fact { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.42); }
.office-fact span { display: block; margin-bottom: 4px; color: var(--accent); font: 700 11px/1.2 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.office-fact strong { font-size: 17px; font-weight: 400; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.value-card { min-height: 245px; padding: 34px; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.value-number { display: block; margin-bottom: 42px; color: var(--accent); font: 700 12px/1 Arial, sans-serif; letter-spacing: .14em; }
.value-card p { color: var(--muted); font: 16px/1.58 Arial, sans-serif; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 55px; }
.process-grid::before { position: absolute; top: 39px; left: 15%; right: 15%; height: 1px; content: ""; background: var(--line); }
.process-step { position: relative; z-index: 1; text-align: center; }
.step-number { width: 78px; height: 78px; display: grid; place-items: center; margin: 0 auto 27px; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); background: var(--paper); font: 400 22px/1 Georgia, serif; }
.process-step p { max-width: 300px; margin-inline: auto; color: var(--muted); font: 16px/1.6 Arial, sans-serif; }
.process-note { max-width: 850px; margin: 62px auto 0; padding: 25px 30px; border-left: 3px solid var(--accent); color: #4f473d; background: rgba(234,225,210,.62); }

.cta-band { padding: 62px 0; color: #fff; background: linear-gradient(120deg, #171512, #2b261f); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.cta-inner h2 { margin: 0 0 8px; color: #fff; font-size: clamp(30px, 4vw, 47px); }
.cta-inner p { margin: 0; color: #c9c0b3; }

.contact-section { padding-block: clamp(78px, 9vw, 116px); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr); align-items: start; gap: clamp(55px, 8vw, 110px); }
.contact-intro h1 { max-width: 620px; font-size: clamp(45px, 5vw, 68px); }
.contact-intro > p:not(.legal-note) { max-width: 570px; color: #4a4238; }
.legal-note { color: var(--muted); font: 14px/1.6 Arial, sans-serif; }
.contact-profile { display: grid; grid-template-columns: 148px minmax(0, 1fr); align-items: start; gap: 28px; margin-top: 40px; }
.lawyer-photo-slot { width: 148px; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-deep); box-shadow: var(--shadow-soft); }
.lawyer-photo-slot img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-list { display: grid; gap: 19px; margin: 0; }
.contact-list div { display: grid; gap: 3px; }
.contact-list dt, .contact-form-card label { color: var(--primary); font: 700 12px/1.3 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.contact-list dd { margin: 0; font-size: 17px; }
.contact-list a { text-underline-offset: 4px; }
.contact-form-card { padding: clamp(32px, 4vw, 48px); border: 1px solid rgba(187,152,96,.25); border-radius: var(--radius-lg); background: #eee6dd; box-shadow: var(--shadow); }
.form-kicker { margin: 0 0 28px; color: #9a753d; font: 700 12px/1.3 Arial, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.contact-form-card label { display: block; margin-top: 24px; }
.contact-form-card input, .contact-form-card textarea { width: 100%; margin-top: 7px; padding: 11px 0; border: 0; border-bottom: 1px solid #bdb1a0; outline: none; color: var(--ink); background: transparent; font: 17px/1.45 Arial, sans-serif; transition: border-color .2s ease; }
.contact-form-card input:focus, .contact-form-card textarea:focus { border-bottom-color: var(--accent); }
.contact-form-card textarea { min-height: 125px; resize: vertical; }
.contact-submit { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; padding: 16px 20px; border: 0; border-radius: var(--radius-sm); color: #fff; background: var(--primary); cursor: pointer; font: 700 14px/1.2 Arial, sans-serif; transition: transform .25s ease, background .25s ease; }
.contact-submit:hover { transform: translateY(-2px); background: #302a23; }
.form-note { margin: 17px 0 0; color: var(--muted); font: 13px/1.55 Arial, sans-serif; }

.site-footer { padding: 48px 0 29px; color: #eee6d8; background: var(--footer); font-family: Arial, sans-serif; }
.footer-pro { width: min(1160px, calc(100% - 56px)); margin-inline: auto; }
.footer-pro-top, .footer-pro-bottom { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; column-gap: 42px; }
.footer-pro-top { min-height: 94px; padding-bottom: 29px; border-bottom: 1px solid #494137; }
.footer-logo-link { justify-self: start; }
.footer-logo { display: block; width: 185px; height: 70px; object-fit: cover; object-position: center 43%; border-radius: 4px; }
.footer-tagline { margin: 0; color: #c7bfb2; font-size: 13px; line-height: 1.55; text-align: center; }
.footer-top-link { justify-self: end; color: var(--accent-light); font-size: 13px; font-weight: 700; text-decoration: none; }
.footer-pro-bottom { padding-top: 22px; color: #aaa194; font-size: 11px; line-height: 1.45; }
.footer-legal { text-align: center; }
.footer-dev-link { justify-self: end; display: inline-flex; align-items: center; gap: 7px; color: var(--accent-light); text-decoration: none; white-space: nowrap; }
.footer-dev-icon { width: 16px; height: 16px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); }

/* Rodapé premium */
.site-footer {
  position: relative;
  padding: 68px 0 27px;
  overflow: hidden;
  border-top: 1px solid rgba(222, 201, 159, .24);
  background:
    radial-gradient(circle at 92% 8%, rgba(187, 152, 96, .15), transparent 29%),
    linear-gradient(118deg, #12110f 0%, #1c1915 58%, #30281d 100%);
}

.site-footer::before {
  position: absolute;
  top: -230px;
  right: -180px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(222, 201, 159, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(222, 201, 159, .018);
  content: "";
  pointer-events: none;
}

.footer-pro { position: relative; z-index: 1; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(170px, .62fr) minmax(300px, .92fr);
  align-items: start;
  gap: clamp(42px, 7vw, 90px);
  padding-bottom: 52px;
}

.footer-brand-block p { max-width: 360px; margin: 24px 0 11px; color: #d1c8bb; font-size: 15px; line-height: 1.65; }
.footer-brand-block > span { color: #93897c; font: 11px/1.5 Arial, sans-serif; letter-spacing: .04em; }
.footer-logo { width: 235px; height: 88px; filter: brightness(1.38) contrast(1.04); }
.footer-title { margin: 0 0 21px; color: var(--accent-light); font: 700 11px/1.2 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.footer-navigation { display: grid; gap: 10px; }
.footer-navigation a { width: fit-content; color: #c8bfb2; font: 14px/1.5 Arial, sans-serif; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.footer-navigation a:hover { color: #fff; transform: translateX(4px); }
.footer-contact-card { padding: 29px; border: 1px solid rgba(222, 201, 159, .25); border-radius: var(--radius); background: rgba(11, 10, 8, .32); box-shadow: 0 18px 45px rgba(0,0,0,.16); backdrop-filter: blur(8px); }
.footer-contact-card > strong { display: block; margin-bottom: 20px; color: #fff; font: 400 22px/1.25 Georgia, serif; }
.footer-whatsapp-link { min-height: 47px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 16px; border-radius: var(--radius-sm); color: #171512; background: var(--accent); font: 700 13px/1.2 Arial, sans-serif; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.footer-whatsapp-link:hover { transform: translateY(-2px); background: #c8a66d; }
.footer-contact-details { display: grid; gap: 5px; margin: 19px 0 15px; }
.footer-contact-details a { color: #c8bfb2; font: 13px/1.5 Arial, sans-serif; text-decoration: none; }
.footer-contact-card .footer-top-link { display: inline-block; margin-top: 4px; color: var(--accent-light); font: 700 12px/1.3 Arial, sans-serif; }
.footer-legal-row { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 28px; padding-top: 25px; border-top: 1px solid #4a4238; color: #9f9689; font: 11px/1.5 Arial, sans-serif; }
.footer-legal-row .footer-dev-link { justify-self: end; }

.whatsapp { position: fixed; right: 23px; bottom: 23px; z-index: 30; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; text-decoration: none; filter: drop-shadow(0 9px 14px rgba(0,0,0,.2)); transition: transform .25s ease; }
.whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp img { width: 100%; height: 100%; object-fit: contain; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.shown { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.stagger.shown > * { opacity: 1; transform: none; }
.stagger.shown > *:nth-child(2) { transition-delay: .08s; }
.stagger.shown > *:nth-child(3) { transition-delay: .16s; }
.stagger.shown > *:nth-child(4) { transition-delay: .24s; }
.stagger.shown > *:nth-child(5) { transition-delay: .32s; }
.stagger.shown > *:nth-child(6) { transition-delay: .4s; }

@media (max-width: 960px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; }
  .hero-inner { grid-template-columns: 1fr; align-items: start; gap: 40px; }
  .hero-meta { max-width: 520px; }
  .home-area-grid, .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid .area-card:last-child:nth-child(3n + 1) { grid-column: auto; }
  .areas-grid .area-card:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
}

@media (max-width: 820px) {
  .container, .footer-pro { width: min(100% - 38px, 1160px); }
  .nav { min-height: 76px; }
  .site-header.scrolled .nav { min-height: 70px; }
  .brand img, .site-header.scrolled .brand img { width: 184px; height: 58px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; display: none; align-items: stretch; padding: 21px 24px 27px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; gap: 10px; box-shadow: 0 15px 25px rgba(31,26,19,.08); }
  .site-header.scrolled .nav-links { top: 70px; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 0; font-size: 15px; }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .home-lawyer-photo, .office-photo { max-width: 390px; justify-self: center; }
  .values-grid, .process-grid { grid-template-columns: 1fr; }
  .process-grid { max-width: 650px; margin-inline: auto; }
  .process-grid::before { display: none; }
  .process-step { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-pro-top, .footer-pro-bottom { grid-template-columns: 1fr; row-gap: 18px; text-align: center; }
  .footer-logo-link, .footer-top-link, .footer-dev-link { justify-self: center; }
  .footer-legal { text-align: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; text-align: center; }
  .footer-brand-block p { margin-inline: auto; }
  .footer-logo-link { display: inline-block; }
  .footer-navigation { justify-items: center; }
  .footer-legal-row { grid-template-columns: 1fr; text-align: center; }
  .footer-legal-row .footer-dev-link { justify-self: center; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container, .footer-pro { width: min(100% - 30px, 1160px); }
  .hero { min-height: 640px; }
  .hero-inner { padding-block: 64px; }
  .hero-copy > p { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid #3e382f; }
  .trust-item:last-child { border-bottom: 0; }
  .home-area-grid, .areas-grid { grid-template-columns: 1fr; }
  .areas-grid .area-card:last-child:nth-child(odd) { grid-column: auto; width: 100%; }
  .office-facts { grid-template-columns: 1fr; }
  .contact-profile { grid-template-columns: 118px minmax(0, 1fr); gap: 18px; }
  .lawyer-photo-slot { width: 118px; }
  .contact-form-card { padding: 28px 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand-block { grid-column: auto; }
  .footer-contact-card { text-align: left; }
  .page-hero { padding-block: 76px; }
  .whatsapp { right: 15px; bottom: 15px; width: 56px; height: 56px; }
}

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