/* =====================================================
   EMILIA & YVAN — WEDDING SITE
   Palette: warm summer (burgundy, terracotta, peach,
   gold, sage, rose) on a cream "stationery" backdrop.
   ===================================================== */

:root {
  --font-script: 'Great Vibes', cursive;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;

  --c-cream: #FBF1E3;
  --c-cream-deep: #F3E0C9;
  --c-paper: rgba(255, 251, 245, 0.86);
  --c-paper-solid: #FFFBF5;
  --c-burgundy: #7C2942;
  --c-burgundy-dark: #5A1E30;
  --c-burgundy-light: #9A3B52;
  --c-terracotta: #D97757;
  --c-peach: #F2B280;
  --c-rose: #D98A85;
  --c-gold: #C9A063;
  --c-gold-light: #E3C896;
  --c-sage: #93A678;
  --c-text: #4A2F2B;
  --c-text-soft: #8A7363;

  /* Additional summer accent colors */
  --c-sum-pink: #E8919E;
  --c-sum-redorange: #DD5B3C;
  --c-sum-orange: #E5883C;
  --c-sum-lightorange: #F0A857;
  --c-sum-yellow: #F6D776;
  --c-sum-magenta: #C13C76;
  --c-sum-purple: #A8396E;
  --c-sum-crimson: #C0273F;
  --c-sum-darkred: #A8222F;
  --c-sum-amber: #DC9A35;
  --c-sum-darkgreen: #2E6B52;
  --c-sum-seagreen: #3D7F5E;
  --c-sum-olive: #6E8A3A;
  --c-sum-lime: #A0C23E;
  --c-sum-blue: #2255B0;
  --c-sum-skyblue: #7FAACB;
  --c-sum-mint: #A9D8C6;

  --shadow-soft: 0 10px 40px rgba(90, 30, 48, 0.12);
  --shadow-lift: 0 16px 50px rgba(90, 30, 48, 0.18);

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --bottom-nav-height: 70px;
  --max-width: 940px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; }
a { color: inherit; }
button { font: inherit; }
ul, ol { list-style: none; }

::selection {
  background: var(--c-gold-light);
  color: var(--c-burgundy-dark);
}

/* ---------- Body & background ---------- */
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(160deg, #FBF1E3 0%, #F6E2C8 35%, #F1C9A0 70%, #ECC8C0 100%);
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded { opacity: 1; }

/* The template image fills the page background. If it hasn't been
   added yet at assets/images/bg-template.png, the warm gradient
   above remains visible as a graceful fallback. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('../assets/images/bg-template.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,241,227,0) 0%, rgba(251,241,227,0.35) 55%, rgba(248, 232, 214, 0.65) 100%);
  z-index: -1;
  pointer-events: none;
}

/* ---------- Icon defaults ---------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

svg:not(.icon-sprite):not(.flourish-icon):not(.corner):not(.seal-svg):not(.hero-seal) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flourish-icon {
  width: 180px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1;
  color: var(--c-gold);
}

.corner {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  color: var(--c-gold);
  opacity: 0.5;
  position: absolute;
}
.corner-tl { top: 18px; left: 18px; }
.corner-br { bottom: 18px; right: 18px; transform: rotate(180deg); }

/* ---------- Scroll progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-terracotta));
  z-index: 1000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* ---------- Floating butterflies ---------- */
.butterflies {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
}
.butterfly {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--size, 34px);
  height: var(--size, 34px);
  opacity: 0;
  will-change: transform, opacity;
  contain: layout paint style;
  transform: translate3d(0, 0, 0);
}

.butterfly-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
  animation: ambient-butterfly-flap var(--flap-duration, 0.42s) ease-in-out infinite alternate;
}

.butterfly.is-perched .butterfly-photo {
  animation-duration: calc(var(--flap-duration, 0.42s) * 1.5);
}

@keyframes ambient-butterfly-flap {
  0% { transform: rotate(-7deg) scale(0.9, 1.08); }
  100% { transform: rotate(7deg) scale(1.04, 0.92); }
}

