:root {
  --ink: #111110;
  --ink-muted: #57564f;
  --ink-faint: #8a8982;

  --paper: #f5f2eb;
  --paper-raised: #fbf9f4;
  --paper-alt: #ece8df;
  --paper-line: rgba(17, 17, 16, 0.1);

  --accent: #b12d00;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;

  --max-width: 78rem;
  --radius: 0.375rem;
  --radius-photo: 0.75rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: none;
  font-family: 'Montserrat', -apple-system, system-ui, sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

section[id] {
  scroll-margin-top: 5rem;
}

h1, h2, h3, p, li, a, summary {
  overflow-wrap: break-word;
}

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

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.skip-link {
  position: absolute;
  top: -10rem;
  left: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  z-index: 100;
  transition: top 0.2s;
}

.skip-link:focus { top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background: var(--paper);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .site-header-inner { padding: 1.5rem 1.75rem; }
}

@media (min-width: 1024px) {
  .site-header-inner { padding: 1.75rem 2rem; }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.2s;
  min-width: 0;
  flex-shrink: 1;
}

.logo:hover { opacity: 0.7; }

.logo .material-symbols-outlined {
  color: var(--ink);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.logo-text-accent {
  color: var(--accent);
}

@media (min-width: 640px) {
  .logo-text { font-size: 1.1875rem; }
}

.site-nav {
  display: none;
  gap: 2.25rem;
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
}

.nav-link {
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.15s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--paper-alt);
  border-radius: 999px;
  padding: 0.1875rem;
  flex-shrink: 0;
  gap: 0.125rem;
}

.lang-switch-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.15s, background 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.lang-switch-option:hover:not(.is-active) {
  color: var(--ink);
}

.lang-switch-option.is-active {
  background: var(--ink);
  color: var(--paper);
  cursor: default;
  pointer-events: none;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 520px) {
  .lang-switch-option {
    min-width: 2.25rem;
    padding: 0.4375rem 0.75rem;
  }
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  transition: background 0.15s, transform 0.15s;
  min-width: 2.5rem;
  min-height: 2.5rem;
}

.btn-emergency:hover { background: #000; }
.btn-emergency:active { transform: scale(0.97); }

.btn-emergency-icon { font-size: 1.25rem; }

.btn-emergency-text { display: none; }

@media (min-width: 520px) {
  .btn-emergency {
    padding: 0.625rem 1rem;
    min-width: auto;
  }
  .btn-emergency-text { display: inline; }
  .btn-emergency-icon { display: none; }
}

@media (min-width: 640px) {
  .btn-emergency {
    padding: 0.75rem 1.125rem;
    font-size: 0.875rem;
  }
}

/* ---------- Hero (split layout) ---------- */
.hero {
  padding: 2rem 1.25rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero { padding: 2.5rem 1.75rem 5rem; }
}

@media (min-width: 1024px) {
  .hero { padding: 3.5rem 2rem 7rem; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .hero-grid { gap: 5.5rem; }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--paper-line);
}

.hero-title {
  font-size: clamp(2.25rem, 6.5vw, 5.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.hero-phrase {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 500;
  color: var(--ink-muted);
  max-width: 40rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 32rem;
}

@media (min-width: 520px) {
  .hero-cta {
    flex-direction: row;
    align-items: stretch;
  }
}

.hero-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.125rem;
  padding: 0.875rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s;
}

.hero-phone:hover { background: #000; }
.hero-phone:active { transform: scale(0.98); }

.hero-phone-number {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.hero-phone-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-phone-label .material-symbols-outlined {
  font-size: 0.875rem;
}

.hero-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  border: none;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s;
}

.hero-wa:hover {
  background: var(--whatsapp-hover);
}

.hero-wa:active {
  transform: scale(0.98);
}

.hero-wa .wa-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.hero-footnote {
  font-size: 0.8125rem;
  color: var(--ink-faint);
  max-width: 32rem;
  line-height: 1.55;
}

/* Hero media (photo) */
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-photo);
  background: var(--paper-alt);
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .hero-media {
    margin-top: 0;
    aspect-ratio: 3 / 4;
  }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .hero-media img {
    transform: scale(1.12);
    transition: transform 0.1s linear;
    will-change: transform;
  }
}

/* ---------- Stats band ---------- */
.stats {
  background: transparent;
  padding: 0 0 2rem;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  margin-top: 1rem;
}

.stats-list {
  list-style: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

@media (min-width: 768px) {
  .stats-list {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem 2rem;
  }
}

.stats-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stats-value {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.stats-unit {
  font-size: 0.7em;
  font-weight: 700;
  color: var(--ink-faint);
}

.stats-label {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-weight: 500;
  line-height: 1.45;
}

/* ---------- Section helpers ---------- */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .section-container { padding: 0 2rem; }
}

.section-header {
  max-width: 44rem;
  margin-bottom: 3.5rem;
}

.section-header--split {
  display: grid;
  gap: 1.25rem;
  max-width: var(--max-width);
  align-items: end;
  margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
  .section-header--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
    gap: 3rem;
  }
}

.badge {
  display: inline-block;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 20ch;
}

.section-intro {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ---------- Services (editorial list) ---------- */
.services {
  background: transparent;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .services { padding: 7rem 0; }
}

.services-list {
  list-style: none;
  border-top: 1px solid var(--paper-line);
}

.services-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem 1.5rem;
  padding: 1.75rem 0.25rem;
  border-bottom: 1px solid var(--paper-line);
  transition: background 0.15s;
  position: relative;
}

@media (min-width: 768px) {
  .services-row {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    gap: 2.5rem;
    padding: 2.25rem 0.5rem;
    align-items: center;
  }
}

.services-row:hover { background: var(--paper-raised); }

.services-num {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 600;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  padding-top: 0.25rem;
}

.services-body h3 {
  font-size: clamp(1.1875rem, 2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.375rem;
  color: var(--ink);
}

.services-body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 56ch;
}

@media (min-width: 768px) {
  .services-body p { font-size: 1rem; }
}

.services-icon {
  color: var(--ink-faint);
  font-size: 1.5rem;
  display: none;
}

@media (min-width: 768px) {
  .services-icon { display: block; }
}

/* ---------- Safety section ---------- */
.safety {
  background: var(--paper-raised);
  padding: 5rem 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

@media (min-width: 1024px) {
  .safety { padding: 7rem 0; }
}

.safety-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .safety-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 0 2rem;
  }
}

.safety-text h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  color: var(--ink);
  max-width: 16ch;
}

