/* ═══════════════════════════════════════════════════════════════
   BCN ENCUENTRO PRENUPCIAL — Stylesheet
   Diseño mediterráneo luxury · 2025
   ═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy:   #0D1B2E;
  --navy2:  #162238;
  --navy3:  #1D2E4A;
  --ivory:  #FDFAF5;   /* V6: brighter warm white */
  --ivory2: #F5EDDC;   /* V6: warmer parchment */
  --ivory3: #EDE3CE;   /* V6: deeper parchment */
  --sand:   #E4D0A8;
  --gold:   #C8A96C;   /* V6: champagne-muted gold */
  --gold2:  #DEBA7A;   /* V6: warm soft gold */
  --gold3:  #A0804A;   /* V6: warm antique gold */
  --terra:  #B5603A;
  --terra2: #D4785A;
  --sage:   #6B8F71;
  --sage2:  #4A6B50;
  --white:  #FFFFFF;
  --text:   #2A2218;
  --textlt: #6B5E4A;

  --transition: 0.25s ease;
  --radius: 2px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, .serif { font-family: 'Cormorant Garamond', serif; }

.eyebrow {
  font-size: 9px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.lt  { color: var(--gold2); }
.eyebrow.lt::before { background: var(--gold2); }
.eyebrow.terra { color: var(--terra2); }
.eyebrow.terra::before { background: var(--terra2); }

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 24px;
}
.sec-title em  { font-style: italic; color: var(--gold3); }
.sec-title.lt  { color: var(--ivory); }
.sec-title.lt em { color: var(--gold2); }

.body-sm { font-size: 13px; line-height: 1.85; color: var(--textlt); }
.body-md { font-size: 14px; line-height: 1.85; color: var(--textlt); }
.body-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--navy);
}

/* ── LAYOUT ── */
.wrap      { max-width: 1020px; margin: 0 auto; padding: 80px 48px; }
.sec-dark  { background: var(--navy);  padding: 80px 48px; }
.sec-mid   { background: var(--navy2); padding: 80px 48px; }
.sec-ivory { background: var(--ivory2); padding: 80px 48px; }
.sec-dark .inner,
.sec-mid  .inner,
.sec-ivory .inner { max-width: 1020px; margin: 0 auto; }

/* ── GRADIENT BAND ── */
.band {
  height: 3px;
  background: linear-gradient(90deg,
    var(--ivory3) 0%,
    var(--gold3)  20%,
    var(--gold)   50%,
    var(--terra)  76%,
    var(--sage)   100%);
}

/* ════════════════════════════════ FLOATING NAV ════ */
.fnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,14,20,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(198,161,110,0.18);
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.fnav.visible { transform: translateY(0); }

.fnav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.fnav-logo {
  flex-shrink: 0;
  opacity: 0.9;
}
.fnav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #D0AE7A;
  line-height: 1;
}

.fnav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.fnav-links a {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: color 0.35s ease;
  position: relative;
}
.fnav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(198,161,110,0.55);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.fnav-links a:hover { color: #D0AE7A; }
.fnav-links a:hover::after { transform: scaleX(1); }
.fnav-links a.active { color: #D0AE7A; }

/* ════════════════════════════════ COVER ════ */
.cover {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.cover-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&q=85');
  background-size: cover;
  background-position: center 30%;
  transition: transform 0.1s ease-out;
}

/* Layered overlays — cinematic, more visible photo */
.cover-overlay {
  position: absolute; inset: 0;
  background: rgba(10,14,20,0.52);
  z-index: 1;
  pointer-events: none;
}
.cover-overlay-radial {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.cover-overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,20,0.25) 0%,
    rgba(10,14,20,0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Single refined frame — no inner double line */
.cover-frame {
  position: absolute;
  top: 22px; left: 22px; right: 22px; bottom: 22px;
  border: 1px solid rgba(198,161,110,0.32);
  z-index: 2;
  pointer-events: none;
}
.cv-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: rgba(198,161,110,0.55);
  border-style: solid;
  z-index: 3;
}
.cv-corner.tl { top: 14px; left: 14px;   border-width: 1px 0 0 1px; }
.cv-corner.tr { top: 14px; right: 14px;  border-width: 1px 1px 0 0; }
.cv-corner.bl { bottom: 14px; left: 14px;  border-width: 0 0 1px 1px; }
.cv-corner.br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }

.cover-main {
  position: relative; z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 72px;
  gap: 0;
}

/* Top label */
.cover-over {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: rgba(198,161,110,0.75);
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 40px;
}

/* Main title */
.cover-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 9.5vw, 112px);
  color: #F6F1EA;
  line-height: 0.98;
  letter-spacing: -1px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.18);
  margin: 0;
}
.cover-h1 em {
  display: block;
  font-style: italic;
  color: #D8B07A;
  font-weight: 300;
}

