@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fonts/lora-latin.woff2") format("woff2");
}

:root {
  --ink: #17231f;
  --green-950: #102f29;
  --green-900: #16443b;
  --green-700: #2f6f5e;
  --green-500: #5d8d79;
  --stone-50: #fbfaf6;
  --stone-100: #f2efe7;
  --stone-200: #e4ded2;
  --stone-400: #b6ad9f;
  --clay: #a76b47;
  --charcoal: #2f3431;
  --muted: #686d68;
  --white: #fff;
  --line: rgba(16, 47, 41, 0.14);
  --shadow: 0 24px 70px rgba(16, 47, 41, 0.18);
  --radius: 8px;
  --max: 1200px;
  --font-display: "Lora", Georgia, serif;
  --font-sans: "Inter", "Segoe UI", Arial, sans-serif;
  --font-serif: var(--font-display);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--stone-50);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input, select, textarea { font: inherit; }

img { display: block; max-width: 100%; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(167, 107, 71, 0.45);
  outline-offset: 3px;
}

h1, h2, h3, p { margin-top: 0; }
strong, b { font-weight: 600; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
}

h1 { font-size: 2.5rem; font-weight: 600; }
h2 { font-size: 2.15rem; }
h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.28;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-transform: none;
}

.eyebrow.light { color: #e8c5ab; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(16, 47, 41, 0.1);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 47, 41, 0.16);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(16, 47, 41, 0.13);
}

.button-primary {
  border-color: var(--green-900);
  background: var(--green-900);
  color: var(--white);
}

.button-light {
  border-color: var(--stone-100);
  background: var(--stone-100);
  color: var(--green-950);
}

.button-stone {
  border-color: var(--stone-200);
  background: var(--stone-200);
  color: var(--green-950);
}

.button-whatsapp {
  border-color: #2e7657;
  background: #2e7657;
  color: var(--white);
}

.button-full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  padding: 0.65rem 1rem;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  color: var(--green-950);
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol i {
  content: "";
  position: absolute;
  background: currentColor;
}

.brand-symbol::before { width: 2px; height: 70%; }
.brand-symbol::after { width: 70%; height: 2px; }
.brand-symbol i { width: 34%; height: 34%; border-radius: 50%; background: var(--clay); }

.brand strong, .brand small { display: block; }
.brand strong { font-size: 0.96rem; line-height: 1.05; }
.brand small { margin-top: 0.18rem; color: var(--muted); font-size: 0.7rem; }

.main-nav { display: none; align-items: center; gap: 1.5rem; }
.main-nav a {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.main-nav .nav-cta {
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  background: var(--green-900);
  color: var(--white);
}

.mobile-quote {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 4.25rem);
  overflow: hidden;
  background: var(--green-950);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-slot {
  position: relative;
  overflow: hidden;
  background: #aeb9af;
  box-shadow: inset 0 0 0 1px rgba(16, 47, 41, 0.12);
}

.hero-image { background: #526b60; }

.hero-image {
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(11, 34, 29, 0.44) 0%, rgba(11, 34, 29, 0.72) 56%, rgba(11, 34, 29, 0.97) 100%),
    linear-gradient(90deg, rgba(11, 34, 29, 0.76), rgba(11, 34, 29, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 5.25rem;
}

.hero-copy { max-width: 46rem; color: var(--white); }
.hero-copy h1 { max-width: 15ch; margin-bottom: 1.1rem; }
.hero-lead { max-width: 39rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.84); font-size: 1.06rem; }

.hero-actions { display: grid; gap: 0.65rem; margin-bottom: 1.5rem; }
.hero-actions .button-whatsapp { box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.27);
}

.hero-facts strong,
.hero-facts span { display: block; }
.hero-facts strong {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.hero-facts span { margin-top: 0.1rem; color: rgba(255,255,255,0.68); font-size: 0.72rem; }
.hero-payment-note { margin: 0.65rem 0 0; color: rgba(255,255,255,0.62); font-size: 0.72rem; }
.quick-form,
.full-form {
  min-width: 0;
  border-radius: var(--radius);
  background: rgba(251,250,246,0.97);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-form {
  display: grid;
  gap: 0.72rem;
  padding: 1.15rem;
}

.quick-form-heading span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
}

.quick-form-heading h2 { margin: 0.25rem 0 0.35rem; font-size: 1.55rem; }
.quick-form-heading p { margin: 0 0 0.55rem; color: var(--muted); font-size: 0.88rem; }

.form-intro {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.form-intro span { color: var(--clay); font-size: 0.72rem; font-weight: 600; text-transform: none; }
.form-intro h3 { margin: 0.25rem 0 0.35rem; color: var(--green-950); font-family: var(--font-sans); font-size: 1.65rem; font-weight: 600; }
.form-intro p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.lead-form label {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(16,47,41,0.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
}

textarea { resize: vertical; }

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.48;
}

.form-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  color: var(--muted);
  font-size: 0.72rem;
}
.form-assurances span { display: inline-flex; align-items: center; gap: 0.38rem; }
.form-assurances span::before { content: ""; width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--green-700); }
.form-status:not(:empty) {
  padding: 0.75rem;
  border: 1px solid rgba(47,111,94,0.25);
  border-radius: var(--radius);
  background: rgba(47,111,94,0.08);
  color: var(--green-950);
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.hero-scroll span { margin-left: 0.4rem; }

.situation-section,
.sector-section,
.legacy-section,
.immediate-section,
.faq-section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section-intro { max-width: 46rem; margin-bottom: 1.6rem; }
.section-intro h2 { margin-bottom: 0.8rem; color: var(--green-950); }
.section-intro > p:last-child,
.sector-heading > p,
.legacy-heading > p {
  max-width: 62ch;
  color: var(--muted);
  text-wrap: pretty;
}

.situation-grid { display: grid; gap: 0.8rem; }

.situation-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.situation-card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(16,47,41,0.11); }
.situation-card.featured { background: var(--green-900); color: var(--white); }
.situation-card h3 { margin-bottom: 0.38rem; color: var(--green-950); font-size: 1.08rem; }
.situation-card p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }
.situation-card.featured h3,
.situation-card.featured p { color: var(--white); }
.situation-card.featured p { opacity: 0.72; }
.situation-index { color: var(--clay); font-family: var(--font-sans); font-size: 1.25rem; }
.arrow { color: var(--clay); font-size: 1.3rem; }

