/* =============================================================
   Growtraveling — Sitio web
   Construido sobre colors_and_type.css (tokens del design system)
   Estilo: editorial, flat, sin gradientes ni sombras. Navy + crimson.
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Escala reducida para contexto web — el design system está calibrado para social/slides */
:root {
  --fs-hero:  clamp(38px, 5.5vw, 84px);
  --fs-h1:    clamp(28px, 3.5vw, 52px);
  --fs-h2:    clamp(22px, 2.5vw, 36px);
  --fs-h3:    20px;
  --fs-h4:    17px;
  --fs-body:  16px;
  --fs-small: 13px;
  --fs-micro: 11px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 920px; }

/* Section rhythm */
.section { padding: clamp(24px, 3vw, 48px) 0; }
.section--tight { padding: clamp(16px, 2vw, 32px) 0; }
.section--navy { background: var(--gt-navy); color: var(--fg-inverse); }
.section--cream { background: var(--bg-alt); }
.section--ivory { background: var(--bg-alt-warm); }

.eyebrow {
  font-family: var(--f-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); display: inline-block; }
.section--navy .eyebrow { color: var(--gt-amber); }
.section--navy .eyebrow::before { background: var(--gt-amber); }

.h-display {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.serif-lede {
  font-family: var(--f-serif);
  font-style: italic;
  line-height: 1.18;
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}
.section--navy .serif-lede { color: var(--gt-cream-yellow); }
.accent { color: var(--accent); }
.amber  { color: var(--gt-amber); }

/* Headings on dark / colored backgrounds (override design-system base h1-h3 ink color) */
.section--navy h2, .section--navy h3, .section--navy .h-display,
.hero h1, .dpage-hero h1, .cta-band h2 { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 0; cursor: pointer; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--gt-crimson-dark); }
.btn--primary:active { transform: scale(.97); }
.btn--navy { background: var(--gt-navy); color: #fff; }
.btn--navy:hover { background: var(--gt-navy-medium); }
.btn--ghost { background: transparent; color: var(--gt-navy); box-shadow: inset 0 0 0 2px var(--gt-navy); }
.btn--ghost:hover { background: var(--gt-navy); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--gt-navy); }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: var(--accent); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r-pill);
}
.badge--navy  { background: var(--gt-navy); }
.badge--cream { background: var(--gt-cream-yellow); color: var(--gt-navy); }
.badge--amber { background: var(--gt-amber); color: var(--gt-navy); }
.badge--outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }

/* =============================================================
   NAV
   ============================================================= */
/* Hero zone: nav + hero share one background image */
.hero-zone {
  position: relative;
  background: var(--gt-navy);
  overflow: hidden;
}
.hero-zone::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/hero-toronto.jpeg') center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.hero-zone > *:not(.mobile-menu) { position: relative; z-index: 1; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: none;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

/* Marca: logo original con colores, grande */
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  display: inline-flex;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav__logo:hover { transform: translateY(-2px) scale(1.02); }
.nav__logo img {
  height: 62px; width: auto;
  filter:
    drop-shadow(0.4px 0 0 rgba(255,255,255,.55))
    drop-shadow(-0.4px 0 0 rgba(255,255,255,.55))
    drop-shadow(0 0.4px 0 rgba(255,255,255,.55))
    drop-shadow(0 -0.4px 0 rgba(255,255,255,.55));
}

.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__menu { display: flex; align-items: center; gap: 4px; }

/* Botón Destinos (más grande) */
.dest-trigger {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; background: transparent; border: 0; cursor: pointer;
  font-family: var(--f-display); font-weight: 700; font-size: 19px;
  letter-spacing: -0.01em; text-transform: uppercase; color: #fff;
  border-radius: var(--r-pill);
  transition: background var(--dur-fast) var(--ease-out);
}
.dest-trigger:hover { background: rgba(255,255,255,.12); }
.dest-trigger svg { width: 20px; height: 20px; transition: transform var(--dur-base) var(--ease-out); }
.dest-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Barra de destinos desplegable (en flujo: empuja el hero hacia abajo) */
.dest-bar {
  background: var(--gt-navy-deep);
  max-height: 0; overflow: hidden;
}
.dest-bar[data-open="true"] { max-height: 320px; border-bottom: 1px solid var(--border-dark); }
.dest-bar__clip { min-height: 0; }
.dest-bar__inner {
  display: flex; flex-wrap: wrap; gap: 12px; padding: 22px 24px;
}
.dest-btn {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 13px 20px; border-radius: var(--r-pill);
  background: var(--gt-navy-medium); color: #fff;
  border: 1px solid var(--border-dark);
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: -0.01em; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.dest-btn:hover { background: var(--gt-amber); color: var(--gt-navy); transform: translateY(-2px); }
.dest-btn .fl { width: 28px; height: 20px; border-radius: 3px; flex: none; }

.nav__toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; color: #fff; }
.nav__toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu { display: none; }

@media (max-width: 880px) {
  .nav__menu, .nav__right .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__logo img { height: 40px; }
  .mobile-menu {
    display: block; position: fixed; inset: 72px 0 0; z-index: 99;
    background: var(--gt-navy); color: #fff;
    padding: 32px 24px; transform: translateY(-12px); opacity: 0;
    visibility: hidden; transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
    overflow-y: auto;
  }
  .mobile-menu[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu .mm-eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gt-amber); font-weight: 600; margin-bottom: 16px; }
  .mobile-menu a.mm-link { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-dark); font-family: var(--f-display); font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: -0.01em; }
  .mobile-menu a.mm-link .flag { font-size: 26px; }
  .mobile-menu .btn { display: inline-flex; margin-top: 28px; width: 100%; justify-content: center; }
}

