@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Pinyon+Script&display=swap');

:root {
  --jungle-green-dark: #172018;
  --jungle-green-light: #2A4736;
  --bg-parchment: #F2E9D2;
  --bg-parchment-dark: #D6C195;
  --bg-card: rgba(239, 225, 190, 0.82);
  --bg-card-light: rgba(255, 249, 226, 0.8);
  --text-ink: #3A2D1F;
  --text-ink-light: #63533E;
  --gold-lotus: #B98A24;
  --gold-lotus-dark: #73551A;
  --gold-lotus-light: #D8A93B;
  --coral-accent: #C95F38;
  
  /* Fuentes */
  --font-title: 'Cormorant Garamond', serif;
  --font-decorative: 'Cinzel Decorative', serif;
  --font-italic: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Pinyon Script', cursive;
  --font-hero-names: 'Fifteenth Century', 'Windsor Antique', var(--font-decorative);
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 8px 22px rgba(59, 44, 23, 0.1);
  --shadow-medium: 0 14px 34px rgba(43, 35, 24, 0.18);
  --shadow-premium: 0 22px 58px rgba(11, 18, 13, 0.42);
}

/* Reset y Estilos Globales */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 107, 67, 0.18), transparent 25%),
    radial-gradient(circle at 82% 16%, rgba(197, 155, 39, 0.18), transparent 22%),
    linear-gradient(145deg, #0e1812 0%, #1f3527 52%, #0d1510 100%);
  color: var(--text-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Scrollbar Vintage */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--jungle-green-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-lotus);
  border: 2px solid var(--jungle-green-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-lotus-light);
}

/* ==========================================
   ESTRUCTURA DE TARJETA PERGAMINO DE LA WEB
   ========================================== */
.parchment-wrapper {
  width: 100%;
  max-width: 100%;
  background: radial-gradient(circle, var(--bg-card-light) 0%, var(--bg-parchment) 70%, var(--bg-parchment-dark) 100%);
  position: relative;
  min-height: 100vh;
  padding: 18px 60px 80px 60px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .parchment-wrapper {
    padding: 10px 24px 60px 24px;
  }
}

/* En resoluciones de escritorio se comporta como una invitación física flotante */
@media (min-width: 992px) {
  body {
    padding: 50px 0;
  }
  .parchment-wrapper {
    max-width: 960px;
    min-height: calc(100vh - 100px);
    border-radius: 16px;
    box-shadow: inset 0 0 120px rgba(43, 37, 35, 0.22), var(--shadow-premium);
  }
}

@media (min-width: 992px) {
  .home-wrapper {
    height: calc(100vh - 100px);
    overflow: hidden;
  }
  .home-wrapper .hero {
    min-height: auto;
    margin-top: -126px; /* Desplazamiento mayor en escritorio para subir el contenido más */
  }
}

/* ==========================================
   BARRA DE NAVEGACIÓN SUPERIOR (NAVBAR GLASSMORPHISM)
   ========================================== */
.navbar {
  position: sticky;
  top: 0;
  left: auto;
  transform: none;
  width: min(100%, 900px);
  max-width: 900px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  flex-wrap: wrap;
  padding: 14px 32px;
  background: rgba(245, 242, 235, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 155, 39, 0.2);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(18, 31, 23, 0.08);
  transition: var(--transition-smooth);
  margin: 0 auto 48px;
}

.navbar a {
  color: var(--text-ink);
  text-decoration: none;
  opacity: 0.65;
  transition: var(--transition-smooth);
  padding: 6px 12px;
  border-radius: 20px;
  position: relative;
}

.navbar a:hover {
  opacity: 1;
  color: var(--gold-lotus-dark);
}

.navbar a.active {
  opacity: 1;
  color: var(--bg-parchment);
  background-color: var(--jungle-green-light);
  box-shadow: 0 4px 10px rgba(18, 31, 23, 0.15);
}

@media (max-width: 768px) {
  .navbar {
    top: 0;
    width: 100%;
    padding: 8px 16px;
    gap: 8px;
    justify-content: space-evenly;
  }
  .navbar a {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    padding: 4px 8px;
  }
}

/* ==========================================
   TIPOGRAFÍA Y TITULARES VINTAGE
   ========================================== */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--jungle-green-dark);
}

.page-title {
  font-size: 2.8rem;
  color: var(--jungle-green-dark);
  text-align: center;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.page-subtitle {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-ink);
  opacity: 0.85;
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .page-title { font-size: 2rem; }
  .page-subtitle { font-size: 1.1rem; margin-bottom: 32px; }
}

/* Frase Caligráfica de Dos Caminos */
.script-phrase {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--text-ink);
  text-align: center;
  margin: 36px auto;
  line-height: 1.2;
  font-weight: 400;
  max-width: 600px;
  text-transform: none;
  letter-spacing: normal;
  text-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

@media (max-width: 768px) {
  .script-phrase {
    font-size: 1.8rem;
    margin: 24px auto;
  }
}

/* Divisores de Páginas */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  width: 100%;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 155, 39, 0.4) 50%, transparent);
}

.divider-icon {
  color: var(--gold-lotus);
  font-size: 1.5rem;
  margin: 0 16px;
  font-family: var(--font-title);
}

/* ==========================================
   HERO / PORTADA
   ========================================== */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 680px;
  min-height: calc(100vh - 230px);
  padding: 20px 0;
}

.hero-monogram {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.95;
  filter: drop-shadow(0 4px 10px rgba(197, 155, 39, 0.15));
  transition: var(--transition-smooth);
}

.hero-monogram:hover {
  transform: none;
}

.hero-names {
  font-size: 3.8rem;
  color: var(--text-ink);
  line-height: 1.1;
  margin-bottom: 16px;
  font-family: var(--font-title);
  text-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.hero-names span {
  display: block;
  font-family: var(--font-decorative);
  font-size: 1.8rem;
  color: var(--gold-lotus);
  margin: 8px 0;
}

.hero-date {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--jungle-green-light);
  margin-bottom: 6px;
}

.hero-location {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-ink);
  opacity: 0.8;
  margin-bottom: 48px;
}

/* ==========================================
   BOTONES E INTERACCIONES (CON EFECTO DE SHIMMER)
   ========================================== */
.btn {
  display: inline-block;
  background-color: var(--gold-lotus);
  color: var(--bg-parchment);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 36px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.3);
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 155, 39, 0.5);
  background-color: var(--gold-lotus-dark);
}

.btn:hover::after {
  left: 130%;
  transition: all 0.6s ease;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-ink);
  border: 1.5px solid var(--gold-lotus);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--bg-card);
  color: var(--jungle-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ==========================================
   ESTILOS DE CONTENEDOR DE TARJETAS (CARDS CON EFECTO QUEMADO)
   ========================================== */
.card {
  background-color: var(--bg-card-light);
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 28px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.card:hover {
  border-color: var(--gold-lotus);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}



/* ==========================================
   PREGUNTAS FRECUENTES (FAQ INTERACTIVO ACCORDION)
   ========================================== */
.faq-container {
  width: 100%;
}

.faq-item {
  background: var(--bg-card-light);
  border: 1px solid rgba(197, 155, 39, 0.2);
  border-radius: 6px;
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--gold-lotus);
}

.faq-question {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--jungle-green-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  padding: 20px 24px;
  transition: var(--transition-smooth);
}

.faq-question::after {
  content: '＋';
  font-size: 1rem;
  color: var(--gold-lotus);
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--gold-lotus);
  box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-question {
  background: rgba(197, 155, 39, 0.05);
  border-bottom: 1px solid rgba(197, 155, 39, 0.15);
}

.faq-item.active .faq-question::after {
  content: '－';
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
}

.faq-answer-inner {
  padding: 20px 0;
  font-size: 0.95rem;
  opacity: 0.9;
  color: var(--text-ink-light);
}

.faq-group {
  margin-top: 34px;
}

.faq-group:first-of-type {
  margin-top: 0;
}

.faq-group-heading {
  margin-bottom: 18px;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(115, 85, 26, .2);
}

.faq-group-heading .travel-kicker {
  margin-bottom: 4px;
}

.faq-group-heading h2 {
  margin: 0;
  color: var(--jungle-green-light);
  font-size: clamp(1.55rem, 2.7vw, 2rem);
  line-height: 1.18;
  letter-spacing: .01em;
  text-transform: none;
}

.faq-question::after {
  content: '+';
  flex: 0 0 auto;
  margin-left: 18px;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: none;
}

.faq-answer-inner {
  line-height: 1.72;
}

.faq-answer-inner p {
  margin: 0;
}

.faq-answer-inner p + p {
  margin-top: 12px;
}

.faq-answer-inner a {
  color: var(--coral-accent);
  font-weight: 700;
  text-decoration-color: rgba(201, 95, 56, .5);
  text-underline-offset: 3px;
}

.faq-answer-inner a:hover {
  color: var(--gold-lotus-dark);
  text-decoration-color: currentColor;
}

.faq-answer-inner a:focus-visible {
  outline: 3px solid rgba(201, 95, 56, .4);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .faq-group {
    margin-top: 28px;
  }

  .faq-question {
    padding: 18px;
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .faq-answer {
    padding: 0 18px;
  }
}

/* ==========================================
   GUÍA DE VIAJE Y LOGÍSTICA
   ========================================== */
.logistics-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Sello de Pasaporte Vintage (Fondo SVG 4% opacidad) */
.logistics-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%232B2523' stroke-width='1.5' stroke-dasharray='4,4'/%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%232B2523' stroke-width='1'/%3E%3Ctext x='50' y='35' font-family='Georgia' font-size='6' text-anchor='middle' fill='%232B2523' letter-spacing='1'%3EBALI ADMISSION%3C/text%3E%3Ctext x='50' y='55' font-family='Georgia' font-weight='bold' font-size='10' text-anchor='middle' fill='%232B2523'%3E11 SEP 2027%3C/text%3E%3Ctext x='50' y='72' font-family='Georgia' font-size='6' text-anchor='middle' fill='%232B2523'%3EDPS AIRPORT%3C/text%3E%3Cpath d='M25 50 h50' stroke='%232B2523' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.warning-box {
  background-color: rgba(217, 107, 67, 0.08);
  border: 1px solid var(--coral-accent);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 24px;
  width: 100%;
}

.warning-box h4 {
  color: var(--coral-accent);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.hotel-option {
  border-bottom: 1px dashed rgba(197, 155, 39, 0.3);
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.hotel-option:hover {
  background-color: rgba(197, 155, 39, 0.02);
  padding-left: 10px;
}

.hotel-option:last-child {
  border-bottom: none;
}

.hotel-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--jungle-green-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-note {
  color: var(--gold-lotus-dark);
  font-size: 0.72rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ==========================================
   EL PLAN DETALLADO (TIMELINE LEGACY)
   ========================================== */
.itinerary-list {
  width: 100%;
  position: relative;
  padding-left: 32px;
}

.itinerary-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-lotus) 0%, rgba(197, 155, 39, 0.1) 100%);
}

.itinerary-day {
  position: relative;
  margin-bottom: 48px;
}

.itinerary-day::before {
  content: '✦';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gold-lotus);
  background: var(--bg-parchment);
  border-radius: 50%;
  z-index: 2;
}

.itinerary-day-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--jungle-green-light);
  border-bottom: 1.5px solid var(--gold-lotus);
  padding-bottom: 6px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.itinerary-day-title span {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  text-transform: none;
  opacity: 0.8;
}