/* ---------- Background birds carrying an image template ---------- */
.bg-bird-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  transition: opacity 0.6s ease;
}
body.on-home .bg-bird-layer {
  opacity: 0;
  visibility: hidden;
}

.bg-bird {
  position: absolute;
  left: 0;
  display: block;
  --bird-width: clamp(58px, 5vw, 82px);
  --bird-height: clamp(42px, 3.8vw, 60px);
  --template-width: clamp(126px, 12vw, 180px);
  will-change: transform;
  contain: layout style;
}

.bg-bird-inner {
  position: relative;
  width: var(--bird-width);
  height: var(--bird-height);
}

.bg-bird--rtl .bg-bird-inner {
  transform: scaleX(-1);
}

.bg-bird-flight {
  position: relative;
  width: var(--bird-width);
  height: var(--bird-height);
  backface-visibility: hidden;
  animation: bg-bird-glide 3.8s ease-in-out infinite;
}

.bg-bird-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  backface-visibility: hidden;
}

.bg-bird-frame--a {
  animation: bg-bird-frame-a 0.62s steps(1, end) infinite;
}

.bg-bird-frame--b {
  animation: bg-bird-frame-b 0.62s steps(1, end) infinite;
}

.bg-bird-frame--c {
  animation: bg-bird-frame-c 0.62s steps(1, end) infinite;
}

.bg-bird-frame--d {
  animation: bg-bird-frame-d 0.62s steps(1, end) infinite;
}

.bg-bird-leash {
  position: absolute;
  left: calc(var(--bird-width) * -2.1);
  top: calc(var(--bird-height) * 0.34);
  width: calc(var(--bird-width) * 2.08);
  height: 2px;
  background: linear-gradient(90deg, rgba(185, 149, 92, 0.88), rgba(221, 195, 146, 0.74));
  transform: rotate(-4deg);
  transform-origin: right center;
  box-shadow: 0 0 0 1px rgba(255, 248, 232, 0.16);
}

.bg-bird-template {
  position: absolute;
  left: calc(var(--bird-width) * -2.72);
  top: calc(var(--bird-height) * -0.54);
  width: var(--template-width);
  height: var(--template-width);
  object-fit: cover;
  border-radius: 8px;
  backface-visibility: hidden;
  box-shadow: 0 8px 14px rgba(74, 47, 43, 0.15);
  animation: bg-template-sway 3.8s ease-in-out infinite;
  will-change: transform;
}

.bg-bird--ltr { animation: bg-fly-ltr linear forwards; }
.bg-bird--rtl { animation: bg-fly-rtl linear forwards; }

@keyframes bg-fly-ltr {
  from { transform: translateX(-300px); }
  to   { transform: translateX(calc(100vw + 300px)); }
}
@keyframes bg-fly-rtl {
  from { transform: translateX(calc(100vw + 300px)); }
  to   { transform: translateX(-300px); }
}

@keyframes bg-bird-glide {
  0%, 100% { transform: rotate(0deg) translateY(0) scale(1); }
  50% { transform: rotate(-1deg) translateY(-4px) scale(1.01); }
}

@keyframes bg-bird-frame-a {
  0%, 48% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes bg-bird-frame-b {
  0%, 24.9%, 50%, 100% { opacity: 0; }
  25%, 49.9% { opacity: 1; }
}

@keyframes bg-bird-frame-c {
  0%, 49.9%, 75%, 100% { opacity: 0; }
  50%, 74.9% { opacity: 1; }
}

@keyframes bg-bird-frame-d {
  0%, 74.9% { opacity: 0; }
  75%, 100% { opacity: 1; }
}

@keyframes bg-template-sway {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(3px); }
}

