/* ========================================================
   BODA ARANTXA & DANIEL — Elegant Burgundy & Cream
   ======================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Backgrounds */
  --bg: #f2e8c9;
  --bg-alt: #ebe0bc;
  --cream: #faf5e4;
  --white: #ffffff;

  /* Primary — Red */
  --burgundy: #940000;
  --burgundy-dark: #6e0000;
  --burgundy-light: #b50000;

  /* Accent — Yellow */
  --gold: #FFF9A8;
  --gold-light: #fffccc;
  --gold-dark: #e6e080;

  /* Text */
  --fg: #3a2a1e;
  --fg-dim: #7a6a58;
  --fg-light: rgba(255, 255, 255, 0.92);
  --fg-light-dim: rgba(255, 255, 255, 0.7);

  /* Typography */
  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-heading: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;

  /* Layout */
  --max-width: 1100px;
  --radius: 8px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

/* Evitar que los números de teléfono se vean rojos en móviles */
a[href^="tel"] {
  color: inherit !important;
  text-decoration: none !important;
}

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

/* ── Section Wrapper ── */
.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 3rem);
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Fade-in Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.25s;
}

.stagger-3 {
  transition-delay: 0.4s;
}

.stagger-4 {
  transition-delay: 0.55s;
}

.stagger-5 {
  transition-delay: 0.7s;
}

/* ── Section Titles ── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-title--cream {
  color: var(--bg);
}

.section-title--burgundy {
  color: var(--burgundy);
}

.section-title--gold {
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* ── Ornament (Squiggly Line) ── */
.section-ornament {
  display: block;
  margin: 0 auto 1.5rem;
  width: 120px;
  height: 14px;
}

.section-ornament--burgundy {
  color: var(--burgundy);
}

.section-ornament--gold {
  color: var(--gold);
}

.section-ornament--cream {
  color: var(--bg);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}

