/* ============================================================
   OFIR & VICTORIA — Copenhague, boda civil
   Editorial / romántico / old-world — no Nordic minimalism
   ============================================================ */

:root {
  /* ---- Type scale (fluid clamp) ---- */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6.5rem);

  /* ---- 4px spacing system ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---- Color: warm ivory / burgundy / brass editorial palette ---- */
  --color-bg: #faf5ec;
  --color-surface: #fffcf6;
  --color-surface-2: #fff9f0;
  --color-surface-offset: #f3ead9;
  --color-surface-offset-2: #ecdfc9;
  --color-surface-dynamic: #e8dac0;
  --color-divider: #e2d3b8;
  --color-border: #d9c6a3;

  --color-text: #2f2016;
  --color-text-muted: #7a6653;
  --color-text-faint: #b3a186;
  --color-text-inverse: #fdf7ec;

  /* Primary accent — deep wine/burgundy */
  --color-primary: #6e1f2c;
  --color-primary-hover: #571723;
  --color-primary-active: #400f19;
  --color-primary-highlight: #ecd6d5;

  /* Secondary accent — muted gold / brass */
  --color-gold: #a9822f;
  --color-gold-hover: #8c6a23;
  --color-gold-active: #6c5119;
  --color-gold-highlight: #ecdfc0;

  --color-rose: #b4636f;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 3px oklch(0.25 0.05 30 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.25 0.05 30 / 0.1);
  --shadow-lg: 0 20px 48px oklch(0.25 0.05 30 / 0.14);

  --content-narrow: 640px;
  --content-default: 880px;
  --content-wide: 1180px;

  /* ---- Fonts ---- */
  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-accent: 'Instrument Serif', Georgia, serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;
}

/* This site is intentionally single-theme (warm ivory editorial) —
   the romantic old-world mood is the entire point of the design and
   should not shift under a cold dark mode. Respect reduced motion only. */

/* ============================================================
   Base elements
   ============================================================ */

body {
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, oklch(from var(--color-gold) l c h / 0.07), transparent 60%),
    radial-gradient(ellipse 800px 600px at 100% 30%, oklch(from var(--color-primary) l c h / 0.05), transparent 60%),
    var(--color-bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
}
a:hover {
  color: var(--color-primary-hover);
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  position: relative;
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}

/* ---- Eyebrow / small-caps label ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ---- Section heading block ---- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-10), 6vw, var(--space-16));
}

.section-head h2 {
  font-size: var(--text-2xl);
  font-style: italic;
  margin-block: var(--space-4) var(--space-3);
}

.section-head p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-inline: auto;
}

/* ---- Divider ornament ---- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--color-gold);
  margin-block: var(--space-6);
}
.ornament svg { width: 84px; height: auto; }

/* Heart variant: a small line-drawn heart flanked by the same gold hairlines
   used by .eyebrow, as a full stop at the end of a section. */
.ornament--heart {
  gap: var(--space-4);
  color: var(--color-rose);
}
.ornament--heart::before,
.ornament--heart::after {
  content: '';
  width: clamp(28px, 6vw, 56px);
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
}
.ornament--heart svg { width: 20px; height: auto; }

/* Smaller, quieter version of the heart ornament — used to sign off the
   footer under the monogram, where the full-size one would shout. */
.ornament--heart-sm {
  gap: var(--space-3);
  margin-block: var(--space-4) 0;
  opacity: 0.75;
}
.ornament--heart-sm::before,
.ornament--heart-sm::after {
  width: clamp(20px, 4vw, 36px);
}
.ornament--heart-sm svg { width: 13px; }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-surface) l c h / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-4);
}

.site-header .monogram {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-decoration: none;
}
.site-header__brand:hover { color: var(--color-primary); }

.site-header__wordmark {
  white-space: nowrap;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 3vw, var(--space-8));
}

.site-nav {
  display: flex;
  gap: clamp(var(--space-4), 3vw, var(--space-8));
}

.site-nav a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--color-primary); }

