:root {
  --forest: #24352f;
  --forest-2: #2c3f38;
  --forest-3: #3a5248;
  --lime: #8aad2a;
  --lime-soft: #9cbc3d;
  --paper: #f3efe6;
  --paper-2: #ebe6db;
  --white: #ffffff;
  --ink: #1a231f;
  --muted: #5a635c;
  --muted-light: #c5cdc8;
  --line: #d4d0c6;
  --nav-h: 4.75rem;
  --radius: 1.15rem;
  --shadow: 0 24px 70px rgb(36 53 47 / 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--lime);
  color: var(--forest);
}

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

.skip,
.visually-hidden {
  position: absolute;
}

.skip {
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  background: var(--lime);
  color: var(--forest);
  font-weight: 800;
}

.skip:focus {
  top: 0.8rem;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(760px, 100%);
}

.display {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .kicker,
.page-hero .kicker,
.section-forest .kicker,
.sede .kicker {
  color: rgb(245 240 228 / 0.72);
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

.muted-light {
  color: var(--muted-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: var(--forest-3);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-lime {
  background: var(--lime);
  color: var(--forest);
  box-shadow: 0 10px 30px rgb(165 211 0 / 0.22);
}

.btn-lime:hover {
  background: var(--lime-soft);
}

.btn-outline {
  border-color: rgb(255 255 255 / 0.55);
  background: rgb(12 43 33 / 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--forest);
}

.btn-ink {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.btn-ink:hover {
  background: var(--forest);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.text-link::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.text-link:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--forest);
  transform: translateY(-2px);
}

/* Navegación */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  min-height: var(--nav-h);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem max(1rem, env(safe-area-inset-right)) 0.65rem max(1rem, env(safe-area-inset-left));
  background: rgb(12 43 33 / 0.97);
  color: var(--white);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.08);
  backdrop-filter: blur(14px);
}

.brand-logo {
  position: relative;
  z-index: 92;
  display: inline-flex;
  flex: 0 0 clamp(9rem, 18vw, 12.5rem);
  width: clamp(9rem, 18vw, 12.5rem);
  max-width: 12.5rem;
  min-width: 0;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 3.1rem !important;
  object-fit: contain;
  object-position: left center;
}

.nav-desk,
.nav-cta-desk {
  display: none;
}

.nav-toggle {
  position: relative;
  z-index: 92;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle-bars {
  position: relative;
  width: 20px;
  height: 12px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars::after { bottom: 0; }
.nav-open .nav-toggle-bars::before { top: 5px; transform: rotate(45deg); }
.nav-open .nav-toggle-bars::after { bottom: 5px; transform: rotate(-45deg); }

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 1rem) max(1.15rem, env(safe-area-inset-right)) max(1.4rem, env(safe-area-inset-bottom)) max(1.15rem, env(safe-area-inset-left));
  overflow: auto;
  background: var(--forest);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-open .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-panel > a:not(.btn) {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 0.15);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-panel > a:not(.btn) b {
  width: 1.8rem;
  color: var(--lime);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.nav-panel > a:not(.btn) span {
  flex: 1 0 100%;
  padding-left: 2.55rem;
  color: var(--muted-light);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.nav-panel [aria-current="page"],
.nav-panel [aria-current="page"] b {
  color: var(--lime);
}

.nav-cta-mobile {
  width: 100%;
  margin-top: auto;
}

/* Inicio */
.hero-pin {
  position: relative;
  height: 118svh;
}

.hero {
  --p: 0;
  position: sticky;
  top: var(--nav-h);
  display: grid;
  height: calc(100svh - var(--nav-h));
  min-height: 35rem;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 46%;
  transform: scale(calc(1.035 + var(--p) * 0.025)) translateY(calc(var(--p) * -1.5%));
  filter: saturate(calc(0.9 + var(--p) * 0.08));
}

.hero-vignette,
.hero-lamp,
.hero-specular,
.hero-dim,
.hero-gleam {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-vignette {
  z-index: 1;
  background: linear-gradient(180deg, rgb(12 43 33 / 0.12), rgb(12 43 33 / 0.9));
}

.hero-lamp {
  z-index: 1;
  background: radial-gradient(circle at calc(15% + var(--p) * 65%) 42%, rgb(255 255 255 / 0.26), transparent 34%);
  mix-blend-mode: soft-light;
}

.hero-specular {
  z-index: 2;
  background: linear-gradient(105deg, transparent 38%, rgb(255 255 255 / 0.32) 50%, transparent 62%);
  mix-blend-mode: screen;
  opacity: calc(0.15 + var(--p) * 0.65);
  transform: translateX(calc(-55% + var(--p) * 110%));
}

.hero-dim {
  z-index: 3;
  background: var(--forest);
  opacity: 1;
  animation: heroReveal 0.55s 0.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-gleam {
  z-index: 4;
  inset: -15% -45%;
  background: linear-gradient(105deg, transparent 42%, rgb(255 255 255 / 0.82) 50%, transparent 58%);
  mix-blend-mode: screen;
  animation: heroGleam 0.78s 0.08s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 3.5rem 0 3.7rem;
}

.hero-copy .kicker,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(14px);
  animation: copyIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .kicker { animation-delay: 0.28s; }
.hero-copy h1 { animation-delay: 0.34s; }
.hero-copy .lead { animation-delay: 0.4s; }
.hero-copy .hero-actions { animation-delay: 0.52s; }

.hero h1 {
  max-width: 12ch;
  margin-top: 0.55rem;
  font-size: clamp(3.4rem, 16vw, 8.5rem);
}

.hero .lead {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: #e6eeea;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.35rem;
}

.hero-scroll {
  position: absolute;
  right: 0.75rem;
  bottom: 1rem;
  z-index: 5;
  display: none;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

@keyframes heroReveal { to { opacity: 0; visibility: hidden; } }
@keyframes heroGleam { from { transform: translateX(-45%); opacity: 0; } 45% { opacity: 0.85; } to { transform: translateX(45%); opacity: 0; } }
@keyframes copyIn { to { opacity: 1; transform: none; } }

.figures {
  padding-bottom: 0;
  background: var(--forest);
  color: #f4efe4;
}

.figures-wrap {
  display: grid;
  justify-items: center;
}

.figures-head {
  margin-bottom: 2.6rem;
  text-align: center;
}

.figures-head .display {
  max-width: 12ch;
  margin-inline: auto;
  color: #f4efe4;
}

.figures .eyebrow {
  color: rgb(244 239 228 / 0.62);
}

.figures .eyebrow::before {
  background: rgb(244 239 228 / 0.45);
}

.figures-board {
  display: grid;
  width: 100%;
  border-top: 1px solid rgb(244 239 228 / 0.16);
}

.figures-cell {
  display: grid;
  place-content: center;
  min-height: 12.5rem;
  padding: 2.6rem 1.2rem 2.9rem;
  border-bottom: 1px solid rgb(244 239 228 / 0.16);
  text-align: center;
}

.figures-cell:last-child { border-bottom: 0; }

.figures-n {
  margin: 0;
  color: #f4efe4;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  font-stretch: condensed;
  font-size: clamp(3.8rem, 10vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.88;
  font-variant-numeric: tabular-nums;
}

.figures-n::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 3px;
  margin: 0.95rem auto 0;
  background: var(--lime);
}

.figures-l {
  margin: 0.7rem 0 0;
  color: rgb(244 239 228 / 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

section {
  padding: 4.5rem 0;
}

.section-forest {
  background: var(--forest);
  color: var(--white);
}

.section-paper-2 {
  background: var(--paper-2);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
h2.display {
  margin-top: 0.45rem;
  font-size: clamp(2.65rem, 10vw, 5.6rem);
}

.split-heading > p {
  max-width: 34rem;
  color: var(--muted);
}

.intent-grid {
  display: grid;
  gap: 0.85rem;
}

.intent-grid-3 .intent-primary {
  grid-column: auto;
  min-height: 16rem;
}

.catalog-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.catalog-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.catalog-item h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.catalog-item .scope-list {
  margin-top: 0.85rem;
}

.catalog-note {
  margin: 1.5rem 0;
  max-width: 42rem;
  color: var(--muted);
}

.catalog-note a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.service-index {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-index a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.service-index b {
  flex: 0 0 2.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.service-index a:hover { color: var(--forest); }

.service-band { padding: 4.5rem 0; }
.service-band-alt { background: var(--paper-2); }

.service-band-grid {
  display: grid;
  gap: 1.6rem;
}

.service-band-media { margin: 0; }
.service-band-media img {
  width: 100%;
  height: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: var(--radius);
}

.service-band-copy .display {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.service-band-copy .btn { margin-top: 1.1rem; }

.shop-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.shop-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.shop-item h3 {
  margin: 0.3rem 0 0.55rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.shop-item p { max-width: 40rem; color: var(--muted); }

.shop-item a {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.tarifa-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.tarifa-table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-variant-numeric: tabular-nums;
}

.tarifa-table caption {
  padding: 0.65rem 0.85rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: left;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tarifa-table th,
.tarifa-table td {
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.92rem;
}

.tarifa-table thead th:not(:first-child),
.tarifa-table td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tarifa-table thead th {
  background: var(--paper-2);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tarifa-table tbody th {
  font-weight: 700;
}

.tarifa-foot {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.intent-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgb(12 43 33 / 0.05);
}

.intent-card > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intent-card h3 {
  margin: 2.4rem 0 0.55rem;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  text-transform: uppercase;
}

.intent-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.intent-primary {
  border-color: transparent;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.intent-primary > span,
.intent-primary p { color: var(--muted-light); }

.intent-primary::before {
  content: "";
  position: absolute;
  top: -4.5rem;
  right: -3.5rem;
  width: 11rem;
  height: 11rem;
  border: 0.85rem solid var(--lime);
  border-radius: 50%;
  opacity: 0.9;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.intent-primary .card-actions { border-color: rgb(255 255 255 / 0.18); }

.card-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.82rem;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.card-actions a:last-child {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.card-actions a:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--forest);
  transform: translateY(-2px);
}

.intent-primary .card-actions a {
  border-color: rgb(255 255 255 / 0.6);
  color: var(--white);
}

.intent-primary .card-actions a:last-child {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--forest);
}

.price-preview-grid {
  display: grid;
  gap: 2.5rem;
}

.price-preview h2 { max-width: 10ch; }
.price-preview .muted-light { max-width: 35rem; }

.price-quick {
  display: grid;
  gap: 0.8rem;
}

.price-quick article {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.05);
}

.price-quick article.featured {
  background: var(--white);
  color: var(--forest);
}

.price-quick article > p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-quick strong {
  display: flex;
  flex-direction: column;
  margin: auto 0 0.8rem;
  color: var(--lime);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 3.7rem;
  line-height: 0.95;
}

.price-quick .featured strong { color: var(--forest); }
.price-quick strong small { font-family: Inter, sans-serif; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }
.price-quick span { margin-bottom: 1rem; color: var(--muted-light); font-size: 0.82rem; }
.price-quick .featured span { color: var(--muted); }

.grid-2 {
  display: grid;
  gap: 2rem;
}

.photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 42%;
  box-shadow: var(--shadow);
}

.caption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  margin-top: 1.2rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.section-forest .step { border-color: rgb(255 255 255 / 0.16); }
.step-n { color: var(--lime); font-family: "Arial Narrow", Impact, sans-serif; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.step strong { font-size: 0.96rem; }
.step p { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.88rem; }
.section-forest .step p { color: var(--muted-light); }

/* Vehículos */
.stage-section {
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: hidden;
}

.stage-visual {
  position: relative;
  height: min(82svh, 48rem);
  min-height: 35rem;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.stage-visual.is-grabbing { cursor: grabbing; }
.stage-frame { position: absolute; inset: 0; overflow: hidden; }
.stage-track { display: flex; width: calc(var(--slides, 4) * 100%); height: 100%; will-change: transform; }
.stage-track.is-snap { transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.stage-track figure { flex: 0 0 calc(100% / var(--slides, 4)); width: calc(100% / var(--slides, 4)); height: 100%; margin: 0; overflow: hidden; }
.stage-track picture,
.stage-track img { width: 100%; height: 100%; }
.stage-track img { max-width: none; object-fit: cover; object-position: 52% 62%; pointer-events: none; filter: saturate(0.82) brightness(0.82); transform: scale(1.04); transition: filter 0.55s ease, transform 0.55s ease; }
.stage-track figure.is-on img { filter: saturate(0.95) brightness(0.92); transform: none; }
.stage-visual::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgb(12 43 33 / 0.65), transparent 42%, rgb(12 43 33 / 0.94)); pointer-events: none; }
.stage-overlay { position: absolute; inset: 0 0 auto; z-index: 4; display: grid; grid-template-columns: 1fr auto; grid-template-areas: "head count" "index index"; gap: 0.8rem 1rem; padding: 1.1rem; pointer-events: none; }
.stage-head { grid-area: head; }
.stage-head h2 { margin-top: 0.35rem; color: var(--white); font-size: clamp(1.8rem, 5vw, 2.8rem); }
.stage-count { grid-area: count; justify-self: end; }
.stage-index { grid-area: index; display: flex; flex-wrap: wrap; pointer-events: auto; }
.stage-index button { min-height: 40px; padding: 0.35rem 1rem 0.35rem 0; border: 0; background: transparent; color: var(--muted-light); cursor: pointer; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.stage-index button b { margin-right: 0.3rem; color: rgb(255 255 255 / 0.5); }
.stage-index button.is-on,
.stage-index button.is-on b { color: var(--lime); }
.stage-giant { position: absolute; left: 1rem; bottom: 5.2rem; z-index: 4; max-width: calc(100% - 2rem); overflow: hidden; color: var(--white); font-size: clamp(4rem, 17vw, 10rem); white-space: nowrap; text-shadow: 0 8px 35px rgb(0 0 0 / 0.35); pointer-events: none; }
.stage-giant.is-in { animation: stageName 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.stage-copy { position: absolute; left: 1rem; right: 1rem; bottom: 1.25rem; z-index: 4; max-width: 32rem; pointer-events: none; }
.stage-copy p { margin: 0; color: var(--muted-light); font-size: 0.86rem; }
.stage-copy .kicker { margin-bottom: 0.3rem; color: var(--lime); }
@keyframes stageName { from { clip-path: inset(0 0 100%); transform: translateY(15%); } to { clip-path: inset(0); transform: none; } }

.corporate-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--forest);
}

.corporate-band::before {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  right: -11rem;
  top: -14rem;
  border: 4.5rem solid rgb(165 211 0 / 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.corporate-band > .wrap {
  position: relative;
  z-index: 1;
}

.corporate-band-grid {
  display: grid;
  gap: 1.5rem;
}

.corporate-band .kicker { color: var(--forest-3); }
.corporate-band h2 { max-width: 10ch; }
.corporate-band p { max-width: 38rem; }
.corporate-band .quote-banner .kicker { color: var(--lime); }
.corporate-band .btn-lime { background: var(--lime); color: var(--forest); box-shadow: 0 10px 28px rgb(165 211 0 / 0.18); }

.corporate-band-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--forest);
}

.corporate-band-home::before {
  width: 30rem;
  height: 30rem;
  right: -12rem;
  top: -15rem;
  border: 5rem solid rgb(165 211 0 / 0.2);
}

.corporate-band-home .corporate-band-grid {
  position: relative;
  z-index: 1;
}

.corporate-band-home .kicker { color: var(--forest-3); }
.corporate-band-home h2 {
  max-width: 12ch;
  color: var(--forest);
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.corporate-copy > p:last-child {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--muted);
}

.corporate-panel {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.corporate-panel > p {
  margin-top: 0;
  color: var(--muted-light);
}

.corporate-points {
  margin: 1.35rem 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.16);
  list-style: none;
}

.corporate-points li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
}

.corporate-points li > span {
  color: var(--lime);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.corporate-points strong,
.corporate-points small { display: block; }
.corporate-points strong { color: var(--white); font-size: 0.9rem; }
.corporate-points small { color: var(--muted-light); font-size: 0.72rem; }
.corporate-band-home .btn-lime { background: var(--lime); color: var(--forest); }

.purpose-band { background: var(--paper-2); }
.purpose-grid { display: grid; gap: 1.6rem; }
.purpose-copy .display { max-width: 11ch; }
.purpose-copy p { max-width: 38rem; }
.purpose-copy p + p { margin-top: 1rem; }
.purpose-media { margin: 0; }
.purpose-media img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: 42% 28%;
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .purpose-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 3.5rem;
  }
  .purpose-media img { max-height: 34rem; }
}

/* Sede y preguntas */
.sede { padding: 0; }
.sede-grid { display: grid; }
.sede-copy { padding: 4rem max(1rem, calc((100vw - 1180px) / 2)); }
.sede-copy h2 { color: var(--white); }
.sede-spec { margin: 1.5rem 0 0; }
.sede-spec div { display: grid; grid-template-columns: 6.8rem 1fr; gap: 0.7rem; padding: 0.85rem 0; border-top: 1px solid rgb(255 255 255 / 0.16); }
.sede-spec dt { color: rgb(245 240 228 / 0.7); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.sede-spec dd { margin: 0; color: var(--white); }
.sede-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.2rem; margin-top: 1.4rem; }
.sede-maps { color: var(--muted-light); font-size: 0.78rem; font-weight: 800; text-decoration: underline; text-underline-offset: 0.3rem; }
.map { width: 100%; min-height: 21rem; border: 0; filter: grayscale(0.35) contrast(1.05) saturate(0.8); }

.faq-wrap { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.faq-wrap > .section-heading { min-width: 0; }
.faq .section-heading h2,
.faq h2.display {
  max-width: 11ch;
  font-size: clamp(2.15rem, 5.4vw, 3.55rem);
  line-height: 0.9;
  overflow-wrap: break-word;
}
.faq-list { display: grid; min-width: 0; gap: 0.65rem; }
.faq details { padding: 0 1rem; border: 1px solid var(--line); border-radius: 0.85rem; background: var(--white); }
.faq summary { display: flex; min-height: 60px; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; display: grid; flex: 0 0 2rem; width: 2rem; height: 2rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 42rem; margin: 0 0 1rem; padding-right: 2.7rem; color: var(--muted); }

/* Páginas internas */
.page-hero {
  position: relative;
  display: grid;
  min-height: min(72svh, 44rem);
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.page-hero-media,
.page-hero-media picture,
.page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-media img { object-fit: cover; object-position: center; }
[data-intent="general"] .hero-media img { object-position: center 42%; }
[data-intent="metodo"] .page-hero-media img { object-position: 38% 36%; }
[data-intent="empresas"] .page-hero-media img { object-position: 50% 58%; }
[data-intent="condominios"] .page-hero-media img { object-position: 48% 55%; }
[data-intent="domicilio"] .page-hero-media img { object-position: 46% 50%; }
[data-intent="servicios"] .page-hero-media img { object-position: 40% 44%; }
[data-intent="contacto"] .page-hero-media img { object-position: 50% 38%; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(36 53 47 / 0.18), rgb(36 53 47 / 0.9)); }
.page-hero-copy { position: relative; z-index: 2; padding: 5rem 0 3rem; }
.page-hero h1 { max-width: 13ch; margin-top: 0.5rem; font-size: clamp(3.2rem, 13vw, 7.5rem); }
.page-hero .lead { max-width: 42rem; margin-bottom: 0; color: #e2ebe7; }
.breadcrumb { position: absolute; top: 1rem; left: max(1rem, calc((100vw - 1180px) / 2)); z-index: 3; display: flex; gap: 0.55rem; color: var(--muted-light); font-size: 0.72rem; }
.breadcrumb a { text-decoration: underline; text-underline-offset: 0.25rem; }

.trust-row {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-chip {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--white);
}

.trust-chip strong { display: block; color: var(--forest); font-size: 0.9rem; }
.trust-chip span { color: var(--muted); font-size: 0.78rem; }

.service-grid,
.segment-grid,
.evidence-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.segment-card,
.evidence-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card.featured { border-color: var(--lime); box-shadow: var(--shadow); }
.service-card h2,
.service-card h3,
.segment-card h2,
.segment-card h3 { margin: 0.45rem 0 0.65rem; font-family: "Arial Narrow", Impact, sans-serif; font-size: 2rem; line-height: 1; text-transform: uppercase; }
.service-card p,
.segment-card p,
.evidence-card p { color: var(--muted); }
.service-price { display: block; margin: auto 0 0.9rem; padding-top: 0.85rem; color: var(--forest); font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.service-price small { display: block; font-family: Inter, sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.service-card > .btn { align-self: flex-start; margin-top: 0.35rem; }

.pricing-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgb(12 43 33 / 0.06);
}

.pricing-table {
  width: 100%;
  min-width: 41rem;
  border-collapse: collapse;
}

.pricing-table caption {
  padding: 1.1rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table thead th {
  background: var(--forest);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-table tbody th { color: var(--forest); }
.pricing-table td strong { color: var(--forest); font-size: 0.95rem; font-weight: 700; }
.pricing-scroll-hint { margin: 0.7rem 0 0; color: var(--muted); font-size: 0.76rem; }

.quote-banner {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-banner h2 { margin: 0; font-size: clamp(2.2rem, 8vw, 4rem); }
.quote-banner p { margin: 0; color: var(--muted-light); }

.scope-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.35rem;
  border-top: 1px solid var(--line);
}

.scope-list li::before { content: ""; position: absolute; top: 1.2rem; left: 0; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--lime); }
.section-forest .scope-list li { border-color: rgb(255 255 255 / 0.16); color: var(--muted-light); }

.segment-hero-number {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--lime);
}

.segment-hero-number strong { font-family: "Arial Narrow", Impact, sans-serif; font-size: 2.5rem; line-height: 1; }
.segment-hero-number span { color: var(--muted-light); font-size: 0.78rem; }

.process-line {
  display: grid;
  gap: 0;
  counter-reset: process;
}

.process-line article {
  position: relative;
  padding: 1.2rem 0 1.2rem 3.25rem;
  border-top: 1px solid var(--line);
  counter-increment: process;
}

.process-line article::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--lime);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.process-line h3 { margin: 0; font-size: 1rem; }
.process-line p { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.88rem; }

.proof-note {
  padding: 1.2rem;
  border-left: 5px solid var(--lime);
  background: var(--paper-2);
  color: var(--muted);
}

.proof-note strong { color: var(--forest); }

/* Contacto guiado */
.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-panel {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.contact-panel h2,
.contact-panel h2.display {
  margin: 0.35rem 0 1.1rem;
  max-width: 14ch;
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
  line-height: 1.05;
  color: var(--forest);
}

.contact-panel > p { margin-top: 0; color: var(--muted); }

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.field legend {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--paper);
  color: var(--ink);
}

.field textarea { min-height: 105px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--lime); outline: 3px solid rgb(165 211 0 / 0.22); }

.choice-grid {
  display: grid;
  gap: 0.55rem;
}

.choice-grid label {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--paper);
  cursor: pointer;
}

.choice-grid input { width: 1rem; height: 1rem; accent-color: var(--forest); }
.choice-grid label:has(input:checked) { border-color: var(--lime); background: rgb(165 211 0 / 0.12); }
.contact-form .btn { width: 100%; }
.form-note { margin: 0; color: var(--muted); font-size: 0.76rem; }

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.76rem;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--forest);
}

.contact-aside {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.17);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.05);
}

.contact-card h3 { margin: 0 0 0.5rem; }
.contact-card p { margin: 0; color: var(--muted-light); }
.contact-card a { color: var(--lime); font-weight: 800; }

/* Riel de marcas — editorial, no carrusel WordPress */
.marque {
  overflow: hidden;
  padding: 1.15rem 0 1.35rem;
  background: #cfc4a3;
  color: #1c2420;
}

.marque-kicker {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 0.85rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3f4a44;
}

.marque-window { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }

.marque-track {
  display: flex;
  width: max-content;
  animation: marque-scroll 64s linear infinite;
}

.marque:hover .marque-track { animation-play-state: paused; }

.marque-set {
  display: flex;
  align-items: center;
  height: 4.6rem;
}

.marque-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 9.6rem;
  width: 9.6rem;
  height: 4.6rem;
  margin: 0;
  padding: 0 0.85rem;
  overflow: hidden;
  border-left: 1px solid rgb(28 36 32 / 0.22);
}

.marque-item img {
  display: block;
  width: auto !important;
  height: 2.85rem !important;
  max-width: 8.2rem !important;
  max-height: 2.85rem !important;
  object-fit: contain;
  object-position: center;
}

@keyframes marque-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marque-track { animation: none; }
  .marque-window { overflow-x: auto; }
}

/* Footer */
.footer {
  padding: 3.5rem 0 calc(1.5rem + env(safe-area-inset-bottom));
  background: #1a2823;
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-logo { width: min(16rem, 80%); }
.footer p { color: var(--muted-light); }
.footer nav { display: grid; align-content: start; gap: 0.5rem; }
.footer strong { color: rgb(245 240 228 / 0.78); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer nav a,
.footer > div a { color: var(--muted-light); font-size: 0.86rem; }
.footer nav a:hover,
.footer > div a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 2rem;
}
.footer-social a {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 50%;
  color: var(--white);
}
.footer-social a:hover { background: rgb(255 255 255 / 0.08); color: var(--white); }
.footer-social svg { width: 1.15rem; height: 1.15rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1rem; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid rgb(255 255 255 / 0.14); color: #94a59e; }

.sticky-cta {
  position: fixed;
  right: max(0.7rem, env(safe-area-inset-right));
  bottom: max(0.7rem, env(safe-area-inset-bottom));
  z-index: 75;
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  min-width: 3.4rem;
  min-height: 3.4rem;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 10px 28px rgb(36 53 47 / 0.28);
}
.sticky-cta:hover { background: var(--forest-2); color: var(--white); transform: none; }
.sticky-cta svg { width: 1.35rem; height: 1.35rem; }

.nav-open .sticky-cta { visibility: hidden; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (min-width: 640px) {
  .wrap { width: min(1180px, calc(100% - 3rem)); }
  section { padding: 5.5rem 0; }
  .figures-board { grid-template-columns: repeat(3, 1fr); }
  .figures-cell {
    min-height: 18rem;
    padding: 3.6rem 1.5rem;
    border-right: 1px solid rgb(244 239 228 / 0.16);
    border-bottom: 0;
  }
  .figures-cell:last-child { border-right: 0; }
  .intent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intent-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .intent-primary { grid-column: 1 / -1; grid-row: auto; min-height: 20rem; }
  .intent-grid-3 .intent-primary { grid-column: auto; min-height: 16rem; }
  .catalog-list { grid-template-columns: 1fr; }
  .price-quick { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid,
  .segment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evidence-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .sticky-cta { right: 1rem; bottom: 1rem; }
}

@media (min-width: 900px) {
  .nav { padding-inline: max(1.25rem, calc((100vw - 1280px) / 2)); }
  .nav-toggle { display: none; }
  .nav-desk { display: flex; align-items: center; gap: clamp(0.8rem, 1.5vw, 1.4rem); font-size: 0.8rem; font-weight: 700; }
  .nav-desk a { position: relative; }
  .nav-desk a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -0.45rem; height: 2px; background: var(--lime); transition: right 0.2s; }
  .nav-desk a:hover::after,
  .nav-desk a[aria-current="page"]::after { right: 0; }
  .nav-cta-desk { display: inline-flex; }
  .nav-panel { display: none; }
  .hero-copy { padding-bottom: 4.5rem; }
  .hero-scroll { display: block; }
  .split-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 3rem; }
  .intent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .intent-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .intent-primary { grid-column: span 2; grid-row: auto; }
  .intent-grid-3 .intent-primary { grid-column: auto; }
  .price-preview-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .grid-2 { grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 4rem; }
  .corporate-band-grid { grid-template-columns: 0.95fr 1.05fr; align-items: end; gap: 4rem; }
  .corporate-band-home .corporate-band-grid { align-items: stretch; }
  .corporate-panel { padding: 2rem; }
  .sede-grid { grid-template-columns: 0.9fr 1.1fr; min-height: 36rem; }
  .sede-copy { display: flex; flex-direction: column; justify-content: center; padding-left: max(1.5rem, calc((100vw - 1180px) / 2)); padding-right: 3rem; }
  .map { height: 100%; min-height: 36rem; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-card { min-height: 0; }
  .segment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quote-banner { grid-template-columns: 1fr auto; align-items: center; padding: 2rem; }
  .contact-layout { grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr); align-items: start; gap: 3rem; }
  .contact-panel { padding: 2rem; }
  .service-band-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3.5rem;
  }
  .service-band-grid.is-flip .service-band-media { order: 2; }
  .service-band-media img { max-height: 34rem; }
  .shop-list { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
  .faq-wrap {
    display: grid;
    grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
    align-items: start;
    column-gap: 4.5rem;
    row-gap: 1.5rem;
  }
  .faq .section-heading { margin-bottom: 0; padding-right: 0.25rem; }
  .sticky-cta { display: none; }
}

@media (max-width: 639px) {
  :root { --nav-h: 4.2rem; }
  .brand-logo { flex-basis: 9.3rem; width: 9.3rem; max-width: 9.3rem; }
  .hero-pin { height: 104svh; }
  .hero { min-height: 34rem; }
  .hero-copy { padding-bottom: 2.4rem; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 5.1rem); }
  .hero .lead { font-size: 0.96rem; }
  .hero-actions .btn { flex: 1 1 12rem; }
  .stage-overlay { padding: 0.85rem; }
  .stage-index button { padding-right: 0.7rem; }
  .stage-giant { bottom: 6rem; font-size: clamp(3.7rem, 18vw, 6rem); }
  .sede-copy { padding-inline: 1rem; }
  .pricing-wrap { margin-inline: -1rem; border-radius: 0; }
  .pricing-scroll-hint { display: block; }
}

@media (max-width: 899px) {
  .no-js .nav-toggle { display: none; }
  .no-js .nav-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .no-js .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-pin { height: auto; }
  .hero { position: relative; top: auto; }
  .hero-dim,
  .hero-gleam,
  .hero-specular { display: none; }
  .hero-copy .kicker,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .hero-actions,
  .reveal { opacity: 1; transform: none; }
}
