/* ============================================================
   AVENTI TRAVEL Design System
   Navy + champagne gold, editorial-luxury travel identity
   ============================================================ */

/* Fonts now loaded via <link> in <head> for faster, non-blocking delivery */

:root {
  /* Color */
  --navy-deep:   #0D2833;
  --navy:        #122F3E;
  --navy-light:  #1E4356;
  --gold:        #C9A24B;
  --gold-pale:   #E3C08C;
  --cream:       #FAF6EE;
  --cream-dim:   #F1EAD9;
  --ink:         #1C2A2E;
  --ink-soft:    #4A5C61;
  --white:       #FFFFFF;

  /* Type */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Eyebrow labels */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(42px, 6vw, 78px); }
h2 { font-size: clamp(32px, 4.2vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }

.serif-italic { font-style: italic; font-weight: 400; color: var(--gold); }

p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .35s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-pale); transform: translateY(-2px); }
.btn-outline {
  border-color: rgba(250,246,238,0.4);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--cream); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s ease, box-shadow .4s ease, height .4s ease;
}
.site-nav.solid {
  background: rgba(13,40,51,0.96);
  backdrop-filter: blur(6px);
  height: 68px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo span.small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(250,246,238,0.4);
}
.lang-switch span { color: rgba(250,246,238,0.3); }
.lang-btn {
  color: rgba(250,246,238,0.55);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 2px 0;
  transition: color .25s ease;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active { color: var(--gold); }
.site-nav.solid .lang-switch { color: rgba(250,246,238,0.4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 1px;
  background: var(--cream);
  transition: all .3s ease;
}

/* ---------- Horizon line signature (SVG divider) ---------- */
.horizon {
  width: 100%;
  display: block;
  height: auto;
}
.horizon path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw 2.6s ease forwards .3s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?q=30&w=600&auto=format&fit=crop') center/cover;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,162,75,0.12), transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 140px;
}
.hero h1 { color: var(--cream); max-width: 15ch; }
.hero p.lede { color: rgba(250,246,238,0.72); margin: 26px 0 40px; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-horizon-wrap { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; opacity: 0.9; }

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(250,246,238,0.14);
  margin-top: 70px;
  padding-top: 34px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-stats div { color: var(--cream); }
.hero-stats .num { font-family: var(--font-display); font-size: 36px; color: var(--gold); }
.hero-stats .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,246,238,0.6); margin-top: 4px; }

/* ---------- Section generic ---------- */
section { padding: 120px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h2, .section-navy h3 { color: var(--cream); }
.section-navy .card h3 { color: var(--navy); }
.section-dim { background: var(--cream-dim); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* ---------- Package / destination cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.card-media {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card-media img { transform: scale(1.07); }
.card-media .tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  font-weight: 500;
}
.card-body { padding: 30px 28px 34px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.card-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* ---------- Why us / features ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature .mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.feature h4 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
.feature p { font-size: 14.5px; color: var(--ink-soft); }
.section-navy .feature h4 { color: var(--cream); }
.section-navy .feature p { color: rgba(250,246,238,0.68); }

/* ---------- Split blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split img { width: 100%; height: 560px; object-fit: cover; }
.split .frame { position: relative; }
.split .frame::after {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* ---------- Testimonial ---------- */
.testi {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testi q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--cream);
  display: block;
  margin-bottom: 30px;
  line-height: 1.4;
}
.testi .who { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-deep);
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); margin-bottom: 30px; }
.cta-band .btn-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: rgba(250,246,238,0.65);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(250,246,238,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
footer ul li { margin-bottom: 12px; font-size: 14.5px; }
footer ul li a:hover { color: var(--gold); }
.footer-logo { color: var(--cream); font-family: var(--font-display); font-size: 26px; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(250,246,238,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.social-row { display: flex; gap: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(250,246,238,0.25);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all .3s ease;
}
.social-row a:hover { border-color: var(--gold); background: var(--gold); color: var(--navy-deep); }
.social-row svg { width: 16px; height: 16px; }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--navy) center/cover no-repeat;
  padding: 190px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,40,51,0.88), rgba(13,40,51,0.94));
}
.page-header .wrap { position: relative; z-index: 2; }
.page-header h1 { color: var(--cream); font-size: clamp(38px, 5vw, 60px); }
.breadcrumb { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #D9D0BC;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
/* Date chips: single-tap pill selector, faster and friendlier than a
   calendar/date-picker for a tentative travel window. */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border: 1px solid #D9D0BC;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.chip:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-1px); }
.chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-pale);
  font-weight: 500;
}