/* Subtitle */
.cover-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 24px);
  color: rgba(246,241,234,0.72);
  max-width: 700px;
  text-align: center;
  margin-top: 44px;
  margin-bottom: 0;
  line-height: 1.55;
}

/* Micro CTA — text only, no borders */
.cover-cta {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(198,161,110,0.55);
  font-weight: 400;
  margin-top: 52px;
  transition: color 0.4s ease;
  cursor: pointer;
}
.cover-cta:hover {
  color: rgba(198,161,110,0.88);
}

/* Footer */
.cover-foot {
  position: relative; z-index: 4;
  border-top: 1px solid rgba(198,161,110,0.12);
  padding: 18px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cv-fi {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(198,161,110,0.55);
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
}

/* Logo */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 0 18px rgba(198,161,110,0.15));
}
.logo-wrap svg {
  width: 150px;
  height: 130px;
}
.logo-wm { position: absolute; top: 32px; right: 40px; z-index: 3; opacity: 0.85; }

/* ════════════════════════════════ INDEX ════ */
.idx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 36px;
}
.idx-item {
  background: var(--white);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background var(--transition), transform var(--transition);
}
.idx-item:hover { background: var(--ivory2); transform: translateX(4px); }
.idx-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: rgba(201,162,96,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 46px;
}
.idx-label {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 400;
}
.idx-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 400;
}

/* ════════════════════════════════ EXEC SUMMARY ════ */
.exec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.exec-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
.exec-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 24px;
}
.e-stat { background: rgba(201,162,96,0.08); padding: 22px 14px; text-align: center; }
.e-sv {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; color: var(--gold2);
  line-height: 1; margin-bottom: 5px;
}
.e-sl {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,246,238,0.4); font-weight: 400;
}
.exec-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.exec-tag {
  font-size: 8px; letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(201,162,96,0.25);
  color: rgba(201,162,96,0.7);
  padding: 6px 13px; font-weight: 400;
}

/* ════════════════════════════════ PROBLEM CARDS ════ */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 36px;
}
.prob-card {
  background: var(--white);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.prob-card:hover { transform: translateY(-3px); }
.prob-card:nth-child(1) { border-top-color: var(--gold); }
.prob-card:nth-child(2) { border-top-color: var(--terra); }
.prob-card:nth-child(3) { border-top-color: var(--sage); }
.prob-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.prob-icon.g { background: rgba(201,162,96,0.12); }
.prob-icon.t { background: rgba(181,96,58,0.12); }
.prob-icon.s { background: rgba(107,143,113,0.12); }
.prob-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--navy);
  margin-bottom: 10px; font-weight: 400;
}
.prob-text { font-size: 13px; line-height: 1.8; color: var(--textlt); }

/* ════════════════════════════════ AFORO ════ */
.aforo-block {
  background: var(--navy);
  padding: 44px; margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px; align-items: center;
}
.aforo-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; color: var(--gold2);
  line-height: 1; text-align: center; font-weight: 300;
}
.aforo-unit {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250,246,238,0.3);
  font-weight: 400; text-align: center; margin-top: 4px;
}
.aforo-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.a-row {
  background: rgba(250,246,238,0.03);
  padding: 18px;
  border-left: 2px solid rgba(201,162,96,0.22);
}
.a-rv {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--gold2); line-height: 1;
}
.a-rl { font-size: 11px; color: rgba(250,246,238,0.42); margin-top: 4px; }

/* ════════════════════════════════ 6 ACTOS ════ */
.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 48px;
}

/* Wrapper: holds image card + external label below */
.act-wrap {
  display: flex;
  flex-direction: column;
}

.act-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: default;
  border: 2px solid rgba(201,162,96,0.45);
  box-sizing: border-box;
}