.safety-text h2 em {
  font-style: normal;
}

.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.safety-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--paper-line);
}

.safety-list li:first-child { padding-top: 0; }
.safety-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.safety-marker {
  display: inline-block;
  width: 1.5rem;
  height: 0.0625rem;
  background: var(--ink);
  margin-top: 0.75rem;
}

.safety-list p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}

.safety-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-photo);
  background: var(--paper-alt);
}

.safety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Gallery carousel ---------- */
.gallery {
  background: transparent;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .gallery { padding: 7rem 0; }
}

.gallery-viewport {
  position: relative;
  margin: 0 -1.5rem;
}

@media (min-width: 1024px) {
  .gallery-viewport { margin: 0 -2rem; }
}

.gallery-track {
  list-style: none;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: 1.5rem;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-track:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

@media (min-width: 1024px) {
  .gallery-track {
    gap: 1.25rem;
    scroll-padding-left: 2rem;
    padding: 0.5rem 2rem 1.5rem;
  }
}

.gallery-item {
  flex: 0 0 auto;
  width: 82vw;
  max-width: 22rem;
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  border-radius: var(--radius-photo);
  overflow: hidden;
  background: var(--paper-alt);
  box-shadow: 0 10px 25px -18px rgba(0, 0, 0, 0.12);
  transform: scale(0.94);
  opacity: 0.55;
  filter: saturate(0.85);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item.is-focused {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1);
  box-shadow: 0 20px 45px -18px rgba(0, 0, 0, 0.28);
}

.gallery-item.is-focused:hover {
  transform: scale(1.015);
  box-shadow: 0 28px 55px -20px rgba(0, 0, 0, 0.32);
}

@media (min-width: 640px) {
  .gallery-item {
    width: 55vw;
    max-width: 24rem;
  }
}

@media (min-width: 1024px) {
  .gallery-item {
    width: 24rem;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item.is-focused img { transform: scale(1.02); }
.gallery-item.is-focused:hover img { transform: scale(1.05); }

/* Arrow buttons, desktop only */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--paper-raised);
  color: var(--ink);
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.2);
  transition: background 0.15s, transform 0.15s, opacity 0.2s;
  font-family: inherit;
}

.gallery-arrow:hover {
  background: var(--ink);
  color: var(--paper);
}