@media (max-width: 700px) {
  .bg-bird-flight,
  .bg-bird-template {
    animation-duration: 6s;
  }

  .bg-bird-template {
    box-shadow: 0 5px 10px rgba(74, 47, 43, 0.12);
  }

  .bg-bird-layer { opacity: 0.82; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: 999px;
  border: 1px solid var(--c-burgundy);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-icon { width: 18px; height: 18px; }

.btn-ghost {
  background: transparent;
  color: var(--c-burgundy);
}
.btn-ghost:hover {
  background: var(--c-burgundy);
  color: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--c-burgundy);
  color: var(--c-cream);
}
.btn-primary:hover {
  background: var(--c-burgundy-dark);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

/* =====================================================
   HEADER (desktop)
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  display: flex;
  justify-content: center;
  padding: 18px 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(251, 241, 227, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(90, 30, 48, 0.08);
  padding: 10px 24px;
}
.header-inner {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-seal {
  display: block;
  width: 52px;
  height: 52px;
  transition: transform 0.3s ease;
}
.logo-seal:hover { transform: scale(1.08) rotate(-4deg); }
.seal-svg { width: 100%; height: 100%; }
.seal-text {
  font-family: var(--font-script);
  font-size: 30px;
  fill: #F3E0C9;
}

.main-nav { display: flex; gap: clamp(14px, 2.4vw, 34px); flex: 1; justify-content: center; }
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--c-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--c-gold);
  transition: left 0.25s ease, right 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--c-burgundy); }
.nav-link:hover::after, .nav-link.active::after { left: 0; right: 0; }

/* ---------- Language switch ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--c-paper);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-gold-light);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-soft);
}
.lang-icon {
  width: 16px;
  height: 16px;
  color: var(--c-text-soft);
  margin: 0 2px 0 8px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 6px 13px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--c-text-soft);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-btn.active {
  background: var(--c-burgundy);
  color: var(--c-cream);
}
.lang-btn:hover:not(.active) { color: var(--c-burgundy); }

@media (max-width: 899px) {
  .main-nav { display: none; }
  .header-inner { justify-content: center; }
  .lang-switch {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 2100;
  }
}

/* =====================================================
   BOTTOM NAV (mobile)
   ===================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  display: none;
  justify-content: space-around;
  align-items: center;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--c-gold-light);
  box-shadow: 0 -4px 24px rgba(90, 30, 48, 0.08);
  padding: 8px 4px;
  height: var(--bottom-nav-height);
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--c-text-soft);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.64rem;
  letter-spacing: 0.03em;
  flex: 1;
  padding: 6px 0;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.bottom-nav-item svg { width: 22px; height: 22px; margin: 0 auto; }
.bottom-nav-item.active {
  color: var(--c-burgundy);
  background: rgba(124, 41, 66, 0.08);
  transform: translateY(-3px);
}

@media (max-width: 899px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: var(--bottom-nav-height); }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
}
.hero-inner {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero-seal {
  width: 150px;
  height: 150px;
  margin: 10px 0 6px;
  filter: drop-shadow(0 8px 24px rgba(90, 30, 48, 0.25));
}
.hero-seal-text {
  font-family: var(--font-script);
  font-size: 36px;
  fill: #F3E0C9;
}

.hero-names {
  font-family: var(--font-script);
  font-size: clamp(3rem, 11vw, 5.5rem);
  color: var(--c-burgundy);
  line-height: 1.15;
  font-weight: 400;
}
.hero-names .amp {
  color: var(--c-gold);
  font-size: 0.8em;
  padding: 0 0.08em;
}

.hero-inner .flourish-icon { margin: 6px 0 2px; }

.hero-date {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--c-text);
}
.hero-venue {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-text-soft);
  margin-top: -6px;
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  gap: 14px;
  margin: 22px 0 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.countdown-item {
  background: var(--c-paper);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--c-gold-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.countdown-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-burgundy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-soft);
  margin-top: 5px;
}

.hero-inner .btn { margin-top: 14px; }

/* =====================================================
   SECTIONS / CARDS
   ===================================================== */
.section {
  position: relative;
  padding: 90px 20px;
  scroll-margin-top: 90px;
}

.section-card {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: min(100%, var(--max-width));
  margin: 0 auto;
  background: var(--c-paper);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 160, 99, 0.25);
  padding: 64px 48px;
  overflow: hidden;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-style: italic;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--c-terracotta);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--c-burgundy);
  margin: 0 0 8px;
  font-weight: 600;
}
.section-card > .flourish-icon {
  display: block;
  margin: 0 auto 48px;
}

