/* ==========================================================================
   NATIVA ÉLITE COLOMBIA - SISTEMA DE ESTILOS EDITORIAL Y RESPONSIVE
   ========================================================================== */

/* --------------------------------------------------------------------------
   VARIABLES Y TOKENS DE DISEÑO
   -------------------------------------------------------------------------- */
:root {
  --ink: #071012;
  --ink-deep: #04090b;
  --ink-surface: #0a171b;
  --ink-card: #081215;
  --paper: #f5eddd;
  --gold: #e6b65f;
  --gold-light: #f7d896;
  --gold-dark: #cc9348;
  --orange: #df8c3d;
  --line: rgba(235, 192, 112, 0.46);
  --line-soft: rgba(235, 192, 112, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: Italiana, Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --header-height: 64px;
}

/* --------------------------------------------------------------------------
   RESET Y BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* --------------------------------------------------------------------------
   BOTONES Y ENLACES
   -------------------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(105deg, #f3ce82, #cc9348);
  color: #0c1111;
  text-transform: uppercase;
  font: 700 12px var(--sans);
  letter-spacing: 0.8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.2s ease;
  box-shadow: 0 4px 18px rgba(204, 147, 72, 0.28);
  touch-action: manipulation;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(204, 147, 72, 0.42);
}

.button:active {
  transform: scale(0.98);
}

.button i,
.text-link b {
  font-size: 26px;
  font-style: normal;
  line-height: 0;
  display: inline-block;
  transition: transform 0.2s ease;
}

.button:hover i,
.text-link:hover b {
  transform: translateX(3px);
}

.button-small {
  min-height: 34px;
  padding: 0 20px;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2c56b;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 12px;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: #fff;
}

.eyebrow,
.step {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin: 0 0 12px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   NAVEGACIÓN LATERAL (DESKTOP)
   -------------------------------------------------------------------------- */
.journey-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: 135px;
  background: #0c191f;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-brand {
  margin: 31px 0 38px;
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 2px;
  text-align: center;
}

.nav-brand span {
  display: block;
  color: var(--gold);
  font: 12px var(--sans);
  letter-spacing: 4px;
  margin-top: 4px;
}

.journey-nav nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.journey-nav nav::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--line);
}

.journey-nav nav a,
.nav-contact {
  color: #edf0ed;
  text-decoration: none;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-left: 16px;
  min-height: 36px;
  transition: color 0.2s;
}

.journey-nav nav a:hover,
.nav-contact:hover {
  color: var(--gold);
}

.journey-nav b {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid #d6d6cc;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  background: #0c191f;
  z-index: 1;
  transition: all 0.25s ease;
}

.journey-nav a.active b {
  background: var(--gold);
  color: #101619;
  border-color: var(--gold);
  font-weight: 700;
}

.nav-contact {
  margin-top: auto;
  margin-bottom: 25px;
}

/* --------------------------------------------------------------------------
   TOPBAR / HEADER
   -------------------------------------------------------------------------- */
.topbar {
  height: var(--header-height);
  background: rgba(5, 13, 15, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  padding: 0 6%;
  position: absolute;
  z-index: 30;
  top: 0;
  left: 102px;
  right: 0;
  border-bottom: 1px solid rgba(235, 192, 112, 0.12);
  transition: background 0.3s ease;
}

.topbar nav {
  display: flex;
  gap: 27px;
}

.topbar nav a {
  color: #fbf8ee;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.topbar nav a:hover {
  color: var(--gold);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--gold);
}

.language button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  padding: 2px 4px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.language button:hover,
.language .selected {
  color: #fff;
}

.mobile-brand {
  display: none;
}

.mobile-menu-btn {
  display: none;
}