/* External acto label — below image */
.act-ext-label {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #D2AE72;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  padding: 12px 4px 0;
  text-align: center;
}
.act-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.act-card:hover .act-photo { transform: scale(1.03); }
.act-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,12,20,0.92) 8%,
    rgba(8,12,20,0.68) 40%,
    rgba(8,12,20,0.32) 100%
  );
  transition: background 1.2s ease;
}
.act-card:hover .act-overlay {
  background: linear-gradient(
    to top,
    rgba(8,12,20,0.96) 8%,
    rgba(8,12,20,0.72) 40%,
    rgba(8,12,20,0.36) 100%
  );
}
.act-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 36px;
}
.act-num {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #D2AE72;
  text-shadow: 0 1px 8px rgba(0,0,0,0.22);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}
.act-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 40px);
  color: #F6F1EA;
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.28);
}
.act-card:hover .act-title { color: #fff; }
.act-hour { font-size: 11px; color: rgba(250,246,238,0.5); }
.act-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(246,241,234,0.84);
  line-height: 1.6;
  max-width: 80%;
}

/* ════════════════════════════════ PROVIDERS ════ */
.prov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 44px;
}
.prov-card {
  position: relative;
  overflow: hidden;
  height: 260px;
  cursor: default;
}
.prov-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.prov-card:hover .prov-photo { transform: scale(1.03); }
.prov-ov {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,12,20,0.82) 12%,
    rgba(8,12,20,0.45) 48%,
    rgba(8,12,20,0.12) 100%
  );
  transition: background 1.2s ease;
}
.prov-card:hover .prov-ov {
  background: linear-gradient(
    to top,
    rgba(8,12,20,0.90) 12%,
    rgba(8,12,20,0.55) 48%,
    rgba(8,12,20,0.20) 100%
  );
}
.prov-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 22px;
}
.prov-nm {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  color: #F6F1EA;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
  transition: color 1.2s ease;
}
.prov-card:hover .prov-nm { color: #fff; }

/* ════════════════════════════════ FINANCIAL ════ */
.fin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.fin-card { background: var(--white); padding: 36px; }
.fin-card-title {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400; margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,162,96,0.15);
}
.fin-row {
  display: flex; justify-content: space-between;
  align-items: baseline; padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.fin-row-label { font-size: 13px; color: var(--textlt); }
.fin-row-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--navy); font-weight: 400;
}
.fin-row-val.pos { color: var(--sage2); }
.fin-row-val.neg { color: var(--terra); }
.fin-row.total-row {
  border-bottom: none; padding-top: 16px;
  border-top: 2px solid var(--gold); margin-top: 4px;
}
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 40px;
}
.kpi { background: var(--navy); padding: 28px 12px; text-align: center; }
.kpi-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; color: var(--gold2);
  line-height: 1; margin-bottom: 6px;
}
.kpi-l {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,246,238,0.35);
  font-weight: 400; line-height: 1.4;
}

/* ════════════════════════════════ TIMELINE ════ */
.tl-wrap { position: relative; margin-top: 48px; padding-left: 40px; }
.tl-spine {
  position: absolute; left: 0; top: 10px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,162,96,0.05) 100%);
}
.tl-item { position: relative; padding: 0 0 48px 40px; }
.tl-dot {
  position: absolute; left: -6px; top: 8px;
  width: 13px; height: 13px;
  border-radius: 50%; background: var(--gold);
}
.tl-dot.h { background: var(--ivory2); border: 2px solid var(--gold); }
.tl-week {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400; margin-bottom: 6px;
}
.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--navy);
  margin-bottom: 8px; font-weight: 400;
}
.tl-desc { font-size: 13px; color: var(--textlt); line-height: 1.75; max-width: 600px; }
.tl-sub { margin-top: 12px; padding-left: 16px; border-left: 1px solid rgba(201,162,96,0.22); }
.tl-si { font-size: 12px; color: var(--textlt); padding: 3px 0; }
.tl-si::before { content: '→ '; color: var(--gold); }