/* =====================================================
   TEXT CENTERING (welcome, dresscode, hotel headings)
   ===================================================== */
#welcome .section-card { text-align: center; }
#dresscode .section-card { text-align: center; }
#travel .section-card > p { text-align: center; }

/* Dresscode: 'Colorful Elegance' und 'Bitte vermeiden' als Überschriften in Burgundy */
#dresscode [data-i18n="dresscode.text"] strong,
#dresscode [data-i18n="dresscode.avoidTitle"] strong {
  color: var(--c-burgundy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  font-style: normal;
}

/* =====================================================
   DRESSCODE
   ===================================================== */
.dresscode-palette {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 8px 0 16px;
}
.swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--c-paper-solid);
  box-shadow: var(--shadow-soft);
}
/* ---------- Dresscode accent palette ---------- */
.swatch-sum-pink { background: var(--c-sum-pink); }
.swatch-sum-redorange { background: var(--c-sum-redorange); }
.swatch-sum-orange { background: var(--c-sum-orange); }
.swatch-sum-lightorange { background: var(--c-sum-lightorange); }
.swatch-sum-yellow { background: var(--c-sum-yellow); }
.swatch-sum-magenta { background: var(--c-sum-magenta); }
.swatch-sum-purple { background: var(--c-sum-purple); }
.swatch-sum-crimson { background: var(--c-sum-crimson); }
.swatch-sum-darkred { background: var(--c-sum-darkred); }
.swatch-sum-amber { background: var(--c-sum-amber); }
.swatch-sum-darkgreen { background: var(--c-sum-darkgreen); }
.swatch-sum-seagreen { background: var(--c-sum-seagreen); }
.swatch-sum-olive { background: var(--c-sum-olive); }
.swatch-sum-lime { background: var(--c-sum-lime); }
.swatch-sum-blue { background: var(--c-sum-blue); }
.swatch-sum-skyblue { background: var(--c-sum-skyblue); }
.swatch-sum-mint { background: var(--c-sum-mint); }

/* =====================================================
   TIMELINES (Our Story + Schedule)
   ===================================================== */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 4px; bottom: 4px; left: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-gold-light) 8%, var(--c-gold-light) 92%, transparent);
}
.timeline-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  align-items: flex-start;
  position: relative;
}
.timeline-marker {
  grid-column: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-paper-solid);
  border: 2px solid var(--c-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-burgundy);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}
.timeline-marker svg { width: 24px; height: 24px; }
.timeline-content { grid-column: 2; padding-top: 4px; }
.timeline-photo {
  display: block;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 160, 99, 0.35);
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
}
.timeline-content h3 {
  font-family: var(--font-heading);
  color: var(--c-burgundy);
  margin: 0 0 6px;
  font-size: 1.3rem;
}
.timeline-content p {
  margin: 0;
  color: var(--c-text);
}
.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

/* Center schedule timeline within the card */
.timeline-schedule {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Schedule adds a time column */
.timeline-schedule .timeline-row {
  grid-template-columns: 56px 56px 1fr;
}
.timeline-schedule::before { left: 102px; }
.timeline-time {
  grid-column: 1;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-burgundy);
  font-size: 0.95rem;
  line-height: 1.2;
  padding-top: 16px;
}
.timeline-time span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-soft);
  font-weight: 400;
}
.timeline-schedule .timeline-marker { grid-column: 2; }
.timeline-schedule .timeline-content { grid-column: 3; }

/* =====================================================
   LOCATION
   ===================================================== */
.location-grid + .location-grid { margin-top: 64px; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.location-venue {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--c-burgundy);
  margin-bottom: 6px;
}
.location-address {
  font-style: italic;
  color: var(--c-text-soft);
  margin-bottom: 14px;
}
.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.location-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-soft);
  filter: sepia(12%) saturate(1.05);
}

@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map iframe { height: 280px; }
}

/* =====================================================
   TRAVEL & FAQ
   ===================================================== */