.sticky-nav.scrolled {
  background: rgba(242, 232, 201, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  position: relative;
}

.nav-logo {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s, color 0.4s;
}

.sticky-nav.scrolled .nav-logo {
  opacity: 1;
  color: var(--burgundy);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.4s;
}

.sticky-nav.scrolled .nav-links a {
  color: var(--burgundy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s, left 0.3s;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

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

.sticky-nav.scrolled .nav-links a:hover {
  color: var(--gold-dark);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}

.sticky-nav.scrolled .nav-toggle span {
  background: var(--burgundy);
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.nav-overlay.show {
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — Video Background
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.25) 70%,
      rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
}

.hero-subtitle {
  font-family: var(--ff-heading);
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.hero-names {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 12vw, 7rem);
  color: var(--bg);
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-names .amp {
  display: inline;
  font-size: 1em;
  color: var(--bg);
  margin: 0;
}

.hero-location {
  font-family: var(--ff-heading);
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
}

.hero-date {
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: 2rem;
}

.countdown-unit {
  text-align: center;
}

.countdown-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.countdown-label {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.4rem;
  display: block;
}

.countdown-separator {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.4);
  align-self: flex-start;
  padding-top: 0.2rem;
}

.hero-scroll-cue {
  display: inline-block;
  margin-top: 1rem;
  animation: bounce 2s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-cue:hover {
  color: var(--gold);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* ═══════════════════════════════════════════════════════════
   NUESTRA HISTORIA — Cream Background
   ═══════════════════════════════════════════════════════════ */
.historia-section {
  background: var(--bg);
  text-align: center;
}

.historia-message {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-family: var(--ff-body);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.8;
  font-weight: 500;
}

.historia-message .lead {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--burgundy);
  margin-bottom: 1rem;
  font-weight: 600;
}

.historia-padres {
  margin: 2.5rem auto 3rem;
  max-width: 550px;
}

.historia-padres .padres-title {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-style: italic;
  color: var(--fg-dim);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.historia-padres .padres-names {
  font-family: var(--ff-body);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.8;
}

.historia-fecha {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Photo collage */
.historia-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.collage-photo {
  overflow: hidden;
  border-radius: 6px;
}

.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: 6px;
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}

.collage-photo:hover img {
  transform: scale(1.03);
}

.collage-photo--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.collage-photo--1 img {
  aspect-ratio: 2 / 3;
  object-position: center;
}

.collage-photo--2 img {
  aspect-ratio: 4 / 3;
}

.collage-photo--3 img {
  aspect-ratio: 4 / 3;
}

/* ═══════════════════════════════════════════════════════════
   ITINERARIO — Burgundy Background
   ═══════════════════════════════════════════════════════════ */
.itinerario-section {
  background: var(--burgundy);
  color: var(--fg-light);
}

.itinerario-section .section-title {
  color: var(--gold);
}

.timeline {
  max-width: 550px;
  margin: 2rem auto 0;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.timeline-body {
  flex: 1;
}

.timeline-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.timeline-time {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  color: var(--fg-light);
  font-weight: 500;
}

/* Transport sub-section */
.transporte-box {
  max-width: 550px;
  margin: 3rem auto 0;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.transporte-box h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.transporte-box p {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--fg-light);
  line-height: 1.8;
  font-weight: 500;
}

.transporte-box p+p {
  margin-top: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   DRESS CODE — Cream Background
   ═══════════════════════════════════════════════════════════ */
.dresscode-section {
  background: var(--bg);
  text-align: center;
}

.dresscode-type {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 2rem;
}

.dresscode-photo {
  width: clamp(200px, 40vw, 280px);
  height: clamp(200px, 40vw, 280px);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  border: 6px solid var(--white);
  box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.12);
}

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

.dresscode-details {
  max-width: 550px;
  margin: 0 auto;
}

.dresscode-details p {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.8;
  font-weight: 500;
}

.dresscode-details p+p {
  margin-top: 1rem;
}

.dresscode-details .dresscode-note {
  color: var(--burgundy);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   HOSPEDAJE — Burgundy Background
   ═══════════════════════════════════════════════════════════ */
.hospedaje-section {
  background: var(--burgundy);
  color: var(--fg-light);
}

.hospedaje-section .section-title {
  color: var(--gold);
}

/* Hospedaje intro text */
.hospedaje-intro {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-style: italic;
  color: var(--fg-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 500;
}

/* Hotel cards container */
.hospedaje-hotels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual hotel card */
.hotel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 165, 32, 0.3);
}

/* Card header */
.hotel-card-header {
  padding: 1.2rem 1.4rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.hotel-name {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold);
  line-height: 1.3;
}

.hotel-price {
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--fg-light-dim);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.hotel-price strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg-light);
  letter-spacing: -0.01em;
}

/* Card body */
.hotel-card-body {
  padding: 1rem 1.4rem;
}

.hotel-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  color: var(--white);
  /* changed to var(--white) instead of var(--fg-light-dim) */
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.hotel-info-row svg {
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--gold);
  opacity: 0.7;
}

.hotel-info-row span {
  word-break: break-word;
}

.hotel-tarifas {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hotel-tarifas p {
  font-family: var(--ff-heading);
  font-size: 0.73rem;
  color: var(--fg-light);
  line-height: 1.6;
  font-weight: 400;
}

.hotel-tarifas .hotel-nota {
  font-size: 0.67rem;
  color: var(--fg-light-dim);
  margin-top: 0.3rem;
  font-style: italic;
  font-family: var(--ff-body);
}

/* Card footer */
.hotel-card-footer {
  padding: 0.8rem 1.4rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hotel-code-badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  background: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.hotel-tag {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg-light);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   GUÍA DE OAXACA — Cream Background
   ═══════════════════════════════════════════════════════════ */
.guia-section {
  background: var(--bg);
}

.guia-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.guia-category-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 1.5rem;
}

.guia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.guia-card {
  background: var(--white);
  border: 1px solid rgba(123, 13, 13, 0.1);
  border-radius: 12px;
  padding: 1.8rem 1.3rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.06);
}

.guia-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.1);
}

.guia-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.guia-card h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.guia-card p {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--fg-dim);
  line-height: 1.5;
  margin-bottom: 0.4rem;
}

.guia-card .guia-meta {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

/* Tour cards */
.guia-card--tour {
  position: relative;
}

.tour-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 10px;
  text-transform: uppercase;
}

.tour-details {
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  color: var(--fg-dim);
  margin-top: 0.5rem;
}

/* Guia List (Restaurants / Bars) */
.guia-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(148, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.guia-list-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.3rem;
  border-bottom: 1px solid rgba(148, 0, 0, 0.07);
  transition: background 0.2s;
}

.guia-list-item:last-child {
  border-bottom: none;
}

.guia-list-item:hover {
  background: rgba(148, 0, 0, 0.03);
}

.guia-list-name {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
}

.guia-list-addr {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--fg-dim);
  text-align: right;
  font-style: italic;
}

@media (max-width: 600px) {
  .guia-list-item {
    flex-direction: column;
    gap: 0.2rem;
  }

  .guia-list-addr {
    text-align: left;
  }
}

/* Tour Booking Card */
.tour-booking-card {
  margin-top: 1.8rem;
  background: var(--white);
  border: 1px solid rgba(148, 0, 0, 0.12);
  border-radius: 14px;
  padding: 1.6rem 2rem;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}

.tour-booking-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.tour-booking-desc {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--fg-dim);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.tour-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--burgundy);
  color: var(--gold);
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 1rem;
}

