/* =============================================================
   INVITACIÓN DE BODA — Sofía & Alejandro
   styles.css
   ============================================================= */

:root {
  --verde-oscuro: #1a2e1a;
  --verde-medio: #2d4a2d;
  --verde-sage: #6b8f6b;
  --verde-claro: #a8c5a0;
  --verde-muy-claro: #d4e8d0;
  --crema: #f5f0e8;
  --crema-oscuro: #e8dfd0;
  --dorado: #c9a96e;
  --dorado-claro: #e8d4a8;
  --blanco: #fdfaf5;
  --texto-oscuro: #1a2e1a;
  --texto-medio: #3d5a3d;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--blanco);
  color: var(--texto-oscuro);
  overflow-x: hidden;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--crema); }
::-webkit-scrollbar-thumb { background: var(--verde-sage); border-radius: 3px; }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(26, 46, 26, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 40px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--crema);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crema);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

/* ===================== HERO ===================== */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--verde-oscuro);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 143, 107, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45, 74, 45, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(168, 197, 160, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #0d1a0d 0%, #1a2e1a 40%, #2d4a2d 70%, #1a2e1a 100%);
}

.hero-botanical {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23a8c5a0' stroke-width='1'%3E%3Cellipse cx='400' cy='400' rx='350' ry='350'/%3E%3Cellipse cx='400' cy='400' rx='280' ry='280'/%3E%3Cpath d='M400 50 C450 150 550 200 650 180 C600 250 620 350 580 400 C620 450 600 550 650 620 C550 600 450 650 400 750 C350 650 250 600 150 620 C200 550 180 450 220 400 C180 350 200 250 150 180 C250 200 350 150 400 50Z'/%3E%3Cline x1='400' y1='50' x2='400' y2='750'/%3E%3Cline x1='50' y1='400' x2='750' y2='400'/%3E%3Cline x1='150' y1='150' x2='650' y2='650'/%3E%3Cline x1='650' y1='150' x2='150' y2='650'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  animation: heroFadeIn 1.5s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-pre {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.3s forwards;
}

.hero-names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(5rem, 14vw, 11rem);
  color: var(--crema);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.6s forwards;
  text-shadow: 0 4px 40px rgba(201, 169, 110, 0.3);
}

.hero-ampersand { color: var(--dorado); }

.hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dorado), transparent);
  margin: 24px auto;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.9s forwards;
}

.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 6px;
  color: var(--crema-oscuro);
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeIn 1s ease 1.1s forwards;
}

.hero-location {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--verde-claro);
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0;
  animation: heroFadeIn 1s ease 1.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 1s ease 1.8s forwards;
}

.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: var(--verde-claro);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--dorado), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===================== SECTIONS GENERAL ===================== */
section { padding: 100px 40px; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--verde-sage);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--verde-oscuro);
  line-height: 1.1;
  margin-bottom: 32px;
}

.section-title em {
  font-style: italic;
  color: var(--verde-sage);
}

.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.ornament-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dorado));
}

.ornament-line.right {
  background: linear-gradient(to left, transparent, var(--dorado));
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--dorado);
  transform: rotate(45deg);
}

/* ===================== SECCIÓN 2 — FECHA & COUNTDOWN ===================== */
#fecha {
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-medio) 100%);
  color: var(--crema);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#fecha::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168, 197, 160, 0.1) 0%, transparent 60%);
}

#fecha .section-title { color: var(--crema); }
#fecha .section-label { color: var(--verde-claro); }
#fecha .ornament-line { background: linear-gradient(to right, transparent, var(--dorado-claro)); }
#fecha .ornament-line.right { background: linear-gradient(to left, transparent, var(--dorado-claro)); }
#fecha .ornament-diamond { background: var(--dorado-claro); }

.welcome-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto 60px;
  color: var(--crema-oscuro);
  font-style: italic;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.countdown-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--crema);
  line-height: 1;
  min-width: 90px;
  text-align: center;
}

.countdown-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--verde-claro);
}

.countdown-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--dorado);
  opacity: 0.5;
  align-self: flex-start;
  padding-top: 8px;
}

/* ===================== SECCIÓN 3 — TIMELINE ===================== */
#programa {
  background: var(--crema);
  position: relative;
}

#programa::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--verde-sage), var(--dorado), var(--verde-sage), transparent);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--verde-sage) 10%, var(--verde-sage) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-content-left {
  text-align: right;
  padding-right: 40px;
}

.timeline-content-right {
  text-align: left;
  padding-left: 40px;
}

