/* =========================
   MIS RAÍCES — ESTILOS
   ========================= */

:root {
  --navy: #071f31;
  --navy-2: #0b2c43;
  --navy-3: #103a55;
  --sand: #b39a67;
  --sand-2: #d8c9a4;
  --cream: #f4f1e7;
  --cream-2: #fbfaf5;
  --olive: #75653f;
  --ink: #14202a;
  --muted: #66717a;
  --white: #ffffff;
  --line: rgba(7, 31, 49, .12);
  --shadow: 0 30px 70px rgba(7, 31, 49, .13);
  --shadow-soft: 0 16px 40px rgba(7, 31, 49, .09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  width: 100%;
  height: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 245, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(7, 31, 49, .08);
  padding: 8px 0;
}

.nav-wrap {
  width: min(calc(100% - 32px), 1240px);
  min-height: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 12px 8px 14px;
  border-radius: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--navy);
  font-weight: 900;
  letter-spacing: -.03em;
  box-shadow: 0 8px 22px rgba(7, 31, 49, .18);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 17px;
  color: var(--navy);
}

.brand-text small {
  margin-top: 4px;
  color: var(--olive);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--sand);
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(7, 31, 49, .16);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  cursor: pointer;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
  min-height: 850px;
  display: grid;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(244, 241, 231, .98), rgba(251, 250, 245, .95)),
    radial-gradient(circle at 75% 25%, rgba(179, 154, 103, .28), transparent 33%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 56vw;
  max-width: 760px;
  aspect-ratio: 1;
  right: -14vw;
  top: -16vw;
  border-radius: 50%;
  border: 1px solid rgba(117, 101, 63, .12);
}

.hero::after {
  content: "";
  position: absolute;
  left: -20%;
  bottom: -310px;
  width: 65%;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(7, 31, 49, .08);
  transform: rotate(12deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  right: 6%;
  top: 16%;
  width: 240px;
  height: 240px;
  background: rgba(179, 154, 103, .12);
}

.hero-glow-two {
  left: 28%;
  bottom: 11%;
  width: 180px;
  height: 180px;
  background: rgba(7, 31, 49, .06);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 12px;
  font-weight: 900;
  color: var(--olive);
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--sand);
}

.eyebrow.light {
  color: var(--sand-2);
}

.eyebrow.light span {
  background: var(--sand-2);
}

.hero h1,
.section-heading h2,
.properties-intro h2,
.coverage-copy h2,
.contact-content h2 {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.04em;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(52px, 6.8vw, 90px);
  line-height: .93;
}

.hero h1 span {
  color: var(--olive);
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: clamp(20px, 2vw, 27px);
  color: var(--navy);
  font-weight: 700;
}

.hero-coverage {
  max-width: 590px;
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 15px 30px rgba(7, 31, 49, .18);
}

.btn-primary:hover {
  background: var(--navy-2);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, .6);
  border-color: rgba(7, 31, 49, .15);
}

.btn-icon {
  font-size: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin-top: 42px;
}

.stat-card {
  position: relative;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(7, 31, 49, .10);
  background: rgba(255, 255, 255, .54);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.logo-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .46);
  box-shadow: var(--shadow);
  border: 1px solid rgba(117, 101, 63, .18);
}

.logo-shell::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(179, 154, 103, .34);
  border-radius: 50%;
  pointer-events: none;
}

.logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
}

.logo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(7, 31, 49, .15);
  pointer-events: none;
}

.orbit-a {
  inset: -34px;
  animation: orbitFloat 7s ease-in-out infinite;
}

.orbit-b {
  inset: -66px;
  border-style: dashed;
  border-color: rgba(179, 154, 103, .25);
  animation: orbitFloat 9s ease-in-out infinite reverse;
}

@keyframes orbitFloat {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.015); }
}

.visual-tag {
  position: absolute;
  z-index: 3;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 900;
}

.visual-tag-top {
  top: 10%;
  right: -2%;
}

.visual-tag-bottom {
  bottom: 11%;
  left: 0;
  background: var(--navy);
  color: var(--cream);
}

/* Trust */
.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -35px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--navy);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trust-grid span {
  display: grid;
  place-items: center;
  min-height: 76px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 900;
  border-right: 1px solid rgba(255,255,255,.1);
}

.trust-grid span:last-child {
  border-right: 0;
}

/* Sections */
.section-heading {
  max-width: 760px;
}

.section-heading h2,
.properties-intro h2,
.coverage-copy h2,
.contact-content h2 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(7, 31, 49, .06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -54px;
  bottom: -54px;
  border-radius: 50%;
  border: 20px solid rgba(179, 154, 103, .10);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(7, 31, 49, .10);
  background: #fffefa;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--cream);
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

/* Properties */
.properties-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(179, 154, 103, .16), transparent 30%),
    linear-gradient(135deg, var(--navy), #061823 70%);
  overflow: hidden;
}

.properties-section::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 60px rgba(255,255,255,.025),
    0 0 0 120px rgba(255,255,255,.018);
}

.properties-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.properties-intro {
  position: sticky;
  top: 120px;
}

.properties-intro h2 {
  color: var(--white);
}

.properties-intro p {
  max-width: 500px;
  margin-top: 24px;
  color: rgba(255,255,255,.70);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: var(--sand-2);
  font-weight: 900;
  border-bottom: 1px solid rgba(216,201,164,.45);
  padding-bottom: 5px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.property-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(6px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.09);
  border-color: rgba(216,201,164,.34);
}