/* Accordion (FAQ) */
.accordion-item {
  border-bottom: 1px solid rgba(201, 160, 99, 0.3);
}
.accordion-item:first-child {
  border-top: 1px solid rgba(201, 160, 99, 0.3);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 4px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--c-text);
  transition: color 0.2s ease;
}
.accordion-trigger:hover { color: var(--c-burgundy); }
.accordion-trigger span { flex: 1; }
.accordion-icon { width: 20px; height: 20px; color: var(--c-gold); flex-shrink: 0; }
.chevron {
  width: 18px; height: 18px;
  color: var(--c-burgundy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.open .chevron { transform: rotate(180deg); }

.accordion-panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}
.accordion-item.open .accordion-panel-wrap { grid-template-rows: 1fr; }
.accordion-panel { min-height: 0; overflow: hidden; }
.accordion-panel p {
  padding: 0 28px 20px 32px;
  margin: 0;
  color: var(--c-text-soft);
}

/* Travel & hotels */
.travel-layout {
  --travel-panel-height: 644px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: 24px;
  margin: 28px 0;
}
.hotel-map {
  min-width: 0;
}
.hotel-map iframe {
  width: 100%;
  height: var(--travel-panel-height);
  min-height: 520px;
  border: 0;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-soft);
  filter: sepia(12%) saturate(1.05);
}

.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  height: var(--travel-panel-height);
  max-height: var(--travel-panel-height);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scroll-snap-type: y proximity;
  padding: 10px 12px 14px 10px;
}
.hotel-tile {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  display: grid;
  grid-template-columns: minmax(78px, 1fr) minmax(0, 3fr);
  align-items: start;
  gap: 14px;
  background: var(--c-paper-solid);
  border: 1px solid var(--c-gold-light);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.hotel-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.hotel-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--c-burgundy);
  color: var(--c-paper-solid);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.hotel-tile-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius-sm);
  align-self: start;
}
.hotel-tile-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}
.hotel-tile-name {
  font-family: var(--font-heading);
  color: var(--c-burgundy);
  font-size: 1rem;
  line-height: 1.25;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}
.hotel-tile-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-text-soft);
}
.hotel-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-sage);
  color: var(--c-paper-solid);
  font-weight: 600;
  font-size: 0.78rem;
  border-radius: 5px;
  padding: 2px 6px;
}
.hotel-stars { color: var(--c-gold); letter-spacing: 1px; }
.hotel-distance {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
}
.hotel-tile-offer {
  margin: 6px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-sage);
}
.hotel-tile-offer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.hotel-tile-offer-row .hotel-tile-offer { margin-top: 0; }
.hotel-discount {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--c-sage);
  color: var(--c-paper-solid);
  font-size: 0.74rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 2px 7px;
}
.hotel-tile-footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}
.hotel-tile-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.hotel-price-label {
  flex-basis: 100%;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.hotel-price-label::before {
  content: "/ ";
}
.hotel-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hotel-price-old {
  text-decoration: line-through;
  color: var(--c-text-soft);
  font-size: 0.85rem;
}
.hotel-price-new {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-burgundy);
}
.hotel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  background: var(--c-text);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: normal;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hotel-cta:hover {
  background: var(--c-burgundy);
  transform: translateY(-2px);
}

@media (max-width: 899px) {
  .travel-layout {
    --travel-panel-height: clamp(360px, 62vh, 520px);
    grid-template-columns: 1fr;
  }
  .hotel-map {
    width: 100%;
  }
  .hotel-map iframe {
    height: clamp(240px, 46vw, 360px);
    min-height: 0;
  }
  .hotel-list {
    height: clamp(340px, 58vh, 460px);
    max-height: clamp(340px, 58vh, 460px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 2px 0 0;
  }
}

@media (max-width: 1120px) and (min-width: 900px) {
  .travel-layout {
    --travel-panel-height: clamp(380px, 60vh, 560px);
    grid-template-columns: 1fr;
  }
  .hotel-map iframe {
    height: clamp(320px, 44vw, 520px);
    min-height: 0;
  }
  .hotel-list {
    height: var(--travel-panel-height);
    padding-inline: 0;
  }
}

@media (max-width: 700px) {
  .hotel-tile {
    grid-template-columns: minmax(72px, 1fr) minmax(0, 3fr);
    gap: 12px;
    padding: 12px;
  }
  .hotel-tile-footer {
    grid-template-columns: 1fr;
  }
  .hotel-tile-name {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .hotel-tile-meta {
    gap: 6px;
    font-size: 0.76rem;
  }
  .hotel-distance {
    font-size: 0.9rem;
  }
  .hotel-price-new {
    font-size: 1.12rem;
  }
  .hotel-cta {
    padding: 9px 12px;
    font-size: 0.76rem;
  }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  text-align: center;
  padding: 60px 24px 90px;
  position: relative;
}
.site-footer .flourish-icon { margin: 0 auto 24px; }
.footer-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--c-text);
}
.footer-names {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--c-burgundy);
  margin: 6px 0;
}
.footer-meta {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--c-text-soft);
}