/* ════════════════════════════════ TEAM ════ */
/* Default 3-col layout for §08 (overrides 5-col base) */
#equipo .team-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Team section inner container — responsive wrapper */
.team-inner-wrap {
  max-width: 1020px;
  margin: 44px auto 0;
  padding: 0 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2px; margin-top: 44px;
}
.team-card {
  overflow: hidden;
  background: rgba(250,246,238,0.03);
  border-top: 2px solid rgba(201,162,96,0.15);
  transition: border-top-color var(--transition);
}
.team-card.lead { border-top-color: var(--gold); }
.team-card:hover { border-top-color: var(--gold2); }
.team-photo,
.team-lead-photo {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.team-photo      { height: 220px; }
.team-lead-photo { height: 260px; }
.team-card:hover .team-photo,
.team-card:hover .team-lead-photo { filter: grayscale(0%); }
.team-body { padding: 22px 20px; }
.team-role {
  font-size: 8px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold2);
  font-weight: 400; margin-bottom: 6px;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--ivory);
  margin-bottom: 10px; font-weight: 400; line-height: 1.2;
}
.team-desc { font-size: 12px; color: rgba(250,246,238,0.42); line-height: 1.65; }
.team-badge {
  display: inline-block; margin-top: 14px;
  font-size: 8px; letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(201,162,96,0.22);
  color: rgba(201,162,96,0.55);
  padding: 5px 11px; font-weight: 400;
}

/* ════════════════════════════════ IMPACT ════ */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 36px;
}
.impact-card {
  border: 1px solid rgba(201,162,96,0.16);
  padding: 32px; background: var(--white);
}
.impact-actor {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.impact-actor::before { content: ''; width: 14px; height: 1px; background: var(--gold); }
.impact-list { list-style: none; }
.impact-list li {
  font-size: 13px; line-height: 1.7; color: var(--textlt);
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid rgba(201,162,96,0.07);
  position: relative;
}
.impact-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.conv-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 36px;
}
.conv-item { text-align: center; padding: 28px; background: var(--ivory2); }
.conv-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; color: var(--gold3);
  line-height: 1; margin-bottom: 6px; font-weight: 300;
}
.conv-lbl {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--textlt);
  font-weight: 400; line-height: 1.5;
}

/* ════════════════════════════════ POSITIONING ════ */
.pos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.vs-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 28px; }
.vs-table th {
  padding: 11px 14px; text-align: left;
  font-size: 8px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 400;
  border-bottom: 1px solid rgba(201,162,96,0.2);
  color: rgba(250,246,238,0.35);
}
.vs-table th:last-child { color: var(--gold); }
.vs-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(250,246,238,0.04);
  color: rgba(250,246,238,0.65); vertical-align: middle;
}
.vs-table td:last-child { color: var(--gold2); font-weight: 400; }
.chk { color: var(--sage); }
.xmk { color: rgba(230,110,90,0.70); }
.pos-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 28px;
}
.pos-pillar { background: rgba(201,162,96,0.06); padding: 22px; }
.pos-pillar-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; color: var(--ivory);
  margin-bottom: 5px; font-weight: 400;
}
.pos-pillar-d { font-size: 12px; color: rgba(250,246,238,0.38); line-height: 1.6; }

/* ════════════════════════════════ CLOSING ════ */
.closing {
  min-height: 80vh;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 48px;
  overflow: hidden;
}
.closing-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80');
  background-size: cover; background-position: center;
}
.closing-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,27,46,0.88);
}
.closing-inner { position: relative; z-index: 2; max-width: 580px; }
.cl-label {
  font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(201,162,96,0.5);
  margin-bottom: 28px; font-weight: 400;
}
.cl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--ivory); font-weight: 300;
  line-height: 1.1; margin-bottom: 28px;
}
.cl-title em { font-style: italic; color: var(--gold2); }
.cl-hr {
  width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
}
.cl-text {
  font-size: 14px;
  color: rgba(250,246,238,0.68);
  line-height: 1.85; margin-bottom: 44px;
}
.cl-contact {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  color: rgba(250,246,238,0.3);
}

