/* ================================================================
   Patagonline — Sistema de diseño
   Basado en el mockup visual de Patagonline (Patagonia travel)
   Fuente: Nunito Sans (Google Fonts)
   Paleta: Verde Bosque #07463A · Teal #108165 · Menta #4EB394 · Oro #EF9F27
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --color-primary:    #1D9E75;
  --color-primary-dk: #0F6E56;
  --color-primary-lt: rgba(29, 158, 117, 0.10);
  --color-dark:       #07463A;
  --color-dark-mid:   #085041;
  --color-dark-deep:  #04342C;
  --color-footer:     #0B2B4F;
  --color-footer-dk:  #071F3A;
  --color-accent:     #EF9F27;
  --color-accent-dk:  #D88A18;
  --color-mint:       #5DCAA5;
  --color-mint-soft:  #9FE1CB;
  --color-mint-pale:  #E1F5EE;
  --color-text:       #1a1a1a;
  --color-body:       #555;
  --color-muted:      #888;
  --color-subtle:     #aaa;
  --color-bg:         #ffffff;
  --color-bg-light:   #f5f5f3;
  --color-bg-alt:     #fafaf8;
  --color-border:     #eeeeee;
  --color-border-md:  rgba(0,0,0,0.10);

  --font-main:   'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title:  'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:   'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-height: 72px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  24px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.13);

  --container-width: 1140px;
  --container-narrow: 760px;
}

/* ── Google Fonts cargadas vía header.php ───────────────────────── */

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Tipografía ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-text);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { line-height: 1.75; }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Header ─────────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .3s;
}

#header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}

/* Header transparente sobre hero de imagen */
#header.header-transparent {
  background: transparent;
  border-bottom-color: transparent;
}

#header.header-transparent.scrolled {
  background: var(--color-bg);
  border-bottom-color: var(--color-border);
}

#header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-logo-text {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-logo-text strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color .2s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover { color: var(--color-primary); }
.nav-link.active { color: var(--color-primary); font-weight: 500; }

/* Header transparente: links blancos */
#header.header-transparent .nav-link { color: rgba(255,255,255,.9); }
#header.header-transparent .nav-link:hover { color: #fff; }
#header.header-transparent.scrolled .nav-link { color: var(--color-text); }
#header.header-transparent.scrolled .nav-link:hover { color: var(--color-primary); }

/* CTA botón en nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--color-primary);
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  transition: background .2s;
  white-space: nowrap;
  margin-left: 10px;
  text-decoration: none;
}

.nav-cta:hover { background: var(--color-primary-dk); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header transparente: toggle blanco */
#header.header-transparent .nav-toggle span { background: #fff; }
#header.header-transparent.scrolled .nav-toggle span { background: var(--color-text); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  z-index: 100;
}

.nav-item:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--color-text);
  transition: background .15s, color .15s;
  text-decoration: none;
}

.dropdown-menu a:hover { background: var(--color-bg-light); color: var(--color-primary); }

/* WhatsApp y back-to-top → estilos definitivos en sección SITE FOOTER 2026 */