.event-box {
  background-color: var(--bg-card-light);
  border: 1px solid rgba(197, 155, 39, 0.2);
  border-left: 4px solid var(--gold-lotus);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.event-box:hover {
  transform: translateX(4px);
  border-color: var(--gold-lotus);
  box-shadow: var(--shadow-medium);
}

.event-time {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--coral-accent);
  font-size: 0.85rem;
}

.event-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--text-ink);
  margin: 6px 0 10px 0;
}

.event-desc {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-ink-light);
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jungle-green-light);
  text-decoration: none;
  border: 1.5px solid rgba(42, 71, 54, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.calendar-link:hover {
  background-color: var(--jungle-green-light);
  color: var(--bg-parchment);
  border-color: var(--jungle-green-light);
}

/* ==========================================
   EL PLAN (CUADRÍCULA EDITORIAL)
   ========================================== */
.plan-section {
  width: 100%;
  max-width: 1180px;
  margin-top: 20px;
}

.plan-accent-image {
  width: min(100%, 320px);
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--gold-lotus);
  box-shadow: var(--shadow-medium);
  margin: 0 auto 28px;
  display: block;
  opacity: 0.92;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  align-items: stretch;
}

.plan-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.78), rgba(235, 216, 170, 0.68));
  border: 1px solid rgba(115, 85, 26, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.plan-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-lotus);
  box-shadow: var(--shadow-medium);
}

.plan-card-featured {
  border-color: rgba(201, 95, 56, 0.58);
  box-shadow: 0 12px 30px rgba(201, 95, 56, 0.12);
}

.plan-card-header {
  min-height: 174px;
  padding: 20px 18px 18px;
  background:
    linear-gradient(180deg, rgba(42, 71, 54, 0.92), rgba(34, 55, 41, 0.96));
  border-bottom: 3px solid var(--gold-lotus);
  color: var(--bg-parchment);
}

.plan-card-featured .plan-card-header {
  border-bottom-color: var(--coral-accent);
}

.plan-day {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lotus-light);
  margin-bottom: 12px;
}

.plan-card-header h3 {
  color: var(--bg-parchment);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.plan-card-header p {
  color: rgba(255, 246, 217, 0.82);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.35;
}

.plan-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 18px 18px;
}

.plan-card .event-title {
  font-size: 1.18rem;
  line-height: 1.18;
  margin: 7px 0 10px;
}

.plan-card .event-desc {
  font-size: 0.9rem;
  line-height: 1.58;
  margin-bottom: 18px;
}

.plan-details {
  display: grid;
  gap: 12px;
  margin: auto 0 18px;
}

.plan-details div {
  border-top: 1px solid rgba(115, 85, 26, 0.18);
  padding-top: 10px;
}

.plan-details dt {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-accent);
  margin-bottom: 3px;
}

.plan-details dd {
  color: var(--text-ink-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

.plan-calendar-links {
  display: grid;
  gap: 8px;
}

.plan-calendar-links .calendar-link {
  justify-content: center;
  width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.66rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1080px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 620px) {
  .plan-accent-image {
    width: min(100%, 240px);
    height: 122px;
    margin-bottom: 24px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card-header {
    min-height: auto;
  }
}

/* ==========================================
   FORMULARIO RSVP
   ========================================== */
.rsvp-section {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
  width: 100%;
}

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--jungle-green-dark);
}

.form-control {
  width: 100%;
  background-color: rgba(255, 250, 231, 0.85);
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-ink);
  transition: var(--transition-smooth);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-lotus);
  background-color: #FFFFFF;
  box-shadow: 0 0 16px rgba(197, 155, 39, 0.15), inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.search-wrapper {
  display: flex;
  gap: 12px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .search-wrapper {
    flex-direction: column;
  }
}

.search-results {
  background-color: var(--bg-card-light);
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-top: none;
  border-radius: 0 0 8px 8px;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  display: none;
  width: 100%;
  box-shadow: var(--shadow-medium);
}

.search-results li {
  padding: 14px 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(197, 155, 39, 0.1);
  color: var(--text-ink);
}

.search-results li:hover {
  background-color: rgba(197, 155, 39, 0.12);
  color: var(--jungle-green-light);
}

#rsvp-details-form {
  display: none;
  margin-top: 32px;
  width: 100%;
  animation: slideDown 0.45s ease;
}

.attendance-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .attendance-options {
    grid-template-columns: 1fr;
  }
}

.custom-radio {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: 12px;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.custom-radio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/balinese-pattern.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.custom-radio:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 155, 39, 0.6);
  box-shadow: 0 12px 40px rgba(197, 155, 39, 0.1);
  background: rgba(255, 255, 255, 0.85);
}

.custom-radio:hover::before {
  opacity: 0.1;
}

.custom-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Checked States */
.custom-radio:has(input[type="radio"][value="Confirmado"]:checked) {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--gold-lotus);
  box-shadow: 0 0 0 1px var(--gold-lotus), 0 12px 40px rgba(197, 155, 39, 0.15);
}

.custom-radio:has(input[type="radio"][value="Cancelado"]:checked) {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(23, 38, 28, 0.3);
  box-shadow: 0 0 0 1px rgba(23, 38, 28, 0.3), 0 12px 40px rgba(23, 38, 28, 0.08);
  filter: grayscale(0.2);
}

.custom-radio:has(input[type="radio"]:checked)::before {
  opacity: 0.15;
}

/* Internal Layout */
.radio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.radio-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(197, 155, 39, 0.15);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.radio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.radio-symbol {
  font-size: 36px;
  color: var(--gold-lotus);
  font-weight: 200;
  font-variation-settings: 'FILL' 0, 'wght' 200;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-radio:has(input[type="radio"][value="Cancelado"]) .radio-symbol {
  color: rgba(23, 38, 28, 0.6);
}

.custom-radio:hover .radio-icon-wrapper {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(197, 155, 39, 0.4);
}

.custom-radio:has(input[type="radio"][value="Confirmado"]:checked) .radio-icon-wrapper {
  background: var(--gold-lotus);
  border-color: var(--gold-lotus);
}

.custom-radio:has(input[type="radio"][value="Confirmado"]:checked) .radio-symbol {
  color: #FFF;
  font-variation-settings: 'FILL' 1, 'wght' 300;
  transform: scale(1.1);
}

.custom-radio:has(input[type="radio"][value="Cancelado"]:checked) .radio-icon-wrapper {
  background: rgba(23, 38, 28, 0.7);
  border-color: rgba(23, 38, 28, 0.8);
}

.custom-radio:has(input[type="radio"][value="Cancelado"]:checked) .radio-symbol {
  color: #FFF;
  font-variation-settings: 'FILL' 1, 'wght' 300;
  transform: scale(1.1);
}

.radio-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--jungle-green-dark);
  text-align: center;
  transition: color 0.3s ease;
}

.custom-radio:has(input[type="radio"][value="Confirmado"]:checked) .radio-title {
  color: var(--gold-lotus);
  font-weight: 600;
}

.custom-checkbox input {
  accent-color: var(--coral-accent);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-group-days {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.day-checkbox-label {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-ink);
  box-shadow: var(--shadow-soft);
}

.day-checkbox-label:hover {
  transform: translateX(4px);
  background-color: #FFFFFF;
  border-color: var(--gold-lotus);
  box-shadow: var(--shadow-medium);
}

.day-checkbox-label span strong {
  color: var(--jungle-green-light);
  font-family: var(--font-title);
  font-size: 1.1rem;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   ADMIN PANEL E HISTORIAL
   ========================================== */
.admin-summary-grid, .admin-dashboard-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
  width: 100%;
}

.summary-card, .stat-card {
  background-color: var(--bg-card-light);
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.summary-card:hover, .stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-lotus);
  box-shadow: var(--shadow-medium);
}

.summary-value, .stat-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--jungle-green-light);
  margin-bottom: 4px;
}

.summary-label, .stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-ink-light);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid rgba(197, 155, 39, 0.2);
  box-shadow: var(--shadow-soft);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-card-light);
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  background-color: rgba(197, 155, 39, 0.08);
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 14px 18px;
  color: var(--jungle-green-dark);
  border-bottom: 1.5px solid rgba(197, 155, 39, 0.2);
}

.admin-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(197, 155, 39, 0.1);
  color: var(--text-ink);
}

