:root {
  --forest-dark: #0F2A1F;
  --forest: #1B4D3E;
  --forest-light: #2D6B57;
  --gold: #C9A961;
  --gold-deep: #B08A2E;
  --cream: #F5F1E8;
  --cream-light: #F7F3E8;
  --ink: #1a1a1a;
  --muted: rgba(245, 241, 232, 0.65);
  --muted-dark: rgba(15, 42, 31, 0.6);
  --line: rgba(201, 169, 97, 0.18);
  --line-dark: rgba(15, 42, 31, 0.12);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* === GATE DE ACCESO PRIVADO === */
.gate {
  position: fixed;
  inset: 0;
  background: var(--forest-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.gate.hidden { opacity: 0; visibility: hidden; }
.gate-inner {
  text-align: center;
  max-width: 460px;
  position: relative;
  z-index: 1;
}
.gate-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.gate-mark-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.gate-mark-text {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.gate-title {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.gate-sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}
.gate-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201, 169, 97, 0.3);
  margin-bottom: 28px;
}
.gate-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  letter-spacing: 0.5px;
}
.gate-form input::placeholder { color: rgba(245, 241, 232, 0.4); }
.gate-form button {
  background: var(--gold);
  border: none;
  padding: 0 28px;
  color: var(--forest-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
.gate-form button:hover { background: var(--cream); }
.gate-hint {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.gate-hint.error { color: #e8a87c; }

/* === NAVEGACIÓN === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 42, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}
.nav.visible { transform: translateY(0); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.brand-tag {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--gold);
  display: block;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
  padding: 100px var(--gutter) 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--forest-dark);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  animation: heroIn 1.2s ease-out;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 500;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(64px, 14vw, 200px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
}
.hero-line-1 { display: block; }
.hero-line-2 {
  display: block;
  color: var(--gold);
  margin-left: clamp(40px, 8vw, 120px);
}
.hero-tagline {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  margin-bottom: 56px;
  letter-spacing: 0.01em;
  max-width: 640px;
}
.hero-pillars {
  display: flex;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pillar-num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.pillar-label {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-value {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll svg { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* === SECCIONES === */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section-head {
  margin-bottom: clamp(48px, 7vw, 88px);
  max-width: 800px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-display);
  color: var(--forest-dark);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-title .accent {
  font-style: normal;
  font-weight: 400;
  color: var(--gold-deep);
  display: block;
}
/* Guard against any stray italic anywhere */
em, i, .lead, address, cite, dfn, var { font-style: normal; }
.section-sub {
  margin-top: 24px;
  font-size: 17px;
  color: var(--muted-dark);
  line-height: 1.7;
  max-width: 680px;
}
.lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--forest-dark);
  font-weight: 400;
  margin-bottom: 24px;
  font-style: normal;
}

/* === VISIÓN === */
.section-vision { background: var(--cream-light); }
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.vision-text p:not(.lead) {
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.8;
}
.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vp-card {
  padding: 36px 36px 32px;
  background: var(--cream);
  border-top: 1px solid var(--line-dark);
  position: relative;
  transition: background 0.4s ease;
}
.vp-card:last-child { border-bottom: 1px solid var(--line-dark); }
.vp-card:hover { background: #efe9da; }
.vp-card .vp-num {
  position: absolute;
  top: 36px;
  right: 36px;
}
.vp-num {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 500;
}
.vp-card h3 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  font-size: 28px;
  font-weight: 500;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}
.vp-card p {
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

/* === PROYECTO / MÉTRICAS === */
.section-proyecto {
  background: var(--forest-dark);
  color: var(--cream);
}
.section-proyecto .section-title { color: var(--cream); }
.section-proyecto .section-title em { color: var(--gold); }
.section-proyecto .section-eyebrow { color: var(--gold); }
.section-proyecto .section-sub { color: var(--muted); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 96px;
}
.metric {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.4s ease;
}
.metric:hover { background: rgba(201, 169, 97, 0.04); }
.metric-label {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.metric-value {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric-value small {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 2px;
  margin-left: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-style: normal;
}
.metric-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 4px;
}

/* Plan maestro */
.masterplan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.masterplan h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.masterplan p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.mp-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.mp-list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 14px;
}
.mp-list li span:first-child {
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}
.mp-list li span:last-child {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 17px;
}
.masterplan-visual { text-align: center; }
.masterplan-visual svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}
.mp-stage { transition: opacity 0.3s ease; }
.mp-stage:hover { opacity: 0.6; cursor: pointer; }
.masterplan-caption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* === ETAPAS === */
.etapas-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.etapa-card {
  background: var(--cream);
  padding: 36px 28px;
  position: relative;
  min-height: 240px;
  transition: background 0.4s ease;
}
.etapa-card:hover { background: var(--cream-light); }
.etapa-card-amenidades {
  background: var(--forest-dark);
  color: var(--cream);
}
.etapa-card-amenidades h3 { color: var(--cream); }
.etapa-card-amenidades p { color: var(--muted); }
.etapa-card-amenidades .etapa-num { color: var(--gold); }
.etapa-card-amenidades .etapa-status { color: var(--gold); border-color: var(--gold); }

.etapa-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.etapa-num {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.etapa-status {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold-deep);
  padding: 5px 10px;
  font-weight: 500;
}
.etapa-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--forest-dark);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.etapa-card p {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.7;
}

/* === FINANCIEROS === */
.section-financieros { background: var(--cream-light); }
.fin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
.fin-card {
  background: var(--cream);
  padding: 40px 36px;
  border-top: 1px solid var(--line-dark);
}
.fin-card-primary { background: var(--forest-dark); color: var(--cream); border-top-color: var(--gold); }
.fin-card-primary .fin-label { color: var(--gold); }
.fin-card-primary .fin-value { color: var(--cream); }
.fin-card-primary .fin-value small { color: var(--muted); }
.fin-card-primary .fin-bar { background: rgba(245,241,232,0.08); }
.fin-card-primary .fin-breakdown { border-top-color: var(--line); }
.fin-card-primary .fin-breakdown li { border-bottom-color: var(--line); color: var(--cream); }
.fin-card-primary .fin-breakdown li span:first-child { color: var(--muted); }
.fin-label {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.fin-value {
  display: block;
  font-family: var(--font-display);
  color: var(--forest-dark);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.fin-value small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-left: 10px;
  color: var(--muted-dark);
  text-transform: uppercase;
}
.fin-bar {
  height: 4px;
  background: rgba(15, 42, 31, 0.06);
  margin-bottom: 28px;
  overflow: hidden;
}
.fin-bar-fill {
  height: 100%;
  transition: width 1.5s ease;
}
.fin-breakdown {
  list-style: none;
  border-top: 1px solid var(--line-dark);
}
.fin-breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  color: var(--forest-dark);
}
.fin-breakdown li span:first-child { color: var(--muted-dark); }
.fin-breakdown li span:last-child { font-weight: 600; }

/* Catálogo */
.sub-title {
  font-family: var(--font-display);
  color: var(--forest-dark);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sub-sub {
  color: var(--muted-dark);
  font-size: 14px;
  margin-bottom: 36px;
}
.catalogo { margin-bottom: 72px; }
.cat-grid {
  background: var(--cream);
  padding: 32px 36px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.cat-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  grid-template-areas: "key name pct" "bar bar bar";
  gap: 8px 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
}
.cat-row:last-child { border-bottom: none; }
.cat-key {
  grid-area: key;
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.cat-name {
  grid-area: name;
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 500;
}
.cat-pct {
  grid-area: pct;
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  font-family: var(--font-display);
}
.cat-bar {
  grid-area: bar;
  height: 3px;
  background: rgba(15, 42, 31, 0.06);
  overflow: hidden;
}
.cat-bar div {
  height: 100%;
  background: var(--gold);
  transition: width 1s ease;
}

/* Resultado */
.resultado {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.resultado-card {
  padding: 40px;
  background: var(--forest-dark);
  color: var(--cream);
  text-align: center;
}
.resultado-card:first-child { background: var(--forest); }
.r-label {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.r-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.r-value small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-left: 8px;
  color: var(--muted);
  text-transform: uppercase;
}
.r-pct {
  display: block;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
}

/* === CALENDARIO / GANTT === */
.section-calendario { background: var(--cream); }
.gantt {
  background: var(--cream-light);
  border: 1px solid var(--line-dark);
  padding: 32px;
  margin-bottom: 72px;
  overflow-x: auto;
}
.gantt-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 16px;
  min-width: 720px;
}
.gantt-label-col {
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.gantt-scale {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted-dark);
  letter-spacing: 1px;
  font-family: var(--font-display);
  font-weight: 500;
}
.gantt-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  padding: 10px 0;
  min-width: 720px;
}
.gantt-label {
  font-size: 13px;
  color: var(--forest-dark);
  padding-right: 20px;
  font-weight: 500;
}
.gantt-track {
  height: 28px;
  background: rgba(15, 42, 31, 0.04);
  position: relative;
}
.gantt-bar {
  position: absolute;
  top: 4px;
  bottom: 4px;
  background: var(--forest-light);
  display: flex;
  align-items: center;
  padding: 0 10px;
  transition: opacity 0.3s ease;
}
.gantt-bar:hover { opacity: 0.8; }
.gantt-bar span {
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.gantt-bar-pre { background: var(--gold); }
.gantt-bar-pre span { color: var(--forest-dark); }
.gantt-bar-amen { background: var(--gold-deep); }
.gantt-bar-cob { background: var(--forest); }

/* Hitos */
.hitos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.hito {
  background: var(--cream-light);
  padding: 32px 28px;
  transition: background 0.4s ease;
}
.hito:hover { background: var(--cream); }
.hito-mes {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  margin-bottom: 16px;
}
.hito h4 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hito p {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.6;
}

/* === ESCENARIOS === */
.section-escenarios { background: var(--forest); color: var(--cream); }
.section-escenarios .section-title { color: var(--cream); }
.section-escenarios .section-title em { color: var(--gold); }
.section-escenarios .section-eyebrow { color: var(--gold); }
.section-escenarios .section-sub { color: var(--muted); }

.esc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.esc-card {
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid var(--line);
  padding: 36px 30px;
  position: relative;
  transition: transform 0.4s ease, background 0.4s ease;
}
.esc-card:hover {
  transform: translateY(-4px);
  background: rgba(245, 241, 232, 0.06);
}
.esc-base {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--gold);
}
.esc-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  margin-bottom: 24px;
  font-weight: 500;
}
.esc-tag-base { color: var(--gold); border-color: var(--gold); }
.esc-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.esc-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.esc-metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.esc-metric:last-of-type { border-bottom: none; }
.esc-metric span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.5px;
}
.esc-metric strong {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 20px;
  font-weight: 500;
}
.esc-base .esc-metric strong { color: var(--cream); }

.esc-insight {
  display: flex;
  gap: 28px;
  background: rgba(201, 169, 97, 0.08);
  padding: 36px 40px;
  align-items: flex-start;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.esc-insight-mark {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 56px;
  font-weight: 500;
  line-height: 0.8;
  flex-shrink: 0;
}
.esc-insight h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.esc-insight p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* === CONTACTO === */
.section-contacto { background: var(--cream-light); }
.contacto-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contacto-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.contacto-block {
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.cb-label {
  display: block;
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.cb-value {
  display: block;
  color: var(--forest-dark);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

/* === FOOTER === */
.footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-mark {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
.footer-name {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.footer-tag {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-meta {
  text-align: right;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.footer-meta p {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer-conf {
  font-size: 10px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  opacity: 0.7;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .vision-grid,
  .masterplan,
  .fin-grid,
  .resultado,
  .contacto-wrap { grid-template-columns: 1fr; gap: 40px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .etapas-timeline { grid-template-columns: repeat(2, 1fr); }
  .hitos-grid { grid-template-columns: 1fr; }
  .esc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}
@media (max-width: 640px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .etapas-timeline { grid-template-columns: 1fr; }
  .contacto-right { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .hero-pillars { gap: 24px; }
  .hero-scroll { display: none; }
  .cat-row { grid-template-columns: 60px 1fr 50px; }
}
