:root {
  --ink: #102a2e;
  --ink-deep: #07191c;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --mint: #96e0c7;
  --mint-bright: #b8f2df;
  --white: #fff;
  --line: rgba(16, 42, 46, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 25px clamp(22px, 5vw, 76px);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: inherit;
  text-decoration: none;
}
.brand-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--mint);
}
.brand-icon svg { width: 28px; height: 28px; }
.brand strong { display: block; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.brand small { display: block; margin-top: 3px; color: rgba(255,255,255,.57); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 38px; }
nav a {
  padding: 9px 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
}
nav a:hover { color: #fff; }

.header-phone {
  justify-self: end;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 9px;
  color: #fff;
  text-decoration: none;
}
.status-dot {
  grid-row: 1 / span 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(150,224,199,.12);
}
.header-phone span:not(.status-dot) { color: rgba(255,255,255,.68); font-size: 12px; }
.header-phone strong { font-size: 16px; letter-spacing: .04em; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink-deep) url("assets/taxi-iguaran-lateral.webp") center center / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,18,20,.9) 0%, rgba(4,18,20,.67) 42%, rgba(4,18,20,.12) 73%),
    linear-gradient(0deg, rgba(4,18,20,.7), transparent 52%);
}
.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, 82vw);
  margin-left: clamp(22px, 8vw, 130px);
  padding: 140px 0 155px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow > span { width: 32px; height: 2px; background: var(--mint); }
.hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.74);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 60px;
  padding: 0 25px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .045em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--mint); color: var(--ink-deep); }
.button-primary:hover { background: var(--mint-bright); }
.phone-symbol { font-size: 19px; }
.text-link { color: rgba(255,255,255,.74); font-size: 12px; font-weight: 700; text-decoration: none; }
.text-link span { margin-left: 12px; color: var(--mint); }

.hero-trust {
  position: absolute;
  z-index: 1;
  right: clamp(22px, 5vw, 76px);
  bottom: 30px;
  left: clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: end;
  gap: clamp(26px, 5vw, 80px);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.17);
}
.hero-trust > div { display: flex; align-items: flex-start; gap: 12px; }
.hero-trust strong { color: var(--mint); font-family: Georgia, serif; font-size: 13px; font-weight: 400; }
.hero-trust span { color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }
.image-note {
  position: absolute;
  z-index: 1;
  bottom: 33px;
  left: clamp(22px, 5vw, 76px);
  margin: 0;
  color: rgba(255,255,255,.36);
  font-size: 9px;
}

