@charset "utf-8";
/* ==========================================================================
   PON AIR AND HEATING INC. — v2 "the poster, engineered"
   Shared by index.html, servicios.html, financing.html.

   Palette is transcribed from his own livery, not invented:
     green-deep  #0B5C34  storefront green   -> structural fields
     green       #0F8A46  van skirt green    -> accents, rules, large-text grounds
     green-cta   #0E8242  6% darkening of the above, used ONLY where small white
                          text sits on green (white on #0F8A46 = 4.43:1, which
                          misses AA 4.5:1 for body copy; on #0E8242 it is 4.90:1)
     red         #E5232B  the phone number and knockout words, >=24px ONLY
     gold        #DDA23F  hairline keylines / ticks only — never carries text
     lime        #E6FF92  micro-ticks, ONLY on green-deep fields
     ink         #0B2417  body text — near-black green, never pure black
   ========================================================================== */

:root {
  --green-deep: #0B5C34;
  --green-deeper: #08492A;
  --green: #0F8A46;
  --green-cta: #0E8242;
  --green-ink: #0A4A2A;
  --red: #E5232B;
  --gold: #DDA23F;
  --lime: #E6FF92;
  --white: #FFFFFF;
  --warm: #F5F1E8;
  --wash: #EBF3EC;
  --ink: #0B2417;
  --ink-70: #3B5646;
  --ink-55: #566E5F;
  --on-deep: #C9E2D2;
  --line: #DCE3DC;
  --line-warm: #E2DCCC;

  --wrap: 1240px;
  --gut: clamp(1.15rem, 4vw, 3.25rem);
  --sec-y: clamp(4.25rem, 8vw, 8rem);

  --disp: "Archivo", "Arial Narrow", Impact, system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* Author `display` rules (e.g. `.rf { display: grid }`) outrank the UA sheet's
   `[hidden] { display: none }`, which silently breaks every `el.hidden = true`
   in app.js. This one line is load-bearing for the form swap, the triage
   panels and the mobile nav. */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 400 clamp(1rem, .96rem + .2vw, 1.075rem)/1.65 var(--body);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; }
p, ul, ol, dl, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--red); color: #fff; padding: .8rem 1.25rem;
  font: 600 .95rem var(--body); text-decoration: none;
}
.skip:focus { top: 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.ico {
  width: 1.15em; height: 1.15em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- season swap (CSS only; JS just sets data-season) ---------- */
.s-heat { display: none; }
[data-season="heating"] .s-heat { display: inline; }
[data-season="heating"] .s-cool { display: none; }

/* ==========================================================================
   TYPE
   ========================================================================== */
.h1 {
  font: 900 clamp(3.05rem, 7.9vw, 7rem)/.9 var(--disp);
  letter-spacing: -.038em;
  color: var(--green-deep);
  text-wrap: balance;
}
.h1 em { font-style: normal; color: var(--red); }

.h2 {
  font: 800 clamp(2.1rem, 4.4vw, 3.65rem)/.96 var(--disp);
  letter-spacing: -.032em;
  color: var(--green-deep);
}
.h2--on { color: var(--white); }

.kick {
  display: flex; align-items: center; gap: .8rem;
  font: 600 .74rem/1 var(--body);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-ink);
  margin-bottom: 1.15rem;
}
.kick b { color: var(--gold); font-weight: 700; }
.kick__rule { width: 2.4rem; height: 2px; background: var(--gold); flex: none; }
.kick--on { color: var(--lime); }
.kick--c { justify-content: center; }

.lic {
  font: 700 .78rem/1 var(--body);
  letter-spacing: .08em;
  color: var(--green-deep);
  border: 1px solid var(--gold);
  padding: .48rem .7rem;
  white-space: nowrap;
  background: var(--white);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font: 600 1rem/1 var(--body);
  letter-spacing: -.005em;
  padding: .95rem 1.35rem;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
}
.btn--lg { padding: 1.15rem 1.8rem; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn--call { background: var(--green-cta); color: var(--white); }
.btn--call:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green-deep); border-color: var(--green-deep); }
.btn--ghost:hover { background: var(--green-deep); color: var(--white); transform: translateY(-2px); }
.btn--plain {
  background: transparent; color: var(--ink-70); padding-inline: .25rem;
  border-bottom: 2px solid var(--gold); border-radius: 0;
}
.btn--plain:hover { color: var(--green-deep); border-bottom-color: var(--green-deep); }

