:root {
  --primary: #0a2547;
  --primary-2: #10375f;
  --primary-3: #174b7d;
  --accent: #f2b325;
  --accent-strong: #d99a08;
  --accent-soft: #fff6df;
  --whatsapp: #12824a;
  --whatsapp-dark: #0d673b;
  --red: #bd2b31;
  --bg: #ffffff;
  --bg-soft: #f5f7f9;
  --bg-warm: #fbfaf6;
  --surface: #ffffff;
  --text: #1f2b3a;
  --text-soft: #566273;
  --text-muted: #6f7a88;
  --border: #dce3ea;
  --border-dark: rgba(10, 37, 71, .16);
  --shadow-sm: 0 10px 28px rgba(10, 37, 71, .08);
  --shadow-md: 0 22px 52px rgba(10, 37, 71, .13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --section-space: clamp(72px, 7vw, 108px);
  --header-height: 76px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-soft);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
main { width: 100%; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
svg { display: block; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -90px;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 850;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - clamp(32px, 4vw, 48px)), var(--container));
  margin-inline: auto;
}
.section { padding-block: var(--section-space); }

h1, h2, h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -.034em;
}
h1 { font-size: clamp(2.55rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 3.45vw, 3.2rem); }
h3 { font-size: clamp(1.18rem, 1.7vw, 1.45rem); }
p { margin-top: 0; }

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-kicker-light { color: #ffd56b; }
.eyebrow span { color: var(--accent); font-size: .95rem; }

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 17px; }
.section-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.04rem;
}
.section-heading.centered > p:last-child { margin-inline: auto; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }
.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-2);
  border-color: var(--primary-2);
  box-shadow: 0 10px 24px rgba(10,37,71,.13);
}
.btn-large { min-height: 56px; padding: 15px 22px; }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-secondary { background: #fff; border-color: var(--border-dark); color: var(--primary); }
.btn-secondary:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-whatsapp { background: #ffd56b; border-color: #ffd56b; color: var(--primary); }
.btn-whatsapp:hover { background: #e8bb4d; border-color: #e8bb4d; color: var(--primary); }

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 850;
}
.text-link span { color: var(--accent-strong); transition: transform var(--transition); }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(10,37,71,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.985);
  box-shadow: 0 10px 30px rgba(10,37,71,.08);
}
.nav-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
  transition: min-height var(--transition);
}
.site-header.scrolled .nav-inner { min-height: 68px; }
.brand {
  width: 190px;
  height: 56px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a:not(.btn) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text);
  font-size: .91rem;
  font-weight: 760;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: right var(--transition);
}
.main-nav a:not(.btn):hover::after { right: 0; }
.header-cta { white-space: normal; max-width: 250px; }
.mobile-nav-actions { display: none; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  padding: clamp(58px, 6vw, 88px) 0 clamp(68px, 7vw, 102px);
  background:
    radial-gradient(circle at 88% 8%, rgba(242,179,37,.17), transparent 23%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,37,71,.13), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .84fr);
  align-items: center;
  gap: clamp(46px, 6vw, 82px);
}
.hero-copy { max-width: 690px; }
.hero-copy h1 { max-width: 780px; margin-bottom: 22px; hyphens: none; }
.hero-lead {
  max-width: 660px;
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.23rem);
  line-height: 1.7;
}
.claim {
  margin: 0 0 26px;
  color: var(--primary);
  font-size: .96rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.claim span { color: var(--accent-strong); padding-inline: 6px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: .92rem;
  font-weight: 700;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust li span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #eaf6ef;
  color: var(--whatsapp-dark);
  font-size: .74rem;
}
.hero-media {
  position: relative;
  min-height: clamp(470px, 42vw, 550px);
}
.hero-media picture {
  position: absolute;
  inset: 0 clamp(16px, 2vw, 28px) 0 0;
  overflow: hidden;
  border-radius: 42px 18px 42px 18px;
  background: #dce3ea;
  box-shadow: var(--shadow-md);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.hero-image-badge {
  position: absolute;
  right: 0;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.hero-image-badge-star {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-size: 1.15rem;
}
.hero-image-badge span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.hero-image-badge strong { color: var(--primary); font-size: .91rem; }
.hero-image-badge small { margin-top: 3px; color: var(--text-muted); font-size: .78rem; }

/* Trust strip */
.trust-strip {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-strip-grid > div {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
}
.trust-strip-grid > div:first-child { padding-left: 0; }
.trust-strip-grid > div:last-child { border-right: 0; }
.trust-label {
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trust-strip strong,
.trust-strip a { color: var(--text); font-size: 1.05rem; font-weight: 850; }
.trust-strip a:hover { color: var(--primary-3); }

/* Services */
.services { background: var(--bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10,37,71,.24);
  box-shadow: var(--shadow-sm);
}
.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary);
}
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { max-width: 500px; margin-bottom: 18px; }
.service-card .text-link { margin-top: auto; }
.service-fast {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--radius-md);
  background: var(--primary);
  color: rgba(255,255,255,.82);
}
.service-fast h3 { margin-bottom: 10px; color: #fff; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.service-fast p:last-child { max-width: 720px; margin-bottom: 0; }
.service-scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--text-muted);
}
.service-scope strong { margin-right: 4px; color: var(--text); }
.service-scope span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-soft);
  font-size: .88rem;
  font-weight: 700;
}