.property-symbol {
  width: 74px;
  height: 74px;
  color: var(--sand-2);
}

.property-symbol svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.property-card h3 {
  margin: 86px 0 0;
  color: var(--white);
  font-size: 22px;
}

/* Coverage */
.coverage {
  background: var(--cream);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}

.coverage-art {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(7,31,49,.98), rgba(11,44,67,.94)),
    var(--navy);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.coverage-art::before,
.coverage-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
}

.coverage-art::before {
  width: 460px;
  height: 460px;
  left: -190px;
  bottom: -110px;
}

.coverage-art::after {
  width: 310px;
  height: 310px;
  right: -120px;
  top: -70px;
}

.map-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(216,201,164,.8), transparent);
  opacity: .85;
}

.line-1 {
  width: 78%;
  left: 10%;
  top: 37%;
  transform: rotate(-14deg);
}

.line-2 {
  width: 68%;
  left: 18%;
  top: 56%;
  transform: rotate(19deg);
}

.line-3 {
  width: 62%;
  left: 21%;
  top: 72%;
  transform: rotate(-7deg);
}

.pin {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 48%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--sand-2);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

.pin span {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--navy);
}

.coverage-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(216,201,164,.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3.6s ease-out infinite;
}

.ring-1 {
  width: 150px;
  height: 150px;
}

.ring-2 {
  width: 260px;
  height: 260px;
  animation-delay: 1.1s;
}

@keyframes pulse {
  0% { opacity: .75; transform: translate(-50%, -50%) scale(.65); }
  70%,100% { opacity: 0; transform: translate(-50%, -50%) scale(1.25); }
}

.coverage-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 22px;
}

.coverage-note {
  display: grid;
  gap: 5px;
  margin-top: 36px;
  padding-left: 20px;
  border-left: 3px solid var(--sand);
}

.coverage-note strong {
  color: var(--navy);
  font-size: 19px;
}

.coverage-note span {
  color: var(--muted);
}

/* Contact */
.contact-section {
  padding-top: 40px;
  background: var(--cream);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  min-height: 500px;
  padding: 60px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 78% 35%, rgba(179,154,103,.23), transparent 25%),
    linear-gradient(135deg, #0b2b40, #061722);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 25px;
  pointer-events: none;
}

.contact-content,
.contact-logo {
  position: relative;
  z-index: 2;
}

.contact-content h2 {
  color: var(--white);
}

.contact-content > p {
  margin: 12px 0 0;
  color: var(--sand-2);
  font-size: 20px;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn-light {
  background: var(--cream);
  color: var(--navy);
}

.btn-outline-light {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.20);
}

.contact-logo {
  justify-self: end;
  width: min(100%, 320px);
  padding: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.contact-logo img {
  border-radius: 50%;
}

/* Footer */
.site-footer {
  padding: 34px 0 110px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(7,31,49,.10);
  color: var(--muted);
  font-size: 13px;
}

.footer-grid > div {
  display: grid;
  gap: 4px;
}

.footer-grid strong {
  color: var(--navy);
  font-size: 15px;
}

.footer-grid a {
  color: var(--navy);
  font-weight: 800;
}

/* Floating call */
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 40px rgba(7,31,49,.28);
  font-weight: 900;
}

/* Reveal animations */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.reveal-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal,
  .reveal.reveal-ready {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .nav-call {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 40px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-panel {
    grid-template-columns: 1fr 300px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 84px 0;
  }

  .site-header {
    padding: 8px 0;
  }

  .nav-wrap {
    position: relative;
    background: rgba(251,250,245,.94);
    box-shadow: 0 10px 30px rgba(7,31,49,.08);
    backdrop-filter: blur(14px);
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .brand-text small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--cream-2);
    border: 1px solid rgba(7,31,49,.10);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: rgba(7,31,49,.06);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-lead,
  .hero-coverage,
  .hero-stats {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 420px;
  }

  .logo-shell {
    width: min(82vw, 440px);
  }

  .visual-tag-top {
    right: 5%;
  }

  .visual-tag-bottom {
    left: 5%;
  }

  .trust-strip {
    margin-top: -20px;
  }

  .trust-grid {
    grid-template-columns: repeat(5, auto);
    overflow-x: auto;
    justify-content: start;
    padding: 0 10px;
  }

  .trust-grid span {
    min-width: 145px;
    border-right: 1px solid rgba(255,255,255,.08);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .properties-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .properties-intro {
    position: relative;
    top: 0;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .coverage-art {
    min-height: 420px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 45px;
  }

  .contact-logo {
    justify-self: start;
    width: 240px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 350px;
  }

  .logo-shell {
    width: min(86vw, 360px);
    padding: 16px;
  }

  .orbit-a {
    inset: -16px;
  }

  .orbit-b {
    inset: -34px;
  }

  .visual-tag {
    font-size: 11px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 180px;
  }

  .property-grid {
    grid-template-columns: 1fr;
  }

  .property-card {
    min-height: 210px;
  }

  .property-card h3 {
    margin-top: 45px;
  }

  .coverage-art {
    min-height: 330px;
  }

  .contact-panel {
    padding: 30px 24px;
    border-radius: 26px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-logo {
    width: 190px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-call {
    left: 14px;
    right: 14px;
    bottom: 12px;
    justify-content: center;
  }
}