/* ════════════════════════════════ SCROLL TO TOP ════ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--navy);
  border: 1px solid rgba(201,162,96,0.3);
  color: var(--gold2);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 90;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--navy2); border-color: var(--gold); }

/* ════════════════════════════════ RESPONSIVE ════ */
@media (max-width: 900px) {
  .fnav { padding: 0 28px; height: 64px; }
  .fnav-brand-name { font-size: 16px; }
  .exec-grid, .fin-grid, .aforo-block,
  .impact-grid, .pos-inner { grid-template-columns: 1fr; }
  .prob-grid, .acts-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .prov-grid { grid-template-columns: repeat(3, 1fr); }
  .kpi-strip { grid-template-columns: repeat(3, 1fr); }
  .conv-strip { grid-template-columns: repeat(2, 1fr); }
  .idx-grid { grid-template-columns: 1fr; }
  .team-inner-wrap { padding: 0 28px; }
  .cover-h1 { font-size: clamp(52px, 10vw, 82px); }
  .cover-tag { font-size: 18px; max-width: 580px; }
}
@media (max-width: 600px) {
  .wrap, .sec-dark, .sec-mid, .sec-ivory { padding: 48px 24px; }
  .fnav { padding: 0 20px; }
  .fnav-links { gap: 24px; }
  .fnav-links a { letter-spacing: 0.18em; font-size: 11px; }
  .cover-main { padding: 88px 28px 52px; }
  .cover-h1 { font-size: clamp(44px, 12vw, 58px); letter-spacing: -0.5px; }
  .cover-over { font-size: 10px; letter-spacing: 0.38em; margin-top: 24px; margin-bottom: 28px; }
  .cover-tag { font-size: 16px; margin-top: 28px; max-width: 90%; }
  .cover-cta { margin-top: 36px; font-size: 10px; }
  .cover-foot { padding: 14px 28px; }
  .cv-fi { letter-spacing: 0.22em; font-size: 9px; }
  .logo-wrap svg { width: 120px; height: 104px; }
  .acts-grid, .prob-grid { grid-template-columns: 1fr; }
  .prov-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .conv-strip { grid-template-columns: 1fr 1fr; }
  .exec-stats { grid-template-columns: 1fr 1fr; }
  .aforo-rows { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-inner-wrap { padding: 0 20px; }
  .act-card { height: 340px; }
}


/* ═══════════════════════════════════════════════════════════════
   §05 PARTNERS — V6 EDITORIAL (Phase 05)
   ═══════════════════════════════════════════════════════════════ */

/* ── Section shell ── */
#proveedores.ep-ptnr-section {
  background: #F7F2E8;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

/* ── Background EP watermark ── */
.ep-ptnr-wm {
  position: absolute;
  top: -50px;
  right: -30px;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(200px, 30vw, 420px);
  font-weight: 700;
  color: #A07840;
  opacity: 0.055;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -10px;
}

/* ── Header layout ── */
.ep-ptnr-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 56px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(160,120,64,0.20);
}

.ep-ptnr-ey {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #A07840;
  font-weight: 500;
  margin-bottom: 20px;
}
.ep-ptnr-ey::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #A07840;
  vertical-align: middle;
  margin-right: 12px;
}

.ep-ptnr-tt {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.ep-ptnr-tt em {
  font-style: italic;
  color: #A07840;
}

.ep-ptnr-intro {
  font-size: 14px;
  color: var(--textlt);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 460px;
}

.ep-ptnr-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #A07840;
  font-weight: 500;
  opacity: 0.8;
}
.ep-ptnr-sep {
  opacity: 0.4;
}

/* ── Mosaic grid ── */
.ep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 265px;
  gap: 4px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px 64px 0;
  position: relative;
  z-index: 1;
}

/* Card shell */
.ep-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  background: var(--ivory3);
}

/* Featured first card — 2×2 */
.ep-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

/* Image layer */
.ep-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.10) saturate(0.78) contrast(0.90);
  transition: transform 1.4s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 1.4s ease;
}
.ep-card:hover .ep-card-img {
  transform: scale(1.045);
  filter: brightness(1.15) saturate(0.85) contrast(0.88);
}

/* Warm champagne wash — bottom only, very soft */
.ep-card-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(242,232,208,0.72) 0%,
    rgba(242,232,208,0.12) 45%,
    rgba(242,232,208,0.00) 100%
  );
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.ep-card:hover .ep-card-wash {
  opacity: 0.7;
}

/* Label strip */
.ep-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(247,242,232,0.95);
  padding: 11px 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid rgba(160,120,64,0.18);
  transition: background 0.4s ease, padding 0.4s ease;
}
.ep-card:hover .ep-card-body {
  background: rgba(250,246,238,1);
  padding: 13px 18px;
}

.ep-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-style: italic;
  color: #A07840;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  opacity: 0.75;
  line-height: 1;
}

.ep-card-nm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  transition: color 0.4s ease;
}
.ep-card:hover .ep-card-nm {
  color: #A07840;
}