/* ── Sections ──────────────────────────────────────────────────── */
.section     { padding: 72px 0; background: var(--color-bg); }
.section-alt { padding: 72px 0; background: var(--color-bg-alt); }
.section-dark { padding: 72px 0; background: var(--color-dark); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label-center { display: block; text-align: center; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-title-center { text-align: center; }

.section-sub {
  font-size: 17px;
  color: var(--color-body);
  max-width: 580px;
  line-height: 1.75;
}

.section-sub-center {
  text-align: center;
  margin: 0 auto 48px;
}

/* ── Botones ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  border: 1.5px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-dk); border-color: var(--color-primary-dk); }

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.btn-dark {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}
.btn-dark:hover { background: var(--color-dark-mid); }

.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover { background: rgba(255,255,255,.9); }

.btn-full { display: flex; width: 100%; justify-content: center; }

.btn-lg { padding: 14px 36px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ── Hero de página ─────────────────────────────────────────────── */
.page-hero {
  margin-top: var(--header-height);
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 64px 0;
}

/* Hero de home — sin margin-top (header transparente) */
.home-hero {
  min-height: 100vh;
  margin-top: 0;
  display: flex;
  align-items: center;
}

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: rgba(255,255,255,.6); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* ── Post cards (blog listing) ──────────────────────────────────── */
.post-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-card-img-wrap {
  position: relative;
  height: 210px;
  background: var(--color-bg-light);
  overflow: hidden;
  flex-shrink: 0;
}

.post-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tag coral en esquina superior derecha (como el diseño real) */
.post-card-tag {
  position: absolute;
  top: 14px;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.post-card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color .15s;
}

.post-card:hover .post-card-title { color: var(--color-primary); }

.post-card-desc {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.post-card-read {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 13px;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Stats bar ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--color-dark);
  padding: 28px 0;
}

.stats-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-num  { font-size: 22px; font-weight: 600; color: #fff; font-family: var(--font-title); }
.stat-label{ font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

.stats-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* ── Forms ──────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-body);
  margin-bottom: 7px;
  letter-spacing: .01em;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color .2s, box-shadow .2s;
  line-height: 1.5;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(29,158,117,.14);
}

.form-control::placeholder { color: #bbb; }

textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; cursor: pointer; }

/* ── Footer ─────────────────────────────────────────────────────── */
#footer {
  background: var(--color-footer);
  color: rgba(255,255,255,.65);
}

.footer-top { padding: 60px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand-name strong { color: var(--color-mint); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}

.footer-contact-item i { flex-shrink: 0; color: var(--color-primary); margin-top: 3px; }
.footer-contact-item a { color: inherit; transition: color .15s; }
.footer-contact-item a:hover { color: #fff; }

.footer-social { display: flex; flex-direction: column; gap: 12px; }

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
  text-decoration: none;
}

.footer-social-link:hover { color: #fff; }

.fs-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: background .15s;
  flex-shrink: 0;
}

.footer-social-link:hover .fs-icon { background: rgba(255,255,255,.14); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 0;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

.footer-bottom a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .15s;
}

.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Post content ───────────────────────────────────────────────── */
.post-content {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-body);
}

.post-content h2 {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 44px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}

.post-content h3 { font-size: 1.25rem; font-weight: 600; color: var(--color-text); margin: 32px 0 14px; }
.post-content h4 { font-size: 1.05rem; font-weight: 600; margin: 24px 0 10px; }
.post-content p  { margin-bottom: 22px; }
.post-content ul { margin: 0 0 22px 24px; list-style-type: disc; }
.post-content ol { margin: 0 0 22px 24px; }
.post-content li { margin-bottom: 8px; }

.post-content blockquote {
  border-left: 3px solid var(--color-primary);
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--color-primary-lt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-body);
}

.post-content pre {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 22px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin-bottom: 22px;
  font-size: .88rem;
  line-height: 1.6;
}

.post-content code {
  background: var(--color-bg-light);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .875em;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.post-content pre code { background: none; padding: 0; }
.post-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 28px 0; }
.post-content a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.post-content a:hover { color: var(--color-primary-dk); }
.post-content strong { font-weight: 600; color: var(--color-text); }

/* ── Badges ─────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 11px;
  border-radius: var(--radius-lg);
}

.badge-primary { background: var(--color-primary); color: #fff; }
.badge-primary-lt { background: var(--color-primary-lt); color: var(--color-primary); }
.badge-dark  { background: var(--color-dark); color: #fff; }
.badge-light { background: var(--color-bg-light); color: var(--color-body); border: 1px solid var(--color-border); }

/* ── Utilities ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-muted   { color: var(--color-muted); }
.text-white   { color: #fff; }

/* ── Fade-in on scroll ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
/* Fallback: sin JS o movimiento reducido → siempre visible */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .blog-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }

  .nav-toggle { display: flex; }

  .header-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    border-top: 1px solid var(--color-border);
  }

  .header-nav.open { display: flex; }

  .nav-link { width: 100%; color: var(--color-text) !important; }
  .nav-cta  { margin: 8px 0 4px; width: 100%; justify-content: center; }

  .dropdown-menu {
    position: static;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    margin-top: 4px;
  }

  .nav-item.open .dropdown-menu { display: block; }
  .dropdown-menu a { color: var(--color-text) !important; padding: 8px 14px; }
  .dropdown-menu a:hover { color: var(--color-primary) !important; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .section, .section-alt, .section-dark { padding: 52px 0; }

  .stats-bar-inner { gap: 28px; }
  .stats-sep { display: none; }

  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .container, .container-narrow { padding: 0 20px; }
}