/* =============================================================
   HERO (home)
   ============================================================= */
.hero { color: #fff; position: relative; overflow: hidden; }
.hero > * { position: relative; z-index: 1; }
.hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: stretch; padding: clamp(16px,2vw,32px) 0 clamp(24px,3vw,48px); }
.hero h1 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.035em; line-height: 0.94; font-size: clamp(36px, 4.8vw, 70px); margin: 0 0 20px; text-wrap: balance; color: #fff; }
.hero .eyebrow { color: var(--gt-amber); }
.hero .eyebrow::before { background: var(--gt-amber); }
.hero .serif-lede { font-size: clamp(18px, 2vw, 23px); max-width: 30ch; margin-bottom: 0; color: var(--gt-cream-yellow); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__cta-btn { margin-top: auto; align-self: flex-start; }
.hero__inner > div:first-child { display: flex; flex-direction: column; min-height: 100%; }
.hero__aside { align-self: start; margin-top: 0; }

/* Rail "El proceso" en la portada */
.hero-proc { display: flex; flex-direction: column; }
.hero-proc .eyebrow { margin-bottom: 14px; }
.hero-proc__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.96; font-size: clamp(18px, 2vw, 26px); color: #fff; margin: 0 0 14px; }
.hero-steps { display: flex; flex-direction: column; margin: 0; padding: 0; }
.hstep { padding: 11px 0; border-top: 1px solid var(--border-dark); }
.hstep:first-child { border-top: 0; padding-top: 0; }
.hstep__label { font-family: var(--f-display); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gt-amber); display: block; margin-bottom: 6px; }
.hstep__body h3 { font-family: var(--f-display); font-weight: 800; font-size: 19px; text-transform: uppercase; letter-spacing: -0.015em; color: #fff; margin: 0 0 5px; line-height: 1; }
.hstep__body p { margin: 0; font-size: 14px; color: var(--gt-cream-yellow); opacity: .82; line-height: 1.45; }
.hero .note-pill { margin-top: 24px; align-self: flex-start; background: var(--gt-navy-medium); color: var(--gt-cream-yellow); }
.hero-proc__cta { margin-top: 20px; align-self: flex-start; }

/* =============================================================
   STATS
   ============================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.section--navy .stats { border-color: var(--border-dark); }
.stat { padding: 36px 28px; border-right: 1px solid var(--border); }
.section--navy .stat { border-color: var(--border-dark); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(40px, 5vw, 60px); letter-spacing: -0.03em; line-height: 1; color: var(--gt-navy); }
.section--navy .stat strong { color: #fff; }
.stat strong .u { color: var(--accent); }
.section--navy .stat strong .u { color: var(--gt-amber); }
.stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--fg-3); font-weight: 500; }
.section--navy .stat span { color: var(--gt-cream-yellow); opacity: .8; }

/* =============================================================
   Section header block
   ============================================================= */
.sec-head { max-width: 720px; }
.sec-head h2 { font-size: var(--fs-h2); margin: 0 0 18px; }
.sec-head .serif-lede { font-size: clamp(18px, 2vw, 22px); }
.sec-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; max-width: none; }

/* =============================================================
   Feature grid (por qué nosotros)
   ============================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.feature:hover { border-color: var(--gt-navy); transform: translateY(-3px); }
.feature__num { font-family: var(--f-display); font-weight: 700; font-size: 14px; color: var(--accent); letter-spacing: 0.1em; }
.feature h3 { font-family: var(--f-display); font-weight: 800; font-size: 21px; letter-spacing: -0.01em; margin: 16px 0 10px; color: var(--gt-navy); }
.feature p { margin: 0; font-size: 15px; color: var(--fg-2); line-height: 1.55; }

/* =============================================================
   Destinos grid
   ============================================================= */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }

/* Destinos tiles — adopta el módulo "Destinations" del design system (paleta cálida) */
.dtile {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1 / 1; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform var(--dur-base) var(--ease-out);
}
.dtile:hover { transform: translateY(-4px); }
.dtile__top { display: flex; justify-content: space-between; align-items: flex-start; }
.dtile__chip { width: 42px; height: 42px; border-radius: var(--r-pill); display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-hero); font-size: 21px; letter-spacing: .04em; flex: none; }
.dtile__flag { width: 58px; height: 42px; border-radius: 5px; }
.dtile__name { font-family: var(--f-display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); text-transform: uppercase; letter-spacing: -0.025em; line-height: 0.92; margin: 0; }
.dtile__sub { font-family: var(--f-serif); font-style: italic; font-size: clamp(18px, 2vw, 22px); line-height: 1.08; margin: 10px 0 0; }
.dtile__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.dtile__stat { font-family: var(--f-display); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.dtile__arrow svg { width: 22px; height: 22px; transition: transform var(--dur-fast) var(--ease-out); display: block; }
.dtile:hover .dtile__arrow svg { transform: translateX(4px); }

.dtile--warm  { background: var(--gt-warm-dark); color: var(--gt-cream-yellow); }
.dtile--warm .dtile__name { color: var(--gt-cream-yellow); }
.dtile--warm .dtile__sub  { color: var(--gt-amber); }
.dtile--warm .dtile__chip { background: var(--gt-amber); color: var(--gt-warm-dark); }

.dtile--amber { background: var(--gt-amber); color: var(--gt-warm-dark); }
.dtile--amber .dtile__name { color: var(--gt-warm-dark); }
.dtile--amber .dtile__sub  { color: var(--gt-warm-dark); opacity: .92; }
.dtile--amber .dtile__chip { background: var(--gt-warm-dark); color: var(--gt-amber); }

.dtile--light { background: var(--gt-white); color: var(--gt-warm-dark); border: 1px solid var(--gt-line); }
.dtile--light .dtile__name { color: var(--gt-warm-dark); }
.dtile--light .dtile__sub  { color: var(--gt-amber); }
.dtile--light .dtile__chip { background: var(--gt-warm-dark); color: var(--gt-amber); }
.dtile--warm .dtile__stat { color: var(--gt-cream-yellow); }


/* Destination tiles with background photo */
.dtile--photo {
  position: relative;
  overflow: hidden;
}
.dtile--photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: var(--bg-pos, center);
  opacity: 0.22;
  transition: opacity 0.3s ease;
}
.dtile--photo:hover::before { opacity: 0.35; }
.dtile--photo > * { position: relative; z-index: 1; }