/* Featured card: larger typography */
.ep-card:first-child .ep-card-nm {
  font-size: 22px;
}
.ep-card:first-child .ep-card-num {
  font-size: 14px;
}
.ep-card:first-child .ep-card-body {
  padding: 16px 24px;
}

/* ── Footer strip ── */
.ep-ptnr-foot {
  max-width: 1280px;
  margin: 4px auto 0;
  padding: 0 64px;
  position: relative;
  z-index: 1;
}
.ep-ptnr-foot-inner {
  background: var(--navy);
  padding: 26px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ep-ptnr-foot-lbl {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250,246,238,0.32);
  font-weight: 400;
}
.ep-ptnr-foot-sub {
  font-size: 11px;
  color: rgba(250,246,238,0.20);
  margin-top: 5px;
}
.ep-ptnr-foot-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold2);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   §04 EXPERIENCIA — light-image text overrides (Phase 05)
   ═══════════════════════════════════════════════════════════════ */

/* Warm champagne overlay — replaces dark cinematic one */
#experiencia .act-overlay {
  background: linear-gradient(
    to top,
    rgba(30, 20, 10, 0.78) 0%,
    rgba(20, 14, 6, 0.42) 45%,
    rgba(10, 8, 4, 0.10) 100%
  );
}
#experiencia .act-card:hover .act-overlay {
  background: linear-gradient(
    to top,
    rgba(30, 20, 10, 0.88) 0%,
    rgba(20, 14, 6, 0.52) 45%,
    rgba(10, 8, 4, 0.14) 100%
  );
}

/* Acto number label — warm gold, both legacy .act-num and new external label */
#experiencia .act-num,
#experiencia .act-ext-label {
  color: #D4AA6A;
}

/* Title — warm ivory with stronger shadow for contrast */
#experiencia .act-title {
  color: #F8F2E6;
  text-shadow: 0 2px 18px rgba(20,12,4,0.55);
}
#experiencia .act-card:hover .act-title {
  color: #fff;
}

/* Description — warm ivory */
#experiencia .act-desc {
  color: rgba(248,242,230,0.88);
  text-shadow: 0 1px 10px rgba(20,12,4,0.40);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ep-ptnr-hd {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 36px 44px;
  }
  .ep-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
    padding: 4px 36px 0;
  }
  .ep-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .ep-ptnr-foot { padding: 0 36px; }
}
@media (max-width: 600px) {
  #proveedores.ep-ptnr-section { padding: 64px 0 0; }
  .ep-ptnr-hd { padding: 0 24px 32px; }
  .ep-ptnr-tt { font-size: clamp(34px, 10vw, 52px); }
  .ep-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
    padding: 4px 24px 0;
    gap: 3px;
  }
  .ep-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .ep-card-nm { font-size: 13px; }
  .ep-card:first-child .ep-card-nm { font-size: 16px; }
  .ep-card:first-child .ep-card-body { padding: 12px 16px; }
  .ep-ptnr-foot { padding: 0 24px; }
  .ep-ptnr-foot-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 24px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   V6 EDITORIAL EXTENSION — Phase 03 — Global Visual Refinement
   Appended overrides — additive only — do not edit rules above.
   ═══════════════════════════════════════════════════════════════ */

/* ── Typography breathing ── */

.sec-title {
  line-height: 1.13;          /* V6: more air than original 1.08 */
  letter-spacing: -0.01em;
}

.body-md {
  line-height: 1.92;          /* V6: luxurious paragraph rhythm */
}

.body-lg {
  line-height: 1.68;          /* V6: slightly more air */
}

.eyebrow {
  letter-spacing: 5px;        /* V6: slightly less aggressive than 6px */
  margin-bottom: 20px;
}

.eyebrow::before {
  width: 22px;                /* V6: more delicate rule */
}

/* ── Section surface warmth ── */

/* Index section: pure white tiles → warm ivory */
.idx-item {
  background: var(--ivory);
}
.idx-item:hover {
  background: var(--ivory2);
}

/* Financial table cards: white → warm ivory */
.fin-card {
  background: var(--ivory);
}

/* Impact cards: white → warm ivory */
.impact-card {
  background: var(--ivory);
  border-color: rgba(160, 128, 74, 0.18);
}