.linkbtn {
  background: none; border: 0; padding: .35rem 0; cursor: pointer;
  font: 600 .95rem var(--body); color: var(--green-ink);
  display: inline-flex; align-items: center; gap: .45rem;
  border-bottom: 2px solid var(--gold);
}
.linkbtn:hover { color: var(--red); border-bottom-color: var(--red); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hdr::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 3px;
  background: linear-gradient(90deg, var(--green) 0 34%, var(--gold) 34% 40%, var(--green-deep) 40% 100%);
  opacity: .9;
}
.hdr__in {
  max-width: var(--wrap); margin-inline: auto; padding: .7rem var(--gut);
  display: flex; align-items: center; gap: clamp(.7rem, 1.8vw, 1.6rem);
}
.hdr__logo { display: block; flex: none; }
.hdr__logo img { width: clamp(122px, 13vw, 178px); height: auto; }
.lic--hdr { display: none; }
.nav {
  display: none; margin-left: auto; align-items: center;
  gap: clamp(.9rem, 1.8vw, 1.9rem);
}
.nav a {
  font: 600 .93rem var(--body); text-decoration: none; color: var(--ink-70);
  padding: .35rem 0; border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.nav a:hover { color: var(--green-deep); border-bottom-color: var(--gold); }
.nav__es { color: var(--green-deep) !important; }
.nav a[aria-current="page"] { color: var(--green-deep); border-bottom-color: var(--gold); }
.hdr__call { display: none; margin-left: .3rem; }
.hdr__call span { font-variant-numeric: tabular-nums; letter-spacing: -.01em; }

.burger {
  margin-left: auto; width: 46px; height: 44px; background: none;
  border: 1px solid var(--line); cursor: pointer;
  display: grid; place-items: center;
}
.burger__bars { display: grid; gap: 5px; }
.burger__bars i { display: block; width: 22px; height: 2px; background: var(--green-deep); }
.burger[aria-expanded="true"] { background: var(--green-deep); border-color: var(--green-deep); }
.burger[aria-expanded="true"] i { background: var(--white); }

.mnav { border-top: 1px solid var(--line); background: var(--white); padding: .5rem var(--gut) 1.1rem; }
.mnav a {
  display: block; padding: .8rem 0; text-decoration: none;
  font: 600 1.05rem var(--body); color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mnav a:last-child { border-bottom: 0; color: var(--green-deep); }

@media (min-width: 1100px) {
  .nav, .hdr__call, .lic--hdr { display: flex; }
  .burger, .mnav { display: none !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { background: var(--warm); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(11,92,52,.028) 0 1px, transparent 1px 9px);
}
.hero__in {
  position: relative;
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(2.4rem, 5vw, 4.5rem) var(--gut) clamp(2.5rem, 5vw, 4rem);
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
}
.hero__copy { min-width: 0; }
.kick--hero { color: var(--green-ink); }

.hero__sub {
  max-width: 40ch;
  margin-top: 1.5rem;
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--ink-70);
}

/* -------- live temperature chip -------- */
.wx {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: start;
  column-gap: .6rem;
  margin-top: 1.9rem;
  padding: .7rem 1.1rem .75rem;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 3px 3px 0 rgba(11,92,52,.09);
}
.wx__dot {
  width: 9px; height: 9px; margin-top: .55rem; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px rgba(229,35,43,.16);
}
.wx[data-state="fallback"] .wx__dot { background: var(--green); box-shadow: 0 0 0 4px rgba(15,138,70,.15); }
.wx[data-state="loading"] .wx__dot { background: var(--ink-55); box-shadow: none; }
.wx__temp {
  grid-column: 2;
  font: 900 1.5rem/1 var(--disp); letter-spacing: -.03em;
  color: var(--green-deep); font-variant-numeric: tabular-nums;
}
.wx__where {
  grid-column: 2; font: 600 .78rem/1.2 var(--body);
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-55);
  margin-top: .2rem;
}
.wx__line {
  grid-column: 1 / -1; margin-top: .55rem; padding-top: .55rem;
  border-top: 1px solid var(--line-warm);
  font: 500 .93rem/1.4 var(--body); color: var(--ink-70); max-width: 30ch;
}
.wx[data-state="loading"] .wx__temp { color: var(--ink-55); }

/* -------- THE PHONE MOMENT — full-bleed, the largest thing on the page -------- */
.phone {
  position: relative;
  background: var(--white);
  border-top: 1px solid var(--line-warm);
}
.phone__in {
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(1.9rem, 3.4vw, 3rem) var(--gut) clamp(1.7rem, 3vw, 2.6rem);
}
.phone__kick {
  display: flex; align-items: center; gap: .8rem;
  font: 700 .76rem/1 var(--body); letter-spacing: .3em; text-transform: uppercase;
  color: var(--green-ink); margin-bottom: .8rem;
}
.phone__rule { width: 2.4rem; height: 2px; background: var(--gold); flex: none; }
.phone__num {
  display: block; text-decoration: none; white-space: nowrap;
  font: 900 clamp(2.55rem, 10.4vw, 9.4rem)/.84 var(--disp);
  letter-spacing: -.055em;
  color: var(--red);
  -webkit-text-stroke: clamp(2px, .38vw, 5px) var(--gold);
  paint-order: stroke fill;
  font-variant-numeric: tabular-nums;
  transition: color .22s var(--ease);
}
.phone__num:hover { color: var(--green-deep); }
.phone__sub {
  margin-top: clamp(.9rem, 1.6vw, 1.3rem);
  padding-top: clamp(.8rem, 1.4vw, 1.1rem);
  border-top: 2px solid var(--gold);
  display: flex; flex-wrap: wrap; gap: .35rem 1.4rem; align-items: baseline;
  font: 500 .96rem var(--body); color: var(--ink-70);
}
.phone__sub b { color: var(--green-deep); font-weight: 700; }
.phone__sub [lang="es"] { color: var(--green-ink); font-weight: 600; }
.phone__hrs {
  margin-left: auto; font-variant-numeric: tabular-nums;
  font-size: .9rem; color: var(--ink-55);
}

.hero__acts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.6rem;
  margin-top: clamp(1.8rem, 3vw, 2.4rem);
}