.trust-section {
  display: grid;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.trust-intro { max-width: 42rem; }
.trust-intro h2 { margin-bottom: 0.85rem; color: var(--green-950); }
.trust-intro > p:not(.eyebrow) { color: var(--muted); }
.trust-intro .button { margin-top: 0.55rem; }

.trust-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.trust-grid div {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span { display: block; }
.trust-grid strong { color: var(--green-950); font-size: 0.92rem; }
.trust-grid span { margin-top: 0.25rem; color: var(--muted); font-size: 0.78rem; }
.trust-grid .trust-payment {
  border-color: rgba(167, 107, 71, 0.38);
  background: #fffaf3;
}
.trust-grid .trust-payment strong { color: var(--clay); }
.sector-section { padding-top: 2rem; }

.sector-heading,
.legacy-heading { display: grid; gap: 0.4rem; }

.sector-explorer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-950);
}

.sector-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sector-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(9,30,25,0.92) 100%);
}

.sector-stage .sector-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 600ms ease;
}

.sector-stage:hover .sector-photo { transform: scale(1.025); }

.sector-copy {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: var(--white);
}

.sector-copy > p:first-child {
  margin-bottom: 0.25rem;
  color: #e8c5ab;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: none;
}

.sector-copy h3 { max-width: 26rem; margin-bottom: 0.4rem; font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; }
.sector-copy p { max-width: 36rem; margin-bottom: 0.7rem; color: rgba(255,255,255,0.76); }
.sector-copy a { color: var(--white); font-size: 0.88rem; font-weight: 600; text-underline-offset: 4px; }

.sector-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sector-tabs button {
  display: grid;
  gap: 0.15rem;
  min-height: 4.25rem;
  padding: 0.75rem;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.74);
  text-align: left;
  cursor: pointer;
}

.sector-tabs button[aria-selected="true"] {
  background: var(--stone-100);
  color: var(--green-950);
}

.sector-tabs button { font-weight: 600; }
.sector-tabs small { font-size: 0.67rem; font-weight: 500; opacity: 0.74; }

.capacity-section {
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.capacity-layout {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 3.5rem 0;
}

.capacity-heading { max-width: 48rem; margin-bottom: 1.5rem; }
.capacity-heading h2 { margin-bottom: 0.75rem; color: var(--white); }
.capacity-heading > p:last-child { margin: 0; color: rgba(255,255,255,0.7); }

.capacity-grid {
  display: grid;
  grid-auto-columns: minmax(15.5rem, 78vw);
  grid-auto-flow: column;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0 0 0.7rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255,255,255,0.35) transparent;
}

.capacity-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  scroll-snap-align: start;
}

.capacity-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.capacity-card > div { padding: 0.95rem 1rem 0.55rem; }
.capacity-card span { color: var(--clay); font-size: 0.72rem; font-weight: 600; text-transform: none; }
.capacity-card h3 { margin: 0.3rem 0 0.4rem; color: var(--green-950); font-family: var(--font-sans); font-size: 1.25rem; font-weight: 500; }
.capacity-card p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.capacity-card .button { min-height: 2.8rem; margin: 0.5rem 1rem 1rem; padding: 0.72rem 0.75rem; font-size: 0.84rem; }
.capacity-note { margin: 0.75rem 0 0; color: rgba(255,255,255,0.52); font-size: 0.7rem; }
.premium-spaces-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(177, 144, 98, 0.13), transparent 28rem),
    var(--stone-100);
}

.premium-spaces-layout {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4rem 0;
}

.premium-spaces-intro {
  max-width: 50rem;
  margin-bottom: 0.85rem;
}

.premium-spaces-intro h2 {
  max-width: 46rem;
  margin-bottom: 0.9rem;
  color: var(--green-950);
}

.premium-spaces-intro > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
}

.premium-spaces-grid {
  display: grid;
  grid-auto-columns: min(86vw, 22rem);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.35rem 0.15rem 1rem;
  scroll-padding-inline: 0.15rem;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.premium-spaces-grid::-webkit-scrollbar { display: none; }

.premium-spaces-swipe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.45rem;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-spaces-swipe span { font-size: 1.2rem; }

.premium-space-card {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  background: var(--white);
  box-shadow: 0 1.25rem 3.5rem rgba(23, 48, 39, 0.1);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.premium-space-media {
  position: relative;
  height: 13.5rem;
  min-height: 13.5rem;
  margin: 0;
  overflow: hidden;
  background: var(--green-950);
}

.premium-space-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(17, 35, 29, 0.42));
  content: "";
  pointer-events: none;
}

.premium-space-media img {
  width: 100%;
  height: 100%;
  min-height: 13.5rem;
  object-fit: cover;
  transition: transform 700ms ease;
}

.premium-space-card:hover .premium-space-media img { transform: scale(1.025); }

.premium-space-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.85rem;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  background: rgba(17, 35, 29, 0.68);
  color: rgba(255,255,255,0.9);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

.premium-space-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.15rem;
}

.premium-space-label {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.premium-space-copy h3 {
  margin: 0.45rem 0 0.65rem;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 8vw, 2.1rem);
  font-weight: 500;
}

.premium-space-copy > p {
  margin: 0;
  color: var(--muted);
}

.premium-space-features {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  margin: 0.95rem 0 1.1rem;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.premium-space-features li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink);
  font-size: 0.82rem;
}

.premium-space-features li::before {
  position: absolute;
  top: 0.35rem;
  left: 0.1rem;
  width: 0.52rem;
  height: 0.52rem;
  border: 2px solid var(--clay);
  border-radius: 50%;
  content: "";
}

.premium-space-copy .button { width: 100%; margin-top: auto; }

.premium-spaces-note {
  max-width: 58rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.capacity-assist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.capacity-assist p { margin: 0; }
.capacity-assist strong,
.capacity-assist span { display: block; }
.capacity-assist span { margin-top: 0.15rem; color: rgba(255,255,255,0.64); font-size: 0.82rem; }
.capacity-assist a { color: #e8c5ab; font-weight: 600; text-underline-offset: 4px; }
.legacy-stage {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-950);
}

.legacy-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(100%, 34rem);
  margin-bottom: 1rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--stone-100);
}

.legacy-switch button {
  min-height: 2.7rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

.legacy-switch button[aria-selected="true"] { background: var(--green-900); color: var(--white); }

.legacy-stage > .legacy-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.legacy-panel {
  padding: 1.3rem;
  background: var(--green-950);
  color: var(--white);
}

.legacy-panel > p:first-child { margin-bottom: 0.3rem; color: #e8c5ab; font-size: 0.76rem; font-weight: 600; text-transform: none; }
.legacy-panel h3 { margin-bottom: 0.55rem; font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; }
.legacy-panel p, .legacy-panel li { color: rgba(255,255,255,0.72); }
.legacy-panel ul { margin: 1rem 0; padding-left: 1.15rem; }
.legacy-panel a { color: var(--white); font-weight: 600; text-underline-offset: 4px; }

.services-section {
  display: grid;
  background: var(--stone-100);
}

.services-image {
  position: relative;
  min-height: 25rem;
}

.services-photo { width: 100%; height: 100%; object-fit: cover; background: #9aa99d; }
.services-image span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(16,47,41,0.9);
  color: var(--white);
  font-weight: 600;
}

.services-copy { padding: 3.5rem 1rem; }
.services-copy > p { color: var(--muted); }
.service-list { display: grid; margin-top: 1.4rem; border-top: 1px solid var(--line); }

.service-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-950);
  text-decoration: none;
}