.tour-booking-btn:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  color: var(--gold);
}

.tour-booking-note {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-style: italic;
  margin-top: 0.6rem;
}

/* Beauty Service Card */
.beauty-service-card {
  background: var(--white);
  border: 1px solid rgba(148, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.beauty-service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 2rem;
  background: var(--burgundy);
  color: var(--white);
}

.beauty-service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.beauty-service-icon svg {
  stroke: var(--gold);
}

.beauty-service-title {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.beauty-service-subtitle {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.beauty-service-body {
  padding: 1.8rem 2rem;
}

.beauty-service-desc {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--fg-dim);
  font-style: italic;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

.beauty-whatsapp-btn-wrap {
  text-align: center;
  margin-bottom: 1.8rem;
}

.beauty-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.beauty-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white);
}

.beauty-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid rgba(148, 0, 0, 0.08);
  padding-top: 1.4rem;
}

.beauty-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.beauty-step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--burgundy);
  color: var(--gold);
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beauty-step strong {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.3rem;
}

.beauty-step p {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}

.beauty-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.beauty-info-list li {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--fg);
  padding-left: 1rem;
  position: relative;
}

.beauty-info-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 700;
}

@media (max-width: 600px) {
  .beauty-service-header {
    padding: 1.2rem 1.3rem;
  }

  .beauty-service-body {
    padding: 1.3rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   MESA DE REGALOS — Cream Background
   ═══════════════════════════════════════════════════════════ */
.regalos-section {
  background: var(--bg-alt);
  text-align: center;
}

.regalos-inner {
  max-width: 600px;
  margin: 0 auto;
}

.regalos-quote {
  font-family: var(--ff-body);
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-style: italic;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
}

.regalos-link {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding: 0.9rem 2.5rem;
  border: 2px solid var(--burgundy);
  border-radius: 50px;
  transition: all var(--transition);
}

.regalos-link:hover {
  background: var(--burgundy);
  color: var(--white);
}

.regalos-photo {
  max-width: 400px;
  margin: 3rem auto 0;
  border-radius: 6px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.1);
}

.regalos-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   RSVP — Burgundy Background
   ═══════════════════════════════════════════════════════════ */
.rsvp-section {
  background: var(--burgundy);
  color: var(--fg-light);
  text-align: center;
}

.rsvp-section .section-title {
  color: var(--gold);
}

.rsvp-text {
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--fg-light);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  font-weight: 500;
}

.rsvp-link-btn {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all var(--transition);
  margin-bottom: 3rem;
}

.rsvp-link-btn:hover {
  background: var(--gold-light);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* RSVP arch photo */
.rsvp-arch-photo {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 160px 160px 8px 8px;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.rsvp-arch-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

/* Optional: keep form styling for future use */
.rsvp-inner {
  max-width: 600px;
  margin: 0 auto;
}

.rsvp-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}

.form-group .optional {
  color: var(--fg-dim);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 2px solid rgba(123, 13, 13, 0.15);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237B0D0D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-dim);
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123, 13, 13, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-rsvp {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--burgundy);
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-rsvp:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-rsvp-icon {
  font-size: 1rem;
  transition: transform 0.3s;
}

.btn-rsvp:hover .btn-rsvp-icon {
  transform: translateX(4px);
}

/* Success state */
.rsvp-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.rsvp-success.show {
  display: block;
  animation: popIn 0.5s ease-out;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--burgundy);
  color: var(--burgundy);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.rsvp-success h3 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.rsvp-success p {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  color: var(--fg);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Burgundy Background
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--burgundy-dark);
  color: var(--fg-light);
  text-align: center;
  padding: clamp(4rem, 10vw, 6rem) 1.5rem 2rem;
  position: relative;
}

.footer-thanks {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 10vw, 4.5rem);
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer-photo {
  width: clamp(200px, 45vw, 300px);
  height: clamp(200px, 45vw, 300px);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  border: 5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.footer-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.footer-hashtag {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-light-dim);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.footer-contact {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg-light-dim);
  line-height: 1.6;
}