/* ---- Mobile menu ---- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: calc(var(--space-2) * -1);
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--transition-interactive), opacity var(--transition-interactive);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6.25px; }
.nav-toggle__bars span:nth-child(3) { top: 12.5px; }

.nav-toggle.is-open .nav-toggle__bars span:nth-child(1) { transform: translateY(6.25px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bars span:nth-child(3) { transform: translateY(-6.25px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  padding: var(--space-2) clamp(var(--space-5), 5vw, var(--space-16)) var(--space-4);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--transition-interactive),
    transform var(--transition-interactive),
    visibility var(--transition-interactive);
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-block: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
  border-bottom: 1px dashed var(--color-divider);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active { color: var(--color-primary); }

@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav { display: flex; }
}

/* ---- Language toggle ---- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
}

.lang-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  line-height: 1;
}
.lang-toggle__btn:hover {
  color: var(--color-primary);
}
.lang-toggle__btn.is-active {
  color: var(--color-primary);
  background: var(--color-primary-highlight);
}

.lang-toggle__sep {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
}

/* Small muted inline note, e.g. "(venue to be confirmed)" */
.tbc {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-text-faint);
  margin-left: 0.35em;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 140vh;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
  padding-bottom: clamp(var(--space-12), 7vw, var(--space-16));
  overflow: hidden;
}

/* Phones: a full-screen-ish hero instead of 1.4 screens of scrolling before
   the first section, and dvh so the collapsing browser chrome doesn't jump. */
@media (max-width: 720px) {
  .hero {
    min-height: 92vh;
    min-height: 92dvh;
    padding-top: var(--space-12);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.94) contrast(1.02);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      oklch(from var(--color-bg) l c h / 0.62) 0%,
      oklch(from var(--color-bg) l c h / 0.4) 22%,
      oklch(from var(--color-bg) l c h / 0.5) 60%,
      var(--color-bg) 94%
    );
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 90% at 50% 8%, transparent 45%, oklch(from var(--color-text) l c h / 0.16) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: oklch(from var(--color-surface) l c h / 0.75);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.hero .monogram {
  width: clamp(56px, 8vw, 88px);
  height: auto;
  color: var(--color-primary);
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__amp {
  display: inline-block;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-gold);
  padding-inline: 0.15em;
}

.hero__meta {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero__meta span { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero__meta svg { width: 16px; height: 16px; color: var(--color-gold); }

.hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero__copy {
  margin-top: var(--space-10);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--color-text);
  max-width: 620px;
  margin-inline: auto;
}

.hero__scroll {
  margin-top: var(--space-16);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__scroll svg { width: 14px; height: 22px; animation: bob 2.4s ease-in-out infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   Timeline (Organigrama del fin de semana)
   ============================================================ */

.timeline {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--color-border) 8%, var(--color-border) 92%, transparent);
}

@media (min-width: 860px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}

.day-block {
  position: relative;
  padding-left: 68px;
  margin-bottom: clamp(var(--space-16), 6vw, var(--space-24));
}
.day-block:last-child { margin-bottom: 0; }

.day-block__marker {
  position: absolute;
  left: 0;
  top: 4px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

/* Phones: narrow the timeline rail so the day card keeps a readable measure. */
@media (max-width: 640px) {
  .timeline::before { left: 21px; }
  .day-block { padding-left: 54px; }
  .day-block__marker {
    width: 42px;
    height: 42px;
    font-size: var(--text-base);
  }
}

/* Heart medallion that caps the timeline rail — same disc as .day-block__marker
   so it reads as the final "stop" on the weekend. */
.timeline__end {
  position: relative;
  height: 56px;
}
.timeline__heart {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  color: var(--color-rose);
  z-index: 1;
}
.timeline__heart svg { width: 22px; height: auto; }

@media (max-width: 640px) {
  .timeline__end { height: 42px; }
  .timeline__heart { width: 42px; height: 42px; }
  .timeline__heart svg { width: 17px; }
}

@media (min-width: 860px) {
  .timeline__heart { left: 50%; transform: translateX(-50%); }
}

@media (min-width: 860px) {
  .day-block {
    padding-left: 0;
    width: calc(50% - 48px);
  }
  .day-block:nth-child(odd) { margin-left: 0; text-align: right; }
  .day-block:nth-child(even) { margin-left: calc(50% + 48px); }
  .day-block__marker {
    top: 0;
  }
  .day-block:nth-child(odd) .day-block__marker { right: -84px; left: auto; }
  .day-block:nth-child(even) .day-block__marker { left: -84px; }
}

.day-block__scene {
  display: none;
}
@media (min-width: 860px) {
  .day-block__scene {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    width: 100%;
    height: clamp(200px, 20vw, 280px);
    transform: translateY(-50%);
    /* Hard boundary: the sketches live in the empty half of the timeline and
       must never spill past it (or off the page) at any viewport width. */
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  .day-block:nth-child(odd) .day-block__scene { left: calc(100% + 96px); }
  .day-block:nth-child(even) .day-block__scene { right: calc(100% + 96px); }
  .day-block__scene img {
    display: block;
    /* The source art sits inside a wide empty margin. Scaling to 140% of the
       column crops that margin away while keeping the whole drawing visible. */
    width: 140%;
    max-width: none;
    height: auto;
    flex-shrink: 0;
    opacity: 0.9;
  }
}

.day-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-sm);
}

.day-card .eyebrow { margin-bottom: var(--space-3); }
@media (min-width: 860px) {
  .day-block:nth-child(odd) .eyebrow { justify-content: flex-end; }
  .day-block:nth-child(odd) .eyebrow::before { order: 2; }
}

.day-card h3 {
  font-size: var(--text-xl);
  font-style: italic;
  margin-bottom: var(--space-3);
}

.day-card__intro {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
  max-width: 60ch;
}
@media (min-width: 860px) {
  .day-block:nth-child(odd) .day-card__intro { margin-left: auto; }
}

.agenda {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.agenda-item {
  display: flex;
  gap: var(--space-4);
  text-align: left;
}
@media (min-width: 860px) {
  .day-block:nth-child(odd) .agenda-item { flex-direction: row-reverse; text-align: right; }
}

.agenda-item__time {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-gold);
  padding-top: 0.2em;
  min-width: 56px;
}

/* Narrow phones: the time gutter starves the description of width, so the
   time becomes a label stacked above its entry instead. */
@media (max-width: 560px) {
  .agenda-item {
    flex-direction: column;
    gap: var(--space-1);
  }
  .agenda-item__time {
    min-width: 0;
    padding-top: 0;
  }
}

.agenda-item__body strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}
.agenda-item__body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.transfer-note {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--color-primary-highlight);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.transfer-note a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.day-highlight {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--color-gold-highlight);
  color: var(--color-gold-active);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   Accommodation cards
   ============================================================ */