.timeline-content-left.hidden,
.timeline-content-right.hidden {
  visibility: hidden;
}

.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--verde-oscuro);
  border: 2px solid var(--dorado);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dorado);
  font-size: 1.1rem;
  box-shadow: 0 0 0 6px var(--crema), 0 4px 20px rgba(26, 46, 26, 0.2);
}

.timeline-time {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--verde-sage);
}

.timeline-event-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--verde-oscuro);
  margin-bottom: 6px;
}

.timeline-event-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--texto-medio);
  line-height: 1.7;
}

/* ===================== SECCIÓN 4 — TRASLADOS ===================== */
#traslados { background: var(--blanco); }

.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.transport-card {
  background: var(--crema);
  border: 1px solid var(--verde-muy-claro);
  border-radius: 2px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 46, 26, 0.12);
}

.transport-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--verde-sage), var(--dorado));
}

.transport-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.transport-direction {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--verde-sage);
  margin-bottom: 8px;
}

.transport-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--verde-oscuro);
  margin-bottom: 12px;
}

.transport-info {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--texto-medio);
  line-height: 1.8;
}

.transport-time {
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--verde-oscuro);
  color: var(--crema);
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 2px;
  display: inline-block;
}

/* ===================== SECCIÓN 5 — ALOJAMIENTO ===================== */
#alojamiento {
  background: linear-gradient(180deg, var(--crema-oscuro) 0%, var(--crema) 100%);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.hotel-card {
  background: var(--blanco);
  border: 1px solid var(--verde-muy-claro);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(26, 46, 26, 0.15);
}