.admin-table tr:hover {
  background-color: rgba(197, 155, 39, 0.03);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pending {
  background-color: rgba(197, 155, 39, 0.12);
  color: var(--gold-lotus-dark);
}

.badge-confirmed {
  background-color: rgba(34, 58, 44, 0.1);
  color: var(--jungle-green-light);
}

.badge-cancelled {
  background-color: rgba(217, 107, 67, 0.1);
  color: var(--coral-accent);
}

/* ==========================================
   PIE DE PÁGINA
   ========================================= */
footer {
  text-align: center;
  padding: 40px 0 0 0;
  margin-top: auto;
  font-family: var(--font-title);
  color: var(--text-ink);
  opacity: 0.8;
  font-size: 1rem;
  border-top: 1px solid rgba(197, 155, 39, 0.2);
  width: 100%;
}

/* ==========================================
   REFRESH VISUAL: SAVE THE DATE / BALI VINTAGE
   ========================================== */




.parchment-wrapper {
  isolation: isolate;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 248, 220, 0.86), transparent 34%),
    radial-gradient(circle at 16% 12%, rgba(85, 120, 82, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(201, 95, 56, 0.22), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(201, 95, 56, 0.18), transparent 28%),
    radial-gradient(circle at 82% 84%, rgba(43, 71, 54, 0.22), transparent 30%),
    linear-gradient(180deg, var(--bg-parchment) 0%, #E7D6A9 100%);
  box-shadow:
    inset 0 0 80px rgba(82, 54, 22, 0.28),
    inset 0 0 0 1px rgba(255, 245, 208, 0.3);
}

.parchment-wrapper::before,
.parchment-wrapper::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.parchment-wrapper::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 252, 224, 0.72), transparent 30%),
    radial-gradient(circle at 50% 62%, rgba(240, 230, 191, 0.62), transparent 38%),
    repeating-linear-gradient(0deg, rgba(69, 43, 17, 0.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
}

.parchment-wrapper::after {
  inset: 0;
  background:
    radial-gradient(circle at 6% 6%, rgba(43, 71, 54, 0.34), transparent 23%),
    radial-gradient(circle at 94% 8%, rgba(201, 95, 56, 0.32), transparent 24%),
    radial-gradient(circle at 10% 88%, rgba(201, 95, 56, 0.26), transparent 25%),
    radial-gradient(circle at 88% 86%, rgba(43, 71, 54, 0.32), transparent 27%);
  filter: saturate(0.95);
  opacity: 0.72;
}

.parchment-wrapper > * {
  z-index: 2;
}

.navbar {
  position: sticky;
}

.parchment-wrapper main,
.parchment-wrapper header,
.parchment-wrapper footer {
  position: relative;
}

.navbar {
  top: 0;
  max-width: 980px;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(239, 225, 190, 0.97);
  border: 1px solid rgba(115, 85, 26, 0.24);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(50, 38, 21, 0.14);
  letter-spacing: 0.11em;
  z-index: 1000;
}

.navbar a {
  border-radius: 4px;
  color: var(--text-ink);
  opacity: 0.78;
  padding: 5px 9px;
}

.navbar a:hover {
  color: var(--gold-lotus-dark);
  background: rgba(255, 248, 220, 0.42);
}

.navbar a.active {
  color: #FBF4D6;
  background: linear-gradient(180deg, var(--jungle-green-light), var(--jungle-green-dark));
  box-shadow: inset 0 0 0 1px rgba(255, 241, 188, 0.18);
}

h1, h2, h3, h4,
.page-title,
.event-title,
.itinerary-day-title,
.faq-question {
  color: #243421;
  letter-spacing: 0.035em;
}

.page-title {
  text-shadow: 0 2px 0 rgba(255, 248, 220, 0.58);
}

.page-subtitle,
.script-phrase {
  color: var(--gold-lotus-dark);
  text-shadow: 0 1px 0 rgba(255, 248, 220, 0.65);
}

.rsvp-wrapper {
  padding-top: 102px;
  background: url('../assets/bg-rsvp-v2.webp') center / cover no-repeat;
  background-attachment: fixed;
}

.rsvp-wrapper::before {
  content: none;
}

.rsvp-wrapper::after {
  content: none;
}

.home-wrapper {
  padding: 102px 54px 18px;
  background: url('../assets/home-background.webp') center / cover no-repeat;
}

.home-wrapper::before {
  content: none;
}

.home-wrapper::after {
  content: none;
}

.home-wrapper .hero {
  max-width: 640px;
  min-height: auto;
  padding: 18px 0 0;
  justify-content: center;
  margin-top: -30px; /* Ajuste mayor para móvil */
}

@media (min-width: 992px) {
  .home-wrapper .hero {
    margin-top: -126px; /* Desplazamiento mayor en escritorio para subir el contenido */
  }
}

.home-wrapper .hero-monogram {
  margin-top: auto;
}

.home-wrapper .btn {
  margin-top: auto;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.hero-monogram {
  width: clamp(168px, 25.5vw, 255px);
  border-radius: 0;
  margin-bottom: 14px;
  mix-blend-mode: normal;
  opacity: 0.96;
  filter: sepia(0.1) saturate(0.98) contrast(1.04) drop-shadow(0 7px 12px rgba(92, 63, 22, 0.16));
}

.hero-monogram:hover {
  transform: none;
  filter: sepia(0.1) saturate(0.98) contrast(1.04) drop-shadow(0 7px 12px rgba(92, 63, 22, 0.16));
}

.hero-names {
  font-family: var(--font-hero-names);
  font-size: clamp(2rem, 5vw, 3.9rem);
  margin-bottom: 18px;
  color: #6B4B14;
  line-height: 0.94;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255, 248, 221, 0.92),
    0 3px 8px rgba(55, 36, 16, 0.22);
}

.hero-names span {
  display: inline;
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  color: inherit;
  margin: 0 0.12em;
  text-shadow:
    0 1px 0 rgba(255, 248, 221, 0.85),
    0 2px 6px rgba(55, 36, 16, 0.2);
}

.home-wrapper .script-phrase {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  max-width: 560px;
  margin: 12px auto 15px;
  line-height: 1.08;
  color: #6A4716;
  text-shadow:
    0 1px 0 rgba(255, 250, 226, 0.95),
    0 2px 6px rgba(73, 48, 17, 0.2);
}

.hero-date {
  font-size: clamp(1.18rem, 2.7vw, 1.6rem);
  color: #284B36;
  margin-bottom: 1px;
  font-weight: 600;
  text-shadow:
    0 1px 0 rgba(255, 250, 226, 0.9),
    0 2px 5px rgba(25, 39, 28, 0.18);
}

.hero-location {
  color: #2F2A20;
  letter-spacing: 0.2em;
  margin-bottom: 26px;
  opacity: 0.96;
  text-shadow:
    0 1px 0 rgba(255, 250, 226, 0.82),
    0 2px 4px rgba(45, 35, 21, 0.16);
}

.btn {
  border-radius: 6px;
  background: linear-gradient(180deg, var(--gold-lotus-light), var(--gold-lotus) 52%, #9B741F);
  color: var(--bg-parchment);
  font-family: var(--font-decorative);
  letter-spacing: 0.08em;
  padding: 13px 26px;
  box-shadow: 0 10px 22px rgba(137, 94, 22, 0.28);
}

.btn:hover {
  background: linear-gradient(180deg, #DDB145, var(--gold-lotus-dark));
}

.btn-secondary {
  background: rgba(255, 248, 220, 0.28);
  color: var(--gold-lotus-dark);
  border-color: rgba(115, 85, 26, 0.42);
}

.card,
.event-box,
.faq-item,
.summary-card,
.stat-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.72), rgba(235, 216, 170, 0.68));
  border-color: rgba(115, 85, 26, 0.34);
  box-shadow: var(--shadow-soft);
}

.warning-box,
.climate-warning {
  background: rgba(201, 95, 56, 0.1);
  border-color: rgba(201, 95, 56, 0.58);
}

.form-control {
  background: rgba(255, 250, 231, 0.78);
  border-color: rgba(115, 85, 26, 0.34);
}

.day-checkbox-label {
  background: rgba(255, 248, 220, 0.42);
  border-color: rgba(115, 85, 26, 0.24);
}

/* ==========================================
   DESTINO (HOTEL TUGU BALI / CANGGU)
   ========================================== */
.destination-section {
  width: 100%;
  max-width: 980px;
  margin-top: 0;
  position: relative;
}

.destination-section::before {
  content: '';
  position: absolute;
  top: 120px;
  right: -52px;
  width: 220px;
  height: 220px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Ccircle cx='60' cy='60' r='52' stroke='%2373551A' stroke-width='1.2' stroke-dasharray='5 6'/%3E%3Cpath d='M31 70c18-28 37-43 63-51M38 82c15-21 31-32 54-38M31 70c19 2 33 9 43 23M45 54c14 1 25 6 34 18' stroke='%2373551A' stroke-width='1.4' stroke-linecap='round'/%3E%3Ctext x='60' y='103' font-family='Georgia' font-size='8' text-anchor='middle' fill='%2373551A' letter-spacing='2'%3ECANGGU%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.destination-hero {
  width: 100%;
  margin: 0 0 34px;
  border: 1px solid rgba(115, 85, 26, 0.38);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  background: rgba(255, 248, 220, 0.42);
  position: relative;
}

.destination-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 31, 23, 0.08), rgba(18, 31, 23, 0.24)),
    radial-gradient(circle at 50% 44%, rgba(18, 31, 23, 0.18), rgba(18, 31, 23, 0.42));
  pointer-events: none;
}

.destination-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.destination-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
}

.destination-hero-copy .page-title {
  color: var(--bg-parchment);
  margin-bottom: 10px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.destination-hero-copy .page-subtitle {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--bg-parchment-dark);
  opacity: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.destination-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.7), rgba(235, 216, 170, 0.58));
  border: 1px solid rgba(115, 85, 26, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  position: relative;
}

.destination-card + .destination-card {
  margin-top: 28px;
}

.destination-card-with-media {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.destination-card-with-media-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.destination-card-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(115, 85, 26, 0.28);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(43, 35, 24, 0.12);
  background: rgba(255, 248, 220, 0.42);
}

.destination-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.destination-card-copy {
  min-width: 0;
  align-self: start;
}

.destination-kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-accent);
  margin-bottom: 8px;
}

.destination-card h3,
.destination-notes h3 {
  font-size: 2rem;
  color: var(--jungle-green-light);
  margin-bottom: 18px;
}

.destination-card p,
.destination-notes p {
  color: var(--text-ink-light);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 16px;
}

.destination-card-copy p,
.destination-highlights p,
.destination-note-grid p {
  text-align: justify;
  text-align-last: left;
  hyphens: none;
}