.services {
  padding: clamp(78px, 10vw, 150px) clamp(22px, 7vw, 108px);
  background: var(--cream);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  column-gap: 8vw;
  max-width: 1320px;
  margin: 0 auto 65px;
}
.eyebrow-dark { grid-column: 1 / -1; color: #65777a; }
.section-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.section-heading > p:last-child {
  align-self: end;
  margin-bottom: 5px;
  color: #617073;
  font-size: 15px;
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  min-height: 590px;
  border: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(16,42,46,.09);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), rgba(150,224,199,.25));
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 30px 80px rgba(16,42,46,.16); }
.service-card-featured {
  margin-top: -18px;
  margin-bottom: 18px;
  box-shadow: 0 30px 80px rgba(16,42,46,.18);
}
.service-visual {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: #263a3d;
}
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,25,28,.55), transparent 65%);
}
.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-visual img { transform: scale(1.035); }
.service-visual > span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  padding: 8px 10px;
  background: var(--mint);
  color: var(--ink-deep);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-body {
  display: flex;
  flex-direction: column;
  min-height: 375px;
  padding: 26px clamp(24px, 2.5vw, 34px) 30px;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.service-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16,42,46,.16);
  border-radius: 50%;
  color: #66797c;
  font-family: Georgia, serif;
  font-size: 12px;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 50%;
  background: rgba(150,224,199,.23);
  color: var(--ink);
}
.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: 13px; font-family: Georgia, serif; font-size: 29px; font-weight: 400; line-height: 1.1; }
.service-card p { margin-bottom: 0; color: #637276; font-size: 14px; line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 23px; }
.service-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(16,42,46,.11);
  border-radius: 2px;
  background: rgba(255,255,255,.55);
  color: #627376;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 23px;
  border-top: 1px solid rgba(16,42,46,.11);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.service-link span { color: #568f7c; font-size: 18px; transition: transform .2s ease; }
.service-link:hover span { transform: translateX(4px); }
.service-card-featured .service-body { background: var(--ink); color: #fff; }
.service-card-featured .service-number { border-color: rgba(255,255,255,.23); color: var(--mint); }
.service-card-featured .service-icon { background: var(--mint); color: var(--ink-deep); }
.service-card-featured p { color: rgba(255,255,255,.64); }
.service-card-featured .service-tags span { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); }
.service-card-featured .service-link { border-color: rgba(255,255,255,.16); color: #fff; }
.service-card-featured .service-link span { color: var(--mint); }
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  max-width: 1320px;
  margin: 35px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.service-cta p { margin: 0; color: #627174; font-size: 13px; }
.service-cta a { font-size: 13px; font-weight: 800; text-decoration: none; }
.service-cta a span { margin-left: 12px; }

.coverage-block {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(42px, 8vw, 120px);
  max-width: 1320px;
  margin: clamp(80px, 10vw, 140px) auto 0;
  padding: clamp(45px, 6vw, 78px);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 30px 90px rgba(16,42,46,.16);
}
.coverage-intro { align-self: center; }
.coverage-intro h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 51px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.coverage-intro > p:not(.eyebrow) { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; }
.coverage-intro > a {
  display: inline-flex;
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--mint);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.coverage-intro > a span { color: var(--mint); }
.coverage-areas { display: grid; gap: 14px; }
.coverage-group {
  padding: 25px 27px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}
.coverage-primary { border-color: rgba(150,224,199,.28); background: rgba(150,224,199,.07); }
.coverage-group > p { margin-bottom: 17px; color: var(--mint); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.town-list { display: flex; flex-wrap: wrap; gap: 8px; }
.town-list strong, .town-list span {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.town-list strong { border-color: rgba(150,224,199,.23); color: #fff; }
.town-list-secondary span { color: rgba(255,255,255,.58); font-weight: 600; }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 850px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.contact-map {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #d7dad5;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  filter: saturate(.8) contrast(.96);
}
.contact-map iframe[hidden], .map-consent[hidden] { display: none; }
.map-consent {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 235px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.8), rgba(255,255,255,0) 44%),
    linear-gradient(135deg, #dfe5df, #cbd3cd);
  color: var(--ink-deep);
  text-align: center;
}
.map-consent-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--mint); font-size: 25px; }
.map-consent-kicker { margin: 17px 0 8px; color: #506360; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.map-consent h3 { max-width: 380px; margin: 0; font-family: Georgia, serif; font-size: 30px; font-weight: 400; line-height: 1.08; }
.map-consent > p:not(.map-consent-kicker) { max-width: 390px; margin: 13px 0 20px; color: #52625f; font-size: 14px; line-height: 1.55; }
.map-consent button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  cursor: pointer;
  text-transform: uppercase;
}
.map-consent button:hover, .map-consent button:focus-visible { background: var(--ink-deep); outline: 3px solid rgba(16,42,46,.22); outline-offset: 3px; }
.map-consent > a { margin-top: 13px; color: #465956; font-size: 11px; text-underline-offset: 3px; }
.map-card {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 55px);
  bottom: clamp(25px, 5vw, 65px);
  left: clamp(20px, 4vw, 55px);
  padding: 25px 27px;
  background: rgba(7,25,28,.94);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
}
.map-card p { margin-bottom: 12px; color: var(--mint); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.map-card > strong { display: block; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.map-card > span { display: block; margin-top: 5px; color: rgba(255,255,255,.52); font-size: 11px; }
.map-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}
.map-card a > span { color: var(--mint); font-size: 18px; }

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 95px clamp(32px, 7vw, 105px) 145px;
}
.contact-content h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-family: Georgia, serif;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.contact-content > p:not(.eyebrow) { max-width: 550px; color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.68; }
.contact-number {
  position: relative;
  display: block;
  margin-top: 34px;
  padding: 25px 55px 25px 0;
  border-top: 1px solid rgba(255,255,255,.17);
  border-bottom: 1px solid rgba(255,255,255,.17);
  text-decoration: none;
}
.contact-number small { display: block; margin-bottom: 8px; color: var(--mint); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-number strong { font-family: Georgia, serif; font-size: clamp(35px, 4vw, 54px); font-weight: 400; letter-spacing: -.02em; }
.contact-number > span { position: absolute; right: 5px; top: 50%; color: var(--mint); font-size: 32px; transform: translateY(-50%); }
.email-link { width: max-content; margin-top: 20px; color: rgba(255,255,255,.64); font-size: 13px; text-underline-offset: 4px; }

footer {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 26px;
  left: clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.footer-brand .brand-icon { width: 37px; height: 37px; }
.footer-brand .brand-icon svg { width: 23px; height: 23px; }
footer p { margin: 0; color: rgba(255,255,255,.37); font-size: 9px; line-height: 1.5; }
.footer-legal { display: flex; gap: 15px; }
.footer-legal a { color: rgba(255,255,255,.55); font-size: 9px; text-decoration: none; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.mobile-call { display: none; }

.legal-body { min-height: 100vh; background: #f4f1ea; color: var(--ink-deep); }
.legal-header { display: flex; align-items: center; justify-content: space-between; padding: 22px clamp(20px, 5vw, 72px); border-bottom: 1px solid rgba(16,42,46,.13); background: #fff; }
.legal-header .brand-icon { border-color: rgba(16,42,46,.24); color: var(--ink); }
.legal-header .brand small { color: #657471; }
.legal-back { color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; }
.legal-back:hover, .legal-back:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.legal-main { width: min(920px, calc(100% - 36px)); margin: 0 auto; padding: clamp(65px, 9vw, 120px) 0 95px; }
.legal-intro { padding-bottom: 45px; border-bottom: 1px solid rgba(16,42,46,.16); }
.legal-intro h1 { max-width: 760px; margin: 15px 0 18px; font-family: Georgia, serif; font-size: clamp(48px, 7vw, 78px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.legal-intro > p:last-child { max-width: 680px; color: #596865; font-size: 17px; line-height: 1.65; }
.legal-content { display: grid; gap: 0; }
.legal-section { display: grid; grid-template-columns: 210px 1fr; gap: 45px; padding: 42px 0; border-bottom: 1px solid rgba(16,42,46,.13); }
.legal-section h2 { margin: 0; font-family: Georgia, serif; font-size: 26px; font-weight: 400; line-height: 1.1; }
.legal-copy { color: #455652; font-size: 16px; line-height: 1.72; }
.legal-copy p { margin: 0 0 16px; }
.legal-copy p:last-child { margin-bottom: 0; }
.legal-copy ul { margin: 0; padding-left: 20px; }
.legal-copy li + li { margin-top: 7px; }
.legal-copy a { color: var(--ink); text-underline-offset: 3px; }
.legal-data { display: grid; grid-template-columns: 145px 1fr; gap: 9px 20px; margin: 0; }
.legal-data dt { color: #71807d; font-size: 13px; font-weight: 700; }
.legal-data dd { margin: 0; color: var(--ink-deep); }
.legal-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 28px clamp(20px, 5vw, 72px); background: var(--ink); color: rgba(255,255,255,.55); }
.legal-footer div { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-footer a { color: #fff; font-size: 12px; text-underline-offset: 3px; }
.legal-footer p { margin: 0; font-size: 11px; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { max-width: 650px; margin-top: 24px; }
  .coverage-block { grid-template-columns: 1fr; }
  .contact { grid-template-columns: .85fr 1.15fr; }
  footer { grid-template-columns: 1fr auto; }
  footer p:nth-of-type(1) { display: none; }
}

@media (max-width: 700px) {
  body { padding-bottom: 70px; }
  .legal-body { padding-bottom: 0; }
  .site-header { padding: 17px 18px; }
  .brand-icon { width: 40px; height: 40px; }
  .brand strong { font-size: 12px; }
  .header-phone span:not(.status-dot) { display: none; }
  .header-phone strong { font-size: 14px; }
  .hero { min-height: 92svh; background-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,18,20,.9), rgba(4,18,20,.38)), linear-gradient(0deg, rgba(4,18,20,.77), transparent 60%); }
  .hero-content { width: auto; margin: 0 18px; padding: 125px 0 150px; }
  .hero h1 { font-size: clamp(44px, 13vw, 59px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-trust { right: 18px; bottom: 27px; left: 18px; grid-template-columns: repeat(3, 1fr); justify-content: initial; gap: 10px; }
  .hero-trust strong { display: none; }
  .hero-trust span { font-size: 8px; }
  .image-note { bottom: 8px; left: 18px; font-size: 7px; }
  .services { padding: 76px 18px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 43px; }
  .section-heading > p:last-child { font-size: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card-featured { margin: 0; }
  .service-visual { height: 220px; }
  .service-body { min-height: 370px; padding: 25px 24px 28px; }
  .service-cta { align-items: flex-start; flex-direction: column; }
  .coverage-block { margin-top: 75px; padding: 42px 24px; }
  .coverage-intro h3 { font-size: 39px; }
  .coverage-group { padding: 22px 20px; }
  .contact { display: flex; flex-direction: column; min-height: auto; }
  .contact-map { min-height: 380px; }
  .contact-map iframe { min-height: 500px; }
  .map-card { right: 14px; bottom: 14px; left: 14px; padding: 20px; }
  .map-consent { padding: 35px 24px 210px; }
  .map-consent h3 { font-size: 27px; }
  .map-card > strong { font-size: 20px; }
  .contact-content { padding: 70px 18px 145px; }
  .contact-content h2 { font-size: 45px; }
  .contact-number strong { font-size: 40px; }
  footer { right: 18px; bottom: 30px; left: 18px; grid-template-columns: 1fr; }
  footer > p:last-child { display: none; }
  .footer-legal { gap: 12px; }
  .footer-legal a { font-size: 10px; }
  .legal-header .brand small { display: block; }
  .legal-main { padding-top: 58px; }
  .legal-intro h1 { font-size: 50px; }
  .legal-section { grid-template-columns: 1fr; gap: 18px; padding: 34px 0; }
  .legal-data { grid-template-columns: 1fr; gap: 2px; }
  .legal-data dd + dt { margin-top: 10px; }
  .legal-footer { align-items: flex-start; flex-direction: column; }
  .mobile-call {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 3px;
    background: var(--mint);
    color: var(--ink-deep);
    box-shadow: 0 10px 35px rgba(0,0,0,.22);
    text-decoration: none;
  }
  .mobile-call span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-call strong { font-size: 15px; }
}

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