/* ── Dark section warmth nudge ── */
/* Very subtle: lighten navy sections slightly to reduce visual weight */
.sec-dark  { background: #0F1E33; }   /* V6: hair warmer than #0D1B2E */
.sec-mid   { background: #16233C; }   /* V6: hair warmer than #162238 */

/* ── Cover overlay — lighter, softer first impression ── */
.cover-overlay {
  background: rgba(10,12,18,0.36);  /* V6 03: reduced from 0.46 — brighter atmosphere */
}
.cover-overlay-bottom {
  background: linear-gradient(
    to bottom,
    rgba(10,12,18,0.08) 0%,
    rgba(10,12,18,0.52) 100%
  );
}

/* ── Body background — crisp warm white ── */
body {
  background: var(--ivory);
}

/* ── Closing section overlay — warm and soft ── */
.closing-bg::after {
  background: rgba(13,20,34,0.48);  /* V6 04: reduced to 0.48 — brighter editorial ending */
}

/* ── Timeline accent warmth ── */
.tl-spine {
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(200,169,108,0.05) 100%);
}

.tl-dot {
  background: var(--gold);
}

/* ── KPI strip — warmer tile ── */
.kpi {
  background: var(--navy2);
}

/* ── §01 Resumen Ejecutivo — champagne background + dark-surface text overrides ── */
#resumen {
  background: #F2E8D0;  /* V6 03: warm champagne — light editorial transition after cover */
  position: relative;
  overflow: hidden;
}

/* EP watermark — Phase 04 */
#resumen .wm-resumen {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(220px, 30vw, 420px);
  font-weight: 700;
  color: #A07840;
  opacity: 0.13;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -8px;
}
#resumen .inner {
  position: relative;
  z-index: 1;
}

/* Eyebrow: was gold2 on dark → now antique gold on parchment */
#resumen .eyebrow.lt {
  color: var(--gold3);
}
#resumen .eyebrow.lt::before {
  background: var(--gold3);
}

/* Section title: was ivory on dark → now navy on parchment */
#resumen .sec-title.lt {
  color: var(--navy);
}
#resumen .sec-title.lt em {
  color: var(--gold3);
}

/* Pull quote: was ivory on dark → now warm deep navy */
#resumen .exec-quote {
  color: var(--navy);
  border-left-color: var(--gold);
}

/* Stat numbers: rich dark gold */
#resumen .e-sv {
  color: #A07840;
}

/* Stat labels: warm readable dark */
#resumen .e-sl {
  color: rgba(44, 34, 24, 0.65);
}

/* Stat tile: white semi-transparent card */
#resumen .e-stat {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(160, 120, 64, 0.15);
}

/* Tags: border and text darken to be visible on champagne */
#resumen .exec-tag {
  border-color: rgba(140, 100, 44, 0.35);
  color: rgba(140, 100, 44, 0.9);
}

/* ─────────────────────────────────────────────────────────────── */

/* ── §02 JUSTIFICACIÓN Y PROBLEMA ── */

.just {
  background: #ffffff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.just-in {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  max-width: 1000px;
  margin: 0 auto;
}

.just-left,
.just-right {
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.ey.d {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #A07840;
  margin-bottom: 16px;
}

/* H2 title */
.TT.c {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: #1C1408;
  margin-bottom: 20px;
  line-height: 1.15;
}

.TT.c em {
  font-style: italic;
}

/* Body paragraph */
.b1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #5C4A30;
  margin-bottom: 28px;
}

/* Market opportunity block */
.mkt {
  background: #F8F2E6;
  border-left: 3px solid #C9A870;
  padding: 22px 28px;
  margin-top: 8px;
}

.mkt p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #1C1408;
  margin: 0;
}

.mkt strong {
  color: #C9A870;
  font-weight: 700;
}

/* Problem cards */
.pc {
  background: #F8F2E6;
  border-top: 2px solid rgba(201, 168, 112, 0.24);
  padding: 20px 18px;
  margin-bottom: 16px;
}

.pc:last-child {
  margin-bottom: 0;
}

.pc-ic {
  font-size: 20px;
  margin-bottom: 9px;
  line-height: 1;
}

.pc-tt {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: #1C1408;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pc-tx {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #5C4A30;
  line-height: 1.72;
}