.destination-card p:last-child,
.destination-highlights article p,
.destination-note-grid article p {
  margin-bottom: 0;
}

.destination-highlights {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.destination-highlights article {
  border-left: 3px solid var(--gold-lotus);
  padding: 4px 0 4px 18px;
}

.destination-highlights h4,
.destination-note-grid h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--jungle-green-light);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.destination-notes {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(115, 85, 26, 0.28);
  border-radius: 8px;
  background: rgba(42, 71, 54, 0.08);
}

.destination-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.destination-note-grid article {
  background: rgba(255, 248, 220, 0.42);
  border: 1px solid rgba(115, 85, 26, 0.22);
  border-radius: 8px;
  padding: 26px;
}

.destination-notes > h3 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: .01em;
  text-transform: none;
}

.destination-note-grid h4 {
  min-height: 0;
  margin-bottom: 11px;
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.25;
  letter-spacing: .015em;
  text-transform: none;
}

.destination-note-grid h4::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 8px;
  background: var(--gold-lotus);
}

.destination-note-grid article p {
  font-size: .98rem;
  line-height: 1.68;
  text-align: left;
  text-align-last: auto;
}

@media (max-width: 768px) {
  .destination-hero {
    margin-bottom: 26px;
  }

  .destination-hero img {
    aspect-ratio: 4 / 3;
  }

  .destination-card,
  .destination-notes {
    padding: 24px;
  }

  .destination-card-with-media,
  .destination-card-with-media-reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .destination-card-media {
    order: -1;
  }

  .destination-card-media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .destination-card h3,
  .destination-notes h3 {
    font-size: 1.55rem;
  }

  .destination-note-grid {
    grid-template-columns: 1fr;
  }

  .destination-note-grid h4 {
    min-height: 0;
  }

  .destination-section::before {
    right: 0;
    opacity: 0.06;
  }
}

footer {
  padding: 18px 0 0;
  border-top-color: rgba(115, 85, 26, 0.28);
  color: var(--gold-lotus-dark);
}

.home-wrapper footer {
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  body {
    padding: 0;
  }

  .parchment-wrapper {
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
  }

  .home-wrapper {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }

  .home-wrapper .script-phrase {
    margin: 8px auto 10px;
  }

  .home-wrapper .hero-location {
    margin-bottom: 12px;
  }
}

@media (max-width: 991px) {
  .home-wrapper {
    min-height: 100svh;
    padding: 102px 30px 10px;
  }

}

@media (max-width: 768px) {
  .parchment-wrapper {
    padding: 10px 22px 44px;
  }

  .home-wrapper {
    padding: 102px 20px 10px;
  }

  .navbar {
    top: 0;
    width: 100%;
    padding: 7px 8px;
    gap: 4px;
    border-radius: 7px;
  }

  .navbar a {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    padding: 4px 6px;
  }

  .hero-location {
    margin-bottom: 20px;
  }

  .script-phrase {
    margin: 18px auto;
  }

}

@media (max-width: 420px) {
  .home-wrapper {
    padding: 102px 16px 10px;
  }

  .hero-names {
    font-size: clamp(1.55rem, 10vw, 2rem);
  }

  .home-wrapper .script-phrase {
    max-height: 0;
    margin: 0;
    overflow: hidden;
  }

  .hero-monogram {
    width: 153px;
    margin-bottom: 10px;
  }

  .hero-location {
    font-size: 0.7rem;
    margin-bottom: 18px;
  }

  .btn {
    width: min(100%, 310px);
    padding: 12px 16px;
    font-size: 0.68rem;
  }
}

.destination-wrapper,
.faq-wrapper {
  padding-top: 102px;
}

.destination-wrapper .navbar,
.faq-wrapper .navbar {
  margin-bottom: 34px;
}

@media (max-width: 768px) {
  .destination-wrapper,
  .faq-wrapper {
    padding-top: 102px;
  }

  .destination-wrapper .navbar,
  .faq-wrapper .navbar {
    margin-bottom: 26px;
  }

  .destination-hero-copy {
    padding: 26px 22px;
  }

  .destination-hero-copy .page-title {
    font-size: 2.05rem;
  }

  .destination-hero-copy .page-subtitle {
    font-size: 1.05rem;
    line-height: 1.35;
  }
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);
  max-width: 980px;
  margin: 0;
}

.destination-wrapper .navbar,
.faq-wrapper .navbar {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .navbar {
    top: 10px;
    width: calc(100% - 44px);
  }
}

/* ==========================================
   EL PLAN (TIMELINE EDITORIAL)
   ========================================== */
.plan-wrapper {
  padding-top: 102px;
}

.plan-wrapper .navbar {
  margin-bottom: 0;
}

.plan-editorial {
  width: 100%;
  max-width: 980px;
  margin-top: 0;
  position: relative;
}

.plan-editorial::before {
  content: '';
  position: absolute;
  top: 150px;
  left: -58px;
  width: 210px;
  height: 210px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Ccircle cx='60' cy='60' r='51' stroke='%2373551A' stroke-width='1.1' stroke-dasharray='4 7'/%3E%3Cpath d='M60 24c13 12 21 24 23 37-13-2-25-9-36-22 2 16 9 30 21 43-17-5-30-15-39-30' stroke='%2373551A' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ctext x='60' y='104' font-family='Georgia' font-size='8' text-anchor='middle' fill='%2373551A' letter-spacing='2'%3EBALI%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.plan-hero {
  margin-bottom: 34px;
}

.plan-hero img {
  aspect-ratio: 16 / 7;
  object-position: center 48%;
}

.plan-hero::after {
  background:
    linear-gradient(180deg, rgba(18, 31, 23, 0.08), rgba(18, 31, 23, 0.26)),
    radial-gradient(circle at 50% 44%, rgba(18, 31, 23, 0.12), rgba(18, 31, 23, 0.45));
}

.plan-hero-copy .page-title {
  color: var(--bg-parchment);
  margin-bottom: 10px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.plan-hero-copy .page-subtitle {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--bg-parchment-dark);
  opacity: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.plan-timeline {
  display: grid;
  gap: 22px;
  position: relative;
}

.plan-day-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.72), rgba(235, 216, 170, 0.6));
  border: 1px solid rgba(115, 85, 26, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.plan-day-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 71, 54, 0.08), transparent 35%),
    repeating-linear-gradient(0deg, rgba(69, 43, 17, 0.028) 0 1px, transparent 1px 8px);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.82;
}

.plan-day-panel > * {
  position: relative;
  z-index: 1;
}

.plan-day-panel-featured {
  border-color: rgba(201, 95, 56, 0.58);
  border-top: 4px solid rgba(185, 138, 36, 0.82);
  box-shadow: 0 14px 34px rgba(50, 38, 21, 0.16);
}

.plan-day-marker {
  border: 0;
  bottom: 22px;
  left: 22px;
  padding: 0;
  position: absolute;
  right: 22px;
  z-index: 2;
}

.plan-day-marker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  margin-bottom: 14px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--jungle-green-light), var(--jungle-green-dark));
  color: var(--bg-parchment);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 241, 188, 0.18);
}