.service-list a:hover strong { color: var(--clay); }
.service-list span { color: var(--muted); font-size: 0.82rem; text-align: right; }

.benefit-band {
  display: grid;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-band div { padding: 1.25rem 1rem; border-bottom: 1px solid var(--line); }
.benefit-band strong, .benefit-band span { display: block; }
.benefit-band strong { color: var(--green-950); font-family: var(--font-sans); font-weight: 500; }
.benefit-band span { margin-top: 0.2rem; color: var(--muted); font-size: 0.76rem; }

.planning-section { display: grid; background: var(--green-900); color: var(--white); }
.planning-image { position: relative; min-height: 24rem; }
.planning-photo { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; background: #81978a; }
.planning-copy { padding: 3.5rem 1rem; }
.planning-copy h2 { color: var(--white); }
.planning-copy p, .planning-copy li { color: rgba(255,255,255,0.72); }
.planning-copy ul { margin: 1.3rem 0 1.7rem; padding-left: 1.2rem; }
.payment-emphasis {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 28rem);
  margin-top: 1.4rem;
  padding: 1rem 0;
  border-block: 1px solid rgba(255,255,255,0.24);
}
.payment-emphasis strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 0.9;
}
.payment-emphasis span { max-width: 12rem; color: rgba(255,255,255,0.86); font-weight: 500; line-height: 1.3; }
.planning-copy .button { align-self: flex-start; }
.payment-disclaimer { display: block; margin-top: 0.85rem; color: rgba(255,255,255,0.58); font-size: 0.72rem; }

.immediate-steps {
  display: grid;
  gap: 0;
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.immediate-steps li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.immediate-steps span { color: var(--clay); font-family: var(--font-sans); font-size: 1.3rem; }
.immediate-steps strong { color: var(--green-950); }
.immediate-steps p { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.88rem; }

.contact-section {
  display: grid;
  gap: 2rem;
  padding: 4.5rem 1rem;
  background: var(--green-950);
  color: var(--white);
}

.contact-copy { max-width: 40rem; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { color: rgba(255,255,255,0.7); }

.contact-location-media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 1.5rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
}

.contact-location-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(9, 30, 25, 0.88));
  pointer-events: none;
}

.contact-location-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.contact-location-media:hover img { transform: scale(1.035); }

.contact-location-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.85rem;
  left: 1rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-meta {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.17);
}

.contact-meta span { color: rgba(255,255,255,0.64); font-size: 0.85rem; }
.contact-meta strong { display: block; color: var(--white); }

.full-form { padding: 1.1rem; }
.form-grid { display: grid; gap: 0.8rem; }
.wide { grid-column: 1 / -1; }

.faq-list { display: grid; gap: 0.7rem; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.faq-list summary { padding: 1rem; color: var(--green-950); font-size: 0.98rem; font-weight: 600; cursor: pointer; }
.faq-list details p { margin: 0; padding: 0 1rem 1rem; color: var(--muted); }

.closing-cta {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 4rem 1rem;
  background: var(--green-900);
  color: var(--white);
  text-align: center;
}

.closing-cta > p { margin: 0; color: #e8c5ab; font-size: 0.78rem; font-weight: 600; text-transform: none; }
.closing-cta h2 { max-width: 17ch; margin: 0; color: var(--white); }
.closing-cta > div { display: grid; gap: 0.65rem; width: min(100%, 28rem); margin-top: 0.8rem; }

.site-footer {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 1rem 6rem;
  background: var(--green-950);
  color: rgba(255,255,255,0.72);
}
.site-footer .brand { color: var(--white); }
.footer-brand { justify-self: start; }
.footer-intro { display: grid; gap: 1rem; align-content: start; }
.footer-intro > p { max-width: 30rem; margin: 0; font-size: 0.9rem; }
.footer-trust { display: grid; gap: 1rem; }
.footer-trust p { margin: 0; padding-top: 0.85rem; border-top: 1px solid rgba(255,255,255,0.14); }
.footer-trust strong,
.footer-trust span { display: block; }
.footer-trust strong { margin-bottom: 0.25rem; color: var(--white); font-size: 0.8rem; }
.footer-trust span { font-size: 0.82rem; line-height: 1.55; }
.footer-trust a { text-underline-offset: 3px; }
.footer-actions { display: grid; gap: 1rem; align-content: start; }
.footer-actions .button-primary { border-color: var(--stone-100); background: var(--stone-100); color: var(--green-950); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.footer-links a { color: rgba(255,255,255,0.82); font-size: 0.8rem; text-underline-offset: 3px; }

.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.8rem;
  padding: 0.3rem 0.9rem 0.3rem 0.3rem;
  border: 1px solid rgba(16,47,41,0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-950);
  box-shadow: 0 16px 36px rgba(16,47,41,0.28);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.sticky-whatsapp img {
  display: block;
  width: 3.1rem;
  height: 3.1rem;
  flex: 0 0 3.1rem;
  border-radius: 50%;
  object-fit: contain;
}

.sticky-whatsapp span {
  white-space: nowrap;
}

@media (min-width: 700px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.75rem; }

  .mobile-quote { display: none; }
  .main-nav { display: flex; }

  .hero-content { padding-top: 5rem; }
  .hero-actions,
  .closing-cta > div { display: flex; flex-wrap: wrap; }
  .hero-facts { max-width: 34rem; }
  .quick-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-form-heading,
  .quick-form .button,
  .quick-form .form-assurances,
  .quick-form .form-note,
  .quick-form .form-status { grid-column: 1 / -1; }

  .situation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .situation-card { grid-template-columns: 1fr auto; min-height: 13rem; align-content: space-between; }
  .situation-card .situation-index { grid-column: 1; }
  .situation-card > div { grid-column: 1 / -1; }
  .situation-card .arrow { grid-column: 2; grid-row: 1; }

  .sector-heading,
  .legacy-heading { grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.55fr); align-items: end; }
  .sector-stage { aspect-ratio: 16 / 9; }
  .sector-copy { right: 2rem; bottom: 2rem; left: 2rem; }
  .sector-copy h3 { font-size: 2.2rem; }
  .sector-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capacity-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: row; overflow: visible; }

  .legacy-stage { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr); }
  .legacy-stage > .legacy-photo { aspect-ratio: auto; height: 100%; min-height: 33rem; }
  .legacy-panel { display: flex; flex-direction: column; justify-content: center; padding: 2rem; }

  .benefit-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-band div { border-right: 1px solid var(--line); }

  .services-section,
  .planning-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-copy,
  .planning-copy { padding: 4.5rem clamp(2rem, 6vw, 5rem); }
  .services-image,
  .planning-image { min-height: 38rem; }
  .planning-image { order: 2; }

  .immediate-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .immediate-steps li:nth-child(odd) { padding-right: 1.2rem; border-right: 1px solid var(--line); }
  .immediate-steps li:nth-child(even) { padding-left: 1.2rem; }

  .contact-section { grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1.2fr); align-items: start; padding: 5rem max(1rem, calc((100% - var(--max)) / 2)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }


}