/* Watermark */
.just .wm {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: auto;
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  font-weight: 700;
  color: #C9A870;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}

/* ── §02 RESPONSIVE ── */

@media (max-width: 768px) {
  .just {
    padding: 60px 24px;
  }
  .just-in {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .just .wm {
    font-size: 80px;
    bottom: -10px;
    top: auto;
    left: -10px;
    right: auto;
  }
}


/* ── §07 METODOLOGÍA — met-* scaffold ── */

.met-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: stretch;
}

/* Left column — wraps the untouched .tl-wrap */
.met-main {
  /* transparent pass-through wrapper */
  min-width: 0;  /* prevents grid blowout on long text content */
}

/* Right column — stretches to match timeline height */
.met-sidebar {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.met-sidebar-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: static;
}

.met-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background-color: var(--ivory3);
  border: 1px solid rgba(201,162,96,0.10);
}

/* §07 six-image vertical journey — fills exact height of timeline */
.met-img-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  height: 100%;
}

.met-img-item {
  overflow: hidden;
  border: 2px solid rgba(201,162,96,0.35);
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  width: 100%;
}

.met-img-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.met-img-item:hover img {
  transform: scale(1.04);
}

/* ── §07 RESPONSIVE ── */

@media (max-width: 900px) {
  .met-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .met-img-stack {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .met-img-item {
    flex: 1 1 calc(33.33% - 8px);
    aspect-ratio: 4 / 3;
  }
  .met-image-frame {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .met-layout {
    gap: 28px;
  }
  .met-image-frame {
    /* retains 16/9 from tablet breakpoint — safe */
  }
}

/* ═══════════════════════════════════════════════════════════════
   END V6 EXTENSION — Phase 02A
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   §08 CONTACT EXTENSION — Phase 06
   Namespace: eq-contact-* / eq-ci-*
   ═══════════════════════════════════════════════════════════════ */

.eq-contact-ext {
  max-width: 1020px;
  margin: 96px auto 0;
  padding: 0 48px 80px;
}

.eq-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: linear-gradient(135deg, #F9F3E8 0%, #F2E8D0 60%, #EDE0C6 100%);
  padding: 72px 64px;
  position: relative;
}

/* Subtle gold accent line on left edge */
.eq-contact-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(168,128,72,0.45), transparent);
}

/* —— LEFT: editorial phrase —— */

.eq-contact-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #A07840;
  font-weight: 400;
  margin-bottom: 28px;
}

.eq-contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.12;
  color: #1A1208;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

.eq-contact-heading em {
  font-style: italic;
  color: #A07840;
}

.eq-contact-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(26,18,8,0.58);
  font-weight: 400;
  max-width: 340px;
}

/* —— RIGHT: contact information —— */

.eq-contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 8px;
}

.eq-ci-block {
  border-top: 1px solid rgba(168,128,72,0.22);
  padding-top: 20px;
}

.eq-ci-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #A07840;
  font-weight: 400;
  margin-bottom: 10px;
}

.eq-ci-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #1A1208;
  line-height: 1.45;
  display: block;
}

.eq-ci-value-muted {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(26,18,8,0.50);
  line-height: 1.4;
  margin-top: 2px;
}

.eq-ci-link {
  text-decoration: none;
  color: #1A1208;
  transition: color 0.25s ease;
}

.eq-ci-link:hover {
  color: #A07840;
}

/* thin gold rule below the panel */
.eq-contact-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,128,72,0.30), transparent);
  margin-top: 56px;
}

/* —— RESPONSIVE —— */

@media (max-width: 900px) {
  .eq-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 52px 44px;
  }
  .eq-contact-sub {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .eq-contact-ext {
    padding: 0 24px 56px;
  }
  .eq-contact-inner {
    padding: 44px 32px;
    gap: 40px;
  }
  .eq-contact-heading {
    font-size: clamp(32px, 8vw, 44px);
  }
  .eq-ci-value {
    font-size: 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   END §08 CONTACT EXTENSION — Phase 06
   ═══════════════════════════════════════════════════════════════ */
/* ════════════════════════════════ WRAPPER HELPERS ════ */
/* Responsive inner containers used inside dark/mid sections */
.acts-inner-wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 900px) {
  .acts-inner-wrap { padding: 0 28px; }
  .team-inner-wrap { padding: 0 28px; }
}
@media (max-width: 600px) {
  .acts-inner-wrap { padding: 0 20px; }
  .team-inner-wrap { padding: 0 20px; }
}