.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (max-width: 720px) {
  .stay-grid { grid-template-columns: 1fr; }
}

.stay-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.stay-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stay-card--featured {
  border-color: var(--color-primary);
  position: relative;
}
.stay-card--featured::before {
  content: attr(data-badge);
  position: absolute;
  top: 0;
  right: var(--space-6);
  transform: translateY(-50%);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
}

.stay-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.stay-card h3 {
  font-size: var(--text-lg);
  font-style: italic;
}

.stay-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stay-card__icon svg { width: 20px; height: 20px; }

.stay-card__area {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}

.stay-card p.desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex-grow: 1;
}

.stay-card__contact {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px dashed var(--color-divider);
  font-size: var(--text-sm);
}
.stay-card__contact a {
  font-weight: 600;
}

/* ============================================================
   Transport
   ============================================================ */

.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
@media (max-width: 860px) {
  .transport-grid { grid-template-columns: 1fr; }
}

.transport-col h3 {
  font-size: var(--text-lg);
  font-style: italic;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.transport-col h3 svg { width: 22px; height: 22px; color: var(--color-gold); flex-shrink: 0; }

.transport-option {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.transport-option:last-child { border-bottom: none; }

.transport-option__label {
  font-weight: 600;
  font-size: var(--text-sm);
}
.transport-option__detail {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.transport-option__price {
  flex-shrink: 0;
  text-align: right;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-primary);
  white-space: nowrap;
}

@media (max-width: 460px) {
  .transport-option {
    flex-direction: column;
    gap: var(--space-1);
  }
  .transport-option__price { text-align: left; }
}

.transport-note {
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface-offset);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.transport-note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-gold); margin-top: 2px; }

.map-illustration {
  margin-top: var(--space-12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-divider);
}

.discover-illustration {
  margin-bottom: clamp(var(--space-12), 7vw, var(--space-16));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-divider);
}
.discover-illustration img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 420px;
}

/* ============================================================
   Closing / Contact
   ============================================================ */

.closing {
  text-align: center;
  position: relative;
}

.closing__flower {
  width: 120px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.closing h2 {
  font-size: var(--text-2xl);
  font-style: italic;
  max-width: 780px;
  margin-inline: auto;
}

.closing p.lead {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 620px;
  margin-inline: auto;
}

.closing__actions {
  margin-top: var(--space-10);
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  max-width: 100%;
  min-height: 48px;
  padding: var(--space-4) clamp(var(--space-5), 4vw, var(--space-8));
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  overflow-wrap: anywhere;
  transition: all var(--transition-interactive);
}
.btn svg { flex-shrink: 0; }
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.closing__sign {
  margin-top: var(--space-16);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-primary);
}