.plan-day-marker time {
  display: block;
  color: var(--bg-parchment);
  font-family: var(--font-italic);
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.34;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.plan-day-content {
  min-width: 0;
  padding: 30px;
}

.plan-kicker {
  color: var(--coral-accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.plan-day-content h3 {
  color: var(--jungle-green-light);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.plan-day-content p {
  color: var(--text-ink-light);
  font-size: 1rem;
  line-height: 1.74;
  margin-bottom: 20px;
  max-width: 710px;
}

.plan-day-media {
  align-self: stretch;
  border: 0;
  border-right: 1px solid rgba(115, 85, 26, 0.28);
  border-radius: 0;
  background: rgba(255, 248, 220, 0.42);
  box-shadow: none;
  margin: 0;
  min-height: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.plan-day-media::after {
  background: linear-gradient(180deg, transparent 30%, rgba(18, 31, 23, 0.72));
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.plan-day-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
}

.plan-day-panel:nth-child(1) .plan-day-media img {
  object-position: center;
}

.plan-day-panel:nth-child(2) .plan-day-media img {
  object-position: center 55%;
}

.plan-day-panel:nth-child(3) .plan-day-media img {
  object-position: center 68%;
}

.plan-day-panel:nth-child(4) .plan-day-media img {
  object-position: center;
}

.plan-details-editorial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 0;
}

.plan-details-editorial div {
  min-width: 0;
  border-top: 1px solid rgba(115, 85, 26, 0.22);
  padding-top: 11px;
}

.plan-details-editorial dt {
  color: var(--coral-accent);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.plan-details-editorial dd {
  color: var(--text-ink);
  font-size: 0.92rem;
  line-height: 1.42;
}

.free-day-options {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(115, 85, 26, 0.24);
}

.free-day-options h4 {
  color: var(--jungle-green-light);
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.free-day-options ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  list-style: none;
}

.free-day-options li {
  color: var(--text-ink-light);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.free-day-options li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-lotus);
  box-shadow: 0 0 0 3px rgba(185, 138, 36, 0.14);
}

@media (max-width: 900px) {
  .plan-day-panel,
  .plan-day-panel-featured {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .plan-day-media {
    border-right: 0;
    border-bottom: 1px solid rgba(115, 85, 26, 0.28);
    order: 1;
  }

  .plan-day-content {
    order: 2;
    padding: 24px;
  }

  .plan-day-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .plan-details-editorial,
  .plan-day-panel-featured .plan-details-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .plan-wrapper {
    padding-top: 102px;
  }

  .plan-hero {
    margin-bottom: 26px;
  }

  .plan-hero img {
    aspect-ratio: 4 / 3;
  }

  .plan-hero-copy {
    padding: 26px 22px;
  }

  .plan-hero-copy .page-title {
    font-size: 2.05rem;
  }

  .plan-hero-copy .page-subtitle {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .plan-editorial::before {
    left: auto;
    right: 0;
    opacity: 0.06;
  }
}

@media (max-width: 560px) {
  .plan-day-panel,
  .plan-day-panel-featured {
    padding: 0;
  }

  .plan-day-content {
    padding: 22px;
  }

  .plan-day-marker {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  .plan-details-editorial,
  .plan-day-panel-featured .plan-details-editorial,
  .free-day-options ul {
    grid-template-columns: 1fr;
  }

  .plan-day-content h3 {
    font-size: 1.48rem;
  }
}

/* ==========================================
   GUIA DE VIAJE (EDITORIAL)
   ========================================== */
.travel-wrapper {
  padding-top: 102px;
}

.travel-wrapper .navbar {
  margin-bottom: 0;
}

.travel-section.logistics-section {
  width: 100%;
  max-width: 980px;
  margin-top: 0;
  overflow: visible;
  position: relative;
}

.travel-section.logistics-section::before {
  top: 150px;
  left: auto;
  right: -54px;
  width: 230px;
  height: 230px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Ccircle cx='60' cy='60' r='51' stroke='%2373551A' stroke-width='1.1' stroke-dasharray='4 7'/%3E%3Ccircle cx='60' cy='60' r='42' stroke='%2373551A' stroke-width='0.9'/%3E%3Cpath d='M33 65c13-19 29-30 51-34M37 76c14-12 27-17 46-17M33 65c15 2 28 10 39 26' stroke='%2373551A' stroke-width='1.2' stroke-linecap='round'/%3E%3Ctext x='60' y='39' font-family='Georgia' font-size='8' text-anchor='middle' fill='%2373551A' letter-spacing='2'%3EMEX TO DPS%3C/text%3E%3Ctext x='60' y='62' font-family='Georgia' font-size='11' font-weight='bold' text-anchor='middle' fill='%2373551A'%3EBALI%3C/text%3E%3Ctext x='60' y='87' font-family='Georgia' font-size='7' text-anchor='middle' fill='%2373551A' letter-spacing='2'%3EARRIVAL%3C/text%3E%3C/svg%3E");
  opacity: 0.08;
}

.travel-hero {
  margin-bottom: 34px;
}

.travel-hero img {
  aspect-ratio: 16 / 7;
  object-position: center;
}

.travel-hero::after {
  background:
    linear-gradient(180deg, rgba(18, 31, 23, 0.08), rgba(18, 31, 23, 0.24)),
    radial-gradient(circle at 50% 44%, rgba(18, 31, 23, 0.14), rgba(18, 31, 23, 0.48));
}

.travel-hero-copy .page-title {
  color: var(--bg-parchment);
  margin-bottom: 10px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.travel-hero-copy .page-subtitle {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--bg-parchment-dark);
  opacity: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.travel-kicker {
  color: var(--coral-accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.travel-alert {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.travel-alert h3,
.travel-card-heading h3,
.travel-checklist-copy h3,
.travel-info-card h3 {
  color: var(--jungle-green-light);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.travel-alert p:last-child {
  color: var(--text-ink-light);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.travel-flight-card {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.travel-card-heading {
  max-width: 790px;
}

.travel-card-heading h3 {
  margin-bottom: 14px;
}

.travel-card-heading p,
.travel-checklist-copy p,
.travel-info-card p {
  color: var(--text-ink-light);
  font-size: 1rem;
  line-height: 1.76;
  margin-bottom: 0;
}

.travel-arrival-window {
  display: grid;
  grid-template-columns: minmax(160px, 0.26fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(115, 85, 26, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(42, 71, 54, 0.12), rgba(255, 248, 220, 0.42));
}

.travel-arrival-window span {
  color: var(--coral-accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.travel-arrival-window p {
  color: var(--text-ink-light);
  font-size: 0.98rem;
  line-height: 1.62;
  margin-bottom: 0;
}

.travel-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.travel-route-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(115, 85, 26, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 220, 0.42);
  box-shadow: none;
}

.travel-route-card span {
  display: inline-block;
  color: var(--gold-lotus-dark);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.travel-route-card h4 {
  color: var(--jungle-green-light);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.25;
  letter-spacing: .015em;
  margin-bottom: 11px;
  text-transform: none;
}

.travel-route-card h4::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 8px;
  background: var(--gold-lotus);
}

.travel-route-card p {
  color: var(--text-ink-light);
  font-size: 0.95rem;
  line-height: 1.68;
  margin-bottom: 12px;
  text-align: left;
  text-align-last: auto;
}

.travel-route-card p:last-child {
  margin-bottom: 0;
}

.travel-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.travel-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(115, 85, 26, 0.34);
  border-radius: 6px;
  color: var(--jungle-green-light);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.travel-link-row a:hover {
  background: linear-gradient(180deg, var(--jungle-green-light), var(--jungle-green-dark));
  border-color: rgba(34, 55, 41, 0.7);
  color: var(--bg-parchment);
}

.travel-link-row-left {
  margin-top: 18px;
}

.travel-reference-note {
  margin: -4px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(115, 85, 26, .18);
  color: var(--text-ink-light);
  font-size: .82rem;
  font-style: italic;
  line-height: 1.6;
}

.travel-checklist-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
  padding: 30px;
  border: 1px solid rgba(115, 85, 26, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.72), rgba(235, 216, 170, 0.6));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.travel-checklist-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 71, 54, 0.08), transparent 35%),
    repeating-linear-gradient(0deg, rgba(69, 43, 17, 0.028) 0 1px, transparent 1px 8px);
  mix-blend-mode: multiply;
  opacity: 0.82;
  pointer-events: none;
}

.travel-checklist-panel > * {
  position: relative;
  z-index: 1;
}

.travel-checklist-copy h3 {
  margin-bottom: 14px;
}

.travel-checklist {
  display: grid;
  gap: 12px;
  list-style: none;
}

.travel-checklist li {
  color: var(--text-ink-light);
  font-size: 0.98rem;
  line-height: 1.58;
  min-width: 0;
  padding-left: 24px;
  position: relative;
}

.travel-checklist li::before {
  content: '';
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-lotus);
  box-shadow: 0 0 0 3px rgba(185, 138, 36, 0.14);
}

.travel-arrival-card {
  margin-bottom: 24px;
}

.travel-arrival-card .destination-card-media img {
  min-height: 430px;
  object-position: center;
}

.travel-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.travel-info-card {
  display: flex;
  flex-direction: column;
}

.travel-info-card h3 {
  margin-bottom: 14px;
}

.travel-info-card p + p {
  margin-top: 16px;
}

.travel-info-card .hotel-option p {
  font-size: 0.92rem;
  line-height: 1.62;
  margin-top: 5px;
  text-align: left;
  text-align-last: auto;
}

.travel-info-card .hotel-option {
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(115, 85, 26, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 220, 0.4);
  transition: border-color .2s ease, background-color .2s ease;
}

.travel-info-card .hotel-option:hover {
  padding-left: 20px;
  border-color: rgba(115, 85, 26, 0.4);
  background: rgba(255, 248, 220, 0.6);
}

.travel-info-card .hotel-name {
  gap: 6px 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.travel-info-card .hotel-note {
  font-size: .67rem;
  letter-spacing: .07em;
}

.travel-notes {
  margin-top: 0;
}

.travel-notes .destination-note-grid article {
  box-shadow: none;
}

.travel-practical-section {
  margin: 0 0 34px;
  padding: 34px;
  border: 1px solid rgba(115, 85, 26, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 220, .7), rgba(235, 216, 170, .58));
  box-shadow: var(--shadow-soft);
}

.travel-practical-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.travel-practical-heading h2 {
  margin: 0 0 10px;
  color: var(--jungle-green-light);
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: .01em;
  text-transform: none;
}

.travel-practical-heading > p:last-child {
  margin: 0;
  color: var(--text-ink-light);
  line-height: 1.7;
}

.travel-practical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.travel-practical-card {
  min-width: 0;
  padding: 25px 26px;
  border: 1px solid rgba(115, 85, 26, .22);
  border-radius: 8px;
  background: rgba(255, 248, 220, .42);
}

.travel-practical-card h3 {
  margin: 0 0 15px;
  color: var(--jungle-green-light);
  font-size: clamp(1.12rem, 1.7vw, 1.3rem);
  line-height: 1.24;
  letter-spacing: .015em;
  text-transform: none;
}

.travel-practical-card h3::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 8px;
  background: var(--gold-lotus);
}

.travel-practical-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.travel-practical-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-ink-light);
  font-size: .94rem;
  line-height: 1.62;
}

.travel-practical-card li::before {
  content: '';
  position: absolute;
  top: .66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-lotus);
}

.travel-practical-card > a {
  display: inline-block;
  margin-top: 16px;
  color: var(--coral-accent);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-underline-offset: 3px;
}

.travel-practical-card li a,
.travel-mobility-warning a {
  color: var(--coral-accent);
  font-weight: 700;
  overflow-wrap: normal;
  text-decoration-color: rgba(201, 95, 56, .5);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.travel-practical-card li a:hover,
.travel-mobility-warning a:hover {
  color: var(--gold-lotus-dark);
  text-decoration-color: currentColor;
}

.travel-practical-card li a:focus-visible,
.travel-mobility-warning a:focus-visible {
  outline: 3px solid rgba(201, 95, 56, .4);
  outline-offset: 3px;
}

.travel-practical-card a[href^="tel:"] {
  white-space: nowrap;
}

.travel-practical-card-emergency {
  border-color: rgba(201, 95, 56, .3);
  background: rgba(201, 95, 56, .055);
}

.travel-mobility-warning {
  margin: 22px 0 0;
  padding: 17px 19px;
  border-left: 3px solid var(--gold-lotus);
  background: rgba(255, 248, 220, .42);
  color: var(--text-ink-light);
  font-size: .94rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .travel-alert,
  .travel-arrival-window,
  .travel-checklist-panel,
  .travel-info-grid {
    grid-template-columns: 1fr;
  }

  .travel-route-grid {
    grid-template-columns: 1fr;
  }

  .travel-practical-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .travel-wrapper {
    padding-top: 102px;
  }

  .travel-hero {
    margin-bottom: 26px;
  }

  .travel-hero img {
    aspect-ratio: 4 / 3;
  }

  .travel-hero-copy {
    padding: 26px 22px;
  }

  .travel-hero-copy .page-title {
    font-size: 2.05rem;
  }

  .travel-hero-copy .page-subtitle {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .travel-alert,
  .travel-checklist-panel,
  .travel-flight-card,
  .travel-info-card {
    padding: 24px;
  }

  .travel-practical-section {
    padding: 24px;
  }

  .travel-section.logistics-section::before {
    right: 0;
    opacity: 0.06;
  }

  .travel-arrival-card .destination-card-media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

@media (max-width: 520px) {
  .travel-link-row a {
    justify-content: center;
    width: 100%;
  }

  .travel-practical-card {
    padding: 22px 20px;
  }
}

/* ==========================================
   NOTICIAS (EDITORIAL)
   ========================================== */
.news-section.logistics-section::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Ccircle cx='60' cy='60' r='51' stroke='%2373551A' stroke-width='1.1' stroke-dasharray='4 7'/%3E%3Ccircle cx='60' cy='60' r='42' stroke='%2373551A' stroke-width='.9'/%3E%3Cpath d='M38 38h44v48H38zM46 49h28M46 59h28M46 69h18' stroke='%2373551A' stroke-width='1.4' stroke-linecap='round'/%3E%3Ctext x='60' y='31' font-family='Georgia' font-size='7' text-anchor='middle' fill='%2373551A' letter-spacing='2'%3EBALI NEWS%3C/text%3E%3C/svg%3E");
}

.news-hero img { object-position: center 56%; }

.news-feed {
  display: grid;
  gap: 24px;
}

.news-card {
  padding: 32px;
  border: 1px solid rgba(115, 85, 26, 0.3);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 220, 0.72), rgba(235, 216, 170, 0.46));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.news-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 71, 54, 0.06), transparent 38%), repeating-linear-gradient(0deg, rgba(69, 43, 17, 0.025) 0 1px, transparent 1px 8px);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.news-card > * { position: relative; z-index: 1; }

.news-title {
  color: var(--jungle-green-light);
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.08;
  margin: 0 0 10px;
}

.news-date {
  display: block;
  color: var(--coral-accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.news-content {
  color: var(--text-ink-light);
  font-size: 1rem;
  line-height: 1.76;
}

.news-content p { margin-bottom: 1em; }
.news-content p:last-child { margin-bottom: 0; }

.news-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 22px 0;
  box-shadow: var(--shadow-soft);
}

.news-content a {
  color: var(--jungle-green-light);
  font-weight: 700;
  text-decoration-color: rgba(185, 138, 36, 0.72);
  text-underline-offset: 3px;
}

.no-news {
  padding: 48px 28px;
  border: 1px solid rgba(115, 85, 26, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 220, 0.42);
  color: var(--text-ink-light);
  font-style: italic;
  text-align: center;
}

@media (max-width: 768px) {
  .news-card { padding: 24px; }
}

/* ==========================================
   UTILITY CLASSES (Added during refactor)
   ========================================== */
.w-100 { width: 100%; }
.max-w-980 { max-width: 980px; }
.mt-240 { margin-top: 240px; }
.mt-160 { margin-top: 160px; }
.text-center { text-align: center; }
.mb-24 { margin-bottom: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mt-12 { margin-top: 12px; }
.mt-32 { margin-top: 32px; }
.p-32 { padding: 32px; }
.p-20 { padding: 20px; }
.pt-40 { padding-top: 40px; }
.pb-80 { padding-bottom: 80px; }
.d-none { display: none; }
.d-flex { display: flex; }
.flex-1 { flex: 1; }
.gap-12 { gap: 12px; }
.gap-8 { gap: 8px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.fs-sm { font-size: 0.9rem; }
.fs-xs { font-size: 0.75rem; }
.fs-lg { font-size: 1.4rem; }
.fs-xl { font-size: 1.8rem; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-bold { font-weight: bold; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.text-coral { color: var(--coral-accent); }
.text-jungle-light { color: var(--jungle-green-light); }
.text-jungle { color: var(--jungle-green-dark); }
.font-title { font-family: var(--font-title); }
.font-sans { font-family: var(--font-sans); }
.font-decorative { font-family: var(--font-decorative); }
.bg-parchment { background-color: var(--bg-parchment); }
.border-dashed-gold { border: 2px dashed var(--gold-lotus); border-radius: 6px; }
.max-w-400 { max-width: 400px; }
.max-w-150 { max-width: 150px; }
.max-w-300 { max-width: 300px; }
.max-w-1100 { max-width: 1100px; }
.d-block { display: block; }
.mt-6 { margin-top: 6px; }
.mt-4 { margin-top: 4px; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bg-gold { background-color: var(--gold-lotus); color: var(--bg-parchment); }

/* --- Stitch Premium RSVP Design --- */
.section-group {
  margin-bottom: 24px;
}

.hotel-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hotel-choice { position: relative; cursor: pointer; margin: 0 !important; }
.hotel-choice input { position: absolute; opacity: 0; }
.hotel-choice span {
  display: flex; align-items: center; min-height: 64px; padding: 14px 16px;
  border: 1px solid rgba(197,155,39,.3); border-radius: 8px;
  background: rgba(255,255,255,.55); font-family: var(--font-body); font-size: .98rem;
  transition: var(--transition-smooth);
}
.hotel-choice input:checked + span {
  border-color: var(--gold-lotus); background: rgba(197,155,39,.12);
  box-shadow: 0 0 0 1px var(--gold-lotus);
}
.hotel-choice input:focus-visible + span { outline: 3px solid rgba(197,155,39,.28); outline-offset: 2px; }
@media (max-width: 576px) { .hotel-options { grid-template-columns: 1fr; } }
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(23, 38, 28, 0.1);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.section-header .text-gold {
  color: var(--gold-lotus);
  font-size: 32px;
}
.form-label-elegant {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jungle-green-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.premium-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.premium-card-checkbox {
  position: relative;
  cursor: pointer;
  display: block;
  margin: 0;
}

.premium-card-checkbox input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.card-radio-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background-color: #FFFFFF;
  border: 1px solid rgba(23, 38, 28, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.card-radio-content:hover {
  border-color: rgba(197, 155, 39, 0.5);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.1);
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--jungle-green-dark);
  font-weight: 600;
  transition: color 0.3s ease;
}

.premium-card-checkbox:hover .card-title {
  color: var(--gold-lotus);
}

.card-subtitle {
  font-family: var(--font-body);
  color: rgba(23, 38, 28, 0.6);
  font-size: 0.95rem;
  margin-top: 4px;
}

.card-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(23, 38, 28, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-icon .material-symbols-outlined {
  color: #FFFFFF;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

/* Checked State */
.premium-card-checkbox input[type="checkbox"]:checked + .card-radio-content {
  border-color: var(--gold-lotus);
  background-color: rgba(255, 250, 231, 0.6);
  box-shadow: 0 4px 16px rgba(197, 155, 39, 0.15);
}

.premium-card-checkbox input[type="checkbox"]:checked + .card-radio-content .card-icon {
  background-color: var(--gold-lotus);
  border-color: var(--gold-lotus);
}

.premium-card-checkbox input[type="checkbox"]:checked + .card-radio-content .card-icon .material-symbols-outlined {
  opacity: 1;
  transform: scale(1);
}

.premium-card-checkbox input[type="checkbox"]:checked + .card-radio-content .card-title {
  color: var(--gold-lotus);
}

/* ==========================================
   RSVP EDITORIAL — REDISEÑO 2026
   ========================================== */
body:has(.rsvp-wrapper) {
  padding: 0;
  background: #15251b;
}

.rsvp-wrapper {
  width: 100%;
  max-width: 1536px;
  min-height: 100vh;
  padding: 102px 48px 72px;
  border-radius: 0;
  background: none;
  box-shadow: 0 24px 80px rgba(7, 17, 11, .42);
}

.rsvp-wrapper::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url('../assets/bg-rsvp-v2.webp') center center / cover no-repeat;
}

.rsvp-section {
  max-width: 1100px;
  margin: 0 auto;
}

.rsvp-section #rsvp-page-header {
  width: 100%;
  margin: 0 auto 30px;
  padding: 4px 0 24px;
  border-bottom: 1px solid rgba(185, 138, 36, .38);
}

.rsvp-section .page-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -.02em;
  color: var(--jungle-green-dark);
  text-shadow: 0 1px 0 rgba(255, 250, 231, .9);
}

.rsvp-card {
  padding: 36px 46px 42px !important;
  margin: 0;
  background: rgba(245, 237, 211, .78);
  border: 1px solid rgba(115, 85, 26, .28);
  border-radius: 2px;
  box-shadow: 0 18px 52px rgba(48, 34, 16, .12);
  backdrop-filter: blur(1px);
}

.rsvp-card:hover {
  transform: none;
  border-color: rgba(115, 85, 26, .28);
  box-shadow: 0 18px 52px rgba(48, 34, 16, .12);
}

#rsvp-search-step {
  max-width: 760px;
  margin: 18px auto;
}

#rsvp-search-step .form-group > label {
  max-width: 620px;
  margin: 0 auto 20px;
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.rsvp-wrapper .search-wrapper {
  gap: 0;
  overflow: visible;
  border-bottom: 1px solid var(--gold-lotus-dark);
  border-radius: 0;
  box-shadow: none;
}

.rsvp-wrapper .search-wrapper .form-control {
  border: 0;
  background: rgba(255, 250, 231, .52);
  border-radius: 0;
  box-shadow: none;
}

.rsvp-wrapper .search-wrapper .btn {
  min-width: 138px;
  box-shadow: none;
}

.rsvp-editorial-form {
  position: relative;
  padding-left: 58px;
}

.rsvp-editorial-form::before {
  content: '';
  position: absolute;
  top: 76px;
  bottom: 78px;
  left: 20px;
  width: 1px;
  background: linear-gradient(var(--gold-lotus), rgba(185, 138, 36, .28));
}

.rsvp-greeting {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 5.5vw, 4.35rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: none;
  color: var(--jungle-green-dark);
}

.rsvp-step {
  position: relative;
  padding: 18px 0 32px;
  margin: 0 !important;
}

.rsvp-step::before {
  content: attr(data-step);
  position: absolute;
  top: 22px;
  left: -51px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--gold-lotus-dark);
  background: #f2e8cb;
  border: 1px solid var(--gold-lotus);
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}

.rsvp-question {
  display: block;
  margin: 0 0 14px;
  color: var(--text-ink);
  font-family: var(--font-italic);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  text-align: left;
}

.rsvp-editorial-form .section-header {
  gap: 0;
  padding: 0;
  margin: 0 0 12px;
  border: 0;
}

.rsvp-editorial-form .section-header .material-symbols-outlined {
  display: none;
}

.rsvp-editorial-form .section-header h3 {
  font-size: clamp(1.55rem, 2.4vw, 2rem) !important;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: none;
}

.rsvp-editorial-form .form-grid-2 {
  gap: 22px;
  margin-top: 0 !important;
}

.rsvp-editorial-form .form-label-elegant {
  margin-bottom: 6px !important;
  color: var(--text-ink);
  font-family: var(--font-body);
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.rsvp-editorial-form .form-control {
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text-ink);
  background: rgba(255, 250, 231, .56);
  border: 1px solid rgba(58, 45, 31, .42);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
  font-family: var(--font-body);
  font-size: .96rem;
}

.rsvp-editorial-form .form-control:focus {
  border-color: var(--gold-lotus);
  background: rgba(255, 252, 240, .86);
  box-shadow: 0 0 0 3px rgba(185, 138, 36, .13);
}

.rsvp-editorial-form textarea.form-control {
  min-height: 92px;
  resize: vertical;
}

.attendance-options {
  gap: 14px;
  width: 100%;
  max-width: none;
  margin: 0;
}

#room-feedback:empty {
  display: none !important;
}

.rsvp-editorial-form .custom-radio {
  min-height: 92px;
  padding: 10px 16px;
  background: rgba(255, 250, 231, .44);
  border-color: rgba(58, 45, 31, .22);
  border-radius: 5px;
  box-shadow: none;
  backdrop-filter: none;
}

.rsvp-editorial-form .custom-radio::before { content: none; }
.rsvp-editorial-form .custom-radio:hover {
  transform: none;
  background: rgba(255, 250, 231, .7);
  border-color: rgba(185, 138, 36, .7);
  box-shadow: none;
}

.rsvp-editorial-form .custom-radio:has(input:checked) {
  background: rgba(255, 250, 231, .72);
  border-color: var(--gold-lotus);
  box-shadow: inset 0 0 0 1px rgba(185, 138, 36, .18);
}

.rsvp-editorial-form .custom-radio:has(input:checked)::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff9e8;
  background: var(--gold-lotus);
  font-family: var(--font-sans);
  font-size: .72rem;
}

.rsvp-editorial-form .radio-content {
  flex-direction: row;
  justify-content: flex-start;
  gap: 14px;
}

.rsvp-editorial-form .radio-icon-wrapper {
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
}

.rsvp-editorial-form .radio-image { object-fit: contain; }
.rsvp-editorial-form .radio-title {
  color: var(--text-ink) !important;
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight: 500 !important;
  text-align: left;
}

.rsvp-step-continuation {
  padding: 0 0 22px;
  margin: 0 !important;
}

.passes-row {
  display: grid;
  grid-template-columns: max-content 150px 1fr;
  align-items: center;
  gap: 14px;
}

.passes-row .form-label-elegant { margin: 0 !important; }
.passes-select { width: 150px !important; min-width: 150px; }
#passes-limit-msg { margin-left: 0; }

.rsvp-helper {
  margin: -4px 0 16px !important;
  font-family: var(--font-italic);
  font-size: .92rem;
  font-style: italic;
}

.premium-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card-radio-content {
  min-height: 102px;
  padding: 16px;
  background: rgba(255, 250, 231, .48);
  border-color: rgba(58, 45, 31, .22);
  border-radius: 5px;
  box-shadow: none;
}

.event-mark {
  flex: 0 0 38px;
  margin-right: 12px;
  color: var(--gold-lotus);
  font-size: 34px;
  font-variation-settings: 'FILL' 0, 'wght' 300;
}

.card-radio-content:hover { transform: none; box-shadow: none; }
.card-title {
  color: var(--text-ink);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
}
.card-subtitle { color: var(--text-ink-light); font-size: .78rem; }
.card-icon { flex: 0 0 24px; width: 24px; height: 24px; }

.premium-card-checkbox input[type="checkbox"]:checked + .card-radio-content {
  background: rgba(255, 250, 231, .72);
  border-color: var(--gold-lotus);
  box-shadow: inset 0 0 0 1px rgba(185, 138, 36, .12);
}
.premium-card-checkbox input[type="checkbox"]:checked + .card-radio-content .card-title { color: var(--text-ink); }

.hotel-options { max-width: 620px; }
.hotel-choice span {
  min-height: 68px;
  padding: 14px 16px;
  color: var(--text-ink);
  background: rgba(255, 250, 231, .48);
  border-color: rgba(58, 45, 31, .22);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: .9rem;
}
.hotel-choice span img {
  width: 46px;
  height: 46px;
  margin-right: 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.hotel-choice span em { font-style: normal; }
.hotel-choice input:checked + span {
  background: rgba(255, 250, 231, .74);
  border-color: var(--gold-lotus);
  box-shadow: inset 0 0 0 1px rgba(185, 138, 36, .15);
}

#room-picker { max-width: none; }

.room-choice-loading {
  padding: 18px 0;
  color: var(--gold-lotus-dark);
  font-family: var(--font-sans);
  font-size: .85rem;
}

.hotel-room-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hotel-room-choice {
  position: relative;
  min-width: 0;
  margin: 0;
  cursor: pointer;
}

.hotel-room-choice.is-wide { grid-column: 1 / -1; }

.hotel-room-choice > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hotel-room-choice-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 142px;
  height: 100%;
  padding: 22px 52px 22px 24px;
  color: var(--text-ink);
  background: rgba(255, 251, 235, .78);
  border: 1px solid rgba(58, 45, 31, .34);
  border-radius: 7px;
  box-shadow: 0 5px 14px rgba(77, 54, 18, .05);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}

.hotel-room-choice.is-wide .hotel-room-choice-content { min-height: 108px; }

.hotel-room-choice:hover .hotel-room-choice-content {
  border-color: rgba(169, 121, 25, .72);
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(77, 54, 18, .1);
}

.hotel-room-choice > input:checked + .hotel-room-choice-content {
  background: #fbf3d9;
  border-color: #a97919;
  box-shadow: inset 0 0 0 2px rgba(169, 121, 25, .22), 0 7px 18px rgba(77, 54, 18, .1);
}

.hotel-room-choice > input:focus-visible + .hotel-room-choice-content {
  outline: 3px solid rgba(201, 95, 56, .48);
  outline-offset: 3px;
}

.hotel-room-choice-badge {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-lotus-dark);
  font-family: var(--font-sans);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hotel-room-choice-title {
  display: block;
  max-width: 100%;
  color: var(--jungle-green-dark);
  font-family: var(--font-title);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.hotel-room-choice-meta,
.hotel-room-choice-rate {
  display: block;
  margin-top: 8px;
  color: var(--text-ink-soft);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.4;
}

.hotel-room-choice-rate {
  color: var(--gold-lotus-dark);
  font-weight: 800;
}

.hotel-room-choice-check {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: transparent;
  background: rgba(255, 255, 255, .45);
  border: 1px solid rgba(58, 45, 31, .3);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 900;
}

.hotel-room-choice > input:checked + .hotel-room-choice-content .hotel-room-choice-check {
  color: #fff9e9;
  background: var(--jungle-green-dark);
  border-color: var(--gold-lotus);
}

.hotel-room-choice.is-disabled {
  cursor: not-allowed;
}

.hotel-room-choice.is-disabled .hotel-room-choice-content {
  opacity: .5;
  background: rgba(231, 222, 197, .6);
  box-shadow: none;
}

.hotel-room-choice.is-disabled:hover .hotel-room-choice-content {
  border-color: rgba(58, 45, 31, .34);
  transform: none;
}

.hotel-special-heading {
  margin: 30px 0 13px;
  color: var(--jungle-green-dark);
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 700;
  text-align: left;
}

.hotel-special-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hotel-special-grid .hotel-room-choice-content {
  min-height: 180px;
  padding: 20px 46px 20px 20px;
}

@media (max-width: 900px) {
  .hotel-special-grid { grid-template-columns: 1fr; }
  .hotel-special-grid .hotel-room-choice-content { min-height: 132px; }
}

@media (max-width: 640px) {
  .hotel-room-choice-grid { grid-template-columns: 1fr; }
  .hotel-room-choice.is-wide { grid-column: auto; }
  .hotel-room-choice-content,
  .hotel-room-choice.is-wide .hotel-room-choice-content,
  .hotel-special-grid .hotel-room-choice-content {
    min-height: 124px;
    padding: 19px 46px 19px 18px;
  }
  .hotel-room-choice-title { font-size: 1.12rem; }
  .hotel-room-choice-check { top: 15px; right: 14px; }
}

.rsvp-actions {
  justify-content: center;
  padding-top: 10px;
}
.rsvp-actions .btn { flex: 0 1 330px; border-radius: 5px; }
#btn-submit-rsvp {
  color: #e7bb50;
  background: var(--jungle-green-dark);
  border: 1px solid var(--gold-lotus);
  box-shadow: 0 8px 18px rgba(20, 32, 23, .18);
}
#btn-submit-rsvp:hover { background: var(--jungle-green-light); }

#rsvp-success-screen {
  max-width: 680px;
  margin: 40px auto;
}

@media (max-width: 900px) {
  .rsvp-wrapper { padding: 102px 22px 56px; }
  .rsvp-card { padding: 32px 34px 38px !important; }
  .premium-checkbox-group { grid-template-columns: 1fr; }
  .card-radio-content { min-height: 82px; }
}

@media (max-width: 620px) {
  .rsvp-wrapper { padding: 92px 14px 46px; }
  .rsvp-section #rsvp-page-header { margin: 0 auto 24px; padding: 2px 0 20px; }
  .rsvp-card { padding: 26px 18px 30px !important; }
  .rsvp-wrapper .search-wrapper { flex-direction: column; border: 0; }
  .rsvp-wrapper .search-wrapper .form-control { border-bottom: 1px solid var(--gold-lotus-dark); }
  .rsvp-wrapper .search-wrapper .btn { width: 100%; margin-top: 10px; }
  .rsvp-editorial-form { padding-left: 40px; }
  .rsvp-editorial-form::before { left: 12px; top: 64px; bottom: 104px; }
  .rsvp-step::before { left: -42px; width: 28px; height: 28px; }
  .rsvp-greeting { font-size: 2.5rem; }
  .attendance-options, .hotel-options { grid-template-columns: 1fr; }
  .rsvp-editorial-form .custom-radio { min-height: 78px; }
  .rsvp-editorial-form .radio-icon-wrapper { flex-basis: 54px; width: 54px; height: 54px; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 14px !important; }
  .passes-row { grid-template-columns: 1fr 120px; }
  #passes-limit-msg { grid-column: 1 / -1; }
  .passes-select { width: 120px !important; min-width: 120px; }
  .rsvp-actions { flex-direction: column; }
  .rsvp-actions .btn { flex: none; width: 100%; }
}

/* RSVP — contraste, legibilidad y controles refinados */
.rsvp-card {
  background: rgba(246, 238, 215, .91);
  border-color: rgba(91, 66, 22, .48);
}

.rsvp-editorial-form,
#rsvp-search-step {
  color: #2f261d;
}

.rsvp-editorial-form .section-header h3,
.rsvp-question,
.card-title,
.hotel-choice span,
#rsvp-search-step .form-group > label {
  color: #223126;
}

.rsvp-editorial-form .form-label-elegant,
.rsvp-editorial-form .form-group label {
  color: #2f261d;
  font-size: .9rem;
  font-weight: 600;
}

.rsvp-editorial-form .form-control,
.rsvp-wrapper .search-wrapper .form-control {
  color: #251f19;
  background: rgba(255, 252, 239, .9);
  border-color: rgba(58, 45, 31, .58);
  font-size: 1rem;
  font-weight: 500;
}

.rsvp-editorial-form .form-control::placeholder,
.rsvp-wrapper .search-wrapper .form-control::placeholder {
  color: #665b4e;
  opacity: 1;
}

.rsvp-helper,
.card-subtitle,
#passes-limit-msg,
#room-feedback,
#companions-group small {
  color: #51483d !important;
  opacity: 1 !important;
}

.rsvp-editorial-form .custom-radio,
.card-radio-content,
.hotel-choice span {
  background: rgba(255, 251, 235, .78);
  border-color: rgba(58, 45, 31, .34);
}

.rsvp-editorial-form .custom-radio:has(input:checked),
.premium-card-checkbox input[type="checkbox"]:checked + .card-radio-content,
.hotel-choice input:checked + span {
  background: #fbf3d9;
  border-color: #a97919;
  box-shadow: inset 0 0 0 1px rgba(169, 121, 25, .2), 0 4px 12px rgba(77, 54, 18, .08);
}

.rsvp-editorial-form .radio-image,
.hotel-choice span img {
  background: transparent;
  mix-blend-mode: normal;
  filter: drop-shadow(0 2px 2px rgba(40, 33, 20, .12));
}

.rsvp-card .btn {
  min-height: 50px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.rsvp-wrapper .search-wrapper .btn {
  color: #fff9e9;
  background: #9d721c;
  border: 1px solid #7b5713;
  box-shadow: 0 5px 14px rgba(80, 54, 12, .2);
}

.rsvp-wrapper .search-wrapper .btn:hover {
  color: #fff;
  background: #7b5713;
  transform: translateY(-1px);
}

#btn-submit-rsvp {
  color: #ffe3a0;
  background: #20382a;
  border-color: #b98a24;
}

#btn-submit-rsvp:hover { background: #2d4b38; }

.rsvp-card .btn:focus-visible,
.custom-radio:has(input:focus-visible),
.premium-card-checkbox:has(input:focus-visible) .card-radio-content,
.hotel-choice:has(input:focus-visible) span {
  outline: 3px solid rgba(201, 95, 56, .5);
  outline-offset: 3px;
}

/* Información esencial, hospedaje y contacto */
.hotel-address {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid var(--gold-lotus);
  color: var(--text-ink);
  font-style: normal;
  line-height: 1.7;
}

.hotel-address a,
.travel-contact-band a,
.site-footer a {
  color: var(--coral-terracotta);
  font-weight: 700;
}

.travel-updated-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(58, 45, 31, .18);
  font-size: .88rem;
  opacity: .75;
}

.hotel-reservation-section {
  margin: 56px 0;
  padding: 38px;
  border: 1px solid rgba(197, 155, 39, .34);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 248, 220, .7), rgba(235, 216, 170, .58));
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 112px;
}