@media (min-width: 1040px) {
  h1 { font-size: 4.5rem; }
  h2 { font-size: 3.25rem; }

  .site-header { padding-inline: max(2rem, calc((100% - var(--max)) / 2)); }

  .hero { min-height: calc(100svh - 4.25rem); }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11,34,29,0.92) 0%, rgba(11,34,29,0.68) 45%, rgba(11,34,29,0.12) 76%),
      linear-gradient(0deg, rgba(11,34,29,0.5), transparent 50%);
  }
  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.54fr); align-items: center; min-height: calc(100svh - 4.25rem); padding: 4rem 0 5rem; }
  .quick-form { grid-template-columns: 1fr; align-self: center; padding: 1.35rem; }
  .quick-form-heading,
  .quick-form .button,
  .quick-form .form-assurances,
  .quick-form .form-note,
  .quick-form .form-status { grid-column: auto; }

  .situation-section,
  .sector-section,
  .legacy-section,
  .immediate-section,
  .faq-section { padding-block: 6rem; }

  .trust-section { grid-template-columns: minmax(0, 0.8fr) minmax(34rem, 1.2fr); align-items: center; padding-block: 5.5rem; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .benefit-band { grid-template-columns: repeat(4, minmax(0, 1fr)); padding-inline: max(0rem, calc((100% - var(--max)) / 2)); }
  .benefit-band div { padding-inline: 1.5rem; }

  .services-copy,
  .planning-copy { display: flex; flex-direction: column; justify-content: center; }
}



/* Interactive park map */
.map-section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.map-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.map-heading h2 {
  margin-bottom: 0;
  color: var(--green-950);
}

.map-heading > p {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
}

.map-layout {
  display: grid;
  gap: 1rem;
}

.map-viewer {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dfe4dd;
  box-shadow: 0 20px 50px rgba(16, 47, 41, 0.12);
}

.map-scroll {
  max-height: 72svh;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--green-700) var(--stone-200);
  cursor: grab;
}

.map-scroll:active { cursor: grabbing; }

.map-canvas {
  position: relative;
  width: 100%;
  min-width: 100%;
  transform-origin: top left;
  transition: width 260ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.map-canvas img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.map-hotspot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 16px rgba(16, 47, 41, 0.3);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-hotspot span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--clay);
  transition: transform 180ms ease, background 180ms ease;
}

.map-hotspot::after {
  content: "";
  position: absolute;
  inset: -0.32rem;
  border: 1px solid rgba(167, 107, 71, 0.45);
  border-radius: 50%;
  opacity: 0;
}

.map-hotspot:hover span,
.map-hotspot.is-active span {
  background: var(--green-900);
  transform: scale(1.22);
}

.map-hotspot.is-active::after {
  opacity: 1;
  animation: map-pin-pulse 1500ms ease-out infinite;
}

@keyframes map-pin-pulse {
  from { opacity: 0.75; transform: scale(0.7); }
  to { opacity: 0; transform: scale(1.45); }
}


.map-cursor-tooltip {
  position: fixed;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  top: 0;
  left: 0;
  z-index: 100;
  max-width: 15rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(16, 47, 41, 0.94);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(16, 47, 41, 0.24);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transform: translateY(5px) scale(0.96);
  transform-origin: left center;
  transition: opacity 150ms ease, transform 180ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.map-cursor-tooltip img {
  flex: 0 0 auto;
  width: 4.8rem;
  height: 3.1rem;
  border-radius: 4px;
  object-fit: cover;
}

.map-cursor-tooltip img[hidden] { display: none; }

.map-cursor-tooltip span {
  display: block;
  min-width: 0;
  max-width: 8rem;
  overflow-wrap: break-word;
}
.map-cursor-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0.55rem 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.map-toolbar > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.map-toolbar > div {
  display: flex;
  gap: 0.35rem;
}

.map-toolbar button {
  display: grid;
  place-items: center;
  min-width: 2.45rem;
  height: 2.45rem;
  padding: 0 0.55rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--stone-100);
  color: var(--green-950);
  font-weight: 600;
  cursor: pointer;
}

.map-toolbar button:hover { background: var(--stone-200); }

.map-information {
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--white);
}

.map-information > p:first-child {
  margin-bottom: 0.3rem;
  color: #e8c5ab;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: none;
}

.map-information h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  overflow-wrap: break-word;
}

.map-information > p:not(:first-child) {
  color: rgba(255, 255, 255, 0.72);
}

.map-info-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1rem;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.map-info-image[hidden] { display: none; }
.map-legend {
  display: grid;
  margin: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.map-legend button {
  padding: 0.72rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}

.map-legend button:hover,
.map-legend button.is-active {
  padding-left: 0.35rem;
  color: var(--white);
}

@media (min-width: 700px) {
  .map-heading {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
    align-items: end;
  }

  .map-hotspot {
    width: 2.2rem;
    height: 2.2rem;
  }
}

@media (min-width: 980px) {
  .map-section { padding-block: 3rem 6rem; }

  .map-layout {
    grid-template-columns: minmax(0, 1fr) 20rem;
    align-items: stretch;
  }

  .map-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.6rem;
  }

  .map-scroll { max-height: 45rem; }
}