@media (max-width: 540px) {
  .section, .section-alt { padding: 40px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM 2026 — Paleta Patagonia
   Navy #1E3A5F · Emerald #2E7A6B · Mustard #C89B3C · Cream #F5EFE4
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:          #1E3A5F;
  --navy-deep:     #132840;
  --emerald:       #2E7A6B;
  --emerald-deep:  #1F5A4E;
  --terracota:     #C85A3E;
  --terracota-deep:#A8462C;
  --mustard:       #C89B3C;
  --mustard-deep:  #A87F28;
  --cream:         #F5EFE4;
  --bone:          #FAF7F1;
  --ink:           #1A1A1A;
  --ink-soft:      #3A3A3A;
  --muted:         #6B6B6B;
  --line:          #E8E2D4;
  --line-soft:     #F0EBE0;
  --radius:        14px;

  --f-head: 'Poppins', sans-serif;
  --f-body: 'Inter', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;

  --accent:      var(--mustard);
  --accent-deep: var(--mustard-deep);

  --pad-section: clamp(80px, 10vw, 140px);
}

/* ── Shared utilities ────────────────────────────────────────── */
.eyebrow {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.pill-ds {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46,122,107,.1);
  color: var(--emerald-deep);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--f-head);
  letter-spacing: .02em;
}

/* Placeholder imagery */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(30,58,95,.04) 0 10px, rgba(30,58,95,.08) 10px 20px),
    linear-gradient(135deg, #DCE4DE 0%, #C8D4CC 100%);
  border-radius: var(--radius);
}
.ph-navy {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 10px, rgba(255,255,255,.06) 10px 20px),
    linear-gradient(135deg, #2a4a74 0%, #132840 100%);
}
.ph-emerald {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 10px, rgba(255,255,255,.08) 10px 20px),
    linear-gradient(135deg, #3A8E7E 0%, #1F5A4E 100%);
}
.ph-terracota {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 10px, rgba(255,255,255,.08) 10px 20px),
    linear-gradient(135deg, #D97758 0%, #A8462C 100%);
}
.ph-cream {
  background:
    repeating-linear-gradient(45deg, rgba(30,58,95,.04) 0 10px, rgba(30,58,95,.07) 10px 20px),
    linear-gradient(135deg, #F5EFE4 0%, #E8DFC8 100%);
}

/* ═══════════════════════════════════════════════════════════════
   HOME — VARIACIÓN EDITORIAL
   Magazine style. Poppins + Fraunces italic. Acento Mostaza.
   ═══════════════════════════════════════════════════════════════ */

.v-editorial { background: var(--bone); font-family: var(--f-body); }

.v-editorial .btn {
  font-family: var(--f-head);
  font-weight: 600;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.01em;
}
.v-editorial .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.v-editorial .btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,155,60,.3);
}
.v-editorial .btn-lg { padding: 18px 32px; font-size: 16px; }