.hotel-reservation-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.hotel-reservation-heading > div {
  max-width: 710px;
}

.hotel-reservation-heading h2,
.travel-contact-band h2,
.event-essentials h2 {
  margin: 0 0 12px;
  color: var(--jungle-green-light);
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.hotel-reservation-heading p,
.travel-contact-band p {
  margin: 0;
  line-height: 1.72;
}

.hotel-reservation-heading p,
.hotel-booking-steps span,
.hotel-room-copy > p,
.hotel-room-facts dd,
.hotel-rate-note,
.travel-contact-band p,
.event-essentials p {
  color: var(--text-ink-light);
}

.hotel-booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 0 36px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 155, 39, .28);
  border-radius: 8px;
  background: rgba(197, 155, 39, .28);
  list-style: none;
}

.hotel-booking-steps li {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 248, 220, .7), rgba(235, 216, 170, .58));
}

.hotel-booking-steps strong {
  color: var(--gold-lotus-dark);
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hotel-booking-steps span {
  font-size: .95rem;
  line-height: 1.5;
}

.hotel-rooms-list {
  display: grid;
  gap: 26px;
}

.hotel-room-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(58, 45, 31, .18);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255, 248, 220, .7), rgba(235, 216, 170, .58));
  min-width: 0;
}

.hotel-room-card-reverse img {
  order: 2;
}