/* Motion system */
.site-header {
  transition: min-height 240ms ease, background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled {
  min-height: 3.7rem;
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 10px 32px rgba(16, 47, 41, 0.1);
}

.quick-form { animation: form-reveal 820ms 420ms both; }

@keyframes form-reveal {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal-target {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-target.reveal-from-left { transform: translateX(-36px); }
.reveal-target.reveal-from-right { transform: translateX(36px); }
.reveal-target.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.situation-card .arrow { transition: transform 180ms ease, color 180ms ease; }
.situation-card:hover .arrow { transform: translateX(6px); }

.sector-stage .sector-photo,
.sector-copy > * {
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.sector-stage.is-switching .sector-photo {
  opacity: 0.18 !important;
  transform: scale(1.045);
}

.sector-stage.is-switching .sector-copy > * {
  opacity: 0;
  transform: translateY(12px);
}

.legacy-stage {
  position: relative;
  isolation: isolate;
}

.legacy-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: var(--green-900);
  transform: scaleX(0);
  transform-origin: left;
}

.legacy-stage.is-switching::after {
  animation: legacy-curtain 560ms cubic-bezier(0.7, 0, 0.25, 1) both;
}

.legacy-stage.is-switching .legacy-panel > * {
  animation: legacy-copy 560ms ease both;
}

@keyframes legacy-curtain {
  0% { transform: scaleX(0); transform-origin: left; }
  48% { transform: scaleX(1); transform-origin: left; }
  52% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes legacy-copy {
  0%, 50% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}


.services-image,
.planning-image { overflow: hidden; }

.services-photo {
  transition: transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.services-image:hover .services-photo { transform: scale(1.045); }

.planning-photo {
  transform: scale(1.07) translateY(var(--parallax-y, 0));
  transition: transform 120ms linear;
  will-change: transform;
}

.service-list a strong,
.service-list a span {
  transition: color 180ms ease, transform 180ms ease;
}

.service-list a:hover strong { transform: translateX(4px); }
.service-list a:hover span { transform: translateX(-4px); }

.lead-form label {
  transition: color 180ms ease, transform 180ms ease;
}

.lead-form label:focus-within {
  color: var(--clay);
  transform: translateY(-1px);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green-700);
  background: #fffefa;
  box-shadow: 0 0 0 4px rgba(47, 111, 94, 0.12);
  outline: 0;
}

.button.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: button-spin 650ms linear infinite;
}

@keyframes button-spin { to { transform: rotate(360deg); } }

.form-status:not(:empty) {
  animation: status-in 420ms ease both;
}

@keyframes status-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-list details { overflow: hidden; }
.faq-list summary { transition: color 180ms ease, background 180ms ease; }
.faq-list summary:hover { background: var(--stone-100); }
.faq-list details[open] summary { color: var(--clay); }

.sticky-whatsapp {
  animation: whatsapp-enter 600ms 900ms both, whatsapp-once 900ms 1650ms ease-in-out 1;
}

@keyframes whatsapp-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes whatsapp-once {
  0%, 100% { box-shadow: 0 16px 36px rgba(16,47,41,0.28); }
  50% { box-shadow: 0 16px 36px rgba(16,47,41,0.28), 0 0 0 9px rgba(46,118,87,0.16); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation: none !important;
  }
  .reveal-target {
    opacity: 1 !important;
    transform: none !important;
  }
  .planning-photo { transform: scale(1.02) !important; }
}

/* Conversion optimization: cold traffic */
[hidden],
.honeypot {
  display: none !important;
}

.hero-content.hero-single {
  grid-template-columns: minmax(0, 50rem);
  align-items: center;
}

.hero-secondary {
  max-width: 38rem;
  margin: -0.65rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.hero-agreement-link {
  display: inline-block;
  margin-top: 1rem;
  color: #f2d2bd;
  font-size: 0.88rem;
  font-weight: 600;
  text-underline-offset: 0.22rem;
}

.conversion-form,
.lead-form {
  scroll-margin-top: 5.25rem;
}

.form-modal-close {
  display: none;
}

.optional-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 400;
}

.compact-section {
  padding-block: 4rem;
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agreements-section {
  display: grid;
  gap: 1.5rem;
  padding: 4.5rem max(1rem, calc((100% - var(--max)) / 2));
  background: var(--green-900);
  color: var(--white);
}

.agreements-copy {
  max-width: 42rem;
}

.agreements-copy h2 {
  color: var(--white);
}

.agreements-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.agreements-copy .button {
  margin-top: 0.8rem;
}

.agreement-note {
  font-size: 0.78rem;
}

.agreements-panel {
  align-self: stretch;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.agreements-panel h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 1.35rem;
}

.agreements-panel ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agreements-panel li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.agreements-panel li::before {
  content: "";
  flex: 0 0 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #e8c5ab;
}

.agreements-panel > p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.process-section {
  padding-block: 4.5rem;
}

.process-steps {
  grid-template-columns: 1fr;
}

.finance-facts {
  display: grid;
  gap: 0;
  margin: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.finance-facts strong {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.lead-form input,
.lead-form select {
  min-height: 3.25rem;
}

.lead-form button[type="submit"] {
  margin-top: 0.9rem;
}

.form-status {
  min-height: 1.2rem;
}

.sticky-whatsapp {
  min-height: 3.6rem;
}

@media (max-width: 699px) {
  body.form-modal-open {
    overflow: hidden;
  }

  .contact-section.conversion-form {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    align-items: end;
    padding: 0.75rem;
    background: rgba(16, 47, 41, 0.62);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  body.form-modal-open .contact-section.conversion-form {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .contact-section.conversion-form .contact-copy {
    display: none;
  }

  .contact-section.conversion-form .lead-form {
    position: relative;
    width: min(100%, 32rem);
    max-height: min(88svh, 38rem);
    margin: 0 auto;
    overflow-y: auto;
    padding: 0.85rem;
    border-radius: 14px 14px 8px 8px;
    transform: translateY(1rem);
    transition: transform 180ms ease;
    overscroll-behavior: contain;
  }

  body.form-modal-open .contact-section.conversion-form .lead-form {
    transform: translateY(0);
  }

  .form-modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--stone-100);
    color: var(--green-950);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
  }

  .form-intro {
    margin-bottom: 0.7rem;
    padding: 0 2.35rem 0.7rem 0;
  }

  .form-intro h3 {
    margin-bottom: 0.2rem;
    font-size: 1.18rem;
    line-height: 1.2;
  }

  .form-intro p,
  .form-benefits,
  .form-assurances {
    display: none;
  }

  .form-step {
    gap: 0.7rem;
  }

  .form-grid {
    gap: 0.55rem;
  }

  .lead-form label {
    gap: 0.2rem;
    font-size: 0.8rem;
  }

  .lead-form input,
  .lead-form select,
  .phone-input-group {
    min-height: 2.72rem;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 0.62rem 0.7rem;
  }

  .phone-prefix {
    padding-inline: 0.7rem;
  }

  .field-error {
    min-height: 0.75rem;
    font-size: 0.68rem;
  }

  .form-next,
  .form-submit-whatsapp,
  .form-back {
    min-height: 2.85rem;
  }

  .choice-group {
    gap: 0.45rem;
  }

  .choice-group legend {
    font-size: 0.95rem;
  }

  .choice-grid {
    gap: 0.45rem;
  }

  .choice-card {
    min-height: 2.75rem;
    padding: 0.58rem 0.68rem;
  }

  .choice-card span {
    font-size: 0.84rem;
  }

  .form-note {
    font-size: 0.68rem;
    line-height: 1.35;
  }
  .hero {
    min-height: 43rem;
  }

  .hero-content.hero-single {
    min-height: 43rem;
    padding-top: 3rem;
  }

  .hero-copy h1 {
    max-width: 18ch;
  }

  .hero-facts {
    gap: 0.45rem;
  }

  .hero-facts strong {
    font-size: 0.96rem;
  }

  .hero-facts span {
    font-size: 0.67rem;
  }

  .hero-actions .button,
  .agreements-copy .button,
  .process-section > .button {
    width: 100%;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .agreements-section {
    padding-block: 3.75rem;
  }

  .capacity-card .button {
    min-height: 3rem;
  }

  .process-steps li {
    padding-block: 0.9rem;
  }

  .planning-copy {
    padding-block: 3.25rem;
  }

  .map-toolbar > span {
    max-width: 8rem;
  }

  .sticky-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: calc(100vw - 1.5rem);
  }
}

@media (min-width: 700px) {
  .agreements-section {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
    align-items: center;
  }

  .process-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }

  .process-steps li,
  .process-steps li:nth-child(odd),
  .process-steps li:nth-child(even) {
    grid-template-columns: 1fr;
    align-content: start;
    min-width: 0;
    padding: 1.1rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .process-steps li:last-child {
    border-right: 0;
  }

  .finance-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .finance-facts strong {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }

  .finance-facts strong:last-child {
    border-right: 0;
  }
}

@media (min-width: 1040px) {
  .hero {
    min-height: 78svh;
  }

  .hero-content.hero-single {
    min-height: 78svh;
    padding-block: 3.5rem 4.75rem;
  }

  .hero-copy h1 {
    max-width: 17ch;
  }

  .contact-section.conversion-form {
    padding-block: 4.5rem;
  }

  .agreements-section {
    padding-block: 5rem;
  }
}
/* WhatsApp advisor routing */
.whatsapp-global-status {
  position: fixed;
  right: 1rem;
  bottom: 5.25rem;
  z-index: 30;
  max-width: min(22rem, calc(100vw - 2rem));
  margin: 0;
  padding: 0;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.45;
}

.whatsapp-global-status:not(:empty) {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--green-950);
  box-shadow: 0 14px 34px rgba(16, 47, 41, 0.28);
}

.sticky-whatsapp[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.82;
}

.sticky-whatsapp[aria-busy="true"] img {
  animation: button-spin 700ms linear infinite;
}

@media (max-width: 699px) {
  .whatsapp-global-status {
    right: 0.75rem;
    bottom: 5rem;
    max-width: calc(100vw - 1.5rem);
  }

  .contact-section.conversion-form .phone-input-group,
  .contact-section.conversion-form .lead-form input,
  .contact-section.conversion-form .lead-form select {
    min-height: 2.72rem;
  }

  .contact-section.conversion-form .phone-prefix {
    padding-inline: 0.7rem;
  }

  .contact-section.conversion-form .field-error {
    min-height: 0.75rem;
    font-size: 0.68rem;
  }
}


.phone-input-group {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  min-height: 3.25rem;
  border: 1px solid rgba(16,47,41,0.2);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-input-group:focus-within {
  border-color: var(--green-700);
  background: #fffefa;
  box-shadow: 0 0 0 4px rgba(47, 111, 94, 0.12);
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border-right: 1px solid rgba(16,47,41,0.12);
  background: var(--stone-100);
  color: var(--muted);
  font-weight: 600;
}

.phone-input-group input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.phone-input-group input:focus {
  box-shadow: none;
}

.field-error {
  display: block;
  min-height: 1rem;
  color: #9b4b38;
  font-size: 0.74rem;
}

.lead-form label.is-invalid {
  color: #9b4b38;
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"] {
  border-color: #c26c56;
  background: #fff8f5;
}

.phone-input-group.is-invalid {
  border-color: #c26c56;
  background: #fff8f5;
}

.thanks-body {
  min-height: 100svh;
  background: radial-gradient(circle at top, rgba(93,141,121,0.18), transparent 38%), linear-gradient(180deg, #f7f3ea 0%, #fbfaf6 100%);
}

.thanks-shell {
  display: grid;
  place-items: center;
  min-height: 100svh;
  width: min(calc(100% - 2rem), 42rem);
  margin: 0 auto;
  padding: 2rem 0;
}

.thanks-card {
  width: 100%;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251,250,246,0.97);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  margin-bottom: 0.9rem;
  color: var(--green-950);
}

.thanks-copy,
.thanks-status,
.thanks-home {
  color: var(--muted);
}

.thanks-status {
  margin: 0 0 1rem;
  font-weight: 600;
}

.thanks-home {
  display: inline-flex;
  margin-top: 1rem;
  text-decoration: none;
}

.whatsapp-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.55rem;
  padding: 0.48rem 1.1rem 0.48rem 0.55rem;
  border-color: rgba(16, 47, 41, 0.22);
  box-shadow: 0 10px 24px rgba(16, 47, 41, 0.2);
}

.whatsapp-action img {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 2.35rem;
  padding: 0.38rem;
  border: 1px solid rgba(16, 47, 41, 0.08);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(16, 47, 41, 0.16);
  object-fit: contain;
}

.whatsapp-action span {
  line-height: 1.2;
}

.whatsapp-action:hover {
  border-color: rgba(16, 47, 41, 0.34);
  box-shadow: 0 14px 30px rgba(16, 47, 41, 0.24);
}

.whatsapp-action.is-loading img {
  opacity: 0;
}

.form-note a,
.footer-links a {
  color: var(--green-900);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
}

.legal-body {
  background: linear-gradient(180deg, var(--stone-50), var(--stone-100));
}

.legal-header {
  position: sticky;
  top: 0;
}

.legal-page {
  width: min(100% - 2rem, 940px);
  margin: 0 auto;
  padding: 8.5rem 0 4rem;
}

.legal-hero {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 0.7rem;
  color: var(--green-950);
}

.legal-hero p:last-child {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-content section {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 36px rgba(16,47,41,0.06);
}

.legal-content h2 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  color: var(--green-950);
}

.legal-content p {
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.legal-content p:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0 0 0.8rem;
  padding-left: 1.2rem;
  color: var(--charcoal);
}

.legal-content li + li {
  margin-top: 0.35rem;
}

@media (max-width: 720px) {
  .legal-page {
    width: min(100% - 1.25rem, 940px);
    padding-top: 7.25rem;
  }

  .legal-content section {
    padding: 1rem;
  }

}

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

.form-step[hidden] {
  display: none;
}

.form-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.form-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(47,111,94,0.18);
  border-radius: 999px;
  background: rgba(247,243,234,0.82);
  color: var(--green-950);
  font-size: 0.75rem;
  font-weight: 600;
}

.choice-group {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin: 0 0 0.2rem;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

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

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.1rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(16,47,41,0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-950);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.choice-card:hover,
.choice-card:focus-within {
  border-color: rgba(47,111,94,0.45);
  background: #fffefa;
  box-shadow: 0 0 0 4px rgba(47,111,94,0.1);
}

.choice-card input {
  flex: 0 0 auto;
  width: 1.05rem;
  min-width: 1.05rem;
  height: 1.05rem;
  min-height: 1.05rem;
  margin: 0;
  accent-color: var(--green-700);
}

.choice-card span {
  display: block;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.choice-card:has(input:checked) {
  border-color: var(--green-700);
  background: rgba(47,111,94,0.09);
  box-shadow: inset 0 0 0 1px rgba(47,111,94,0.18);
}

.choice-card.is-invalid {
  border-color: #c26c56;
  background: #fff8f5;
}

.form-actions.split-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.form-back {
  min-height: 3rem;
}

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

  .compact-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-actions.split-actions {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }
}
@media (max-width: 699px) {
  .contact-section.conversion-form {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  body.form-modal-open .contact-section.conversion-form {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .contact-section.conversion-form .contact-copy,
  .contact-section.conversion-form .form-intro p,
  .contact-section.conversion-form .form-benefits,
  .contact-section.conversion-form .form-assurances {
    display: none;
  }

  .contact-section.conversion-form .lead-form {
    max-height: min(88svh, 38rem);
    padding: 0.85rem;
    overflow-y: auto;
  }

  .contact-section.conversion-form .form-intro h3 {
    font-size: 1.18rem;
  }

  .contact-section.conversion-form .form-step {
    gap: 0.7rem;
  }

  .contact-section.conversion-form .form-grid {
    gap: 0.55rem;
  }

  .contact-section.conversion-form .choice-card {
    min-height: 2.75rem;
    padding: 0.58rem 0.68rem;
  }
}
/* Conversion refinements */
.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  margin-top: 0.65rem;
  color: var(--green-950);
  font-size: 0.72rem;
  font-weight: 600;
}

.form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.form-trust span::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green-700);
}

@media (max-width: 699px) {
  .hero {
    min-height: 38rem;
  }

  .hero-content.hero-single {
    min-height: 38rem;
    padding-top: 2.4rem;
    padding-bottom: 4.5rem;
  }

  .hero-secondary {
    margin-bottom: 1rem;
  }

  .contact-section.conversion-form .lead-form {
    max-height: min(88svh, 35rem);
    padding: 0.78rem;
    border-radius: 12px;
  }

  .contact-section.conversion-form .form-intro {
    margin-bottom: 0.5rem;
    padding-bottom: 0.55rem;
  }

  .contact-section.conversion-form .form-intro span {
    display: none;
  }

  .contact-section.conversion-form .form-intro h3 {
    max-width: 15rem;
    margin: 0;
    font-size: 1.08rem;
  }

  .contact-section.conversion-form .form-grid {
    gap: 0.45rem;
  }

  .contact-section.conversion-form .lead-form button[type="submit"] {
    min-height: 2.72rem;
    margin-top: 0.55rem;
  }

  .contact-section.conversion-form .form-trust {
    justify-content: center;
    gap: 0.28rem 0.55rem;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    line-height: 1.35;
    text-align: center;
  }

  .contact-section.conversion-form .form-note {
    margin-top: 0.45rem;
    font-size: 0.7rem;
    line-height: 1.4;
  }
}
/* Location and visual story */
.hero-image { object-position: 58% center; }
.hero-payment-note span { display: block; margin-top: 0.2rem; }
#fotografias,
#como-llegar { scroll-margin-top: 5rem; }

.gallery-section {
  overflow: hidden;
  padding: 5rem 0 5.5rem;
  background: var(--stone-100);
}

.gallery-heading {
  display: grid;
  gap: 0.75rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 1.8rem;
}

.gallery-heading h2 { max-width: 15ch; margin-bottom: 0; color: var(--green-950); }
.gallery-heading > p { max-width: 40rem; margin: 0; color: var(--muted); }
.story-carousel { --carousel-gutter: max(1rem, calc((100vw - var(--max)) / 2)); }
.story-carousel-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--carousel-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.story-carousel-viewport::-webkit-scrollbar { display: none; }
.story-carousel-viewport:focus-visible { outline-offset: -4px; }
.story-carousel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 var(--carousel-gutter) 1rem;
}
.story-slide {
  position: relative;
  flex: 0 0 min(76vw, 58rem);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: var(--green-950);
  box-shadow: 0 24px 54px rgba(16,47,41,0.16);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.story-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,20,0.02) 25%, rgba(7,24,20,0.9) 100%);
}
.story-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms ease; }
.story-slide[aria-current="true"] img { transform: scale(1.018); }
.story-slide-copy {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vw, 3rem);
  left: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  max-width: 38rem;
  color: var(--white);
}
.story-slide-copy > p { margin-bottom: 0.3rem; color: #f1c9ae; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.025em; }
.story-slide-copy h3 { margin: 0 0 0.45rem; color: var(--white); font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 3rem); font-weight: 500; letter-spacing: -0.02em; }
.story-slide-copy > span { display: block; max-width: 34rem; color: rgba(255,255,255,0.78); }
.story-slide-copy .button { margin-top: 0.8rem; }
.story-carousel-controls {
  display: grid;
  grid-template-columns: auto auto minmax(7rem, 1fr);
  gap: 1rem;
  align-items: center;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0.35rem auto 0;
}
.story-carousel-buttons { display: flex; gap: 0.45rem; }
.story-carousel-buttons button {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-950);
  font-size: 1.15rem;
  cursor: pointer;
}
.story-carousel-buttons button:disabled { cursor: default; opacity: 0.36; }
.story-carousel-count { margin: 0; color: var(--green-950); font-size: 0.8rem; font-variant-numeric: tabular-nums; font-weight: 600; }
.story-carousel-progress { height: 2px; overflow: hidden; background: rgba(16,47,41,0.14); }
.story-carousel-progress span { display: block; width: 100%; height: 100%; background: var(--clay); transform: scaleX(0.2); transform-origin: left center; transition: transform 260ms ease; }