/* ============================================================
   Discover (things to do)
   ============================================================ */

.discover-group {
  margin-top: var(--space-16);
}
.discover-group:first-of-type {
  margin-top: var(--space-4);
}

.discover-group__title {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px dashed var(--color-divider);
}

.discover-grid--compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) {
  .discover-grid--compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .discover-grid--compact { grid-template-columns: 1fr; }
}

.discover-card--compact {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.discover-card--compact:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.discover-card--compact .discover-card__area {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}
.discover-card--compact h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
}
.discover-card--compact p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   RSVP
   ============================================================ */

.rsvp-form {
  max-width: 640px;
  margin: var(--space-10) auto 0;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.rsvp-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (max-width: 560px) {
  .rsvp-row { grid-template-columns: 1fr; }
}

.rsvp-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.rsvp-field label {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-muted);
}
.rsvp-field input[type="text"],
.rsvp-field select,
.rsvp-field textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  transition: border-color var(--transition-interactive);
}
.rsvp-field input[type="text"]:focus,
.rsvp-field select:focus,
.rsvp-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.rsvp-field textarea {
  resize: vertical;
  min-height: 80px;
}

.rsvp-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.rsvp-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
}
.rsvp-checkbox input {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.rsvp-form__error {
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
}

.rsvp-form__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-2);
}
.rsvp-form__actions .btn {
  border: none;
  cursor: pointer;
}
.rsvp-form__actions .btn--secondary {
  border: 1px solid var(--color-border);
}

.rsvp-form__note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  padding-block: var(--space-10);
  text-align: center;
  border-top: 1px solid var(--color-divider);
}
.site-footer .monogram {
  width: 30px;
  height: 30px;
  color: var(--color-gold);
  margin-inline: auto;
  margin-bottom: var(--space-3);
}
.site-footer p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
  margin-inline: auto;
}

/* ============================================================
   Scroll reveal (opacity/clip-path only — no CLS)
   ============================================================ */

.reveal {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* Fallback JS-driven reveal for browsers without scroll-timeline support.
   Scoped with @supports not(...) so it never fights the native scroll-timeline
   path above — otherwise the blur can get stuck on in browsers that handle
   the fade natively but never receive the JS "is-visible" class. */
@supports not (animation-timeline: scroll()) {
  .reveal.js-reveal {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(4px);
  }
  .reveal.js-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
  }
}

/* ============================================================
   Utility
   ============================================================ */

.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-12); }

/* ============================================================
   Mobile refinements
   ============================================================ */

/* Long, unbreakable strings (emails, phone numbers, Danish place names)
   are the main source of horizontal overflow on phones. */
.stay-card__contact,
.transfer-note,
.transport-note,
.closing__actions .btn {
  overflow-wrap: break-word;
}

/* Hover lifts stick to the element after a tap on touch devices, so the
   motion is reserved for pointers that can actually hover away. */
@media (hover: none) {
  .stay-card:hover,
  .discover-card--compact:hover,
  .btn--primary:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
}

@media (max-width: 720px) {
  /* Full-width actions are easier to hit than centred pills. */
  .closing__actions,
  .rsvp-form__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .closing__actions .btn,
  .rsvp-form__actions .btn {
    width: 100%;
  }

  .discover-illustration img { max-height: 260px; }

  .closing__flower { width: 88px; }

  .site-header .monogram { width: 34px; height: 34px; }
  .site-header__brand { font-size: var(--text-base); }
}

@media (max-width: 560px) {
  /* An email address set in caps is both wider and harder to read. */
  .closing__actions .btn--primary {
    text-transform: none;
    letter-spacing: 0.01em;
  }

  /* Tighter tracking keeps section labels on a single line. */
  .eyebrow { letter-spacing: 0.16em; }
  .eyebrow::before,
  .eyebrow::after { width: 14px; }

  .rsvp-checkbox { min-height: 44px; }
  .rsvp-checkbox input { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
  .stay-card--featured::before {
    position: static;
    display: inline-block;
    transform: none;
    margin-bottom: var(--space-2);
  }

  /* The date and the city stack rather than sit either side of the dot. */
  .hero__dot { display: none; }
  .hero__meta { gap: var(--space-2) var(--space-5); }
  .hero__scroll { margin-top: var(--space-8); }
}

@media (max-width: 380px) {
  /* Keeps the header on one line on the smallest phones — the O&V
     monogram still carries the mark. */
  .site-header__wordmark { display: none; }
}