/* Personal + video */
.personal { background: var(--bg-soft); }
.personal-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}
.personal-copy h2 { margin-bottom: 20px; }
.personal-copy > p:not(.section-kicker) { max-width: 640px; font-size: 1.04rem; }
.person-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 20px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}
.person-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .03em;
}
.person-details { display: flex; flex-direction: column; line-height: 1.35; }
.person-details span { color: var(--text-muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.person-details strong { margin: 3px 0 2px; color: var(--text); font-size: 1.12rem; }
.person-details a { color: var(--primary-3); font-weight: 850; }
.person-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.personal-visual { position: relative; }
.personal-visual picture {
  display: block;
  height: clamp(430px, 44vw, 510px);
  overflow: hidden;
  border-radius: 20px 42px 20px 42px;
  box-shadow: var(--shadow-md);
}
.personal-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.personal-visual-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(10,37,71,.9);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}
.video-panel {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
  margin-top: 68px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.video-copy h3 { margin-bottom: 13px; font-size: clamp(1.55rem, 2.4vw, 2.25rem); }
.video-copy p:last-child { margin-bottom: 0; }
.video-panel video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #0b1420;
}

/* Why */
.why { background: var(--bg-warm); }
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}
.why-intro { position: sticky; top: 112px; }
.why-intro h2 { margin-bottom: 20px; font-size: clamp(1.9rem, 3.2vw, 3rem); }
.why-intro p:last-child { max-width: 540px; }
.why-list { border-top: 1px solid var(--border-dark); }
.why-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
}
.why-number { color: var(--accent-strong); font-size: .82rem; font-weight: 900; letter-spacing: .08em; }
.why-list h3 { margin-bottom: 7px; }
.why-list p { margin-bottom: 0; }

/* Process */
.process { background: #fff; }
.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--border-dark);
}
.process-list li { position: relative; padding-top: 68px; }
.step-number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(10,37,71,.16);
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 7px #fff;
  font-weight: 900;
}
.process-list h3 { margin-bottom: 9px; }
.process-list p { margin-bottom: 0; color: var(--text-muted); }