/* -------- hero art: his diagonal montage gesture, precise -------- */
.hero__art { position: relative; min-width: 0; padding-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.hero__figA {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.8rem), 0 100%);
  background: var(--green-deep);
  box-shadow: 0 22px 44px -26px rgba(11,36,23,.55);
}
.hero__figA img,
.hero__figB img {
  width: 100%; height: auto; display: block;
  filter: saturate(1.06) contrast(1.06) brightness(1.02);
}
.hero__figA img { aspect-ratio: 4 / 3; object-fit: cover; object-position: 52% 54%; }
.hero__figB {
  position: absolute; left: 0; bottom: calc(-1 * clamp(1rem, 2.4vw, 2.4rem)); width: 46%;
  padding: 8px 8px 0 0; background: var(--warm);
  clip-path: polygon(0 0, 100% 1.6rem, 100% 100%, 0 100%);
}
.hero__figB img { aspect-ratio: 5 / 4; object-fit: cover; object-position: 50% 58%; }
.hero__figB::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 2.6rem; height: 4px;
  background: var(--gold);
}

/* Below the two-column breakpoint the montage stacks: the van full-width, the
   condenser interlocking with the shallow right-hand corner of its diagonal. */
@media (max-width: 899px) {
  .hero__art { padding-bottom: 0; }
  .hero__figB {
    position: static; width: 62%;
    margin: clamp(-3.4rem, -6vw, -2.2rem) 0 0 auto;
    padding: 8px 0 0 8px;
    clip-path: polygon(0 1.4rem, 100% 0, 100% 100%, 0 100%);
  }
  .hero__figB::after { left: auto; right: 0; }
}

/* -------- season toggle -------- */
.season {
  position: relative; z-index: 3;
  display: inline-flex; margin-bottom: 1rem;
  border: 1px solid var(--line-warm); background: var(--white);
}
.season__b {
  background: none; border: 0; cursor: pointer;
  padding: .82rem .95rem;
  font: 600 .84rem/1 var(--body); color: var(--ink-55);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.season__b + .season__b { border-left: 1px solid var(--line-warm); }
.season__b[aria-pressed="true"] { background: var(--green-cta); color: var(--white); }

/* -------- the van skirt -------- */
.skirt {
  position: relative;
  background: var(--green-cta);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: clamp(.7rem, 2.4vw, 2.1rem);
  padding: clamp(1rem, 1.9vw, 1.5rem) var(--gut);
  font: 800 clamp(1.15rem, 2.5vw, 2.05rem)/1 var(--disp);
  letter-spacing: .11em; text-transform: uppercase;
}
.skirt b { color: var(--lime); font-size: .8em; }
.skirt::before, .skirt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 3px; background: var(--gold);
}
.skirt::before { top: 0; }
.skirt::after { bottom: 0; }

@media (min-width: 900px) {
  .hero__in { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); align-items: center; }
  .hero__art { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
  .season { position: absolute; top: 0; right: 0; margin: 0; }
  .hero__figA { margin-top: 3.2rem; }
}
@media (min-width: 1240px) {
  .hero__art { margin-right: calc(-1 * clamp(1rem, 4vw, 3rem)); }
}

/* ==========================================================================
   TRUST STRIP — six facts on one line, his density instinct
   ========================================================================== */
.trust { background: var(--green-deeper); color: var(--on-deep); }
.trust__in {
  max-width: var(--wrap); margin-inline: auto; padding: .85rem var(--gut);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .5rem clamp(.9rem, 2.4vw, 2.2rem);
  font: 500 .87rem/1.3 var(--body);
}
.trust__in li { display: inline-flex; align-items: baseline; gap: .4rem; position: relative; }
.trust__in li + li::before {
  content: ""; position: absolute; left: clamp(-.45rem, -1.2vw, -1.1rem);
  top: .1em; bottom: .1em; width: 1px; background: rgba(221,162,63,.55);
}
.trust__in b {
  font: 800 .98rem var(--disp); letter-spacing: -.01em; color: var(--white);
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.sec { padding-block: var(--sec-y); }
.sec--white { background: var(--white); }
.sec--warm { background: var(--warm); }
.sec--wash { background: var(--wash); }
.sec--deep { background: var(--green-deep); color: var(--on-deep); position: relative; }
.sec--deep::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 1px, transparent 1px 10px);
}
.sec--deep > * { position: relative; }

.sh { max-width: 62ch; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.sh__p { margin-top: 1.1rem; color: var(--ink-70); font-size: 1.05rem; }
.sh__es { margin-top: .5rem; font: 600 1.1rem var(--body); color: var(--green-ink); }
.sh--split { max-width: none; display: grid; gap: 1.4rem; align-items: end; }
.sh__p--r { margin-top: 0; max-width: 44ch; }
@media (min-width: 900px) {
  .sh--split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; }
  .sh__p--r { justify-self: end; padding-bottom: .35rem; }
}

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}

/* ==========================================================================
   TRIAGE
   ========================================================================== */
.tri {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green-deep);
  box-shadow: 12px 12px 0 rgba(11,92,52,.09);
  display: grid;
}
@media (min-width: 1040px) { .tri { grid-template-columns: minmax(0, 1fr) 21.5rem; } }
.tri__main { min-width: 0; }