/* --------------------------------------------------------------------------
   MENÚ MÓVIL (DRAWER OFF-CANVAS)
   -------------------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.35s ease;
}

.mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(390px, 88vw);
  background: #081317;
  border-left: 1px solid rgba(235, 192, 112, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.65);
}

.mobile-drawer.is-open .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(235, 192, 112, 0.15);
  background: rgba(5, 13, 16, 0.95);
}

.drawer-brand {
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-sparkle {
  color: var(--gold);
  font-size: 14px;
}

.drawer-brand span em {
  font-style: normal;
  color: var(--gold);
  font: 600 11px var(--sans);
  letter-spacing: 3px;
  margin-left: 4px;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(235, 192, 112, 0.35);
  background: rgba(8, 20, 25, 0.85);
  color: var(--paper);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.drawer-close:hover,
.drawer-close:active {
  background: var(--gold);
  color: #071012;
  border-color: var(--gold);
  transform: scale(0.95);
}

.drawer-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 18px calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}

.drawer-link:hover,
.drawer-link:focus {
  background: rgba(235, 192, 112, 0.08);
  color: var(--gold);
}

.drawer-link.active {
  color: var(--gold);
  background: rgba(235, 192, 112, 0.12);
  font-weight: 600;
}

.drawer-icon,
.drawer-arrow {
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
}

.drawer-itinerary-group {
  margin: 6px 0 10px;
  padding: 14px 12px;
  background: rgba(11, 26, 31, 0.6);
  border: 1px solid rgba(235, 192, 112, 0.18);
  border-radius: 10px;
}

.drawer-itinerary-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.drawer-badge {
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 12px;
  background: rgba(235, 192, 112, 0.2);
  color: #fff;
  font-weight: 600;
}

.drawer-chapters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.drawer-chapter-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 9px;
  border-radius: 6px;
  border: 1px solid rgba(235, 192, 112, 0.18);
  background: rgba(5, 13, 16, 0.7);
  text-decoration: none;
  color: #ece6d8;
  font-size: 11px;
  font-family: var(--sans);
  transition: all 0.2s ease;
}

.drawer-chapter-chip b {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(235, 192, 112, 0.4);
  font-size: 9px;
  color: var(--gold);
  background: #071317;
  flex-shrink: 0;
  transition: all 0.2s;
}

.drawer-chapter-chip span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.drawer-chapter-chip:hover,
.drawer-chapter-chip.active {
  border-color: var(--gold);
  color: #fff;
  background: rgba(230, 182, 95, 0.18);
}

.drawer-chapter-chip.active b {
  background: var(--gold);
  color: #071012;
  border-color: var(--gold);
  font-weight: 700;
}

.drawer-cta {
  margin-top: 6px;
}

.button-drawer {
  width: 100%;
  min-height: 48px;
  border-radius: 24px;
}

.drawer-footer {
  text-align: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(235, 192, 112, 0.12);
}

.drawer-lang {
  display: inline-flex;
  gap: 6px;
  font-size: 11px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
}

.drawer-lang .active {
  color: var(--gold);
  font-weight: 700;
}

.drawer-footer p {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0 0 3px;
  text-transform: uppercase;
}

.drawer-footer small {
  font: italic 13px var(--serif);
  color: #9cb0b0;
}

/* --------------------------------------------------------------------------
   HERO / PORTADA
   -------------------------------------------------------------------------- */
.panel {
  height: 745px;
  position: relative;
  background: #050c0c;
  overflow: hidden;
}

.panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panel::after,
.chapter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 10, 10, 0.92) 0%, rgba(3, 10, 10, 0.48) 38%, rgba(3, 10, 10, 0.04) 74%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 130px;
  text-align: center;
  width: 42%;
  max-width: 540px;
}

.hero h1 {
  font: clamp(54px, 7.3vw, 122px) / 0.78 var(--display);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
}

.hero h1 em,
h2 em {
  display: block;
  font: italic 1.05em var(--serif);
  text-transform: none;
  color: #eec677;
  letter-spacing: -2px;
}

.hero-tagline {
  font: 20px / 1.3 var(--serif);
  margin: 36px 0 25px;
  color: #f7edd9;
}

.values {
  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
  max-width: 520px;
}

.values span {
  width: 25%;
  font-size: 30px;
  color: var(--gold);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding: 0 4px;
}

.values span:last-child {
  border: 0;
}