.hotel-room-card > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hotel-room-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
  min-width: 0;
}

.hotel-room-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.hotel-room-title-row h3 {
  margin: 0;
  color: var(--jungle-green-light);
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  min-width: 0;
}

.hotel-room-title-row span {
  flex: 0 0 auto;
  color: var(--gold-lotus-dark);
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hotel-room-copy > p {
  margin: 0 0 18px;
  line-height: 1.65;
}

.hotel-room-official-link {
  align-self: flex-start;
  margin: -4px 0 18px;
  color: var(--coral-accent);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.45;
  text-decoration-color: rgba(201, 95, 56, .55);
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.hotel-room-official-link::after {
  content: ' ↗';
}

.hotel-room-official-link:hover {
  color: var(--gold-lotus-dark);
  text-decoration-color: currentColor;
}

.hotel-room-official-link:focus-visible {
  outline: 3px solid rgba(201, 95, 56, .45);
  outline-offset: 4px;
}

.hotel-room-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(58, 45, 31, .18);
}

.hotel-room-facts > div {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(58, 45, 31, .14);
}

.hotel-room-facts dt {
  color: var(--jungle-green-light);
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hotel-room-facts dd {
  margin: 0;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: break-word;
}

.hotel-rate-note {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold-lotus);
  background: rgba(197, 155, 39, .08);
  line-height: 1.65;
}

.travel-contact-band,
.event-essentials {
  margin: 38px 0 12px;
  padding: 30px 34px;
  border: 1px solid rgba(58, 45, 31, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 220, .7), rgba(235, 216, 170, .58));
  text-align: center;
}