/* ── HERO ─────────────────────────────────────────────────────── */
.e-hero {
  padding: 40px 0 80px;
  position: relative;
}
.e-hero-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.e-hero-line { flex: 1; height: 1px; background: var(--line); }
.e-hero-title {
  font-family: var(--f-head);
  font-size: clamp(60px, 11vw, 180px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: .88;
  margin-bottom: 48px;
  color: var(--navy);
}
.e-hero-word { display: block; }
.e-hero-word-it {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  padding-left: 0.18em;
}
.e-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-bottom: 60px;
}
.e-hero-lead {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  font-family: var(--f-head);
  font-weight: 400;
  max-width: 560px;
  margin-bottom: 32px;
}
.e-dropcap {
  float: left;
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 700;
  font-size: 72px;
  line-height: .8;
  color: var(--accent);
  padding: 6px 10px 0 0;
  margin-top: 4px;
}
.e-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.e-hero-price {
  display: flex;
  flex-direction: column;
  font-family: var(--f-head);
  line-height: 1.2;
}
.e-hero-price strong { font-size: 18px; color: var(--navy); }
.e-hero-price span { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.e-hero-specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.e-spec { display: flex; gap: 16px; }
.e-spec-k {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .08em;
  flex-shrink: 0;
  padding-top: 4px;
}
.e-spec strong {
  font-family: var(--f-head);
  font-size: 15px;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.e-spec p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
/* ── Hero Steps Sidebar (EN/IT/DE home) ─────────────────────── */
.e-hero-steps-side {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding-left: 28px;
  gap: 0;
}
.e-hero-step {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "num  icon"
    "body icon";
  column-gap: 16px;
  row-gap: 0;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.e-hero-step:first-child { padding-top: 0; }
.e-hero-step:last-child { border-bottom: none; }
.e-hero-step-num  { grid-area: num; }
.e-hero-step-body { grid-area: body; }
.e-hero-step-icon { grid-area: icon; align-self: center; }
.e-hero-step-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.e-hero-step-body strong {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.e-hero-step-body p {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.e-hero-step-icon {
  font-size: 18px;
  color: var(--line);
  margin-top: 4px;
}
@media (max-width: 960px) {
  .e-hero-steps-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}

.e-hero-image-row { margin-bottom: 48px; }
.e-hero-press {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.e-press-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.e-press-list { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.e-press-item {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--navy);
}
.e-press-sep { color: var(--line); margin: 0 4px; }

/* ── ABOUT ────────────────────────────────────────────────────── */
.e-about { padding: var(--pad-section) 0; }
.e-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.e-about-title {
  font-family: var(--f-head);
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -.035em;
  margin-top: 18px;
  color: var(--navy);
}
.e-about-title em {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.e-about-p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-family: var(--f-head);
  font-weight: 400;
  max-width: 480px;
}
.e-about-p strong { color: var(--navy); }
.e-about-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.e-about-stats > div { display: flex; flex-direction: column; }
.e-about-stats strong {
  font-family: var(--f-head);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.03em;
  line-height: 1;
  display: block;
}
.e-about-stats span {
  font-family: var(--f-head);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── CÓMO FUNCIONO ────────────────────────────────────────────── */
.e-steps { padding: var(--pad-section) 0; background: var(--navy); color: #fff; }
.e-steps-head { margin-bottom: 48px; }
.e-steps-title {
  font-family: var(--f-head);
  font-size: clamp(44px, 6vw, 88px);
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1;
}
.e-steps-list { display: flex; flex-direction: column; }
.e-step-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.e-step-row:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.e-step-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-size: 72px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.e-step-body h3 { color: #fff; font-size: 26px; margin-bottom: 6px; font-family: var(--f-head); }
.e-step-body p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.55; max-width: 560px; margin: 0; }
.e-step-extra { display: flex; align-items: center; gap: 18px; }
.e-step-badge {
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.e-step-extra i { font-size: 24px; color: rgba(255,255,255,.35); }
.e-agency-note {
  margin-top: 48px;
  padding: 24px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.e-agency-note strong { color: #fff; font-family: var(--f-head); font-size: 15px; }
.e-agency-note span { color: rgba(255,255,255,.7); font-size: 14.5px; }

/* ── DESTINOS ─────────────────────────────────────────────────── */
.e-destinos { padding: var(--pad-section) 0; }
.e-destinos-head { margin-bottom: 48px; }
.e-destinos-title {
  font-family: var(--f-head);
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--navy);
}
.e-destinos-title em {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.e-destinos-list { display: flex; flex-direction: column; }
.e-destino-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--navy);
  transition: background .2s, padding .2s;
}
.e-destino-row:last-of-type { border-bottom: 1px solid var(--line); }
.e-destino-row:hover { padding-left: 12px; padding-right: 12px; background: var(--cream); border-radius: var(--radius); }
.e-destino-row:hover .e-dest-img { transform: scale(1.02); }
.e-destino-row:hover .e-dest-arrow { transform: translateX(6px); color: var(--accent); }
.e-dest-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-size: 42px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.e-dest-main h3 { font-size: 28px; margin-bottom: 4px; font-family: var(--f-head); color: var(--navy); }
.e-dest-main p { color: var(--muted); font-size: 14.5px; margin: 0; }
.e-dest-meta {
  display: flex;
  flex-direction: column;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--muted);
  text-align: right;
  gap: 2px;
}
.e-dest-lat { color: var(--ink-soft); }
.e-dest-img { border-radius: 8px; overflow: hidden; transition: transform .3s; flex-shrink: 0; }
.e-dest-arrow { font-size: 18px; color: var(--muted); transition: transform .2s, color .2s; }

/* ── EXPERIENCIAS ─────────────────────────────────────────────── */
.e-exp { padding: var(--pad-section) 0; background: var(--cream); }
.e-exp-head { margin-bottom: 48px; }
.e-exp-title {
  font-family: var(--f-head);
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--navy);
}
.e-exp-title em {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.e-exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.e-exp-card { display: flex; flex-direction: column; }
.e-exp-card:nth-child(1) { grid-column: span 4; }
.e-exp-card:nth-child(2) { grid-column: span 2; }
.e-exp-card:nth-child(3) { grid-column: span 2; }
.e-exp-card:nth-child(4) { grid-column: span 4; }
.e-exp-card .ph { margin-bottom: 20px; }
.e-exp-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.e-exp-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.e-exp-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--muted);
}
.e-exp-card h3 {
  font-family: var(--f-head);
  font-size: 24px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.e-exp-icon { color: var(--emerald); font-size: 18px; }
.e-exp-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; }

/* ── REVIEWS ──────────────────────────────────────────────────── */
.e-reviews { padding: var(--pad-section) 0; }
.e-reviews-head { margin-bottom: 48px; }
.e-reviews-title {
  font-family: var(--f-head);
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--navy);
}
.e-reviews-title em {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.e-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.e-review {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.e-review:last-child { border-right: 0; }
.e-review-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-size: 54px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.e-review blockquote {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -.01em;
  flex: 1;
}
.e-review-stars { color: var(--mustard); font-size: 12px; letter-spacing: 4px; margin-bottom: 10px; }
.e-review figcaption strong { font-family: var(--f-head); font-size: 15px; color: var(--navy); display: block; }
.e-review figcaption span { font-size: 12px; color: var(--muted); font-family: var(--f-mono); letter-spacing: .02em; display: block; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.e-faq { padding: var(--pad-section) 0; }
.e-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.e-faq-title {
  font-family: var(--f-head);
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--navy);
}
.e-faq-title em {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.e-faq-list { display: flex; flex-direction: column; }
.e-faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.e-faq-list details:last-child { border-bottom: 1px solid var(--line); }
.e-faq-list summary {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
.e-faq-list summary::-webkit-details-marker { display: none; }
.e-faq-num { font-family: var(--f-mono); font-size: 12px; color: var(--accent); letter-spacing: .08em; }
.e-faq-q { font-family: var(--f-head); font-size: 18px; font-weight: 600; color: var(--navy); }
.e-faq-list details[open] summary i { transform: rotate(45deg); color: var(--accent); }
.e-faq-list summary i { transition: transform .2s; color: var(--muted); font-size: 13px; }
.e-faq-list details p { margin: 14px 0 0 60px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; max-width: 620px; }

/* ── YOUTUBE ──────────────────────────────────────────────────── */
.e-youtube { padding: var(--pad-section) 0; background: var(--bone); text-align: center; }
.e-youtube-title {
  font-family: var(--f-head);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: 40px;
  line-height: 1;
}
.e-youtube-title em {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* ── CTA FINAL ────────────────────────────────────────────────── */
.e-cta {
  padding: var(--pad-section) 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.e-cta-inner { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.e-cta-kicker {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
  display: block;
}
.e-cta h2 {
  color: #fff;
  font-family: var(--f-head);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.e-cta h2 em {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
}
.e-cta p { font-size: 19px; color: rgba(255,255,255,.88); max-width: 540px; margin: 0 auto 36px; line-height: 1.55; }
.e-cta .btn-primary { background: #fff; color: var(--accent); border-color: #fff; }
.e-cta .btn-primary:hover { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: none; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .e-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .e-hero-specs { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .e-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .e-step-row { grid-template-columns: 60px 1fr; }
  .e-step-extra { grid-column: 1 / -1; }
  .e-destino-row { grid-template-columns: 40px 1fr; }
  .e-destino-row .e-dest-img,
  .e-destino-row .e-dest-meta,
  .e-dest-arrow { display: none; }
  .e-exp-grid { grid-template-columns: 1fr 1fr; }
  .e-exp-card, .e-exp-card:nth-child(n) { grid-column: span 1 !important; }
  .e-reviews-grid { grid-template-columns: 1fr; }
  .e-review { border-right: 0; border-bottom: 1px solid var(--line); }
  .e-review:last-child { border-bottom: 0; }
  .e-faq-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .e-hero-title { font-size: clamp(44px, 13vw, 72px); }
  .e-about-title { font-size: clamp(36px, 9vw, 56px); }
  .e-hero { padding: 24px 0 60px; }
  .e-exp-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   SITE HEADER — Diseño 2026 (sticky, bone/blur)
   ═══════════════════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,241,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.sh-logo img { height: 36px; width: auto; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.sn-link {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
  position: relative;
  text-decoration: none;
}
.sn-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s;
  transform-origin: left;
}
.sn-link:hover::after,
.sn-link.active::after { transform: scaleX(1); }
.sn-link.active { color: var(--navy); }

.sn-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.sn-cta:hover { background: var(--navy-deep); }

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 2px;
  margin-left: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.lang-btn {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  padding: 4px 7px;
  border-radius: 4px;
  transition: color .15s, background .15s;
  line-height: 1;
}
.lang-btn:hover { color: var(--navy); background: var(--cream); }
.lang-btn.active { color: var(--accent); pointer-events: none; }

@media (max-width: 920px) {
  .lang-switch { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 16px; margin-left: 0; }
}

/* Slideshow dot active — aliases for both naming conventions */
.hs-dot-active { background: #fff !important; transform: scale(1.25); }

/* Mobile hamburger */
.sh-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.sh-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.sh-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sh-toggle.open span:nth-child(2) { opacity: 0; }
.sh-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .sh-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,247,241,.98);
    border-bottom: 1px solid var(--line);
    padding: 20px 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .sn-cta { align-self: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   SITE FOOTER — Diseño 2026 (navy profundo)
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
  font-family: var(--f-body);
  border-top: 3px solid var(--accent);
}
.site-footer h3 {
  font-family: var(--f-head);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.site-footer a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .18s;
}
.site-footer a:hover { color: #fff; }

/* Grid principal */
.sf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

/* Columna de marca */
.sf-brand {
  display: block;
  margin-bottom: 0;
}
.sf-tagline {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 24px;
  max-width: 320px;
  color: rgba(255,255,255,.6);
}

/* Redes sociales */
.sf-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.sf-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: var(--f-head);
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color .18s, gap .18s;
}
.sf-social a:hover {
  color: #fff;
  gap: 14px;
}
.sf-social a i { width: 16px; text-align: center; }

/* Links de navegación */
.sf-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.sf-links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  padding-left: 0;
  transition: color .18s, padding-left .18s;
}
.sf-links a::before {
  content: '—';
  font-size: 11px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .18s, transform .18s;
  margin-right: 0;
  position: absolute;
  left: -20px;
}
.sf-links a:hover {
  color: #fff;
  padding-left: 20px;
}
.sf-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contacto */
.sf-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.sf-contact > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sf-contact i {
  color: var(--accent);
  opacity: .85;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

/* Barra inferior */
.sf-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
  font-family: var(--f-mono);
}

/* WhatsApp & back-to-top — versión 2026 */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 13px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  transition: background .2s, color .2s, transform .2s;
  text-decoration: none;
}
.back-to-top.show { display: flex; }
.back-to-top:hover {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 920px) {
  .sf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .sf-grid > div:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .site-footer { padding-top: 60px; }
  .sf-grid { grid-template-columns: 1fr; gap: 36px; }
  .sf-grid > div:first-child { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG & EXPERIENCIAS — Estilos compartidos .bl-*
   Usados por blog-listing.php y experience-listing.php
   ═══════════════════════════════════════════════════════════════ */

.blog-listado,
.exp-listado { background: var(--bone); }

/* Hero */
.bl-hero { padding: 80px 0 48px; }
.bl-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.bl-hero-line { flex: 1; max-width: 280px; height: 1px; background: var(--line); }
.bl-hero-title {
  font-family: var(--f-head);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 920px;
}
.bl-hero-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.bl-hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.6;
  font-family: var(--f-body);
}

/* Tags filter */
.bl-tags {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--line);
}
.bl-tags-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: #fff;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}
.bl-tag:hover { border-color: var(--navy); color: var(--navy); }
.bl-tag.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.bl-tag.active i { font-size: 10px; }

/* Post meta */
.bl-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .02em;
}
.bl-post-tag {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
}

/* Grid section */
.bl-grid-section { padding: 56px 0 120px; }
.bl-grid-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.bl-grid-head h2 {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}
.bl-grid-count {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
}
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* Blog card */
.bl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.bl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bl-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.bl-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.bl-card:hover .bl-card-img img { transform: scale(1.04); }
.bl-card-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--line);
  font-size: 40px;
}
.bl-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.bl-card h3 {
  font-family: var(--f-head);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--navy);
  margin: 4px 0;
}
.bl-card p {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}
.bl-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.bl-card-foot i { transition: transform .2s; }
.bl-card:hover .bl-card-foot i { transform: translateX(4px); }

/* Empty state */
.bl-empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.bl-empty i { font-size: 36px; color: var(--line); margin-bottom: 16px; display: block; }
.bl-empty p { color: var(--muted); font-family: var(--f-head); margin-bottom: 16px; }
.bl-empty a { color: var(--accent); font-family: var(--f-head); font-weight: 600; font-size: 14px; }

/* Pagination */
.bl-pagination { padding-bottom: 80px; }
.bl-pag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.bl-pag-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.bl-pag-arrow:hover:not(.disabled) {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.bl-pag-arrow.disabled {
  opacity: .35;
  pointer-events: none;
}
.bl-pag-nums { display: flex; align-items: center; gap: 4px; }
.bl-pag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.bl-pag-num:hover { background: var(--cream); color: var(--navy); }
.bl-pag-num.active { background: var(--accent); color: #fff; }
.bl-pag-dots { padding: 0 4px; color: var(--muted); font-family: var(--f-head); }

/* Responsive bl-* */
@media (max-width: 960px) {
  .bl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .bl-hero { padding: 56px 0 32px; }
  .bl-grid { grid-template-columns: 1fr; gap: 20px; }
  .bl-grid-section { padding: 40px 0 80px; }
  .bl-pag-row { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   PÁGINAS DE ERROR (404 / 410)
   ═══════════════════════════════════════════════════════════════ */
.error-page {
  min-height: calc(100vh - var(--header-height, 70px) - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  margin-top: var(--header-height, 70px);
}
.error-inner {
  text-align: center;
  max-width: 480px;
}
.error-code {
  display: block;
  font-family: var(--f-head);
  font-size: 96px;
  font-weight: 800;
  color: var(--navy);
  opacity: .08;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 4px;
}
.error-inner h1 {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}
.error-inner p {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 36px;
}
.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s;
}
.error-btn-primary:hover { background: var(--accent); }
.error-btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1.5px solid var(--line);
  color: var(--navy);
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.error-btn-outline:hover { border-color: var(--navy); color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   HERO SLIDESHOW (.hs-*)  — compartido en todos los idiomas
   ═══════════════════════════════════════════════════════════════ */
.hs-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-deep);
}
.hs-track { height: 100%; }
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hs-slide.active { opacity: 1; }
.hs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.38);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background .2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.hs-btn:hover { background: rgba(0,0,0,.62); }
.hs-prev { left: 14px; }
.hs-next { right: 14px; }
.hs-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.hs-dot.active {
  background: #fff;
  transform: scale(1.25);
}
@media (max-width: 640px) {
  .hs-wrap { height: 260px; border-radius: 12px; }
}