/* Twemoji flags — rendering consistente en todo navegador (del design system) */
.fl { display: inline-block; background-size: cover; background-position: center; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.fl-ie { background-image: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f1ee-1f1ea.svg'); }
.fl-ca { background-image: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f1e8-1f1e6.svg'); }
.fl-mt { background-image: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f1f2-1f1f9.svg'); }
.fl-au { background-image: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f1e6-1f1fa.svg'); }
.fl-nz { background-image: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f1f3-1f1ff.svg'); }
.fl-us { background-image: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f1fa-1f1f8.svg'); }

/* Photo placeholder helper (intentional, branded) */
.ph { position: relative; background: var(--gt-navy-deep); overflow: hidden; }
.ph__label { position: absolute; bottom: 12px; left: 12px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
.ph__big { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 90px; }

/* =============================================================
   Proceso (steps)
   ============================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.step { position: relative; padding-top: 28px; border-top: 2px solid var(--gt-navy); }
.section--navy .step { border-color: var(--gt-amber); }
.step__n { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: var(--accent); letter-spacing: 0.08em; }
.section--navy .step__n { color: var(--gt-amber); }
.step h3 { font-family: var(--f-display); font-weight: 800; font-size: 20px; letter-spacing: -0.01em; margin: 14px 0 10px; }
.step p { margin: 0; font-size: 14px; color: var(--fg-2); line-height: 1.55; }
.section--navy .step h3 { color: #fff; }
.section--navy .step p { color: var(--gt-cream-yellow); opacity: .82; }

/* Steps — variante compacta (páginas de destino) */
.steps--compact { margin-top: 20px; gap: 12px; }
.steps--compact .step { padding-top: 14px; }
.steps--compact .step__n { font-size: 11px; }
.steps--compact .step h3 { font-size: 15px; margin: 7px 0 5px; }
.steps--compact .step p { font-size: 13px; }
/* Sec-head pequeño — El proceso en destinos */
.sec-head--sm { margin-bottom: 0; }
.sec-head--sm .h-display { font-size: clamp(15px, 1.8vw, 22px); letter-spacing: -0.02em; margin: 0; }

.note-pill { display: inline-flex; align-items: center; gap: 12px; margin-top: 48px; padding: 14px 22px; border-radius: var(--r-pill); background: var(--gt-cream-yellow); color: var(--gt-navy); font-weight: 500; font-size: 15px; }
.section--navy .note-pill { background: var(--gt-navy-medium); color: var(--gt-cream-yellow); }
.note-pill__zero { font-family: var(--f-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; color: var(--gt-amber); line-height: 1; }

/* =============================================================
   Testimonios (tarjetas reales con link a reel)
   ============================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; display: flex; flex-direction: column; gap: 0;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.testi-card:hover { border-color: var(--gt-navy); transform: translateY(-3px); }
.testi-card__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gt-navy); color: var(--gt-amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 17px;
  flex: none; margin-bottom: 20px;
}
.testi-card__quote {
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; line-height: 1.35; color: var(--gt-navy);
  margin: 0; flex: 1; text-wrap: pretty;
}
.testi-card__who { margin-top: 20px; display: flex; flex-direction: column; gap: 3px; }
.testi-card__name { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: var(--gt-navy); }
.testi-card__dest { font-size: 13px; color: var(--fg-3); }
.testi-card__btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 10px 18px;
  border-radius: var(--r-pill); border: 1.5px solid var(--gt-navy);
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--gt-navy);
  background: transparent; align-self: flex-start;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.testi-card__btn svg { width: 16px; height: 16px; }
.testi-card__btn:hover { background: var(--gt-navy); color: #fff; transform: translateY(-1px); }

/* Testi cards con foto de fondo */
.testi-card--photo {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  border-color: transparent;
  min-height: 340px;
}
.testi-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 99, 0.72);
  border-radius: inherit;
  z-index: 0;
}
.testi-card--photo > * { position: relative; z-index: 1; }
.testi-card--photo .testi-card__quote { color: #fff; }
.testi-card--photo .testi-card__name { color: #fff; }
.testi-card--photo .testi-card__dest { color: var(--gt-amber); }
.testi-card--photo .testi-card__avatar { background: rgba(255,255,255,.18); color: var(--gt-amber); border: 1.5px solid rgba(255,255,255,.25); }
.testi-card--photo .testi-card__btn { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); }
.testi-card--photo .testi-card__btn:hover { background: #fff; color: var(--gt-navy); }

/* Featured card (José) con foto */
.testi-featured__card--photo {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  border-color: rgba(255,255,255,.15);
  align-self: stretch;
  min-height: 320px;
  padding: 0;
}
.testi-featured__card--photo::before { display: none; }
.testi-featured__card--photo > * { position: relative; z-index: 1; }

.testi-cta {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.testi-cta .serif-lede { margin: 0; font-size: 22px; color: var(--gt-navy); }

/* Featured testimonial callout (José / Más que un curso) */
.testi-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: var(--gt-navy);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.testi-featured__quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  color: #fff;
  margin: 12px 0 16px;
  text-wrap: pretty;
}
.testi-featured__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.testi-featured__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testi-featured__card .testi-card__quote { color: rgba(255,255,255,.9); }
.testi-featured__card .testi-card__name { color: #fff; }
.testi-featured__card .testi-card__dest { color: var(--gt-amber); }

@media (max-width: 640px) {
  .testi-featured { grid-template-columns: 1fr; padding: 28px 22px; }
}

.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; }
.section--navy .quote, .section--cream .quote { background: #fff; }
.quote__mark { font-family: var(--f-serif); font-size: 60px; line-height: 0.6; color: var(--accent); height: 30px; }
.quote blockquote { font-family: var(--f-serif); font-style: italic; font-size: 19px; line-height: 1.34; color: var(--gt-navy); margin: 18px 0 0; flex: 1; text-wrap: pretty; }
.quote cite { display: flex; align-items: center; gap: 12px; margin-top: 24px; font-style: normal; }
.quote__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gt-navy); color: var(--gt-amber); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 700; font-size: 16px; flex: none; }
.quote__who { font-family: var(--f-display); font-weight: 700; font-size: 14px; color: var(--gt-navy); }
.quote__where { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* =============================================================
   CTA band
   ============================================================= */
.cta-band { background: var(--accent); color: #fff; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-band h2 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.025em; font-size: var(--fs-h2); margin: 0 0 18px; }
.cta-band p { font-family: var(--f-serif); font-style: italic; font-size: 20px; color: #ffe3e7; margin: 0 auto 32px; max-width: 44ch; }
.btn--cream { background: #fff; color: var(--accent); }
.btn--cream:hover { background: var(--gt-cream-yellow); color: var(--accent); }
.cta-band .btn--cream { background: #fff; color: var(--accent); }
.cta-band .btn--cream:hover { background: var(--gt-cream-yellow); }

/* =============================================================
   Contact channels
   ============================================================= */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.channel { display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: var(--r-lg); border: 1px solid var(--border-dark); background: var(--gt-navy-deep); transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.channel:hover { border-color: var(--gt-amber); transform: translateY(-2px); }
.channel__icon { width: 46px; height: 46px; flex: none; border-radius: var(--r-md); background: var(--gt-navy-medium); display: flex; align-items: center; justify-content: center; color: var(--gt-amber); }
.channel__icon svg { width: 22px; height: 22px; }
.channel__k { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: #fff; }
.channel__v { font-size: 13px; color: var(--gt-cream-yellow); opacity: .8; margin-top: 3px; }

/* =============================================================
   FORM
   ============================================================= */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(20px, 3vw, 32px); }
.form-card__head h3 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.025em; font-size: clamp(20px, 2.4vw, 28px); margin: 0 0 8px; color: var(--gt-navy); }
.form-card__head p { font-family: var(--f-serif); font-style: italic; font-size: 15px; color: var(--fg-2); margin: 0 0 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--f-display); font-weight: 600; font-size: 13px; letter-spacing: 0.02em; color: var(--gt-navy); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 15px; color: var(--fg);
  padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--bg-alt); transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  width: 100%;
}
.field textarea { min-height: 80px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(204,10,36,.1); }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-3); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 16px; }
.form-foot { text-align: center; font-size: 13px; color: var(--fg-3); margin: 10px 0 0; }
.field label .req { color: var(--gt-crimson); }

/* Custom flag dropdown (flag-icons) — reemplaza <select> nativo donde se necesitan banderas SVG */
.fsel { position: relative; }
.fsel__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; text-align: left; font-family: var(--f-body); font-size: 15px; color: var(--fg);
  padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--bg-alt); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.fsel__btn:hover { background: #fff; }
.fsel.is-open .fsel__btn, .fsel__btn:focus-visible {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(204,10,36,.1);
}
.fsel__val { display: flex; align-items: center; gap: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fsel__val--placeholder { color: var(--fg-3); }
.fsel__chev { width: 18px; height: 18px; flex: none; color: var(--fg-3); transition: transform var(--dur-fast) var(--ease-out); }
.fsel.is-open .fsel__chev { transform: rotate(180deg); }
.fsel__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: 0 8px 28px rgba(28,20,99,.16);
  max-height: 260px; overflow-y: auto; padding: 6px; margin: 0;
  display: none; list-style: none;
}
.fsel.is-open .fsel__list { display: block; }
.fsel__list [role="option"] {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; font-size: 15px; color: var(--fg); cursor: pointer;
}
.fsel__list [role="option"]:hover,
.fsel__list [role="option"][aria-selected="true"] { background: var(--bg-alt); }
.fsel__list [role="option"].fsel__opt--placeholder { color: var(--fg-3); }
.fsel .fi { width: 22px; height: 16px; flex: none; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); background-size: cover; }
.fsel--invalid .fsel__btn { border-color: var(--gt-crimson); box-shadow: 0 0 0 3px rgba(204,10,36,.12); }
.form-aside-li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border-dark); }
.form-aside-li:last-child { border-bottom: 0; }
.form-aside-li .ic { color: var(--gt-amber); flex: none; margin-top: 2px; }
.form-aside-li .ic svg { width: 22px; height: 22px; }
.form-aside-li b { font-family: var(--f-display); font-weight: 700; font-size: 16px; color: #fff; display: block; }
.form-aside-li span { font-size: 14px; color: var(--gt-cream-yellow); opacity: .82; }

/* =============================================================
   DESTINATION PAGE
   ============================================================= */
.dpage-hero { background: var(--gt-navy); color: #fff; position: relative; overflow: hidden; }
.dpage-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: clamp(56px,7vw,104px) 0; }
.dpage-hero .crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gt-cream-yellow); opacity: .7; margin-bottom: 28px; font-weight: 500; }
.dpage-hero .crumbs a:hover { color: #fff; opacity: 1; }
.dpage-hero h1 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.035em; line-height: 0.92; font-size: clamp(52px, 7vw, 104px); margin: 0 0 22px; display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.dpage-hero-badge-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.dpage-hero-badge-row .fl { width: 34px; height: 24px; border-radius: 4px; flex-shrink: 0; display: inline-block; }
.dpage-hero .serif-lede { font-size: clamp(19px, 2.1vw, 25px); max-width: 32ch; margin-bottom: 32px; }
.dpage-hero__photo { align-self: stretch; min-height: 420px; max-height: 520px; border-radius: var(--r-lg); border: 1px solid var(--border-dark); overflow: hidden; }

/* Quick facts */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.fact { padding: 30px 28px; border-right: 1px solid var(--border); }
.fact:last-child { border-right: 0; }
.fact__k { font-family: var(--f-display); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); }
.fact__v { font-family: var(--f-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.02em; color: var(--gt-navy); margin-top: 10px; line-height: 1.05; }
.fact__v .accent { color: var(--accent); }
.fact__sub { font-size: 13px; color: var(--fg-3); margin-top: 6px; }

/* Why destination — list sin viñetas */
.why-list { display: grid; gap: 4px; margin-top: 44px; }
.why-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--border); align-items: start; }
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item__n { font-family: var(--f-display); font-weight: 700; font-size: 16px; color: var(--accent); padding-top: 4px; }
.why-item h3 { font-family: var(--f-display); font-weight: 800; font-size: clamp(20px, 2.3vw, 26px); letter-spacing: -0.01em; color: var(--gt-navy); margin: 0 0 8px; }
.why-item p { margin: 0; font-size: 16px; color: var(--fg-2); line-height: 1.55; max-width: 60ch; }

/* Cost breakdown */
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cost-box { background: var(--gt-navy); color: #fff; border-radius: var(--r-xl); padding: 40px; }
.cost-box__top { display: flex; align-items: baseline; gap: 10px; padding-bottom: 24px; border-bottom: 1px solid var(--border-dark); }
.cost-box__from { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gt-cream-yellow); opacity: .7; }
.cost-box__amount { font-family: var(--f-display); font-weight: 800; font-size: clamp(40px, 5vw, 58px); letter-spacing: -0.03em; line-height: 1; }
.cost-box__amount .cur { color: var(--gt-amber); }
.cost-box__per { font-size: 14px; color: var(--gt-cream-yellow); opacity: .8; }
.includes { margin-top: 24px; display: grid; gap: 2px; }
.includes li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-dark); font-size: 15px; color: var(--gt-cream-yellow); }
.includes li:last-child { border-bottom: 0; }
.includes li svg { width: 18px; height: 18px; color: var(--gt-amber); flex: none; }
.cost-copy h2 { font-size: var(--fs-h2); margin: 0 0 18px; }
.cost-copy .serif-lede { font-size: 21px; margin-bottom: 20px; }
.cost-copy p { font-size: 16px; color: var(--fg-2); line-height: 1.6; margin: 0 0 16px; }

/* Big testimonial */
.big-quote { max-width: 940px; margin: 0 auto; text-align: center; }
.big-quote blockquote { font-family: var(--f-serif); font-style: italic; font-size: clamp(26px, 3.6vw, 42px); line-height: 1.2; color: var(--gt-navy); margin: 0; text-wrap: balance; }
.big-quote .q-mark { font-family: var(--f-serif); font-size: 90px; color: var(--accent); line-height: 0.5; height: 40px; display: block; }
.big-quote cite { display: inline-flex; align-items: center; gap: 14px; margin-top: 40px; font-style: normal; }
.big-quote .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gt-navy); color: var(--gt-amber); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 700; font-size: 19px; }
.big-quote .who { text-align: left; }
.big-quote .who b { font-family: var(--f-display); font-weight: 700; font-size: 16px; color: var(--gt-navy); display: block; }
.big-quote .who span { font-size: 13px; color: var(--fg-3); }