.values small {
  font: 9px / 1.3 var(--sans);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   MANIFIESTO
   -------------------------------------------------------------------------- */
.manifesto {
  padding: 95px max(9%, 100px);
  background: linear-gradient(90deg, #0b171a, #0a1010);
  display: flex;
  align-items: center;
  gap: 10%;
  border-bottom: 1px solid var(--line);
}

.script {
  color: #edbf64;
  font: italic 43px / 1.08 var(--serif);
  margin: 0;
}

.manifesto p:last-child {
  max-width: 650px;
  font: 20px / 1.55 var(--serif);
  color: #ece3cd;
}

/* --------------------------------------------------------------------------
   CAPÍTULOS / ITINERARIO (LIBRO 3D)
   -------------------------------------------------------------------------- */
.chapter {
  position: relative;
  min-height: 670px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 85px 9%;
  isolation: isolate;
}

.chapter::after {
  z-index: -1;
}

.chapter-right {
  justify-content: flex-end;
}

.chapter-right::after {
  background: linear-gradient(270deg, rgba(3, 10, 10, 0.95), rgba(3, 10, 10, 0.43) 48%, rgba(3, 10, 10, 0.12));
}

.chapter-copy {
  width: 420px;
}

.chapter h2,
.gallery h2,
.about h2,
.contact h2 {
  font: 56px / 0.92 var(--display);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px;
}

.chapter h2 em,
.gallery h2 em,
.about h2 em,
.contact h2 em {
  font-size: 0.82em;
}

.chapter-copy > p:not(.step),
.about p,
.contact p {
  font: 16px / 1.55 var(--serif);
  margin: 0 0 20px;
  color: #eae0cb;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0;
}

.tags span {
  border: 1px solid var(--line);
  color: #f5d58e;
  padding: 6px 10px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  background: rgba(7, 16, 18, 0.45);
}

/* --------------------------------------------------------------------------
   GALERÍA / DESTINOS
   -------------------------------------------------------------------------- */
.gallery {
  padding: 100px 9%;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 50px;
  background: #091416;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: saturate(0.9);
  border-radius: 6px;
  border: 1px solid rgba(235, 192, 112, 0.25);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  filter: saturate(1.05);
}

/* --------------------------------------------------------------------------
   PROPÓSITO / HISTORIAS
   -------------------------------------------------------------------------- */
.purpose {
  padding: 75px 9%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: #081114;
}

.purpose > div {
  display: flex;
  gap: 32px;
}

.purpose span {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 28px;
  text-align: center;
}

.purpose b {
  font: 10px / 1.35 var(--sans);
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   SOBRE NOSOTROS
   -------------------------------------------------------------------------- */
.about {
  min-height: 520px;
  display: grid;
  grid-template-columns: 55% 45%;
  background: #050b0d;
}

.about img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about > div {
  align-self: center;
  padding: 12%;
}

/* --------------------------------------------------------------------------
   CONTACTO
   -------------------------------------------------------------------------- */
.contact {
  padding: 100px 12%;
  background: linear-gradient(125deg, #101b1e, #090e0f);
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 10%;
  border-top: 1px solid var(--line);
}

form {
  display: grid;
  gap: 18px;
}

label {
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}

input,
textarea {
  font: 16px var(--sans);
  color: #fff;
  width: 100%;
  margin-top: 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  background: transparent;
  outline: none;
  resize: vertical;
  border-radius: 0;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--gold);
}

.form-status {
  font: 12px var(--sans) !important;
  margin: 0 !important;
  color: #f5d58e;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
  margin-left: 102px;
  background: #040909;
  padding: 24px 6%;
  font-size: 10px;
  letter-spacing: 1px;
  color: #c8bd9f;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(235, 192, 112, 0.1);
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVOS
   ========================================================================== */

/* Tablet y Desktop intermedio (hasta 1100px) */
@media (max-width: 1100px) {
  .topbar nav {
    gap: 16px;
  }

  .topbar nav a {
    font-size: 10px;
  }

  .chapter h2 {
    font-size: 46px;
  }

  .purpose > div {
    gap: 18px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery-grid img {
    height: 170px;
  }
}

/* --------------------------------------------------------------------------
   MÓVIL Y TABLET VERTICAL (hasta 992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  /* Layout general */
  main {
    margin-left: 0;
    width: 100%;
  }

  footer {
    margin-left: 0;
    padding: 28px 20px calc(28px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Ocultar barra lateral en móvil */
  .journey-nav {
    display: none;
  }

  /* Topbar móvil fija */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    background: rgba(6, 15, 18, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(235, 192, 112, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 18px;
    padding-right: 18px;
    z-index: 1000;
  }

  .topbar nav {
    display: none;
  }

  .topbar .button-small {
    display: none;
  }

  /* Logotipo móvil */
  .mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: 2px;
  }

  .mobile-brand span em {
    font-style: normal;
    color: var(--gold);
    font: 600 11px var(--sans);
    letter-spacing: 3px;
    margin-left: 3px;
  }

  .topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* Botón hamburguesa móvil */
  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(235, 192, 112, 0.35);
    background: rgba(8, 20, 24, 0.85);
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
  }

  .mobile-menu-btn:hover,
  .mobile-menu-btn:active {
    background: rgba(235, 192, 112, 0.15);
    border-color: var(--gold);
  }

  .hamburger-box {
    width: 18px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  .hamburger-line {
    width: 100%;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
  }

  .mobile-menu-btn.is-active .hamburger-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
    background: var(--gold);
  }

  .mobile-menu-btn.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
    background: var(--gold);
  }

  /* Selector de idioma móvil */
  .language {
    border: 1px solid rgba(235, 192, 112, 0.3);
    padding: 4px 8px;
    border-radius: 16px;
    background: rgba(5, 13, 16, 0.6);
  }

  /* Portada / Hero en móvil */
  .panel {
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    position: relative;
    background: #050c0c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 85px 20px 48px;
    overflow: hidden;
  }

  .panel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5, 13, 15, 0.88) 0%, rgba(5, 13, 15, 0.6) 45%, rgba(5, 13, 15, 0.96) 100%);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 480px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }

  .hero h1 {
    font: clamp(42px, 12vw, 68px) / 0.88 var(--display);
    letter-spacing: 2px;
  }

  .hero h1 em {
    font-size: 1.05em;
    letter-spacing: -1px;
    margin-top: 4px;
  }

  .hero-tagline {
    font: 16px / 1.45 var(--serif);
    margin: 22px auto 26px;
    max-width: 320px;
    color: #ede5d2;
  }

  /* Valores 2x2 en móvil */
  .values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 auto 28px;
    max-width: 360px;
    width: 100%;
  }

  .values span {
    width: auto;
    border: 1px solid rgba(235, 192, 112, 0.28);
    background: rgba(7, 18, 22, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 22px;
    color: var(--gold);
    text-align: center;
  }

  .values small {
    font: 500 8.5px / 1.3 var(--sans);
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
  }

  .hero .button {
    width: 100%;
    max-width: 290px;
    min-height: 50px;
    font-size: 11px;
    margin: 0 auto;
  }

  /* Manifiesto en móvil */
  .manifesto {
    padding: 68px 22px;
    flex-direction: column;
    text-align: center;
    gap: 22px;
    background: linear-gradient(180deg, #0b171a, #081012);
  }

  .script {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.15;
  }

  .manifesto p:last-child {
    font-size: 16px;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
  }

  /* Capítulos en móvil */
  .chapter {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: calc(130px + env(safe-area-inset-top, 0px)) 20px 36px;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    isolation: isolate;
  }

  .chapter::-webkit-scrollbar {
    width: 4px;
  }

  .chapter::-webkit-scrollbar-track {
    background: transparent;
  }

  .chapter::-webkit-scrollbar-thumb {
    background: rgba(235, 192, 112, 0.35);
    border-radius: 4px;
  }

  .chapter-right {
    justify-content: flex-start;
  }

  .chapter::after,
  .chapter-right::after {
    background: linear-gradient(180deg, rgba(5, 13, 15, 0.92) 0%, rgba(5, 13, 15, 0.65) 45%, rgba(5, 13, 15, 0.96) 100%);
  }

  .chapter-copy {
    width: 100% !important;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
  }

  .chapter h2 {
    font: clamp(28px, 7.5vw, 40px) / 1.02 var(--display);
    margin: 0 0 10px;
  }

  .chapter h2 em {
    font-size: 0.88em;
    letter-spacing: -1px;
    margin-top: 2px;
  }

  .chapter-copy > p:not(.step) {
    font: 14.5px / 1.55 var(--serif);
    margin: 0 0 14px;
  }

  .tags {
    margin: 12px 0 14px;
    gap: 6px;
  }

  .tags span {
    font-size: 8.5px;
    padding: 5px 8px;
    letter-spacing: 0.8px;
  }

  /* Destinos en móvil */
  .gallery {
    padding: 68px 20px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .gallery h2 {
    font: clamp(34px, 8.5vw, 48px) / 0.95 var(--display);
    text-align: center;
  }

  .gallery .step {
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-grid img {
    height: 145px;
  }

  /* Propósito en móvil */
  .purpose {
    padding: 68px 20px;
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .purpose .script {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.18;
  }

  .purpose > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .purpose span {
    border: 1px solid rgba(235, 192, 112, 0.22);
    background: rgba(7, 18, 22, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 26px;
  }

  .purpose b {
    font: 400 9.5px / 1.35 var(--sans);
  }

  /* Sobre Nosotros en móvil */
  .about {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .about img {
    height: 260px;
    width: 100%;
  }

  .about > div {
    padding: 40px 22px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
  }

  .about h2 {
    font: clamp(32px, 8vw, 44px) / 0.95 var(--display);
    margin-bottom: 16px;
  }

  /* Contacto en móvil */
  .contact {
    padding: 68px 20px 84px;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .contact > div {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
  }

  .contact h2 {
    font: clamp(32px, 8vw, 44px) / 0.95 var(--display);
    margin-bottom: 16px;
  }

  form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    gap: 18px;
  }

  input,
  textarea {
    font-size: 16px; /* Evita zoom automático en Safari iOS */
    padding: 12px 0;
  }

  .contact .button {
    width: 100%;
    min-height: 52px;
  }
}

/* --------------------------------------------------------------------------
   PANTALLAS MUY COMPACTAS (hasta 380px)
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 38px;
  }

  .chapter h2 {
    font-size: 26px;
  }

  .values {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 180px;
  }

  .purpose > div {
    grid-template-columns: 1fr;
  }

  .drawer-chapters-grid {
    grid-template-columns: 1fr;
  }
}