.hotel-thumb {
  height: 180px;
  background: var(--verde-medio);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-thumb-1 { background: linear-gradient(135deg, #2d4a2d, #4a7a4a); }
.hotel-thumb-2 { background: linear-gradient(135deg, #1a3a2a, #3d6b4a); }
.hotel-thumb-3 { background: linear-gradient(135deg, #2a3a1a, #5a6b3a); }

.hotel-thumb-icon {
  font-size: 3rem;
  opacity: 0.6;
}

.hotel-stars {
  position: absolute;
  top: 12px; right: 12px;
  color: var(--dorado-claro);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.hotel-body { padding: 28px 28px 24px; }

.hotel-tag {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--verde-sage);
  margin-bottom: 8px;
}

.hotel-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--verde-oscuro);
  margin-bottom: 10px;
}

.hotel-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--texto-medio);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hotel-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.hotel-detail {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.78rem;
  color: var(--texto-medio);
}

.hotel-detail span {
  color: var(--verde-sage);
  margin-right: 6px;
}

.btn-reservar {
  display: inline-block;
  padding: 11px 28px;
  background: transparent;
  border: 1px solid var(--verde-oscuro);
  color: var(--verde-oscuro);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reservar:hover {
  background: var(--verde-oscuro);
  color: var(--crema);
}

/* ===================== SECCIÓN 6 — LISTA DE BODAS ===================== */
#lista-bodas {
  background: var(--verde-oscuro);
  color: var(--crema);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#lista-bodas::after {
  content: '♥';
  position: absolute;
  font-size: 40rem;
  color: rgba(168, 197, 160, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

#lista-bodas .section-title { color: var(--crema); }
#lista-bodas .section-label { color: var(--verde-claro); }
#lista-bodas .ornament-line { background: linear-gradient(to right, transparent, var(--dorado-claro)); }
#lista-bodas .ornament-line.right { background: linear-gradient(to left, transparent, var(--dorado-claro)); }
#lista-bodas .ornament-diamond { background: var(--dorado-claro); }

.lista-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 660px;
  margin: 0 auto 50px;
  color: var(--crema-oscuro);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.destino-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--dorado);
  color: var(--dorado);
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.bank-card {
  max-width: 420px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 2px;
  padding: 36px 40px;
  position: relative;
  z-index: 1;
}

.bank-card-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 24px;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bank-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.bank-key {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--verde-claro);
  text-transform: uppercase;
}

.bank-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--crema);
}

/* ===================== SECCIÓN 7 — PHOTOBOOK ===================== */
#photobook {
  background: var(--crema);
  overflow: hidden;
}

.photobook-header {
  text-align: center;
  margin-bottom: 60px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.photo-item {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.photo-item:nth-child(1) { grid-column: span 5; grid-row: span 2; aspect-ratio: auto; }
.photo-item:nth-child(2) { grid-column: span 4; }
.photo-item:nth-child(3) { grid-column: span 3; }
.photo-item:nth-child(4) { grid-column: span 4; }
.photo-item:nth-child(5) { grid-column: span 3; }
.photo-item:nth-child(6) { grid-column: span 4; }
.photo-item:nth-child(7) { grid-column: span 3; }
.photo-item:nth-child(8) { grid-column: span 5; }

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.6s ease;
  min-height: 200px;
}

.photo-item:hover .photo-placeholder { transform: scale(1.04); }

.photo-placeholder-1 { background: linear-gradient(135deg, #2d4a2d, #6b8f6b); }
.photo-placeholder-2 { background: linear-gradient(135deg, #1a3a2a, #4a7a5a); }
.photo-placeholder-3 { background: linear-gradient(135deg, #3a4a1a, #7a8a4a); }
.photo-placeholder-4 { background: linear-gradient(135deg, #2a4a3a, #5a8a6a); }
.photo-placeholder-5 { background: linear-gradient(135deg, #1a2e1a, #4a6a4a); }
.photo-placeholder-6 { background: linear-gradient(135deg, #2a3a2a, #5a7a5a); }
.photo-placeholder-7 { background: linear-gradient(135deg, #3a5a2a, #7a9a5a); }
.photo-placeholder-8 { background: linear-gradient(135deg, #2a4a2a, #6a8a6a); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.photo-item:hover .photo-overlay { background: rgba(26, 46, 26, 0.3); }

.photo-icon {
  font-size: 2.5rem;
  opacity: 0.4;
  color: var(--crema);
}

.photo-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(253, 250, 245, 0.7);
  text-align: center;
}

.photo-upload-hint {
  text-align: center;
  margin-top: 32px;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--verde-sage);
  font-style: italic;
}

/* ===================== SECCIÓN 8 — FORMULARIO ===================== */
#rsvp {
  background: linear-gradient(135deg, var(--verde-oscuro), var(--verde-medio));
  position: relative;
  overflow: hidden;
}

#rsvp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(168, 197, 160, 0.1) 0%, transparent 50%);
}

.rsvp-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

#rsvp .section-title { color: var(--crema); }
#rsvp .section-label { color: var(--verde-claro); }
#rsvp .ornament-line { background: linear-gradient(to right, transparent, var(--dorado-claro)); }
#rsvp .ornament-line.right { background: linear-gradient(to left, transparent, var(--dorado-claro)); }
#rsvp .ornament-diamond { background: var(--dorado-claro); }

.rsvp-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--crema-oscuro);
  margin-bottom: 50px;
  line-height: 1.7;
}

.rsvp-form {
  display: grid;
  gap: 20px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: span 2; }

label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde-claro);
}

input, select, textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(168, 197, 160, 0.3);
  border-radius: 1px;
  padding: 14px 18px;
  color: var(--crema);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  width: 100%;
}

input::placeholder, textarea::placeholder {
  color: rgba(213, 232, 208, 0.35);
  font-style: italic;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--dorado);
  background: rgba(255,255,255,0.1);
}

select option {
  background: var(--verde-oscuro);
  color: var(--crema);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  padding: 0;
  accent-color: var(--dorado);
}

.radio-option span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--crema-oscuro);
}

.btn-submit {
  padding: 18px 60px;
  background: transparent;
  border: 1px solid var(--dorado);
  color: var(--dorado);
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  width: 100%;
}

.btn-submit:hover {
  background: var(--dorado);
  color: var(--verde-oscuro);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.form-success h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: var(--dorado);
  margin-bottom: 12px;
}

.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--crema-oscuro);
  font-size: 1.1rem;
}

/* ===================== FOOTER ===================== */
footer {
  background: #0d1a0d;
  padding: 60px 40px;
  text-align: center;
}

.footer-names {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  color: var(--crema);
  margin-bottom: 16px;
}

.footer-date {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--verde-sage);
  margin-bottom: 40px;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--dorado);
  margin: 0 auto 20px;
  opacity: 0.5;
}

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(213, 232, 208, 0.3);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }

  .timeline::before { left: 28px; }
  .timeline-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto;
  }
  .timeline-content-left { display: none; }
  .timeline-content-right {
    text-align: left;
    padding-left: 24px;
    grid-column: 2;
    grid-row: 1;
  }
  .timeline-center {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-start;
  }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-item { grid-column: span 1 !important; }
  .photo-item:nth-child(n) { aspect-ratio: 4/3; }

  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}

/* ===================== ANIMACIONES ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