.gallery-arrow:active { transform: translateY(-50%) scale(0.95); }

.gallery-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.gallery-arrow .material-symbols-outlined { font-size: 1.25rem; }

.gallery-arrow--prev { left: 2rem; }
.gallery-arrow--next { right: 2rem; }

@media (min-width: 900px) {
  .gallery-arrow { display: inline-flex; }
}

/* Progress bar below carousel */
.gallery-progress {
  max-width: var(--max-width);
  margin: 0.75rem auto 0;
  padding: 0 1.5rem;
  height: 2px;
  position: relative;
}

@media (min-width: 1024px) {
  .gallery-progress { padding: 0 2rem; }
}

.gallery-progress::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 2px;
  background: var(--paper-line);
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .gallery-progress::before {
    left: 2rem;
    right: 2rem;
  }
}

.gallery-progress-bar {
  position: absolute;
  left: 1.5rem;
  top: 0;
  height: 2px;
  width: 20%;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: left;
  transition: width 0.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 1024px) {
  .gallery-progress-bar { left: 2rem; }
}

/* ---------- Testimonials carousel ---------- */
.testimonials {
  background: var(--paper-raised);
  padding: 5rem 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

@media (min-width: 1024px) {
  .testimonials { padding: 7rem 0; }
}

.testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.testimonials-rating strong {
  color: var(--ink);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.testimonials-stars {
  color: #f0b000;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.testimonials-viewport {
  position: relative;
  margin: 0 -1.5rem;
}

@media (min-width: 1024px) {
  .testimonials-viewport { margin: 0 -2rem; }
}

.testimonials-track {
  list-style: none;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: 1.5rem;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonials-track:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

@media (min-width: 1024px) {
  .testimonials-track {
    gap: 1.5rem;
    scroll-padding-left: 2rem;
    padding: 0.5rem 2rem 1.5rem;
  }
}

.testimonial {
  flex: 0 0 auto;
  width: 85vw;
  max-width: 26rem;
  scroll-snap-align: start;
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-photo);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 25px -18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 640px) {
  .testimonial {
    width: 60vw;
    max-width: 28rem;
    padding: 2rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .testimonial {
    width: 26rem;
  }
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -20px rgba(0, 0, 0, 0.22);
}

.testimonial-rating {
  color: #f0b000;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
  font-style: normal;
  margin: 0;
  quotes: "\201C" "\201D" "\2018" "\2019";
  position: relative;
}

.testimonial-quote::before {
  content: open-quote;
  display: inline;
  font-size: 1em;
  color: var(--ink-faint);
  margin-right: 0.05em;
}

.testimonial-quote::after {
  content: close-quote;
  display: inline;
  font-size: 1em;
  color: var(--ink-faint);
  margin-left: 0.05em;
}

@media (min-width: 768px) {
  .testimonial-quote { font-size: 1rem; }
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--paper-line);
}

.testimonial-author {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.testimonial-source {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Testimonials arrows */
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.2);
  transition: background 0.15s, color 0.15s, transform 0.15s, opacity 0.2s;
  font-family: inherit;
}

.testimonials-arrow:hover {
  background: var(--ink);
  color: var(--paper);
}

.testimonials-arrow:active { transform: translateY(-50%) scale(0.95); }

.testimonials-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.testimonials-arrow .material-symbols-outlined { font-size: 1.25rem; }

.testimonials-arrow--prev { left: 2rem; }
.testimonials-arrow--next { right: 2rem; }

@media (min-width: 900px) {
  .testimonials-arrow { display: inline-flex; }
}

.testimonials-cta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonials-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.15s;
}

.testimonials-cta a:hover {
  color: var(--accent);
}

.testimonials-cta .material-symbols-outlined {
  font-size: 1rem;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-cta a:hover .material-symbols-outlined {
  transform: translate(2px, -2px);
}

/* ---------- Nationwide section ---------- */
.nationwide {
  background: var(--paper-raised);
  padding: 5rem 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

@media (min-width: 1024px) {
  .nationwide { padding: 7rem 0; }
}

.nationwide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .nationwide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .nationwide-grid { grid-template-columns: repeat(4, 1fr); }
}

.nationwide-card {
  padding: 1.75rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--paper-line);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.2s, background 0.2s;
}

.nationwide-card:hover {
  border-color: var(--ink);
  background: var(--paper-raised);
}

.nationwide-card .material-symbols-outlined {
  color: var(--ink);
  font-size: 1.5rem;
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0.25rem;
}

.nationwide-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}