.footer-contact a {
  font-weight: 600;
  font-style: normal;
  font-size: 1.25rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 960px) {
  .historia-collage {
    max-width: 500px;
    margin: 0 auto;
  }

  .guia-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hospedaje-hotels {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 680px) {
  html {
    font-size: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--burgundy);
    font-size: 0.9rem;
  }

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

  .form-row--2 {
    grid-template-columns: 1fr;
  }

  .countdown {
    gap: 1rem;
  }

  .hero-names {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .historia-collage {
    grid-template-columns: 1fr;
  }

  .collage-photo--1 {
    grid-row: auto;
  }

  .collage-photo--1 img {
    aspect-ratio: 16 / 9;
  }

  .timeline-item {
    gap: 1rem;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .rsvp-form {
    padding: 2rem 1.5rem;
  }

  .rsvp-arch-photo {
    max-width: 260px;
    border-radius: 130px 130px 6px 6px;
  }

  .dresscode-photo {
    width: 200px;
    height: 200px;
  }

  .footer-photo {
    width: 200px;
    height: 200px;
  }

  .transporte-box {
    padding: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SUBPAGES — Shared styles for standalone pages
   ═══════════════════════════════════════════════════════════ */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.page-with-bg {
  position: relative;
}

.page-bg-image {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.page-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-content {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem 3rem;
}

.page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-heading-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.body-text {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.body-text--small {
  font-size: 0.9rem;
  color: var(--fg-dim);
}

.text-link {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--gold-dark);
}

/* Subpage detalles grid */
.detalles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.detalle-card {
  background: var(--white);
  border: 1px solid rgba(123, 13, 13, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.06);
}

.detalle-icon {
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.detalle-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: 0.8rem;
}

/* Subpage timeline */
.page-content .timeline {
  max-width: 600px;
  margin: 0 auto;
}

.page-content .timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(123, 13, 13, 0.1);
}

.page-content .timeline-item:last-child {
  border-bottom: none;
}

.timeline-dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--burgundy);
  margin-top: 6px;
}

.page-content .timeline-time {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--burgundy);
  min-width: 80px;
}

.page-content .timeline-desc h3 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}

.page-content .timeline-desc p {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--fg-dim);
}

/* Subpage historia */
.page-inner.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.historia-text .historia-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* Subpage regalos */
.regalos-content {
  text-align: center;
}

.regalos-ornament {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.regalos-message {
  font-family: var(--ff-body);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.btn-gift {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  margin: 1.5rem 0;
}

.btn-gift:hover {
  background: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.regalos-qr {
  margin: 2rem auto;
}

.qr-placeholder {
  width: 150px;
  height: 150px;
  border: 2px dashed var(--fg-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--fg-dim);
  font-family: var(--ff-heading);
  font-size: 0.8rem;
}

/* Subpage RSVP */
.rsvp-page {
  background: var(--bg);
}

.rsvp-header {
  text-align: center;
  margin-bottom: 2rem;
}

.rsvp-ornament-top {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.rsvp-main-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.rsvp-subtitle {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1rem;
}

.rsvp-header-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.rsvp-intro {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.rsvp-photo-banner {
  max-width: 600px;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 8px;
  border: 6px solid var(--white);
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.1);
}

.rsvp-photo-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 40%;
}

.rsvp-card {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.rsvp-card-inner {
  display: block;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rsvp-card-deco {
  background: var(--burgundy);
  color: var(--fg-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.deco-line {
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px auto;
}

.rsvp-deco-icon {
  font-size: 2rem;
  color: var(--gold);
}

.rsvp-deco-text {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.3;
}

.rsvp-deco-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--fg-light-dim);
}

.rsvp-card-form {
  padding: 2.5rem 2rem;
}

.rsvp-contact {
  text-align: center;
  margin-top: 2rem;
}

.rsvp-contact-name {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--burgundy);
  margin: 0.3rem 0;
}

.rsvp-contact-email {
  font-family: var(--ff-body);
  font-size: 0.95rem;
}

/* Subpage guia */
.guia-category {
  margin-bottom: 3rem;
}

.page-content .guia-category-title {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Subpage footer */
.page-wrapper .site-footer {
  background: var(--burgundy-dark);
  color: var(--fg-light);
  text-align: center;
  padding: 2rem 1.5rem;
}

.page-wrapper .footer-names {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.page-wrapper .footer-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0.5rem auto;
}

.page-wrapper .footer-hashtag {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  color: var(--fg-light-dim);
  letter-spacing: 0.08em;
}

.page-wrapper .footer-copy {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--fg-light-dim);
}

/* Pinyon class (legacy support) */
.pinyon {
  font-family: var(--ff-display);
}

/* Subpage form styles */
.form-row {
  margin-bottom: 1rem;
}

.page-content .form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Page transition (legacy support) */
.page-transition {
  display: none;
}

/* Fade-in variants for subpages */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive subpages */
@media (max-width: 680px) {
  .page-inner.historia-grid {
    grid-template-columns: 1fr;
  }

  .rsvp-card-inner {
    grid-template-columns: 1fr;
  }

  .rsvp-card-deco {
    padding: 1.5rem;
  }

  .rsvp-card-form {
    padding: 2rem 1.5rem;
  }

  .page-content .form-row--2 {
    grid-template-columns: 1fr;
  }
}