@media (max-width: 899px) {
  .site-footer { padding-bottom: calc(var(--bottom-nav-height) + 40px); }
}

/* =====================================================
   RESPONSIVE TWEAKS (small screens)
   ===================================================== */
@media (max-width: 600px) {
  body { font-size: 0.95rem; }

  .section { padding: 64px 28px; }
  .section-card {
    width: min(100%, 82vw);
    padding: 30px 14px;
    border-radius: 20px;
  }
  .section-card > .flourish-icon { margin-bottom: 36px; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .section-eyebrow { font-size: 0.7rem; }

  .hero { padding: 120px 16px 90px; }
  .hero-seal { width: 110px; height: 110px; }
  .hero-seal-text { font-size: 28px; }
  .hero-names { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .hero-date { font-size: 1rem; }
  .hero-venue { font-size: 1.05rem; }

  .countdown {
    width: 100%;
    max-width: 360px;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .countdown-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 4px;
  }
  .countdown-value { font-size: clamp(1.1rem, 6.5vw, 1.5rem); }
  .countdown-label {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .timeline { gap: 32px; }
  .timeline-marker { width: 46px; height: 46px; }
  .timeline-marker svg { width: 20px; height: 20px; }
  .timeline-row { grid-template-columns: 46px 1fr; column-gap: 14px; }
  .timeline::before { left: 23px; }
  .timeline-content h3 { font-size: 1.1rem; }

  .timeline-schedule .timeline-row { grid-template-columns: 46px 46px 1fr; column-gap: 10px; }
  .timeline-schedule::before { left: 79px; }
  .timeline-time { font-size: 0.8rem; padding-top: 12px; }

  .location-venue { font-size: 1.3rem; }

  .accordion-trigger { font-size: 0.95rem; }

  .swatch { width: 36px; height: 36px; }

  .corner { width: 40px; height: 40px; }
  .corner-tl { top: 12px; left: 12px; }
  .corner-br { bottom: 12px; right: 12px; }

  .bg-bird {
    --bird-width: clamp(52px, 14vw, 68px);
    --bird-height: clamp(38px, 10vw, 48px);
    --template-width: clamp(114px, 30vw, 150px);
  }

  .hotel-list {
    gap: 12px;
    height: clamp(360px, 54vh, 500px);
    max-height: clamp(360px, 54vh, 500px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 6px;
    padding-right: 2px;
  }
  .hotel-tile {
    grid-template-columns: minmax(64px, 1fr) minmax(0, 3fr);
    gap: 10px;
    padding: 10px;
  }
  .hotel-tile-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .hotel-tile-name { font-size: 0.92rem; }
  .hotel-price-new { font-size: 1.1rem; }
  .hotel-tile-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .hotel-cta {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    font-size: 0.76rem;
    padding: 10px 12px;
  }
}

@media (max-width: 380px) {
  .hotel-tile {
    grid-template-columns: 1fr;
  }
  .hotel-tile-img {
    aspect-ratio: 16 / 9;
    object-position: center 32%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .butterflies {
    display: none !important;
  }
  .butterfly-photo {
    animation: none !important;
  }
  .bg-bird-layer {
    display: none !important;
  }
}