/* the sidebar is the density counterweight: the phone, never more than a tap away */
.tri__side {
  background: var(--green-deep); color: var(--on-deep);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.tri__side::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(230,255,146,.05) 0 1px, transparent 1px 11px);
}
.tri__side > * { position: relative; }
.tri__sk {
  font: 800 clamp(1.15rem, 1.9vw, 1.4rem)/1.15 var(--disp);
  letter-spacing: -.024em; color: var(--white);
}
.tri__stel {
  display: block; text-decoration: none; white-space: nowrap;
  font: 900 clamp(1.75rem, 3.2vw, 2.35rem)/1 var(--disp);
  letter-spacing: -.04em; font-variant-numeric: tabular-nums;
  color: var(--white); -webkit-text-stroke: 2px var(--gold); paint-order: stroke fill;
}
.tri__stel:hover { color: var(--lime); }
.tri__sp { font-size: .93rem; line-height: 1.5; }
.tri__sp span { color: var(--lime); font-weight: 600; }
.tri__sl {
  display: grid; gap: .7rem; margin-top: auto;
  padding-top: 1.1rem; border-top: 1px solid rgba(230,255,146,.28);
  font-size: .89rem; line-height: 1.45;
}
.tri__sl li { padding-left: 1.05rem; position: relative; }
.tri__sl li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .45rem; height: .45rem;
  background: var(--lime);
}
.tri__sl b { color: var(--white); font-weight: 700; }
.tri__sh {
  font-size: .8rem; line-height: 1.5; color: var(--on-deep);
  padding-top: .9rem; border-top: 1px solid rgba(230,255,146,.18);
  font-variant-numeric: tabular-nums;
}
.tri__steps {
  display: flex; flex-wrap: wrap; gap: .35rem 1.5rem;
  padding: 1.05rem clamp(1.15rem, 3vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  background: var(--warm);
  font: 600 .8rem/1 var(--body); letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-55);
}
.tri__steps li { display: inline-flex; align-items: center; gap: .5rem; }
.tri__steps span {
  width: 1.55rem; height: 1.55rem; display: grid; place-items: center;
  border: 1px solid var(--line-warm); border-radius: 50%;
  font-variant-numeric: tabular-nums; font-size: .78rem;
}
.tri__steps .is-on { color: var(--green-deep); }
.tri__steps .is-on span { background: var(--green-cta); color: var(--white); border-color: var(--green-cta); }

.tri__stage { padding: clamp(1.5rem, 3.4vw, 2.8rem); }
.tri__q {
  font: 800 clamp(1.35rem, 2.6vw, 1.95rem)/1.12 var(--disp);
  letter-spacing: -.025em; color: var(--green-deep);
  margin-bottom: 1.4rem;
}
.tri__opts { display: grid; gap: .85rem; }
@media (min-width: 720px) {
  .tri__opts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tri__opts--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.opt {
  text-align: left; cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
  display: grid; gap: .3rem;
  position: relative;
  transition: border-color .2s var(--ease), background-color .2s var(--ease),
              transform .2s var(--ease);
}
.opt::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--green-cta); transition: width .25s var(--ease);
}
.opt:hover { border-color: var(--green-deep); transform: translateX(3px); }
.opt:hover::after { width: 4px; }
.opt__t { font: 700 1.06rem var(--body); color: var(--green-deep); letter-spacing: -.01em; }
.opt__d { font-size: .92rem; color: var(--ink-55); line-height: 1.45; }
.opt--sm { text-align: center; padding: 1.05rem .7rem; }
.opt--sm .opt__t { font-family: var(--disp); font-weight: 800; letter-spacing: -.02em; font-size: 1.1rem; }
.tri__nav { margin-top: 1.4rem; }

