:root {
  --ink: #153731;
  --ink-deep: #0d2723;
  --paper: #f4f0e7;
  --paper-light: #fbf9f4;
  --terracotta: #dd6e4d;
  --terracotta-dark: #b94f34;
  --lime: #d7e56d;
  --line: rgba(21, 55, 49, 0.18);
  --text: #142320;
  --muted: #5f6f6a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 88px;
  background: var(--ink-deep);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
main { background: var(--paper-light); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  min-height: 84px;
  padding: 14px clamp(20px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 58px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  border-radius: 50% 50% 42% 58% / 48% 42% 58% 52%;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-family: Georgia, 'Times New Roman', serif; font-size: 18px; }
.brand-copy small { color: var(--muted); font-size: 12px; letter-spacing: 0.04em; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { color: var(--ink); }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  background: var(--paper);
}
.hero-copy {
  padding: clamp(64px, 8vw, 120px) clamp(28px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-copy::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(21, 55, 49, 0.13);
  border-radius: 50%;
  left: -150px;
  bottom: -100px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; }
h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}
h1 em { color: var(--terracotta-dark); font-style: normal; }
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #3e524d;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.58;
}
.deadline-note {
  max-width: 650px;
  margin: 30px 0 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--lime);
  background: rgba(255,255,255,0.52);
}
.deadline-number { color: var(--ink); font-family: Georgia, serif; font-size: 42px; line-height: 1; }
.deadline-note p { margin: 0; color: #425550; line-height: 1.45; }
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 2px 18px 2px 18px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 9px 26px rgba(185, 79, 52, 0.2);
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.button-small { min-height: 43px; padding: 10px 18px; }
.text-link { color: var(--ink); font-weight: 800; border-bottom: 2px solid var(--terracotta); }
.phone-box {
  min-height: 46px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(21,55,49,.24);
  border-radius: 2px 15px 2px 15px;
  background: rgba(251,249,244,.82);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
  box-shadow: 0 8px 24px rgba(13,39,35,.1);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.phone-box::before {
  content: 'TEL';
  color: var(--terracotta-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}
.phone-box:hover {
  border-color: var(--terracotta);
  background: #fff;
  transform: translateY(-2px);
}
.phone-box-compact { min-height: 42px; padding: 8px 13px; }
.phone-box-light {
  border-color: rgba(255,255,255,.42);
  background: rgba(13,39,35,.16);
  color: white;
  box-shadow: 0 8px 24px rgba(13,39,35,.16);
}
.phone-box-light::before { color: var(--lime); }
.phone-box-light:hover { border-color: var(--lime); background: rgba(13,39,35,.28); }

.hero-visual {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 16%, rgba(215,229,109,.32), transparent 25%), linear-gradient(145deg, transparent 40%, rgba(255,255,255,.07));
  z-index: -1;
}
.portrait-placeholder { position: absolute; inset: 0; overflow: hidden; }
.portrait-orbit {
  position: absolute;
  width: min(60vw, 630px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  top: -16%;
  right: -20%;
}
.portrait-figure {
  position: absolute;
  width: 56%;
  height: 74%;
  right: 6%;
  top: 2%;
  border-radius: 46% 46% 12% 12% / 28% 28% 8% 8%;
  background: linear-gradient(180deg, rgba(215,229,109,.55), rgba(244,240,231,.1));
  filter: blur(.2px);
}
.hero-form {
  width: min(440px, calc(100% - 48px));
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(251,249,244,.96);
  border-radius: 3px 34px 3px 34px;
  box-shadow: 0 26px 60px rgba(3,19,16,.28);
}
.hero-form .eyebrow { margin-bottom: 10px; }
.hero-form h2 { margin: 0; color: var(--ink); font-size: clamp(28px, 3vw, 40px); line-height: 1.08; }
.hero-form > p:not(.eyebrow) { margin: 12px 0 20px; color: var(--muted); line-height: 1.5; }
.hero-form form { display: grid; gap: 9px; }
.hero-form label:not(.consent) { color: var(--ink); font-size: 13px; font-weight: 800; }
.hero-form input[type='text'], .hero-form input[type='tel'] {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid rgba(21,55,49,.28);
  border-radius: 6px;
  background: white;
}
.consent { margin: 7px 0 9px; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.consent input { margin-top: 3px; accent-color: var(--ink); }
.button-full { width: 100%; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  color: #394d48;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a {
  position: relative;
  padding: 10px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.hero-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,39,35,.03) 35%, rgba(13,39,35,.48) 100%);
  pointer-events: none;
}
.hero-form { z-index: 2; }
.hp-field {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -10000px !important;
  overflow: hidden !important;
}
.contact-form { position: relative; }
.contact-form .consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note {
  margin: 3px 0 0 !important;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.form-status {
  margin: 7px 0 0 !important;
  padding: 10px 12px;
  border-left: 3px solid var(--lime);
  background: #edf2cf;
  color: var(--ink) !important;
  font-size: 12px;
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}
.proof-strip > div {
  min-height: 128px;
  padding: 25px clamp(18px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
}
.proof-strip > div:last-child { border-right: 0; }
.proof-strip span {
  color: var(--terracotta-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.proof-strip strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}

.entity-summary {
  padding: clamp(70px, 8vw, 120px) clamp(22px, 6vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(46px, 8vw, 130px);
  align-items: start;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.entity-intro h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink-deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.entity-intro > p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}
.entity-facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.entity-facts > div {
  min-height: 185px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251,249,244,.46);
}
.entity-facts > div:first-child {
  min-height: 150px;
  grid-column: 1 / -1;
}
.entity-facts dt {
  margin-bottom: 12px;
  color: var(--terracotta-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.entity-facts dd {
  margin: 0;
  color: #314641;
  font-size: 15px;
  line-height: 1.62;
}
.entity-facts a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: clamp(76px, 9vw, 138px) clamp(22px, 6vw, 100px);
}
.section h2,
.local-section h2,
.closing-cta h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.section-lead {
  color: #40534e;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.65;
}

.review-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: center;
  background: var(--paper-light);
}
.review-photo-wrap {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  border-radius: 4px 72px 4px 72px;
  background: var(--paper);
}
.review-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: inherit;
  pointer-events: none;
}
.review-photo-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 54% center;
}
.review-copy { max-width: 720px; }
.review-copy h2 { max-width: 760px; }
.check-list {
  margin: 34px 0 32px;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.check-list li {
  padding: 17px 0 17px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #314641;
  font-weight: 650;
  line-height: 1.45;
}
.check-list li::before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  top: 22px;
  left: 2px;
  border-radius: 50% 50% 40% 60%;
  background: var(--lime);
  box-shadow: inset 0 0 0 3px var(--ink);
}

.method-section { background: var(--ink); color: #fff; }
.method-section .eyebrow { color: var(--lime); }
.section-heading {
  max-width: 990px;
  margin-bottom: clamp(45px, 6vw, 84px);
}
.method-section .section-heading h2 { color: #fff; max-width: 920px; }
.section-heading > p:last-child {
  max-width: 730px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.method-section .section-heading > p:last-child { color: rgba(255,255,255,.7); }
.steps-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  list-style: none;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.2);
}
.steps-grid li {
  min-height: 330px;
  padding: clamp(26px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  background: var(--ink);
}
.steps-grid li > span {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 19px;
}
.steps-grid h3 {
  margin: auto 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}
.steps-grid p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.6; }

.services-section {
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(0, 1.26fr);
  gap: clamp(50px, 8vw, 130px);
  background: var(--paper);
}
.services-intro { align-self: start; position: sticky; top: 30px; }
.services-intro > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.button-ink { background: var(--ink); box-shadow: 0 9px 26px rgba(13,39,35,.18); }
.button-ink:hover { background: var(--ink-deep); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.service-card {
  min-height: 275px;
  padding: clamp(28px, 3.2vw, 46px);
  position: relative;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(251,249,244,.5);
}
.service-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.service-card:nth-child(even) { border-right: 1px solid var(--line); }
.service-card > span {
  color: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
}
.service-card h3 {
  margin: 58px 0 14px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.12;
}
.service-card p { margin: 0; color: var(--muted); line-height: 1.62; }
.service-card::after {
  content: '';
  width: 32px;
  height: 3px;
  position: absolute;
  top: 43px;
  right: 38px;
  background: var(--lime);
}

.local-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  background: var(--terracotta);
  color: white;
}
.local-pattern {
  min-height: 760px;
  padding: clamp(30px, 5vw, 74px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(215,229,109,.44), transparent 24%),
    linear-gradient(145deg, rgba(13,39,35,.96), rgba(21,55,49,.9));
}
.local-pattern span {
  color: rgba(255,255,255,.08);
  font-family: Georgia, serif;
  font-size: clamp(120px, 19vw, 360px);
  line-height: .72;
  transform: translateY(14%);
}
.local-copy {
  padding: clamp(70px, 9vw, 140px) clamp(30px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.local-copy .eyebrow { color: var(--ink-deep); }
.local-copy h2 { color: white; }
.local-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 27px 0;
  color: rgba(255,255,255,.8);
  font-size: 19px;
  line-height: 1.7;
}
.local-copy address {
  margin: 10px 0 32px;
  padding: 24px 0;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-style: normal;
  line-height: 1.45;
}
.local-copy address a { display: grid; gap: 8px; }
.local-copy address a:hover span { text-decoration: underline; text-underline-offset: 4px; }
.local-copy address strong { font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.local-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.local-actions .button { background: var(--ink); }
.text-link-light { color: white; border-color: var(--lime); }

.faq-section { background: var(--paper-light); }
.faq-heading { max-width: 900px; }
.faq-list {
  max-width: 1120px;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.faq-item {
  min-height: 280px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244,240,231,.35);
}
.faq-item h3 {
  margin: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 500;
  line-height: 1.25;
}
.faq-item h3 > span {
  color: var(--terracotta-dark);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}
.faq-item > p {
  margin: 22px 0 0 53px;
  color: var(--muted);
  line-height: 1.7;
}
.source-note {
  max-width: 1120px;
  margin: 30px 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.source-note a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.closing-cta {
  padding: clamp(62px, 7vw, 108px) clamp(22px, 6vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 40px;
  align-items: end;
  background: var(--lime);
}
.closing-cta .eyebrow { color: var(--ink); }
.closing-cta h2 { max-width: 940px; }
.closing-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.closing-actions .button { background: var(--ink); }
.button-outline {
  border: 2px solid var(--ink);
  background: transparent !important;
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  padding: 55px clamp(22px, 6vw, 100px) 110px;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 46px;
  background: var(--ink-deep);
  color: white;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { background: var(--lime); color: var(--ink); }
.footer-brand > div { display: grid; gap: 6px; }
.footer-brand strong { font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.footer-brand span:not(.brand-mark) { color: rgba(255,255,255,.58); font-size: 12px; }
.footer-contact, .footer-legal { display: grid; align-content: start; gap: 9px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.45; }
.footer-contact a { color: white; font-weight: 750; }
.footer-legal a { color: white; font-weight: 750; }
.footer-legal a:hover { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact .phone-box-footer {
  justify-self: start;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
  color: white;
  box-shadow: none;
}
.footer-contact .phone-box-footer::before { color: var(--lime); }
.footer-contact .phone-box-footer:hover { border-color: var(--lime); background: rgba(255,255,255,.12); }
.footer-contact .footer-address {
  color: rgba(255,255,255,.78);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.5;
}

.legal-hero {
  padding: clamp(76px, 9vw, 138px) clamp(22px, 8vw, 150px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 { max-width: 980px; font-size: clamp(46px, 6vw, 82px); }
.legal-hero > p:last-child {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.65;
}
.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(68px, 8vw, 120px) clamp(22px, 5vw, 64px);
  color: #314641;
  font-size: 17px;
  line-height: 1.78;
}
.legal-content h2 {
  margin: 54px 0 18px;
  color: var(--ink-deep);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin: 0 0 18px; }
.legal-content ul { margin: 0 0 26px; padding-left: 24px; }
.legal-content li { margin: 8px 0; }
.legal-content a { color: var(--ink); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.legal-notice {
  margin: 0 0 42px !important;
  padding: 18px 20px;
  border-left: 5px solid var(--lime);
  background: var(--paper);
  color: var(--ink);
  font-weight: 750;
}
.legal-updated {
  margin-top: 54px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.legal-footer { margin-top: 0; }

.floating-actions {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(560px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(251,249,244,.28);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(3,19,16,.3);
  transform: translateX(-50%);
}
.floating-actions a {
  min-width: 0;
  min-height: 64px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--paper-light);
  font-size: .93rem;
  font-weight: 850;
  line-height: 1.15;
  transition: background .2s ease;
}
.floating-actions svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: currentColor;
}
.floating-actions small {
  display: block;
  margin-bottom: 3px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .03em;
  opacity: .78;
}
.float-call { background: var(--ink-deep); }
.float-call:hover { background: var(--ink); }
.float-whatsapp { background: var(--terracotta-dark); }
.float-whatsapp:hover { background: #963f2d; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 690px; }
  .hero-copy { padding-top: 72px; padding-bottom: 72px; }
  .main-nav { display: none; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .review-section,
  .services-section,
  .local-section,
  .entity-summary { grid-template-columns: 1fr; }
  .review-photo-wrap { min-height: 560px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro { position: static; }
  .local-pattern { display: none; }
  .local-copy { min-height: 650px; }
  .closing-cta { grid-template-columns: 1fr; align-items: start; }
  .closing-actions { justify-content: flex-start; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
  .footer-legal { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .faq-list { grid-template-columns: 1fr; }
  .faq-item { min-height: 0; }
  .floating-actions {
    width: 100%;
    bottom: 0;
    border: 0;
    border-radius: 0;
  }
  .floating-actions a {
    min-height: 64px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}
@media (max-width: 640px) {
  .site-header { min-height: 72px; padding: 10px 16px; }
  .brand-mark { width: 48px; height: 44px; font-size: 15px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small, .header-phone { display: none; }
  .button-small { min-height: 40px; padding: 8px 14px; }
  .hero-copy { padding: 54px 20px 58px; }
  h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lead { font-size: 18px; }
  .deadline-note { grid-template-columns: 58px 1fr; padding: 15px; }
  .hero-visual { min-height: 670px; }
  .hero-form { width: calc(100% - 28px); left: 14px; bottom: 14px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-strip > div:last-child { border-bottom: 0; }
  .entity-summary { padding-right: 16px; padding-left: 16px; }
  .entity-facts { grid-template-columns: 1fr; }
  .entity-facts > div { min-height: 0; }
  .review-section { padding-right: 16px; padding-left: 16px; }
  .review-photo-wrap { min-height: 430px; border-radius: 3px 42px 3px 42px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { min-height: 250px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(even),
  .service-card:nth-last-child(-n+2) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .service-card:last-child { border-bottom: 1px solid var(--line); }
  .local-copy { min-height: 620px; padding-right: 22px; padding-left: 22px; }
  .faq-item { padding-right: 22px; padding-left: 22px; }
  .faq-item h3 { grid-template-columns: 32px 1fr; }
  .faq-item > p { margin-left: 47px; }
  .closing-actions { flex-direction: column; align-items: stretch; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-legal { grid-column: auto; }
}

@media (max-width: 430px) {
  .floating-actions small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