.arrival-section {
  display: grid;
  background: var(--white);
}
.arrival-media { position: relative; min-height: 26rem; overflow: hidden; background: var(--green-950); }
.arrival-media > img { width: 100%; height: 100%; object-fit: cover; }
.arrival-distance {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  min-width: 8rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  background: rgba(16,47,41,0.88);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.arrival-distance strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.arrival-distance span { color: rgba(255,255,255,0.72); font-size: 0.75rem; }
.arrival-copy { padding: 4rem max(1rem, calc((100vw - var(--max)) / 2)); }
.arrival-copy h2 { max-width: 13ch; margin-bottom: 1rem; color: var(--green-950); }
.arrival-lead { max-width: 56ch; color: var(--muted); }
.arrival-facts { display: grid; gap: 0; margin: 1.8rem 0; border-top: 1px solid var(--line); }
.arrival-facts div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.arrival-facts dt { margin-bottom: 0.25rem; color: var(--clay); font-size: 0.75rem; font-weight: 600; }
.arrival-facts dd { margin: 0; color: var(--green-950); font-size: 0.9rem; font-weight: 600; line-height: 1.5; }
.arrival-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.arrival-reference {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.arrival-reference img { width: 7rem; aspect-ratio: 4 / 3; border-radius: 8px; object-fit: cover; }
.arrival-reference p,
.arrival-reference strong,
.arrival-reference span { display: block; margin: 0; }
.arrival-reference strong { margin-bottom: 0.2rem; color: var(--green-950); font-size: 0.86rem; }
.arrival-reference span { color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.arrival-note { display: block; margin-top: 1rem; color: var(--muted); font-size: 0.7rem; }

@media (max-width: 699px) {
  .hero-image { object-position: 62% center; }
  .gallery-section { padding-block: 4rem 4.5rem; }
  .gallery-heading { margin-bottom: 1.35rem; }
  .story-slide { flex-basis: calc(100vw - 3rem); aspect-ratio: 4 / 5; }
  .story-slide-copy h3 { font-size: 2rem; }
  .story-slide-copy > span { font-size: 0.86rem; }
  .story-carousel-controls { grid-template-columns: auto auto 1fr; }
  .arrival-copy { padding: 3.5rem 1rem; }
  .arrival-actions .button { width: 100%; }
  .site-footer { padding-bottom: 5.5rem; }
  .sticky-whatsapp {
    width: 3.6rem;
    max-width: 3.6rem;
    height: 3.6rem;
    min-height: 3.6rem;
    padding: 0.25rem;
  }
  .sticky-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .sticky-whatsapp img { width: 3rem; height: 3rem; }
}

@media (min-width: 700px) {
  .gallery-heading { grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr); align-items: end; }
  .arrival-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .arrival-facts div { padding: 1rem; border-right: 1px solid var(--line); }
  .arrival-facts div:last-child { border-right: 0; }
  .site-footer { grid-template-columns: minmax(16rem, 0.8fr) minmax(28rem, 1.35fr) minmax(14rem, 0.65fr); align-items: start; padding: 3.5rem max(1rem, calc((100% - var(--max)) / 2)); }
  .footer-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1040px) {
  .arrival-section { grid-template-columns: minmax(0, 1.05fr) minmax(32rem, 0.95fr); }
  .arrival-media { min-height: 46rem; }
  .arrival-copy { align-self: center; padding: 5rem clamp(3rem, 6vw, 6rem); }
}

@media (prefers-reduced-motion: reduce) {
  .story-slide img,
  .story-carousel-progress span { transition: none; }
  .story-slide[aria-current="true"] img { transform: none; }
}

.site-footer .footer-links a {
  color: rgba(255,255,255,0.82);
}

.closing-cta .button-primary {
  border-color: var(--stone-100);
  background: var(--stone-100);
  color: var(--green-950);
}

@media (min-width: 700px) {
  .footer-actions .footer-links { justify-content: flex-start; }
}

@media (min-width: 900px) {
  .premium-spaces-intro { margin-bottom: 1.75rem; }
  .premium-spaces-swipe { display: none; }
  .premium-spaces-grid {
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    grid-auto-flow: row;
    gap: 1.5rem;
    overflow: visible;
    padding: 0;
  }
  .premium-space-card {
    grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
    min-height: 30rem;
  }
  .premium-space-media {
    width: 100%;
    height: 100%;
    min-height: 30rem;
  }
  .premium-space-media img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
  .premium-space-copy {
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.25rem);
  }
  .premium-space-copy h3 { font-size: clamp(2.25rem, 3.2vw, 3.25rem); }
  .premium-space-features { gap: 0.7rem; margin: 1.35rem 0 1.6rem; padding-top: 1.2rem; }
  .premium-space-features li { font-size: 0.92rem; }
  .premium-space-copy .button { width: auto; }
  .premium-space-card:nth-child(even) .premium-space-media { order: 2; }
  .premium-space-card:nth-child(even) .premium-space-copy { order: 1; }
}

/* Hero carousel and lower-friction WhatsApp CTA */
.hero-carousel {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-shade { z-index: 1; }
.hero-content,
.hero-scroll { z-index: 2; }
.hero-slide {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.25s ease, transform 7.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 27rem;
}

.sticky-whatsapp {
  animation: whatsapp-enter 600ms 900ms both, whatsapp-attention 5.5s 2.4s ease-in-out infinite;
}

@keyframes whatsapp-attention {
  0%, 76%, 100% { box-shadow: 0 16px 36px rgba(16,47,41,0.28); }
  84% { box-shadow: 0 16px 36px rgba(16,47,41,0.28), 0 0 0 8px rgba(46,118,87,0.16); }
  92% { box-shadow: 0 16px 36px rgba(16,47,41,0.28), 0 0 0 14px rgba(46,118,87,0); }
}

@media (max-width: 699px) {
  .site-footer { padding-bottom: 6.75rem; }

  .sticky-whatsapp {
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: 0.75rem;
    width: auto;
    max-width: 24rem;
    height: auto;
    min-height: 3.75rem;
    margin-inline: auto;
    padding: 0.42rem 1.15rem 0.42rem 0.5rem;
    font-size: 1rem;
  }

  .sticky-whatsapp span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: nowrap;
  }

  .sticky-whatsapp img {
    width: 2.85rem;
    height: 2.85rem;
    flex-basis: 2.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shade { z-index: 1; }
.hero-content,
.hero-scroll { z-index: 2; }
.hero-slide {
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-slide.is-active { opacity: 1 !important; }
}