.nationwide-card p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  font-weight: 500;
  line-height: 1.6;
}

/* ---------- Zones section ---------- */
.zones {
  background: transparent;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .zones { padding: 7rem 0; }
}

.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .zones-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.zone h3 {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.zone h3::after {
  content: attr(data-count);
  font-size: 0.6875rem;
  color: var(--ink-faint);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zone-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.5rem;
}

.zone-list li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}

.zones-note {
  max-width: 52rem;
  margin: 3rem auto 0;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-top: 1px solid var(--paper-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.zones-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
  white-space: nowrap;
}

.zones-note a:hover { color: var(--accent); }

/* ---------- FAQ section ---------- */
.faq {
  background: var(--paper-raised);
  padding: 5rem 0;
  border-top: 1px solid var(--paper-line);
}

@media (min-width: 1024px) {
  .faq { padding: 7rem 0; }
}

.faq-list {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: transparent;
  border-top: 1px solid var(--paper-line);
}

.faq-item:last-child { border-bottom: 1px solid var(--paper-line); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .material-symbols-outlined {
  color: var(--ink-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.faq-item[open] summary .material-symbols-outlined { transform: rotate(180deg); }

.faq-item > p {
  padding: 0 0.25rem 1.5rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 500;
  max-width: 58ch;
}

@media (min-width: 640px) {
  .faq-item summary {
    padding: 1.5rem 0.5rem;
    font-size: 1.0625rem;
  }
  .faq-item > p {
    padding: 0 0.5rem 1.75rem;
  }
}

/* ---------- Contact block ---------- */
.contact-block {
  background: var(--paper);
  padding: 5rem 0;
  border-top: 1px solid var(--paper-line);
}

@media (min-width: 1024px) {
  .contact-block { padding: 7rem 0; }
}

.contact-block .section-header {
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .contact-block .section-header {
    margin-bottom: 3rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0.25rem 0;
}

.contact-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.45;
}

.contact-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--paper-line);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: stretch;
  margin-top: auto;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  letter-spacing: -0.005em;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
}

.contact-btn:active { transform: scale(0.98); }

.contact-btn .material-symbols-outlined { font-size: 1.125rem; }

.contact-btn .contact-arrow {
  font-size: 1rem;
  margin-left: 0.125rem;
  opacity: 0.75;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-btn--primary:hover .contact-arrow {
  transform: translate(2px, -2px);
}

.contact-btn--primary {
  background: var(--ink);
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.contact-btn--primary:hover { background: #000; }

.contact-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--paper-line);
  font-variant-numeric: tabular-nums;
}

.contact-btn--ghost:hover {
  background: var(--paper-alt);
  border-color: transparent;
}

.contact-map {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-photo);
  background: var(--paper-alt);
  aspect-ratio: 4 / 3;
  min-height: 280px;
  box-shadow: 0 10px 25px -18px rgba(0, 0, 0, 0.15);
}

@media (min-width: 900px) {
  .contact-map {
    aspect-ratio: auto;
    min-height: 420px;
  }
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92);
}

/* ---------- Footer ---------- */
.site-footer {
  background: transparent;
  border-top: 1px solid var(--paper-line);
  padding: 3rem 0 2rem;
  color: var(--ink);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr auto;
    padding: 0 2rem;
    gap: 3rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand .logo-text {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--ink);
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-weight: 500;
  line-height: 1.55;
  max-width: 44ch;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
}

@media (min-width: 768px) {
  .footer-contact { align-items: flex-end; }
}

.footer-contact a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact a:hover { color: var(--accent); }

.footer-contact a[href^="tel:"] {
  font-size: 1.125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.footer-contact .material-symbols-outlined {
  font-size: 1rem;
  color: var(--ink-muted);
}

.footer-contact .wa-icon {
  width: 1rem;
  height: 1rem;
  color: var(--whatsapp);
  flex-shrink: 0;
}

.footer-wa:hover .wa-icon { color: var(--whatsapp-hover); }

/* ---------- Animated numbers ---------- */
.num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-weight: inherit;
}

/* ---------- Zones: collapsed list toggle ---------- */
.zone-more {
  margin-top: 0.875rem;
  border-top: 1px dashed var(--paper-line);
  padding-top: 0.875rem;
}

.zone-more summary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: -0.005em;
  list-style: none;
  transition: color 0.15s;
}

.zone-more summary::-webkit-details-marker { display: none; }