/* Area + two-click map */
.area { background: var(--bg-soft); }
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 88px);
}
.area-copy h2 { margin-bottom: 19px; }
.area-copy > p:not(.section-kicker):not(.area-question) { max-width: 620px; }
.area-facts {
  margin: 30px 0 20px;
  border-top: 1px solid var(--border);
}
.area-facts > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.area-facts dt { color: var(--text-muted); font-size: .86rem; font-weight: 800; }
.area-facts dd { margin: 0; color: var(--text); font-weight: 800; }
.area-question { margin: 22px 0 4px; color: var(--text); font-weight: 800; }
.map-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.map-placeholder {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  overflow: hidden;
  background: #eef2f4;
}
.map-placeholder[hidden] { display: none; }
.map-art { position: relative; align-self: stretch; min-height: 390px; overflow: hidden; background: #e9eef1; }
.map-art::before,
.map-art::after {
  content: "";
  position: absolute;
  border: 20px solid rgba(255,255,255,.82);
  border-radius: 46%;
}
.map-art::before { width: 270px; height: 460px; left: -130px; top: -110px; transform: rotate(20deg); }
.map-art::after { width: 260px; height: 330px; right: -150px; bottom: -100px; transform: rotate(-25deg); }
.map-road { position: absolute; display: block; height: 14px; border-radius: 999px; background: rgba(255,255,255,.92); box-shadow: 0 0 0 1px rgba(10,37,71,.05); }
.map-road-one { width: 330px; left: -30px; top: 41%; transform: rotate(-28deg); }
.map-road-two { width: 280px; left: 5px; top: 62%; transform: rotate(22deg); }
.map-road-three { width: 180px; left: 72px; top: 22%; transform: rotate(74deg); }
.map-pin {
  position: absolute;
  left: 53%;
  top: 45%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 8px;
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: rotate(-45deg);
}
.map-pin::first-letter { transform: rotate(45deg); }
.map-consent-copy { position: relative; z-index: 2; padding: 30px; }
.map-kicker { color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.map-consent-copy h3 { margin: 7px 0 10px; font-size: clamp(1.35rem, 2.1vw, 1.85rem); }
.map-consent-copy p { margin-bottom: 17px; font-size: .92rem; }
.map-privacy-link { display: inline-block; margin-top: 12px; color: var(--primary-3); font-size: .82rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.map-frame iframe { width: 100%; height: 390px; display: block; border: 0; }
.map-actions { padding: 13px 18px; border-top: 1px solid var(--border); background: #fff; }
.map-actions a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; color: var(--primary); font-size: .88rem; font-weight: 850; }

/* Results */
.results { background: #fff; }
.result-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}
.result-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.result-card picture { display: block; height: 100%; min-height: 420px; }
.result-card img { width: 100%; height: 100%; object-fit: cover; }
.result-wide img { object-position: center; }
.result-card figcaption { padding: 13px 16px; border-top: 1px solid var(--border); color: var(--text-soft); font-size: .84rem; font-weight: 750; }

/* Social Media – compact standalone block after results */
.results { padding-bottom: clamp(34px, 4.5vw, 56px); }
.social-section {
  padding: 0 0 clamp(54px, 6vw, 78px);
  background: #fff;
}
.social-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(22px, 2.8vw, 30px) clamp(22px, 3.4vw, 38px);
  border: 1px solid rgba(255,213,107,.34);
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.social-band-copy { max-width: 610px; }
.social-band-kicker {
  margin: 0 0 5px;
  color: #ffd56b;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.social-band h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.16;
}
.social-band-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
  line-height: 1.55;
}
.social-band-links {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.social-band-links a {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  color: #fff;
  transition: color var(--transition), transform var(--transition);
}
.social-band-links a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.social-band-links a:hover {
  transform: translateY(-1px);
  color: #ffd56b;
}
.social-band-links svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-band-links a:nth-child(3) svg { fill: currentColor; stroke: none; }
.social-band-links a:nth-child(2) svg { fill: none; stroke-width: 2; }
.social-band-links span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}
.social-band-links strong {
  color: inherit;
  font-size: .87rem;
  line-height: 1.2;
}
.social-band-links small {
  color: rgba(255,255,255,.65);
  font-size: .69rem;
  line-height: 1.25;
  white-space: nowrap;
}
.social-band-links a:hover small { color: rgba(255,213,107,.78); }

/* FAQ */
.faq { background: var(--bg-warm); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}
.faq-intro { position: sticky; top: 112px; }
.faq-intro h2 { margin-bottom: 18px; }
.faq-intro > p:not(.section-kicker) { max-width: 470px; margin-bottom: 22px; }
.faq-list { border-top: 1px solid var(--border-dark); }
.faq-list details { border-bottom: 1px solid var(--border-dark); }
.faq-list summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px 42px 18px 0;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  transform: translateY(-50%);
  transition: transform var(--transition), background var(--transition);
}
.faq-list details[open] summary::after { content: "−"; background: var(--accent-soft); }
.faq-list details p { max-width: 720px; margin: -3px 46px 22px 0; color: var(--text-muted); }

/* Contact */
.contact {
  background: var(--primary);
  color: rgba(255,255,255,.83);
}
.contact-heading { max-width: 1180px; margin-bottom: 42px; }
.contact-heading h2 { margin-bottom: 17px; color: #fff; }
.contact-heading > p:last-child { max-width: 760px; margin-bottom: 0; font-size: 1.05rem; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: clamp(36px, 6vw, 70px);
  align-items: start;
}
.contact-options { display: grid; gap: 12px; }
.contact-option {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.contact-option:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.09); }
.contact-option-primary { background: #ffd56b; border-color: #ffd56b; color: var(--primary); }
.contact-option-primary:hover { background: #e8bb4d; border-color: #e8bb4d; }
.contact-option-primary small,
.contact-option-primary em { color: rgba(10,37,71,.76); }
.contact-option-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(242,179,37,.65);
  border-radius: 12px;
  background: rgba(242,179,37,.22);
  color: #ffd56b;
  font-size: 1.05rem;
  font-style: normal;
  box-shadow: inset 0 0 0 1px rgba(255,213,107,.06);
}
.contact-option > span:last-child { display: flex; min-width: 0; flex-direction: column; line-height: 1.35; }
.contact-option small,
.contact-address small { color: rgba(255,255,255,.68); font-size: .75rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.contact-option-primary small { color: rgba(255,255,255,.8); }
.contact-option strong { margin: 2px 0; color: #fff; font-size: 1.02rem; }
.contact-option em { overflow-wrap: anywhere; color: rgba(255,255,255,.78); font-size: .86rem; font-style: normal; }
.contact-option-primary small,
.contact-option-primary strong,
.contact-option-primary em { color: var(--primary); }
.contact-option-primary .contact-option-icon {
  border-color: rgba(10,37,71,.16);
  background: rgba(255,255,255,.34);
  color: var(--primary);
}
.contact-address {
  display: flex;
  gap: 15px;
  margin-top: 4px;
  padding: 17px 18px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.contact-address > div { display: flex; flex-direction: column; }
.contact-address strong { margin-top: 4px; color: #fff; line-height: 1.45; }
.contact-address p { margin: 10px 0 0; font-size: .86rem; }
.contact-address a { color: #ffd56b; font-weight: 800; }
.inspection-card,
.social-card {
  display: grid;
  gap: 16px;
  margin-top: 4px;
  padding: 20px 21px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}
.inspection-card h3,
.social-card h3 { margin: 4px 0 7px; color: #fff; font-size: 1.05rem; }
.inspection-card p,
.social-card p { margin: 0; color: rgba(255,255,255,.76); font-size: .9rem; }
.inspection-kicker,
.social-kicker { color: #ffd56b; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.btn-light-outline {
  width: fit-content;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  color: #fff;
  font-size: .84rem;
}
.btn-light-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.social-links,
.footer-social { display: flex; align-items: center; gap: 10px; }
.social-links a,
.footer-social a {
  display: inline-grid;
  width: 22px;
  height: 22px;
  min-height: 0;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: rgba(255,255,255,.68);
  transition: transform var(--transition), color var(--transition), background var(--transition);
}
.social-links a:hover,
.footer-social a:hover {
  transform: translateY(-1px);
  background: rgba(255,213,107,.08);
  color: #ffd56b;
}
.social-links svg,
.footer-social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links a:nth-child(3) svg,
.footer-social a:nth-child(3) svg { fill: currentColor; stroke: none; }
.social-links a:nth-child(2) svg,
.footer-social a:nth-child(2) svg { fill: none; stroke-width: 1.9; }

.social-card-prominent {
  gap: 16px;
  padding: 20px 21px;
  border-color: rgba(255,213,107,.4);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.07));
  box-shadow: inset 0 0 0 1px rgba(255,213,107,.05);
}
.social-links-prominent {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,213,107,.28);
}
.social-link-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 48px;
  padding: 4px 14px;
  color: #fff;
  transition: color var(--transition), transform var(--transition);
}
.social-link-item:first-child { padding-left: 0; }
.social-link-item:last-child { padding-right: 0; }
.social-link-item + .social-link-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.social-link-item:hover {
  transform: translateY(-1px);
  color: #ffd56b;
}
.social-link-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: #ffd56b;
}
.social-link-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link-item:nth-child(3) .social-link-icon svg { fill: currentColor; stroke: none; }
.social-link-item:nth-child(2) .social-link-icon svg { fill: none; stroke-width: 2; }
.social-link-item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}
.social-link-item strong {
  color: currentColor;
  font-size: .94rem;
  line-height: 1.2;
}
.social-link-item small {
  overflow-wrap: anywhere;
  color: rgba(255,255,255,.68);
  font-size: .75rem;
  line-height: 1.25;
}

.contact-form {
  display: grid;
  gap: 9px;
  padding: clamp(25px, 4vw, 38px);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-soft);
  box-shadow: var(--shadow-md);
}
.form-heading { margin-bottom: 7px; }
.form-heading h3 { margin-bottom: 7px; font-size: clamp(1.45rem, 2.1vw, 1.9rem); }
.form-heading p:last-child { margin-bottom: 0; color: var(--text-muted); }
.contact-form > label { margin-top: 5px; color: var(--text); font-size: .86rem; font-weight: 800; }
.contact-form label small { color: var(--text-muted); font-weight: 650; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #cfd7df;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form textarea { min-height: 128px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-3);
  box-shadow: 0 0 0 3px rgba(23,75,125,.12);
}
.form-submit { width: 100%; margin-top: 10px; }
.form-hint { margin: 3px 0 0; color: var(--text-muted); font-size: .78rem; line-height: 1.5; }
.form-hint a { color: var(--primary-3); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.hidden-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* Footer */
.footer {
  padding: 58px 0 26px;
  background: #061a33;
  color: rgba(255,255,255,.73);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .8fr .8fr;
  gap: 48px;
}
.footer h2 { margin-bottom: 15px; color: #fff; font-size: .94rem; letter-spacing: 0; }
.footer-brand img { width: 210px; height: auto; padding: 8px; border-radius: 9px; background: #fff; }
.footer-brand p { max-width: 310px; margin: 17px 0 0; }
.footer-brand .footer-claim { color: #ffd56b; font-weight: 850; }
.footer address { margin-bottom: 11px; }
.footer a { display: block; min-height: 30px; width: fit-content; transition: color var(--transition); }
.footer a:hover { color: #fff; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 4px; }
.footer-whatsapp { margin-top: 13px; color: #8ee7b4; font-weight: 850; }
.footer-social { margin-top: 11px; }
.footer-social a { width: 22px; height: 22px; }
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
}
.footer-bottom a { min-height: auto; }
.footer-credit { text-align: center; }
.footer-credit a {
  display: inline;
  width: auto;
  color: #ffd56b;
  font-weight: 800;
}
.footer-credit a:hover { color: #fff; }
.footer-top-link { justify-self: end; }

/* Floating / mobile conversion */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: #ffd56b;
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  transition: transform var(--transition), background var(--transition);
}
.floating-whatsapp:hover { transform: translateY(-3px); background: #e8bb4d; }
.floating-whatsapp svg { width: 29px; height: 29px; fill: currentColor; }
.mobile-contact-bar { display: none; }

/* Shared subpages */
.subpage-body { background: var(--bg-soft); }
.subpage-main { padding: clamp(46px, 6vw, 82px) 0 var(--section-space); }
.subpage-hero {
  max-width: 820px;
  margin-bottom: 32px;
}
.subpage-hero h1 { margin-bottom: 17px; font-size: clamp(2.35rem, 4.8vw, 4rem); }
.subpage-hero p:last-child { max-width: 720px; margin-bottom: 0; }
.legal-content,
.thanks-card,
.error-card {
  max-width: 900px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.legal-content h2 { margin: 34px 0 11px; font-size: clamp(1.25rem, 2vw, 1.55rem); }
.legal-content h3 { margin: 24px 0 8px; font-size: 1.1rem; }
.legal-content p,
.legal-content li { color: var(--text-soft); }
.legal-content a { color: var(--primary-3); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.legal-content ul { padding-left: 20px; }
.legal-note {
  margin-top: 34px;
  padding: 15px 17px;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: var(--accent-soft);
  color: var(--text);
  font-size: .9rem;
}
.thanks-card,
.error-card { text-align: center; margin-inline: auto; }
.thanks-icon,
.error-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: #eaf6ef;
  color: var(--whatsapp-dark);
  font-size: 1.65rem;
  font-weight: 900;
}
.error-icon { background: var(--accent-soft); color: var(--primary); }
.thanks-card h1,
.error-card h1 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.3rem); }
.thanks-card p,
.error-card p { max-width: 640px; margin-inline: auto; }
.thanks-actions,
.error-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.js .reveal[data-reveal-delay="1"] { transition-delay: 70ms; }
.js .reveal[data-reveal-delay="2"] { transition-delay: 140ms; }
.js .reveal[data-reveal-delay="3"] { transition-delay: 210ms; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .main-nav ul { gap: 15px; }
  .main-nav a:not(.btn) { font-size: .87rem; }
  .header-cta { padding-inline: 14px; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 44px; }
  .hero-media { min-height: 500px; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 3; }
}

@media (max-width: 1024px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-inner { min-height: 68px; gap: 16px; }
  .brand { width: 164px; height: 48px; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    z-index: 1100;
    display: none;
    margin-left: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }
  .main-nav.active { display: block; }
  .main-nav ul { display: grid; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--border); }
  .main-nav a:not(.btn) { width: 100%; min-height: 52px; font-size: .98rem; }
  .main-nav a:not(.btn)::after { display: none; }
  .mobile-nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 16px; }
}

@media (max-width: 900px) {
  .hero { padding-top: 40px; }
  .hero-grid,
  .personal-grid,
  .why-grid,
  .area-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { min-height: auto; }
  .hero-media picture { position: relative; inset: auto; height: min(76vw, 620px); border-radius: 30px 16px 30px 16px; }
  .hero-image-badge { right: 14px; bottom: 14px; }
  .trust-strip-grid > div { padding-inline: 20px; }
  .personal-visual { max-width: 620px; }
  .personal-visual picture { height: min(78vw, 600px); }
  .video-panel { grid-template-columns: 1fr; }
  .why-intro,
  .faq-intro { position: static; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 34px 28px; }
  .process-list::before { display: none; }
  .area-grid { align-items: stretch; }
  .map-placeholder { min-height: 360px; }
  .result-grid { grid-template-columns: 1fr; }
  .social-band { grid-template-columns: 1fr; gap: 18px; }
  .social-band-links { justify-content: flex-start; }
  .result-card picture { min-height: 0; height: auto; }
  .result-card img { height: auto; }
  .contact-heading { margin-bottom: 32px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 34px; }
}

@media (max-width: 680px) {
  :root { --section-space: 52px; --radius-md: 16px; --radius-lg: 22px; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  h1 { font-size: clamp(2rem, 8.4vw, 2.5rem); line-height: 1.1; letter-spacing: -.028em; }
  h2 { font-size: clamp(1.65rem, 7.1vw, 2.2rem); line-height: 1.12; letter-spacing: -.026em; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section-heading { margin-bottom: 26px; }
  .hero { padding: 28px 0 46px; }
  .hero-grid { gap: 26px; }
  .hero-lead { font-size: .96rem; line-height: 1.6; margin-bottom: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 7px; font-size: .86rem; }
  .hero-media picture { height: auto; aspect-ratio: 4 / 5; max-height: 500px; }
  .hero-image-badge { left: 12px; right: 12px; bottom: 12px; max-width: none; }

  .trust-strip-grid { grid-template-columns: 1fr; padding-block: 6px; }
  .trust-strip-grid > div { min-height: 64px; padding: 10px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-strip-grid > div:last-child { border-bottom: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-fast { grid-template-columns: 1fr; }
  .service-fast .btn { width: 100%; }
  .service-scope { align-items: flex-start; }
  .service-scope strong { width: 100%; }

  .personal-grid { gap: 28px; }
  .person-card { align-items: flex-start; }
  .person-actions { display: grid; grid-template-columns: 1fr; }
  .personal-visual picture { height: auto; aspect-ratio: 4 / 5; max-height: 480px; }
  .video-panel { margin-top: 34px; padding: 18px; border-radius: 18px; gap: 20px; }

  .why-grid { gap: 26px; }
  .why-list article { grid-template-columns: 42px 1fr; gap: 14px; }

  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-list li { min-height: 0; display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 0 0 24px; }
  .step-number { position: relative; width: 44px; height: 44px; box-shadow: 0 0 0 4px #fff; font-size: .9rem; }
  .process-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 46px;
    bottom: 2px;
    width: 1px;
    background: var(--border-dark);
  }

  .area-facts > div { grid-template-columns: 1fr; gap: 2px; }
  .map-placeholder { min-height: 0; grid-template-columns: 1fr; }
  .map-art { min-height: 160px; }
  .map-consent-copy { padding: 20px; }
  .map-frame iframe { height: clamp(260px, 75vw, 320px); }

  .result-grid { gap: 14px; }
  .results { padding-bottom: 28px; }
  .social-section { padding-bottom: 48px; }
  .social-band { gap: 14px; padding: 18px 16px; border-radius: 16px; }
  .social-band h2 { font-size: 1.25rem; }
  .social-band-copy > p:last-child { font-size: .84rem; }
  .social-band-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; }
  .social-band-links a { justify-content: center; padding: 8px 10px; }
  .social-band-links svg { width: 17px; height: 17px; }
  .social-band-links strong { font-size: .8rem; }
  .social-band-links small { font-size: .64rem; }
  .faq-grid { gap: 26px; }
  .faq-list summary { min-height: 56px; padding-block: 14px; }

  .contact { padding-top: 52px; }
  .contact-grid { gap: 24px; }
  .contact-option { min-height: 70px; padding-block: 12px; }
  .inspection-card,
  .social-card { padding: 16px; gap: 13px; }
  .btn-light-outline { width: 100%; }
  .social-links a { width: 22px; height: 22px; }
  .social-links svg { width: 15px; height: 15px; }
  .contact-form { padding: 18px; }

  .footer { padding-top: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { margin-top: 28px; }

  .floating-whatsapp { display: none; }
  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 6px 7px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(10,37,71,.12);
    background: rgba(255,255,255,.98);
    box-shadow: 0 -10px 26px rgba(10,37,71,.12);
  }
  .mobile-contact-bar a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    color: var(--primary);
    font-weight: 900;
  }
  .mobile-contact-bar .mobile-wa { background: #ffd56b; color: var(--primary); }

  .subpage-main { padding-top: 38px; }
  .legal-content,
  .thanks-card,
  .error-card { padding: 24px 20px; border-radius: 20px; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .brand { width: clamp(136px, 39vw, 150px); }
  .main-nav { left: 12px; right: 12px; }
  .mobile-nav-actions { grid-template-columns: 1fr; }
  .hero-image-badge { padding: 9px 10px; gap: 9px; }
  .hero-image-badge-star { width: 34px; height: 34px; font-size: .95rem; }
  .person-card { padding: 14px; gap: 12px; }
  .person-avatar { width: 46px; height: 46px; border-radius: 14px; }
  .contact-option { padding: 11px 12px; gap: 11px; }
  .contact-option-icon { width: 36px; height: 36px; border-radius: 10px; font-size: .95rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }
  .footer-credit { text-align: left; }
  .footer-top-link { justify-self: start; }
}

@media (min-width: 1440px) {
  :root { --container: 1240px; }
  .hero-grid { grid-template-columns: 1.05fr .85fr; }
  .hero-media { min-height: 580px; }
}

@media (min-width: 1800px) {
  :root { --container: 1320px; }
  .hero { padding-top: 96px; }
}

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


@media (max-width: 720px) {
  .social-link-item { min-height: 58px; padding: 11px 12px; }
  .social-link-icon { width: 36px; height: 36px; }
  .social-link-icon svg { width: 17px; height: 17px; }
}


/* Responsive proportion pass v11 */
:where(p, a, strong, small, em, dd, dt, figcaption) {
  overflow-wrap: break-word;
}
h1, h2, h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}
.container,
.hero-copy,
.hero-media,
.personal-copy,
.personal-visual,
.area-copy,
.map-card,
.why-intro,
.why-list,
.faq-intro,
.faq-list,
.contact-options,
.contact-form,
.footer-grid > * {
  min-width: 0;
}
.btn {
  max-width: 100%;
  white-space: normal;
}
.contact-option > span:last-child,
.person-details,
.social-link-item > span:last-child { min-width: 0; }
.contact-option em,
.footer a,
.person-details a,
.legal-content a { overflow-wrap: anywhere; }

@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-inner { gap: 18px; }
  .brand { width: 172px; }
  .main-nav ul { gap: 12px; }
  .main-nav a:not(.btn) { font-size: .84rem; }
  .header-cta { max-width: 214px; min-height: 46px; padding: 9px 12px; font-size: .84rem; }
  .hero-grid { gap: 40px; }
}

@media (max-width: 1024px) {
  :root { --section-space: clamp(62px, 7vw, 78px); }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .nav-toggle { width: 44px; height: 44px; }
  .hero-grid { gap: clamp(30px, 4vw, 44px); }
  .hero-media { min-height: clamp(430px, 52vw, 500px); }
  .service-card { padding: clamp(22px, 3vw, 28px); }
  .service-fast { gap: 22px; }
  .footer-brand img { width: min(190px, 100%); }
}

@media (max-width: 900px) {
  .hero-copy h1 { margin-bottom: 18px; }
  .hero-media picture { width: 100%; height: auto; aspect-ratio: 5 / 4; max-height: 560px; }
  .hero-media img { object-position: center 54%; }
  .personal-visual picture { width: 100%; height: auto; aspect-ratio: 4 / 3; max-height: 560px; }
  .personal-visual img { object-position: center 56%; }
  .service-fast { grid-template-columns: minmax(0, 1fr) auto; }
  .map-card { width: 100%; }
  .contact-form { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  body { font-size: 15px; line-height: 1.58; }
  .section-kicker,
  .eyebrow { gap: 6px; margin-bottom: 10px; font-size: .7rem; letter-spacing: .1em; }
  h3 { font-size: clamp(1.08rem, 4.8vw, 1.28rem); }
  .section-heading h2 { margin-bottom: 13px; }
  .section-heading > p:last-child { font-size: .95rem; }
  .btn { min-height: 44px; gap: 7px; padding: 10px 14px; font-size: .88rem; border-radius: 10px; }
  .btn-large { min-height: 48px; padding: 11px 15px; }
  .btn svg { width: 18px; height: 18px; }
  .text-link { min-height: 40px; font-size: .9rem; }

  .nav-inner { min-height: 62px; }
  .site-header.scrolled .nav-inner { min-height: 60px; }
  .brand { height: 43px; }
  .nav-toggle { width: 40px; height: 40px; padding: 8px; }
  .main-nav { top: 62px; padding: 14px; border-radius: 14px; }
  .main-nav a:not(.btn) { min-height: 46px; font-size: .92rem; }
  .mobile-nav-actions { margin-top: 12px; }

  .hero-copy h1 { margin-bottom: 15px; hyphens: manual; }
  .claim { margin-bottom: 18px; font-size: .82rem; }
  .hero-actions { gap: 9px; margin-bottom: 18px; }
  .hero-trust li span { width: 18px; height: 18px; font-size: .67rem; }
  .hero-media picture { aspect-ratio: 4 / 5; border-radius: 22px 12px 22px 12px; }
  .hero-image-badge { font-size: .9rem; }
  .hero-image-badge strong { font-size: .82rem; }
  .hero-image-badge small { font-size: .72rem; }

  .trust-label { font-size: .68rem; }
  .trust-strip strong,
  .trust-strip a { font-size: .96rem; }

  .service-grid { gap: 12px; }
  .service-fast { grid-template-columns: 1fr; }
  .service-card { padding: 20px; border-radius: 16px; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 17px; border-radius: 12px; }
  .service-icon svg { width: 23px; height: 23px; }
  .service-card h3 { margin-bottom: 8px; }
  .service-card p { margin-bottom: 12px; }
  .service-fast { padding: 20px; gap: 16px; }
  .service-fast h3 { font-size: 1.35rem; }
  .service-scope { gap: 7px; margin-top: 16px; }
  .service-scope span { padding: 6px 9px; font-size: .8rem; }

  .personal-copy h2 { margin-bottom: 14px; }
  .personal-copy > p:not(.section-kicker) { font-size: .96rem; }
  .person-card { margin: 20px 0 16px; }
  .person-details span { font-size: .7rem; }
  .person-details strong { font-size: 1.02rem; }
  .person-details a { font-size: .94rem; }
  .personal-visual picture { aspect-ratio: 4 / 5; border-radius: 16px 28px 16px 28px; }
  .personal-visual-caption { left: 12px; right: 12px; bottom: 12px; padding: 8px 10px; font-size: .74rem; text-align: center; }
  .video-copy h3 { font-size: 1.35rem; }
  .video-panel video { border-radius: 12px; }

  .why-list article { padding: 20px 0; }
  .why-number { font-size: .74rem; }
  .why-list h3 { margin-bottom: 5px; }

  .process-list h3 { margin-bottom: 5px; }
  .process-list p { font-size: .92rem; }

  .area-copy h2 { margin-bottom: 14px; }
  .area-facts { margin: 22px 0 16px; }
  .area-facts > div { padding: 10px 0; }
  .area-question { margin-top: 16px; }
  .map-card { border-radius: 18px; }
  .map-consent-copy h3 { font-size: 1.3rem; }
  .map-consent-copy p { font-size: .88rem; }
  .map-actions { padding: 9px 13px; }
  .map-actions a { min-height: 40px; font-size: .82rem; }

  .result-card { border-radius: 16px; }
  .result-card figcaption { padding: 10px 12px; font-size: .78rem; }

  .faq-intro > p:not(.section-kicker) { margin-bottom: 16px; }
  .faq-list summary { padding-right: 38px; font-size: .94rem; }
  .faq-list summary::after { width: 27px; height: 27px; }
  .faq-list details p { margin: -1px 38px 17px 0; font-size: .9rem; }

  .contact-heading { margin-bottom: 26px; }
  .contact-heading h2 { margin-bottom: 13px; }
  .contact-heading > p:last-child { font-size: .95rem; }
  .contact-options { gap: 9px; }
  .contact-option small,
  .contact-address small { font-size: .68rem; }
  .contact-option strong { font-size: .94rem; }
  .contact-option em { font-size: .8rem; }
  .contact-address { gap: 11px; padding: 14px 12px; }
  .inspection-card h3,
  .social-card h3 { font-size: 1rem; }
  .inspection-card p,
  .social-card p { font-size: .84rem; }
  .social-card-prominent { gap: 13px; padding: 16px 15px; }
  .social-links-prominent { grid-template-columns: 1fr; gap: 0; padding-top: 10px; }
  .social-link-item { min-height: 44px; gap: 9px; padding: 8px 0; }
  .social-link-icon { width: 28px; height: 28px; }
  .social-link-icon svg { width: 18px; height: 18px; }
  .social-link-item strong { font-size: .88rem; }
  .social-link-item small { font-size: .72rem; }
  .contact-form { gap: 7px; border-radius: 16px; }
  .form-heading h3 { font-size: 1.32rem; }
  .contact-form > label { font-size: .8rem; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { min-height: 46px; padding: 10px 11px; border-radius: 9px; font-size: 16px; }
  .contact-form textarea { min-height: 108px; }
  .form-submit { margin-top: 7px; }

  .footer { padding-bottom: 18px; }
  .footer-brand img { width: 172px; }
  .footer-brand p { margin-top: 13px; }
  .footer h2 { margin-bottom: 10px; font-size: .88rem; }
  .footer a { min-height: 27px; }
  .footer-social { margin-top: 8px; }
  .footer-bottom { gap: 12px; padding-top: 16px; font-size: .76rem; }

  .mobile-contact-bar a { min-height: 44px; gap: 6px; font-size: .88rem; }
  .subpage-main { padding-top: 30px; }
  .subpage-hero { margin-bottom: 24px; }
  .subpage-hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.65rem); }
  .legal-content,
  .thanks-card,
  .error-card { padding: 20px 16px; }
}

@media (max-width: 430px) {
  .brand { width: clamp(136px, 39vw, 150px); }
  .main-nav { left: 10px; right: 10px; }
  .hero-image-badge { left: 9px; right: 9px; bottom: 9px; }
  .hero-image-badge span:last-child { min-width: 0; }
  .service-fast { padding: 18px; }
  .person-actions .btn { width: 100%; }
  .map-consent-copy { padding: 17px; }
  .social-band-links { grid-template-columns: 1fr; }
  .social-band-links a { justify-content: flex-start; min-height: 42px; padding: 7px 2px; }
  .social-band-links a + a::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; }
  .social-band-links small { white-space: normal; }
  .inspection-card,
  .social-card { padding: 14px; }
  .contact-form { padding: 16px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 360px) {
  .container { width: min(calc(100% - 16px), var(--container)); }
  h1 { font-size: clamp(1.8rem, 8.8vw, 1.98rem); }
  h2 { font-size: clamp(1.55rem, 7.7vw, 1.78rem); }
  .brand { width: 132px; }
  .hero { padding-top: 24px; }
  .hero-image-badge { position: relative; left: auto; right: auto; bottom: auto; margin: 10px 0 0; width: 100%; box-shadow: none; border-color: var(--border); }
  .hero-media picture { aspect-ratio: 1 / 1.16; }
  .map-road-one { width: 230px; left: 30px; }
  .person-card { align-items: center; }
  .person-avatar { width: 42px; height: 42px; font-size: .88rem; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 11px; }
  .step-number { width: 40px; height: 40px; }
  .process-list li:not(:last-child)::after { left: 19px; top: 42px; }
  .contact-option { align-items: flex-start; }
  .contact-option-icon { width: 34px; height: 34px; }
  .social-link-item { padding-inline: 9px; }
  .footer-brand img { width: 158px; }
  .mobile-contact-bar { grid-template-columns: .9fr 1.1fr; padding-inline: 5px; }
  .mobile-contact-bar a { font-size: .82rem; }
}

@media (max-width: 330px) {
  .container { width: min(calc(100% - 14px), var(--container)); }
  .brand { width: 126px; }
  .nav-toggle { width: 38px; height: 38px; }
  .btn { padding-inline: 11px; }
  .hero-actions .btn { font-size: .84rem; }
  .contact-option { padding-inline: 10px; }
  .social-link-icon { width: 32px; height: 32px; }
  .social-link-item small { font-size: .71rem; }
  .footer-grid { gap: 21px; }
}


@media (max-width: 600px) {
  .social-links-prominent { grid-template-columns: 1fr; }
  .social-link-item,
  .social-link-item:first-child,
  .social-link-item:last-child { padding: 8px 0; }
  .social-link-item + .social-link-item::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: rgba(255,255,255,.13);
  }
}