.tri__res { }
.tri__tag {
  font: 700 .74rem/1 var(--body); letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-ink); margin-bottom: .7rem;
}
.tri__rh {
  font: 800 clamp(1.6rem, 3.4vw, 2.6rem)/1.05 var(--disp);
  letter-spacing: -.03em; color: var(--green-deep); max-width: 22ch;
}
.tri__rp { margin-top: 1rem; max-width: 62ch; font-size: 1.06rem; color: var(--ink-70); }
.tri__note {
  margin-top: 1.2rem; padding: 1rem 1.15rem;
  background: var(--warm); border-left: 4px solid var(--red);
  font: 500 .98rem/1.55 var(--body); color: var(--ink); max-width: 62ch;
}
.tri__acts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem;
  margin-top: 1.8rem;
}
.tri__fine {
  margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  font-size: .93rem; color: var(--ink-55); max-width: 68ch;
}
.js .tri__panel[data-anim="in"] { animation: triIn .38s var(--ease-out) both; }
@keyframes triIn { from { opacity: 0; transform: translateY(14px); } }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.svcs { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px) { .svcs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .svcs { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.svc {
  background: var(--white); padding: clamp(1.5rem, 2.6vw, 2.2rem);
  position: relative; overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 0;
  background: var(--wash); transition: height .3s var(--ease); z-index: 0;
}
.svc:hover::before { height: 100%; }
.svc > * { position: relative; z-index: 1; }
.ico--svc { width: 3rem; height: 3rem; stroke-width: 1.45; color: var(--green); margin-bottom: 1.15rem; }
.svc h3 {
  font: 800 1.28rem/1.15 var(--disp); letter-spacing: -.024em;
  color: var(--green-deep); margin-bottom: .6rem;
}
.svc p { font-size: .98rem; color: var(--ink-70); line-height: 1.6; }

.equip {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: var(--warm);
}
.equip__h {
  font: 700 .76rem/1 var(--body); letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-ink); margin-bottom: 1.1rem;
}
.equip__list {
  display: flex; flex-wrap: wrap; gap: .55rem .5rem;
  font: 600 .93rem/1 var(--body);
}
.equip__list li {
  padding: .5rem .8rem; background: var(--white);
  border: 1px solid var(--line-warm); color: var(--ink);
}

/* ==========================================================================
   THE CIRCLED OFFER — his own grammar, executed with precision
   ========================================================================== */
.offer {
  background: var(--warm); position: relative;
  padding-block: clamp(3.6rem, 6.5vw, 7rem);
  border-top: 1px solid var(--line-warm);
}
.offer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--gold);
}
.offer__in { text-align: center; display: grid; justify-items: center; }
.ring { position: relative; display: inline-block; padding: clamp(2.2rem, 5vw, 3.4rem) clamp(2rem, 6vw, 5rem); }
.ring__svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  fill: none; stroke: var(--green); stroke-width: 3.4;
  stroke-linecap: round; overflow: visible;
}
.ring__svg path:last-child { stroke: var(--gold); stroke-width: 2; opacity: .85; }
.js .ring__svg path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .reveal.is-in .ring__svg path { animation: draw 1.15s var(--ease-out) .18s forwards; }
.js .reveal.is-in .ring__svg path:last-child { animation-delay: .42s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.ring__t {
  position: relative;
  font: 900 clamp(2.1rem, 5.4vw, 4.4rem)/.9 var(--disp);
  letter-spacing: -.035em; text-transform: uppercase;
  color: var(--green-deep);
}
.offer__p {
  max-width: 54ch; margin-top: clamp(1.6rem, 3vw, 2.4rem);
  font-size: 1.08rem; color: var(--ink-70);
}
.offer__cta {
  margin-top: 2rem; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: .9rem 1.3rem;
}
.offer__fine { font: 600 .95rem var(--body); color: var(--green-ink); }

/* ==========================================================================
   KINETIC STAT BAND — the screenshot moment
   ========================================================================== */
.stats { background: var(--green-deep); color: var(--white); position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(230,255,146,.05) 0 1px, transparent 1px 12px);
}
.stats::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--gold);
}
.stats__in {
  position: relative;
  max-width: 1620px; margin-inline: auto; padding-inline: var(--gut);
  padding-block: clamp(3rem, 6vw, 5.5rem);
  display: grid; gap: 2.2rem;
}
@media (min-width: 760px) { .stats__in { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; } }
.stat { position: relative; min-width: 0; }
@media (min-width: 760px) {
  .stat { padding-inline: clamp(.7rem, 1.5vw, 1.6rem); }
  .stat + .stat { border-left: 1px solid rgba(230,255,146,.22); }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; }
}
.stat__tick {
  display: block; width: 2.2rem; height: 3px; background: var(--lime); margin-bottom: 1.1rem;
}
.stat__n {
  font: 900 clamp(3.5rem, 9.2vw, 9.8rem)/.82 var(--disp);
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: flex-start;
  color: var(--white);
}
.stat__n i { font-style: normal; font-size: .4em; color: var(--lime); margin-left: .08em; line-height: 1.1; }
/* four-glyph values need a touch less width than "4.9" or "100" */
.stat:nth-child(2) .stat__n,
.stat__n--txt { font-size: clamp(2.9rem, 7.4vw, 7.8rem); }
.stat__n--txt { letter-spacing: -.03em; }
.stat__l {
  margin-top: 1rem; font: 600 .84rem/1.4 var(--body);
  letter-spacing: .12em; text-transform: uppercase; color: var(--on-deep);
}
.stat__lic {
  display: block; margin-top: .4rem; letter-spacing: .04em;
  color: var(--lime); font-weight: 700; text-transform: none; font-size: .95rem;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { display: grid; gap: clamp(2.4rem, 5vw, 4.5rem); }
@media (min-width: 960px) { .about { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; } }
.about__art { position: relative; padding-bottom: clamp(3rem, 7vw, 5.5rem); }
.about__f1 {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.4rem), 0 100%);
  background: var(--green-deep);
  box-shadow: 0 22px 44px -28px rgba(11,36,23,.5);
}
.about__f1 img, .about__f2 img {
  width: 100%; height: auto; display: block;
  filter: saturate(1.06) contrast(1.06);
}
.about__f1 img { aspect-ratio: 5 / 4; object-fit: cover; object-position: 46% 50%; }
.about__f2 {
  position: absolute; right: 0; bottom: 0; width: 54%;
  padding: 8px 0 0 8px; background: var(--warm);
  clip-path: polygon(0 1.6rem, 100% 0, 100% 100%, 0 100%);
}
.about__f2 img { aspect-ratio: 5 / 4; object-fit: cover; }
.about__f2::after {
  content: ""; position: absolute; right: 0; bottom: 0; width: 2.6rem; height: 4px;
  background: var(--gold);
}
.about__p { margin-top: 1.2rem; color: var(--ink-70); font-size: 1.06rem; max-width: 52ch; }
.proof {
  margin-top: 2.2rem; display: grid; gap: 1px; background: var(--line-warm);
  border: 1px solid var(--line-warm);
}
@media (min-width: 560px) { .proof { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.proof li { background: var(--warm); padding: 1.05rem 1.15rem; display: grid; gap: .25rem; }
.proof b {
  font: 800 1.02rem var(--disp); letter-spacing: -.015em; color: var(--green-deep);
}
.proof span { font-size: .92rem; color: var(--ink-55); line-height: 1.5; }
.badges { display: flex; align-items: center; gap: 1.2rem; margin-top: 2rem; }
.badges img {
  height: clamp(84px, 9.5vw, 116px); width: auto;
  border: 1px solid var(--line-warm); background: var(--white); padding: .5rem;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.revs { display: grid; gap: 1.15rem; }
@media (min-width: 720px) { .revs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .revs { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.rev {
  background: var(--white); border: 1px solid var(--line);
  border-top: 3px solid var(--green); padding: 1.5rem 1.4rem 1.3rem;
  display: flex; flex-direction: column; gap: .9rem;
}
.rev__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .12em; line-height: 1; }
.rev blockquote p { font-size: .99rem; line-height: 1.62; color: var(--ink); }
.rev__by {
  margin-top: auto; padding-top: .3rem;
  font: 600 .82rem var(--body); letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-55);
}
.rev--es { border-top-color: var(--red); }
.rev--short blockquote p { font-family: var(--disp); font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; color: var(--green-deep); }

/* ==========================================================================
   SERVICE AREA
   ========================================================================== */
.area { display: grid; gap: clamp(2.2rem, 4.5vw, 4rem); }
@media (min-width: 960px) { .area { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; } }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.8rem; }
.chips li {
  padding: .55rem .9rem; border: 1px solid var(--line);
  font: 600 .93rem var(--body); color: var(--green-deep); background: var(--white);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chips li:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.nap {
  margin-top: 2.2rem; display: grid; gap: 1.4rem 2.4rem;
  border-top: 2px solid var(--gold); padding-top: 1.5rem;
}
@media (min-width: 620px) { .nap { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 620px) { .nap--on { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.nap dt {
  font: 700 .73rem/1 var(--body); letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-55); margin-bottom: .5rem;
}
.nap dd { margin: 0; font-size: .99rem; line-height: 1.55; color: var(--ink); }
.nap--on { border-top-color: var(--lime); }
.nap--on dt { color: var(--lime); }
.nap--on dd { color: var(--on-deep); }
.area__fig { position: relative; }
.area__fig img {
  width: 100%; aspect-ratio: 7 / 5; object-fit: cover;
  filter: saturate(1.06) contrast(1.06);
  clip-path: polygon(0 2.4rem, 100% 0, 100% 100%, 0 100%);
}
.area__fig figcaption {
  margin-top: .8rem; font: 600 .84rem var(--body);
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-55);
}

/* ==========================================================================
   REQUEST SERVICE FORM
   ========================================================================== */
.form { display: grid; gap: clamp(2.4rem, 4.5vw, 4rem); }
@media (min-width: 960px) { .form { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; } }
@media (min-width: 1180px) { .form { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); } }
.form__p { margin-top: 1.2rem; color: var(--on-deep); max-width: 42ch; }
.tel--on { display: block; text-decoration: none; margin-top: 2rem; }
.tel--on .tel__kick {
  display: block; color: var(--lime);
  font: 700 .74rem/1 var(--body); letter-spacing: .28em; text-transform: uppercase;
  margin-bottom: .55rem;
}
.tel__num--on {
  display: block; white-space: nowrap;
  font: 900 clamp(2.2rem, 5vw, 3.7rem)/.9 var(--disp);
  letter-spacing: -.045em; font-variant-numeric: tabular-nums;
  color: var(--white);
  -webkit-text-stroke: 2.5px var(--gold);
  paint-order: stroke fill;
  transition: color .22s var(--ease);
}
.tel--on:hover .tel__num--on { color: var(--lime); }

.form__panel { background: var(--white); border: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: 12px 12px 0 rgba(8,73,42,.35); }
.rf { display: grid; gap: 1.05rem; }
.rf__row { display: grid; gap: 1.05rem; }
@media (min-width: 560px) { .rf__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.rf__field { display: grid; gap: .4rem; }
.rf__label {
  font: 600 .8rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-70);
}
.rf__req { color: var(--red); }
.rf__opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-55); }
.rf input, .rf select, .rf textarea {
  font: 400 1rem var(--body); color: var(--ink);
  background: var(--warm); border: 1px solid var(--line-warm);
  padding: .85rem .9rem; width: 100%;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
/* #5E7266 = 4.57:1 on the warm field ground; #7B8C81 measured 3.15:1 and failed AA. */
.rf input::placeholder, .rf textarea::placeholder { color: #5E7266; }
.rf input:focus, .rf select:focus, .rf textarea:focus { background: var(--white); border-color: var(--green-deep); }
.rf textarea { resize: vertical; min-height: 6.5rem; }
.rf [aria-invalid="true"] { border-color: var(--red); background: #FDF3F3; }
.rf__err:not(:empty) {
  font: 500 .88rem var(--body); color: #B3121A; padding-top: .1rem;
}
.rf__fine { font-size: .88rem; color: var(--ink-55); }

/* ---- free vs add-on panel ---- */
.conf__h {
  font: 800 clamp(1.5rem, 3vw, 2.1rem)/1.1 var(--disp);
  letter-spacing: -.028em; color: var(--green-deep); margin-bottom: 1.4rem;
}
.conf__cards { display: grid; gap: 1.15rem; }
@media (min-width: 780px) { .conf__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; } }
.tier { border: 1px solid var(--line); padding: 1.35rem 1.3rem; background: var(--white); }
.tier--in { border-color: var(--green-deep); border-top: 4px solid var(--green-deep); background: var(--wash); }
.tier--addon { border-top: 4px solid var(--line); }
.tier__tag {
  font: 700 .69rem/1.3 var(--body); letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.tier__tag--in { color: var(--green-deep); }
.tier__tag--addon { color: var(--ink-55); }
.tier__icowrap { margin-bottom: .8rem; }
.ico--tier { width: 1.9rem; height: 1.9rem; color: var(--green); stroke-width: 2.2; }
.tier--addon .ico--tier { color: var(--ink-55); }
.tier__h { font: 800 1.22rem/1.15 var(--disp); letter-spacing: -.022em; color: var(--green-deep); margin-bottom: .55rem; }
.tier--addon .tier__h { color: var(--ink); }
.tier__p { font-size: .95rem; color: var(--ink-70); line-height: 1.55; }
.tier__list { margin-top: .85rem; display: grid; gap: .4rem; font-size: .92rem; color: var(--ink-70); }
.tier__list li { padding-left: 1.15rem; position: relative; }
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: .5rem; height: .5rem; background: var(--green);
}
.tier__up {
  margin-top: 1.1rem; padding-top: .85rem; border-top: 1px solid var(--line);
  font: 700 .84rem var(--body); letter-spacing: .06em; color: var(--ink-55);
}
.tier__up--in { color: var(--green-deep); border-top-color: rgba(11,92,52,.25); }
.conf__reset { margin-top: 1.5rem; }

/* mini calendar (static picture) */
.cal { margin-top: 1rem; border: 1px solid var(--line); padding: .85rem; background: var(--warm); }
.cal__mo { font: 700 .82rem var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-55); margin-bottom: .6rem; }
.cal__dow, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal__dow { font: 600 .66rem var(--body); color: var(--ink-55); text-align: center; margin-bottom: 3px; }
.cal__d {
  aspect-ratio: 1; display: grid; place-items: center;
  font: 500 .76rem var(--body); font-variant-numeric: tabular-nums;
  background: var(--white); color: var(--ink-70); border: 1px solid transparent;
}
.cal__d--off { color: #A9B6AD; background: transparent; }
.cal__d--now { background: var(--green-deep); color: var(--white); font-weight: 700; }
.cal__d--open { border-color: var(--green); color: var(--green-deep); font-weight: 700; }
.cal__slots { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .7rem; }
.cal__slot {
  font: 600 .74rem var(--body); padding: .35rem .5rem;
  border: 1px solid var(--line); background: var(--white); color: var(--ink-70);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ft { background: var(--green-deeper); color: var(--on-deep); padding-top: clamp(3rem, 5vw, 4.5rem); }
.ft__grid { display: grid; gap: 2.4rem; padding-bottom: clamp(2.4rem, 4vw, 3.5rem); }
@media (min-width: 720px) { .ft__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .ft__grid { grid-template-columns: 1.35fr .85fr .95fr .95fr; gap: 3rem; } }
.ft__chip {
  display: inline-block; background: var(--warm); padding: .85rem 1.1rem;
  border-bottom: 3px solid var(--gold);
}
.ft__chip img { width: clamp(150px, 17vw, 210px); height: auto; }
.ft__tag { margin-top: 1.2rem; font-size: .96rem; max-width: 34ch; line-height: 1.6; }
.lic--ft {
  margin-top: 1.1rem; display: inline-block;
  background: transparent; color: var(--lime); border-color: var(--lime);
}
.ft__h {
  font: 700 .74rem/1 var(--body); letter-spacing: .2em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 1.1rem;
}
.ft__tel {
  display: inline-block; text-decoration: none;
  font: 900 1.65rem/1 var(--disp); letter-spacing: -.03em; color: var(--white);
  font-variant-numeric: tabular-nums; margin-bottom: .9rem;
}
.ft__tel:hover { color: var(--lime); }
.ft__addr { font-style: normal; font-size: .96rem; line-height: 1.6; }
.ft__hours { margin-top: .9rem; font-size: .96rem; line-height: 1.6; }
.ft__links { display: grid; gap: .55rem; font-size: .96rem; }
.ft__links a { text-decoration: none; border-bottom: 1px solid transparent; }
.ft__links a:hover { color: var(--lime); border-bottom-color: var(--lime); }
.ft__social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.ft__social a {
  width: 2.75rem; height: 2.75rem; display: grid; place-items: center;
  border: 1px solid rgba(230,255,146,.35); color: var(--on-deep);
}
.ft__social a:hover { background: var(--lime); color: var(--green-deeper); border-color: var(--lime); }
.ft__social .ico { width: 1.15rem; height: 1.15rem; }
.ft__base {
  border-top: 1px solid rgba(230,255,146,.2);
  padding-block: 1.3rem; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: .6rem 1.5rem;
  font-size: .87rem;
}
.ft__base a { text-decoration: none; border-bottom: 1px solid rgba(230,255,146,.4); }
.ft__base a:hover { color: var(--lime); }

/* ==========================================================================
   STICKY CALL BAR (mobile)
   ========================================================================== */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--green-cta); color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1rem calc(.95rem + env(safe-area-inset-bottom));
  font: 600 1.02rem var(--body); text-decoration: none;
  border-top: 3px solid var(--gold);
}
@media (min-width: 1100px) { .callbar { display: none; } }
@media (max-width: 1099px) { body { padding-bottom: 4.2rem; } }

/* ==========================================================================
   INTERIOR PAGES (servicios.html / financing.html)
   ========================================================================== */
.phero { background: var(--warm); position: relative; overflow: hidden; padding-block: clamp(2.6rem, 5.5vw, 5rem) 0; }
.phero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(11,92,52,.028) 0 1px, transparent 1px 9px);
}
.phero__in { position: relative; display: grid; gap: clamp(2rem, 4vw, 3.2rem); padding-bottom: clamp(2.4rem, 4.5vw, 3.6rem); }
@media (min-width: 900px) { .phero__in { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; } }
.phero__sub { margin-top: 1.4rem; max-width: 44ch; font-size: 1.06rem; color: var(--ink-70); }
.phero__fig { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 3rem)); background: var(--green-deep); }
.phero__fig img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(1.06) contrast(1.06); }