.event-essentials > h2 {
  margin-bottom: 26px;
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: .01em;
  text-transform: none;
}

.site-footer {
  width: min(980px, calc(100% - 40px));
  margin: 44px auto 0;
  padding: 26px 20px 34px;
  border-top: 1px solid rgba(58, 45, 31, .24);
  color: var(--text-ink);
  font-size: .9rem;
  line-height: 1.65;
  text-align: center;
}

.site-footer p {
  margin: 4px 0;
}

.rsvp-deadline,
.rsvp-privacy,
.rsvp-hotel-process {
  padding: 16px 18px;
  border-radius: 7px;
  line-height: 1.55;
}

.rsvp-deadline {
  margin: 0 0 24px;
  border: 1px solid rgba(201, 95, 56, .36);
  background: rgba(201, 95, 56, .08);
  text-align: center;
}

.rsvp-hotel-process {
  margin: 14px 0 18px;
  border-left: 4px solid var(--gold-lotus);
  background: rgba(197, 155, 39, .08);
}

.rsvp-hotel-process a,
.rsvp-privacy a {
  color: var(--coral-terracotta);
  font-weight: 800;
}

.rsvp-privacy {
  margin-top: 18px;
  background: rgba(255, 252, 241, .64);
  font-size: .82rem;
  opacity: .82;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(201, 95, 56, .52);
  outline-offset: -4px;
}

.event-logistics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(58, 45, 31, .16);
  font-size: .9rem;
}

.event-logistics-row a {
  color: var(--coral-terracotta);
  font-weight: 800;
}

/* Evita guiones y cortes artificiales en textos editoriales. */
main h1,
main h2,
main h3,
main h4,
main p,
main li,
main dt,
main dd,
.hotel-name,
.hotel-room-title-row span {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

main a,
.hotel-room-facts dd {
  overflow-wrap: break-word;
}

main p,
.hotel-rate-note,
.rsvp-hotel-process {
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 820px) {
  .hotel-reservation-section {
    padding: 24px 18px;
  }

  .hotel-reservation-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .hotel-reservation-heading .btn {
    text-align: center;
  }

  .hotel-booking-steps {
    grid-template-columns: 1fr;
  }

  .hotel-room-card {
    grid-template-columns: 1fr;
  }

  .hotel-room-card-reverse img {
    order: 0;
  }

  .hotel-room-card > img {
    min-height: 220px;
    max-height: 300px;
  }
}

@media (max-width: 680px) {
  .hotel-room-title-row,
  .hotel-room-facts > div {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .hotel-room-title-row {
    display: grid;
    gap: 7px;
  }
}

@media (max-width: 520px) {
  .travel-contact-band,
  .event-essentials {
    padding: 24px 18px;
  }
}