.zone-more summary:hover { color: var(--ink); }

.zone-more summary .material-symbols-outlined {
  font-size: 1.125rem;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.zone-more[open] summary .material-symbols-outlined { transform: rotate(180deg); }

.zone-more-close { display: none; }
.zone-more[open] .zone-more-open { display: none; }
.zone-more[open] .zone-more-close { display: inline; }

.zone-more .zone-list { margin-top: 0.875rem; }

/* ---------- Zones: SVG map ---------- */
.zones-map {
  display: none;
  margin: 3.5rem auto 0;
  max-width: 44rem;
  color: var(--ink);
  padding: 1rem 0;
}

.zones-map svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

@media (min-width: 768px) {
  .zones-map { display: block; }
}

/* ---------- Stats band: subtle top rule per item ---------- */
.stats-item {
  padding-top: 0.875rem;
  border-top: 1px solid var(--paper-line);
}

@media (max-width: 767px) {
  .stats-item {
    padding-top: 0.75rem;
  }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.75rem);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.15s;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  font-family: inherit;
  font-size: 0;
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover { background: #000; }
.to-top:active { transform: scale(0.95); }

.to-top .material-symbols-outlined { font-size: 1.25rem; }

@media (max-width: 767px) {
  .to-top {
    right: 0.875rem;
    bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Hero entrance: stagger on load */
  .hero-body > *,
  .hero-media {
    animation: rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-eyebrow     { animation-delay: 0.05s; }
  .hero-title       { animation: none; }
  .hero-subtitle    { animation-delay: 0.55s; }
  .hero-cta         { animation-delay: 0.67s; }
  .hero-footnote    { animation-delay: 0.79s; }
  .hero-media {
    animation: rise-media 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.08s;
  }

  /* Hero title: per-word stagger (--i is set inline per word) */
  .hero-word {
    display: inline-block;
    animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.12s + (var(--i, 1) - 1) * 0.07s);
  }

  /* Zones map: progressive reveal of localities (desktop only) */
  .zones-map svg > g:nth-of-type(2) > g { opacity: 0; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g {
    animation: fade-opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(1)  { animation-delay: 0.35s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(2)  { animation-delay: 0.43s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(3)  { animation-delay: 0.51s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(4)  { animation-delay: 0.59s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(5)  { animation-delay: 0.67s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(6)  { animation-delay: 0.75s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(7)  { animation-delay: 0.83s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(8)  { animation-delay: 0.91s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(9)  { animation-delay: 0.99s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(10) { animation-delay: 1.07s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(11) { animation-delay: 1.15s; }
  .zones-map.is-visible svg > g:nth-of-type(2) > g:nth-child(12) { animation-delay: 1.23s; }

  /* Scroll reveal: single element */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  /* Scroll reveal: staggered children */
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 70ms; }
  .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 140ms; }
  .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 210ms; }
  .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 280ms; }
  .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 350ms; }
  .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 420ms; }

  .reveal-stagger.is-visible > * {
    opacity: 1;
    transform: none;
  }

  /* Services row: chevron-like slide on hover */
  .services-row .services-body h3 {
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .services-row:hover .services-body h3 {
    transform: translateX(4px);
  }

  /* Gallery image: slower, smoother zoom */
  .gallery-item img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* FAQ caret: add subtle color shift on open */
  .faq-item summary .material-symbols-outlined {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
  }

  .faq-item[open] summary .material-symbols-outlined {
    color: var(--ink);
  }

  /* Hero phone: micro press feedback */
  .hero-phone,
  .btn-emergency {
    transition: background 0.15s, transform 0.12s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise-media {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-opacity {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { display: none; }

@media (max-width: 767px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem calc(0.625rem + env(safe-area-inset-bottom, 0px));
    background: var(--paper-raised);
    border-top: 1px solid var(--paper-line);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(110%);
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .mobile-cta.visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.875rem 0.625rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.005em;
    border-radius: var(--radius);
    border: none;
    white-space: nowrap;
  }

  .mobile-cta-btn .material-symbols-outlined { font-size: 1.125rem; }

  .mobile-cta-call {
    background: var(--ink);
    color: var(--paper);
  }

  .mobile-cta-wa {
    background: var(--whatsapp);
    color: #fff;
    border: none;
  }

  .mobile-cta-wa .wa-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #fff;
    flex-shrink: 0;
  }

  body { padding-bottom: 4.5rem; }
}