.slist { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px) { .slist { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.slist > li { background: var(--white); padding: clamp(1.4rem, 2.4vw, 2rem); }
.slist h3 { font: 800 1.26rem/1.15 var(--disp); letter-spacing: -.024em; color: var(--green-deep); margin-bottom: .55rem; }
.slist p { font-size: .98rem; color: var(--ink-70); line-height: 1.6; }

.steps { counter-reset: st; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.steps > li { background: var(--white); padding: clamp(1.5rem, 2.6vw, 2.1rem); counter-increment: st; }
.steps > li::before {
  content: counter(st, decimal-leading-zero);
  display: block; font: 900 2.6rem/1 var(--disp); letter-spacing: -.05em;
  color: var(--green); margin-bottom: .9rem;
  -webkit-text-stroke: 0; font-variant-numeric: tabular-nums;
}
.steps h3 { font: 800 1.2rem/1.2 var(--disp); letter-spacing: -.022em; color: var(--green-deep); margin-bottom: .5rem; }
.steps p { font-size: .97rem; color: var(--ink-70); line-height: 1.6; }

.note {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  background: var(--warm); padding: clamp(1.3rem, 2.4vw, 1.9rem);
  font-size: .97rem; color: var(--ink-70); line-height: 1.65;
}
.note b { color: var(--green-deep); }

.cta {
  background: var(--green-deep); color: var(--white); position: relative; overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(230,255,146,.05) 0 1px, transparent 1px 12px);
}
.cta__in { position: relative; display: grid; gap: 1.6rem; justify-items: start; }
.cta__p { color: var(--on-deep); max-width: 50ch; font-size: 1.06rem; }
.cta__p span { color: var(--lime); font-weight: 600; }
.cta__acts { margin-top: .4rem; }
.btn--lime { background: var(--lime); color: var(--green-deeper); }
.btn--lime:hover { background: var(--white); transform: translateY(-2px); }

.h1--p, .h1--es { font-size: clamp(2.7rem, 6.4vw, 5.4rem); }
.phero__acts { margin-top: clamp(1.6rem, 2.6vw, 2.2rem); }

/* ---- featured single review (servicios) ---- */
.bigrev {
  background: var(--white); border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  padding: clamp(1.6rem, 3.4vw, 2.8rem);
  max-width: 62rem;
}
.bigrev__stars { color: var(--gold); font-size: 1.35rem; letter-spacing: .16em; line-height: 1; }
.bigrev__q { margin-top: 1.2rem; }
.bigrev__q p {
  font: 500 clamp(1.15rem, 2.1vw, 1.65rem)/1.45 var(--body);
  letter-spacing: -.012em; color: var(--ink); text-wrap: pretty;
}
.bigrev__by {
  margin-top: 1.3rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font: 600 .84rem var(--body); letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-55);
}
.bigrev__link { margin-top: 1.4rem; }
.bigrev__link a {
  display: inline-flex; align-items: center; gap: .5rem;
  font: 600 .98rem var(--body); color: var(--green-deep);
  text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: .2rem;
}
.bigrev__link a:hover { color: var(--red); border-bottom-color: var(--red); }

.about__badgeline {
  margin-top: 2rem; font: 600 .93rem var(--body); color: var(--ink-70);
}
.about__badgeline + .badges { margin-top: .8rem; }
.linkbtn--a { text-decoration: none; margin-top: .9rem; }

/* ==========================================================================
   MOTION SAFETY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .ring__svg path { stroke-dasharray: none; stroke-dashoffset: 0; }
  .hero__copy > * { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- staggered hero entrance ----------
   Delays are attached to named elements rather than :nth-child so that a page
   without the season toggle (servicios / financing) staggers identically. */
.js .hero__copy > *, .js .season, .js .hero__figA, .js .hero__figB,
.js .phero__in > div > *, .js .phero__fig {
  animation: heroIn .8s var(--ease-out) both;
}
.js .hero__copy > *:nth-child(1), .js .phero__in > div > *:nth-child(1) { animation-delay: .05s; }
.js .hero__copy > *:nth-child(2), .js .phero__in > div > *:nth-child(2) { animation-delay: .13s; }
.js .hero__copy > *:nth-child(3), .js .phero__in > div > *:nth-child(3) { animation-delay: .21s; }
.js .hero__copy > *:nth-child(4), .js .phero__in > div > *:nth-child(4) { animation-delay: .29s; }
.js .hero__copy > *:nth-child(5) { animation-delay: .37s; }
.js .season { animation-delay: .1s; }
.js .hero__figA, .js .phero__fig { animation-delay: .16s; }
.js .hero__figB { animation-delay: .32s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } }

@media print {
  .hdr, .callbar, .season, .burger, .mnav { display: none !important; }
  body { padding-bottom: 0; }
}