/* Other destinations strip */
.more-dest { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 44px; }
.more-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 12px; border: 1px solid var(--border); border-radius: var(--r-lg); transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.more-card:hover { border-color: var(--gt-navy); transform: translateY(-3px); }
.more-card .flag { font-size: 38px; }
.more-card .nm { font-family: var(--f-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--gt-navy); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--gt-navy-deep); color: #fff; padding: clamp(28px,3.5vw,44px) 0 24px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-dark); }
.footer__brand img { height: 18px; margin-bottom: 10px; }
.footer__brand p { font-family: var(--f-serif); font-style: italic; font-size: 12px; color: var(--gt-cream-yellow); max-width: 30ch; line-height: 1.4; margin: 0; }
.footer__col h4 { font-family: var(--f-display); font-weight: 700; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gt-amber); margin: 0 0 8px; }
.footer__col a { display: block; padding: 2px 0; font-size: 12px; color: var(--gt-cream-yellow); opacity: .82; transition: opacity var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out); }
.footer__col a:hover { opacity: 1; color: #fff; }
.footer__col a .flag { margin-right: 8px; }
.footer__col a .fl { width: 16px; height: 11px; border-radius: 2px; margin-right: 6px; vertical-align: middle; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 14px; font-size: 12px; color: var(--gt-cream-yellow); opacity: .7; flex-wrap: wrap; }
.footer__bottom .socials { display: flex; gap: 10px; }
.footer__bottom .socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--gt-cream-yellow); transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out); }
.footer__bottom .socials a:hover { border-color: var(--gt-amber); color: var(--gt-amber); }
.footer__bottom .socials svg { width: 18px; height: 18px; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 980px) {
  .hero__inner, .dpage-hero__inner, .cost-grid { grid-template-columns: 1fr; }
  .dpage-hero__photo { display: none; }
  .hero__aside { margin-top: 8px; }
  .feature-grid, .dest-grid, .steps, .quotes, .channels, .form-grid, .facts, .testi-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .more-dest { grid-template-columns: repeat(3, 1fr); }
  .sec-head--row { flex-direction: column; align-items: flex-start; }
  /* Hero de destino — una sola columna: centrar todo el bloque de texto */
  .dpage-hero__inner > div:first-child { text-align: center; }
  .dpage-hero .crumbs, .dpage-hero-badge-row, .dpage-hero h1, .dpage-hero__actions { justify-content: center; }
  .dpage-hero .serif-lede { margin-left: auto; margin-right: auto; }
  /* Cotiza — columna única; solo h1 y subtítulo centrados, lista queda a la izquierda */
  .cotiza-grid { grid-template-columns: 1fr !important; }
  .cotiza-grid > div:first-child .eyebrow { justify-content: center; }
  .cotiza-grid > div:first-child h1 { text-align: center; }
  .cotiza-grid > div:first-child .serif-lede { text-align: center; margin-left: auto !important; margin-right: auto !important; }
  .cotiza-grid > div:first-child ul { text-align: left; }
}
@media (max-width: 600px) {
  .stats, .feature-grid, .dest-grid, .steps, .quotes, .channels, .form-grid, .testi-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: 0; }
  .section--navy .stat { border-color: var(--border-dark); }
  .why-item { grid-template-columns: 1fr; gap: 8px; }
  .why-item__n { padding-top: 0; }

  /* Botones: permitir salto de línea en vez de desbordar la pantalla (labels largos como
     "Quiero mi cotización gratis" no caben en una sola línea a este ancho) */
  .btn { white-space: normal; text-align: center; }
  .btn--lg { padding: 15px 22px; font-size: 14px; }

  /* Centrar texto y botones — hero, encabezados de sección y hero de destino */
  .hero__inner > div:first-child { align-items: center; text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero__cta-btn { align-self: center; margin-top: 28px; }
  .hero-proc { align-items: center; text-align: center; }
  .hero-proc__cta { align-self: center; }
  .eyebrow { justify-content: center; }
  /* Hero h1: 2 líneas en móvil — ocultar el <br> dentro del span */
  .hero h1 br { display: none; }
  /* "La asesoría es gratis" — centrado en móvil */
  .hero .note-pill { align-self: center; }
  .sec-head { text-align: center; margin-left: auto; margin-right: auto; }
  .sec-head--row { align-items: center; text-align: center; }
  .sec-head--row > .btn { display: none; }
  .cost-copy { text-align: center; }
  .testi-featured__text { text-align: center; }
  .dest-testi-cta__quote { text-align: center; }
  .dest-testi-cta__quote cite { justify-content: center; }
  .dpage-hero__inner > div:first-child { text-align: center; }
  .dpage-hero .crumbs, .dpage-hero-badge-row, .dpage-hero h1, .dpage-hero__actions { justify-content: center; }

  /* Quick facts (visa/duración/sueldo) — 1 fila de 3 columnas en vez de bloques apilados */
  .facts { grid-template-columns: repeat(3, 1fr); }
  .fact { padding: 14px 8px; border-right: 1px solid var(--border); }
  .fact:last-child { border-right: 0; }
  .fact__k { font-size: 9px; }
  .fact__v { font-size: clamp(14px, 4.2vw, 19px); margin-top: 6px; }
  .fact__sub { font-size: 10px; margin-top: 3px; }

  /* Formulario cotiza — título y subtítulo centrados */
  .form-card__head { text-align: center; }

  /* Otros destinos — cards más chicas en 2 filas (grid de 3 columnas con 5 items) */
  .more-dest { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .more-card { padding: 14px 8px; gap: 6px; }
  .more-card .fl { width: 28px; height: 20px; }
  .more-card .nm { font-size: 11px; }

  /* Destinos disponibles — tiles rectangulares horizontales en vez de cuadrados grandes */
  .dest-grid { margin-top: 20px; }
  .dtile { aspect-ratio: auto; flex-direction: row; align-items: center; gap: 14px; padding: 14px 16px; }
  .dtile__top { flex-direction: column; align-items: flex-start; gap: 8px; flex: none; }
  .dtile__flag { width: 40px; height: 30px; }
  .dtile__chip { width: 32px; height: 32px; font-size: 15px; }
  .dtile > div:last-child { flex: 1; min-width: 0; }
  .dtile__name { font-size: 19px; }
  .dtile__sub { font-size: 13px; margin-top: 4px; }
  .dtile__foot { margin-top: 8px; flex-wrap: wrap; gap: 6px; }
  .dtile__stat { font-size: 9px; }

  /* Footer — Destinos / Agencia / Contacto en 3 columnas */
  .footer__top { grid-template-columns: repeat(3, 1fr); gap: 16px 8px; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 4px; }
  .footer__col h4 { font-size: 9px; }
  .footer__col a { font-size: 11px; }
}

/* =============================================================
   Transformación — banda navy full-width con foto NZ
   ============================================================= */
.transf {
  background: var(--gt-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.transf::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/hero-toronto.jpeg') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.transf__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.transf__title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.25;
  color: #fff;
  margin: 0 0 28px;
  font-weight: 400;
  text-wrap: pretty;
}
.transf__text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin: 0 0 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.transf .eyebrow {
  color: var(--gt-amber);
  margin-bottom: 20px;
}

/* =============================================================
   Equipo — 2 cards principales + 1 secundaria
   ============================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.team-secondary { display: none; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.team-card:hover { border-color: var(--gt-navy); transform: translateY(-3px); }

.team-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--gt-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gt-amber);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: -0.02em;
  overflow: hidden;
}
.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card__photo--bianca { background: #2E2580; }
.team-card__photo--jose { background: #1a3d4f; }
.team-card__photo-note {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 11px;
  opacity: .5;
  letter-spacing: 0;
}

.team-card__body {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.team-card__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gt-crimson);
}
.team-card__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--gt-navy);
  margin: 0;
}
.team-card__quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--gt-navy);
  margin: 6px 0 0;
  text-wrap: pretty;
}

/* Secondary card is narrower */
.team-card--sec {
  max-width: 360px;
  width: 100%;
}
.team-card--sec .team-card__photo {
  aspect-ratio: 16/7;
  font-size: 16px;
}

/* =============================================================
   DESTINATION PAGE ENHANCEMENTS
   ============================================================= */

/* Hero — foto de fondo con overlay */
.dpage-hero--photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--dpage-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  pointer-events: none;
}
.dpage-hero--photo > * { position: relative; z-index: 1; }
.dpage-hero__photo { overflow: hidden; }

/* Why section — banner horizontal compacto */
.why-list--horiz {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
}
.why-list--horiz .why-item {
  display: block;
  padding: 22px 26px;
  border-bottom: none;
  border-right: 1px solid var(--border);
}
.why-list--horiz .why-item:first-child { border-top: none; }
.why-list--horiz .why-item:last-child { border-right: none; }
.why-list--horiz .why-item__n { font-size: 13px; padding-top: 0; margin-bottom: 6px; }
.why-list--horiz .why-item h3 { font-size: clamp(15px, 1.6vw, 18px); margin: 0 0 6px; }
.why-list--horiz .why-item p { font-size: 13px; line-height: 1.5; margin: 0; }

@media (max-width: 768px) {
  .why-list--horiz { grid-template-columns: 1fr; }
  .why-list--horiz .why-item { border-right: none; border-bottom: 1px solid var(--border); }
  .why-list--horiz .why-item:last-child { border-bottom: none; }
}

/* Testimonio + CTA — sección combinada */
.dest-testi-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.dest-testi-cta__quote .q-mark {
  font-family: var(--f-serif);
  font-size: 72px;
  color: var(--gt-amber);
  line-height: 0.5;
  height: 32px;
  display: block;
}
.dest-testi-cta__quote blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.25;
  color: #fff;
  margin: 16px 0 0;
  text-wrap: balance;
}
.dest-testi-cta__quote cite {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-style: normal;
}
.dest-testi-cta__quote .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--gt-amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 17px; flex: none;
}
.dest-testi-cta__quote .who { text-align: left; }
.dest-testi-cta__quote .who b { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: #fff; display: block; }
.dest-testi-cta__quote .who span { font-size: 13px; color: var(--gt-cream-yellow); opacity: .75; }
.dest-testi-cta__action {
  display: flex; flex-direction: column; gap: 18px;
  align-items: center; text-align: center;
  padding: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
}
.dest-testi-cta__action h2 {
  font-family: var(--f-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.025em;
  font-size: clamp(22px, 2.6vw, 34px); color: #fff; margin: 0;
}
.dest-testi-cta__action p {
  font-family: var(--f-serif); font-style: italic;
  font-size: 17px; color: var(--gt-cream-yellow); margin: 0; line-height: 1.5;
}
@media (max-width: 780px) {
  .dest-testi-cta { grid-template-columns: 1fr; gap: 36px; }
  .dest-testi-cta__action { padding: 28px; }
}

/* Flags en otros destinos — Twemoji SVG */
.more-card .fl { width: 40px; height: 28px; border-radius: 4px; display: inline-block; }

/* ============================================================
   Zona hero + nav compartida — páginas de destino
   ============================================================ */
.dpage-zone {
  position: relative;
  background: var(--gt-navy);
}
.dpage-zone::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--dpage-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  pointer-events: none;
}
.dpage-zone > .nav,
.dpage-zone > .dest-bar,
.dpage-zone > .dpage-hero { position: relative; z-index: 1; }
/* Evitar imagen duplicada en el hero cuando está dentro del zone */
.dpage-zone .dpage-hero--photo::before { display: none; }
/* Hero transparente para dejar ver el fondo del zone */
.dpage-zone .dpage-hero { background: transparent; }

/* Nav: transparente al inicio, sólida al hacer scroll */
.nav--dpage {
  background: transparent;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.nav--dpage.nav--scrolled {
  background: var(--gt-navy);
}
.nav--dpage[data-hidden="true"] {
  transform: translateY(-110%);
}

/* Lede del hero de destino: siempre blanco sobre fondo navy */
.dpage-hero .serif-lede { color: #fff; }

/* Foto de Bianca: mostrar completa sin recorte */
.team-card__photo--bianca .team-card__img {
  object-fit: cover;
  object-position: center 85%;
}

/* La regla base .team-grid (sección Equipo, más abajo en cascada) vencía a la
   de 1 columna del bloque responsive de más arriba. La repetimos aquí, al
   final del archivo, para que sí gane a este ancho. */
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  /* Quiénes te acompañan — cards horizontales (foto izquierda, info derecha) */
  .team-card { flex-direction: row; align-items: flex-start; }
  .team-card__photo { width: 110px; height: auto; aspect-ratio: auto; flex: none; align-self: stretch; }
  .team-card__img { height: 100%; }
  .team-card__body { padding: 12px 14px; }
  .team-card__name { font-size: 16px; }
  .team-card__quote { font-size: 13px; }
}

/* Misma razón: .testi-featured__card (padding:24px), definida más abajo en
   cascada, vencía al padding:0 puesto sobre .testi-featured__card--photo
   más arriba en el archivo. Lo repetimos aquí para que gane. */
.testi-featured__card--photo { padding: 0; }