/* Traveler steppers: tap +/- instead of typing a number, feels quicker
   and matches the chip selector's "no typing needed" spirit. */
.traveler-steppers { display: flex; flex-direction: column; gap: 14px; }
.stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #D9D0BC;
  background: var(--white);
}
.stepper-row span { font-family: var(--font-body); font-size: 15px; color: var(--ink); }
.age-hint { font-size: 12px; color: var(--ink-soft); }
.stepper { display: flex; align-items: center; gap: 16px; }
.stepper-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}
.stepper-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.stepper-btn:active { transform: scale(0.92); }
.stepper-value { font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--navy); min-width: 18px; text-align: center; }

/* Infantes / 3ra / 4ta edad: collapsed by default so the common case
   (adults + kids) stays a fast, two-field interaction. */
.travelers-toggle {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--navy-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.travelers-toggle:hover { color: var(--gold); }
.travelers-toggle .toggle-icon { display: inline-block; font-size: 14px; transition: transform 0.2s ease; }
.travelers-toggle.open .toggle-icon { transform: rotate(45deg); }
.travelers-extra {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.travelers-extra.open { max-height: 400px; opacity: 1; margin-top: 2px; }

/* intl-tel-input compatibility */
.iti { width: 100%; }
.iti__country-list {
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
}
.iti__selected-country { background: var(--white) !important; }

/* ---------- Contact info list ---------- */
.info-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(28,42,46,0.1);
}
.info-list .ico {
  width: 22px; flex-shrink: 0; color: var(--gold);
}
.info-list .lbl { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.info-list .val { font-family: var(--font-display); font-size: 19px; color: var(--navy); }

/* ---------- Map ---------- */
.map-frame { width: 100%; height: 420px; border: 0; filter: grayscale(0.4) sepia(0.15); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card img { height: 380px; object-fit: cover; width: 100%; }
.team-card .name { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-top: 20px; }
.team-card .role { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Inspiración (theme cards) ---------- */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.theme-card {
  background: var(--white);
  border: 1px solid rgba(28,42,46,0.1);
  overflow: hidden;
  transition: border-color .25s ease;
}
.theme-card.open { border-color: var(--gold); }
.theme-card-media { height: 150px; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; }
.theme-card-icon { font-size: 52px; line-height: 1; }
.theme-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.theme-card:hover .theme-card-media img { transform: scale(1.06); }
.theme-card-body { padding: 22px 24px 26px; }
.theme-card-body h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.theme-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.theme-detail {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(28,42,46,0.1);
}
.theme-card.open .theme-detail { display: block; }
.theme-picks { margin-bottom: 20px; }
.theme-pick {
  padding: 14px 0;
  border-bottom: 1px solid rgba(28,42,46,0.08);
}
.theme-pick:last-child { border-bottom: none; }
.theme-pick-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
}
.theme-pick p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 6px; }
.theme-pick-link {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.theme-detail .btn { width: 100%; justify-content: center; font-size: 12px; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid rgba(28,42,46,0.1);
  overflow: hidden;
  transition: border-color .25s ease;
}
.blog-card:hover { border-color: var(--gold); }
.blog-card-media { height: 220px; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 26px 28px 30px; }
.blog-card-cat { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.blog-card-body h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.blog-card-excerpt { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.blog-card-link { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

/* Article/post page */
.article-header {
  background: var(--navy);
  padding: 190px 0 70px;
  position: relative;
  overflow: hidden;
}
.article-header-bg { position: absolute; inset: 0; opacity: 0.22; background-size: cover; background-position: center; }
.article-header .wrap { position: relative; z-index: 2; max-width: 780px; }
.article-header .breadcrumb { color: var(--gold); }
.article-header h1 { color: var(--cream); font-size: clamp(32px, 4.4vw, 50px); margin: 16px 0 22px; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; color: rgba(250,246,238,0.65); font-size: 13px; letter-spacing: 0.04em; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 32px 40px;
}
.article-body p { font-size: 17px; line-height: 1.75; color: var(--ink); margin-bottom: 24px; }
.article-body h2 { font-size: clamp(24px, 3vw, 30px); color: var(--navy); margin: 48px 0 20px; }
.article-body h3 { font-size: 20px; color: var(--navy); margin: 32px 0 14px; }
.article-body ul, .article-body ol { margin: 0 0 24px 22px; }
.article-body li { font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 10px; }
.article-body strong { color: var(--navy); }
.article-body a:not(.btn) { color: var(--navy); border-bottom: 1px solid var(--gold); }
.article-img { margin: 36px 0; }
.article-img img { width: 100%; height: 360px; object-fit: cover; }
.article-img figcaption { font-size: 13px; color: var(--ink-soft); margin-top: 10px; text-align: center; font-style: italic; }
.article-callout {
  background: var(--cream-dim);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  margin: 32px 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.article-callout strong { color: var(--navy); }
.article-cta {
  max-width: 720px;
  margin: 20px auto 0;
  padding: 40px 32px 70px;
  text-align: center;
  border-top: 1px solid rgba(28,42,46,0.1);
}
.article-cta h3 { margin-bottom: 22px; }
.article-cta .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Destinos guide ---------- */
.continent-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.continent-pill {
  padding: 10px 22px;
  border: 1px solid rgba(28,42,46,0.2);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all .25s ease;
  background: var(--white);
}
.continent-pill:hover { border-color: var(--gold); color: var(--navy); }
.continent-pill.active { background: var(--navy); border-color: var(--navy); color: var(--cream); }

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.country-card {
  background: var(--white);
  border: 1px solid rgba(28,42,46,0.1);
  padding: 30px 32px;
  transition: border-color .25s ease;
}
.country-card.open { border-color: var(--gold); }
.country-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.country-flag { display: inline-flex; line-height: 1; }
.flag-icon { width: 30px; height: 22px; object-fit: cover; border-radius: 2px; vertical-align: middle; box-shadow: 0 0 0 1px rgba(28,42,46,0.08); }
.theme-pick-head .flag-icon { width: 20px; height: 15px; }
.country-card-head h3 { font-size: 24px; color: var(--navy); }
.country-teaser { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.country-toggle {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  cursor: pointer;
}
.country-detail {
  display: none;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(28,42,46,0.1);
}
.country-card.open .country-detail { display: block; }
.country-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 22px;
}
.cd-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.country-detail-grid p, .cd-highlights p { font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.cd-highlights { margin-bottom: 18px; }
.cd-disclaimer { font-size: 12.5px; color: var(--ink-soft); font-style: italic; margin-bottom: 22px; }
.cd-actions { display: flex; flex-direction: column; gap: 12px; }
.cd-actions .btn { width: 100%; justify-content: center; text-align: center; font-size: 12px; }

/* ---------- Brand promise statement ---------- */
.brand-promise {
  background: var(--navy-deep);
  padding: 110px 0;
  text-align: center;
}
.brand-promise .eyebrow { color: var(--gold); }
.brand-promise h2 {
  color: var(--cream);
  font-size: clamp(30px, 4.5vw, 54px);
  max-width: 16ch;
  margin: 0 auto;
  line-height: 1.2;
}

/* ---------- Misión y Visión ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.mv-card {
  padding: 40px 0 0;
  border-top: 1px solid rgba(28,42,46,0.14);
}
.mv-label {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}
.mv-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* ---------- Values numbered list (Nosotros) ---------- */
.values-list { border-top: 1px solid rgba(28,42,46,0.12); }
.value-row {
  display: grid;
  grid-template-columns: 90px 1fr 2fr;
  gap: 30px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(28,42,46,0.12);
  align-items: baseline;
}
.value-row .idx { font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--gold); }
.value-row h4 { color: var(--navy); }
.value-row p { color: var(--ink-soft); font-size: 15px; }

/* ---------- WhatsApp pre-form modal ---------- */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,40,51,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}
.wa-modal-overlay.open { opacity: 1; pointer-events: all; }
.wa-modal {
  background: var(--cream);
  max-width: 440px;
  width: 100%;
  padding: 44px 36px 36px;
  position: relative;
  transform: translateY(16px);
  transition: transform .3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.wa-modal-overlay.open .wa-modal { transform: translateY(0); }
.wa-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  background: none;
  border: none;
}
.wa-modal-close:hover { color: var(--navy); }
.wa-modal h3 { margin: 6px 0 26px; }
.wa-modal .form-field:last-of-type { margin-bottom: 28px; }
.wa-modal .btn { width: 100%; justify-content: center; }

/* ---------- Email fallback panel ---------- */
.email-fallback {
  margin-top: 16px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid #D9D0BC;
  display: none;
}
.email-fallback.show { display: block; }
.email-fallback p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.email-fallback textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px 14px;
  border: 1px solid #D9D0BC;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
  background: var(--cream);
  resize: vertical;
  margin-bottom: 12px;
}
.email-fallback-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.email-fallback-copy {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--cream);
  border: none;
  cursor: pointer;
}
.email-fallback-copy:hover { background: var(--navy-light); }
.email-fallback-copy.copied { background: var(--gold); color: var(--navy-deep); }
.email-fallback-to { font-size: 13px; color: var(--navy); }
.email-fallback-to strong { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; gap: 36px; }
  .country-grid { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split img { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 60px 1fr; }
  .value-row p { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 16px; }
  .lang-switch { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(250,246,238,0.15); font-size: 14px; }
  .lang-btn { font-size: 14px; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 24px 34px; }
  .grid-4 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { gap: 40px; }
  .country-detail-grid { grid-template-columns: 1fr; gap: 16px; }
  .theme-grid { grid-template-columns: 1fr; }
  .article-header { padding: 150px 0 50px; }
  .article-body { padding: 44px 24px 24px; }
  .article-body p, .article-body li { font-size: 16px; }
  .article-img img { height: 220px; }
  .section-head { gap: 24px; margin-bottom: 44px; }
  section { padding: 64px 0; }
  .hero-inner { padding: 60px 0 90px; }
  h1 { line-height: 1.08; }
  p.lede { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 80px 0; }
  .brand-promise { padding: 70px 0; }
  .page-header { padding: 150px 0 60px; }
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(13,40,51,0.35);
  z-index: 500;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 26px rgba(13,40,51,0.45);
}
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 640px) {
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 27px; height: 27px; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(13,40,51,0.12);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 62ch;
}

/* ---------- Hero background video (desktop only) ---------- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,40,51,0.62) 0%, rgba(13,40,51,0.4) 45%, rgba(13,40,51,0.68) 100%);
  display: none;
}
.hero.has-video::before { opacity: 0; }
.hero.has-video .hero-video,
.hero.has-video .hero-video-overlay { display: block; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: -120px;
  z-index: 900;
  max-width: 720px;
  margin: 0 auto;
  background: var(--navy-deep);
  color: var(--cream);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  padding: 20px 24px;
  transition: bottom .5s ease;
}
.cookie-banner.visible { bottom: 20px; }
.cookie-banner-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-banner p { flex: 1 1 320px; font-size: 13.5px; line-height: 1.6; color: rgba(250,246,238,0.8); margin: 0; }
.cookie-banner p a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn { padding: 10px 18px; font-size: 12px; }
.cookie-banner .btn-outline-dark { border-color: rgba(250,246,238,0.4); color: var(--cream); }
@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; padding: 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; text-align: center; justify-content: center; }
}

/* ---------- Splash screen (Home only) ---------- */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashOut 1s ease forwards;
  animation-delay: .55s;
}
.splash-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold);
  letter-spacing: 1px;
  opacity: 0;
  text-align: center;
  animation: splashIn .6s ease forwards;
}
.splash-logo span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 7px;
  color: var(--cream);
  margin-top: 6px;
}
@keyframes splashIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes splashOut { 0% { opacity: 1; visibility: visible; } 85% { opacity: 0; visibility: visible; } 100% { opacity: 0; visibility: hidden; pointer-events: none; } }
@media (prefers-reduced-motion: reduce) {
  .splash-screen { display: none; }
}

/* ---------- Blog preview on Home ---------- */
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* ---------- Testimonials (real Google reviews) ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.testi-card {
  background: var(--cream);
  border: 1px solid rgba(13,40,51,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-card q {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  quotes: none;
}
.testi-card .who {
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
