/* ---------- Chari & Joshua — wedding site ---------- */

:root {
  --ink: #6B1A29;        /* deep burgundy */
  --cream: #F5F0E8;      /* paper cream */
  --olive: #7A8450;      /* sage accent */
  --paper: #FBF7F0;      /* lighter card */
  --ink-soft: #4a2228;
  --ink-mute: rgba(74, 34, 40, 0.55);
  --rule: rgba(107, 26, 41, 0.18);
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Raleway', system-ui, sans-serif;

  --pad-x: clamp(20px, 5vw, 80px);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-amp {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--ink);
  padding: 0 0.08em;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.88);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--rule);
  padding: 10px var(--pad-x);
}
.nav-brand {
  display: inline-flex; align-items: baseline; gap: 2px;
  color: var(--ink);
  white-space: nowrap;
  margin-right: 18px;
  line-height: 1;
}
.nav-brand .ini {
  font-family: 'Italianno', 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
}
.nav-brand .amp {
  font-family: 'Italianno', 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  opacity: 0.75;
  margin: 0 2px;
  transform: translateY(-2px);
}
.nav-links {
  display: flex; align-items: center; gap: clamp(18px, 2.4vw, 30px);
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink);
  transition: right 0.3s ease;
}
.nav-links a:hover::after { right: 0; }

.lang {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 11px; letter-spacing: 0.18em;
  margin-left: 16px;
  border-left: 1px solid var(--rule);
  padding-left: 16px;
}
.lang-btn {
  background: none; border: 0; padding: 4px 6px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  font-family: var(--font-sans);
  font-size: 11px;
  transition: color 0.2s;
}
.lang-btn.active { color: var(--ink); font-weight: 600; }
.lang-sep { color: var(--rule); }

.menu-btn { display: none; background: none; border: 0; padding: 6px; color: var(--ink); }
.menu-btn svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 78%; max-width: 320px;
    background: var(--cream);
    flex-direction: column; align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid var(--rule);
    box-shadow: -20px 0 60px rgba(107,26,41,0.06);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 13px; }
  .lang { margin-left: 0; padding-left: 0; border-left: 0; }
  .menu-btn { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px var(--pad-x) 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  overflow: hidden;
  background: var(--cream);
  text-align: center;
}
.hero::before {
  /* paper texture overlay */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(107,26,41,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(107,26,41,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-illus {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 62%;
  background-image: url("assets/hero-table.jpeg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  opacity: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 18%, #000 45%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 18%, #000 45%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 720px) {
  .hero-illus { height: 48%; }
}
body[data-hero="minimal"] .hero-illus { opacity: 0; }
body[data-hero="minimal"] .hero { min-height: 88vh; }
.hero-content {
  position: relative; z-index: 3;
  margin-top: 2vh;
  max-width: 980px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 18px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: ""; width: 40px; height: 1px; background: var(--ink); opacity: 0.45;
}
.hero-names {
  font-family: 'Italianno', 'Pinyon Script', cursive;
  color: var(--ink);
  font-size: clamp(110px, 17vw, 240px);
  line-height: 0.95;
  margin-bottom: 22px;
  letter-spacing: 0.005em;
  font-weight: 400;
}
.hero-names .amp {
  display: inline-block;
  padding: 0 0.05em;
  transform: translateY(0.04em);
  font-size: 0.9em;
  color: var(--ink);
  opacity: 0.92;
}
.hero-rule {
  width: 280px; height: 1px;
  background: var(--ink);
  margin: 22px auto 26px;
  opacity: 0.5;
  position: relative;
}
.hero-rule::before, .hero-rule::after {
  content: ""; position: absolute; top: 50%;
  width: 6px; height: 6px;
  border: 1px solid var(--ink);
  background: var(--cream);
  border-radius: 50%;
  transform: translateY(-50%);
}
.hero-rule::before { left: -4px; }
.hero-rule::after { right: -4px; }
.hero-meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero-meta .city {
  display: block;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--font-sans);
  color: var(--ink-mute);
  margin-top: 16px;
  font-weight: 600;
}

/* Countdown — sits above the Story section */
.countdown-wrap {
  display: flex; justify-content: center;
  margin: 0 auto clamp(50px, 8vw, 90px);
  padding: 0 var(--pad-x);
}
.countdown {
  display: inline-flex; align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 22px clamp(28px, 4vw, 52px);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
  box-shadow: 0 18px 38px -22px rgba(107, 26, 41, 0.18);
}
.hero { padding-bottom: clamp(40px, 6vw, 80px); }
.story { padding-top: clamp(80px, 11vw, 130px); }
.cd-cell { text-align: center; min-width: 56px; }
.cd-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.35;
  align-self: center;
}
.cd-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 52px);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
  font-weight: 600;
}

.scroll-cue {
  display: none;
}

/* ---------- Section shell ---------- */
.section {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  position: relative;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.section-head .ornament-mark {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ink);
  opacity: 0.65;
}
.section-head .ornament-mark::before,
.section-head .ornament-mark::after {
  content: "";
  width: 36px; height: 1px;
  background: currentColor;
}
.section-head .ornament-mark .o-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.section-head .ornament-mark .o-diamond {
  width: 7px; height: 7px;
  background: currentColor;
  display: inline-block;
  transform: rotate(45deg);
}
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-head .lede {
  max-width: 640px;
  margin: 26px auto 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
}
.sketch {
  display: block; margin: 0 auto;
  filter: saturate(0.95);
}

.divider-floral {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  color: var(--ink);
  opacity: 0.55;
  margin: 8px auto;
}
.divider-floral hr {
  border: 0; height: 1px; background: currentColor;
  width: 80px;
}
.divider-floral .dot {
  width: 6px; height: 6px; border: 1px solid currentColor; border-radius: 50%;
  display: inline-block;
}

/* Ornament: sketched-style fleur between sections */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin: 0 auto;
  color: var(--ink);
  opacity: 0.7;
  pointer-events: none;
}
.ornament svg { width: 22px; height: 22px; }
.ornament .line {
  width: 60px; height: 1px;
  background: currentColor;
  position: relative;
  opacity: 0.6;
}
.ornament .line::before, .ornament .line::after {
  content: ""; position: absolute; top: 50%;
  width: 3px; height: 3px;
  background: currentColor; border-radius: 50%;
  transform: translateY(-50%);
}
.ornament .line.left::before { left: 0; }
.ornament .line.left::after { right: 0; }
.ornament .line.right::before { left: 0; }
.ornament .line.right::after { right: 0; }
.ornament .heart {
  width: 14px; height: 14px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16 28s-12-7.5-12-16a7 7 0 0 1 12-5 7 7 0 0 1 12 5c0 8.5-12 16-12 16z' fill='black'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16 28s-12-7.5-12-16a7 7 0 0 1 12-5 7 7 0 0 1 12 5c0 8.5-12 16-12 16z' fill='black'/></svg>") center / contain no-repeat;
}
.section-divider {
  padding: 60px var(--pad-x) 0;
  background: inherit;
}
.section-divider.with-bg {
  background: var(--cream);
}

/* ---------- Story ---------- */
.story {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  top: 60px; left: -80px;
  width: 280px; height: 280px;
  background-image: url("assets/sketch-sparkles.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.18;
  transform: rotate(-12deg);
  pointer-events: none;
}
.story::after {
  content: "";
  position: absolute;
  bottom: 40px; right: -60px;
  width: 220px; height: 220px;
  background-image: url("assets/sketch-sparkles.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.14;
  transform: rotate(18deg) scaleX(-1);
  pointer-events: none;
}
.story .section-inner { position: relative; z-index: 1; }
.story-icon {
  width: 84px; margin: 0 auto 24px;
  opacity: 0.85;
}
.story-text {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.85vw, 26px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.story-text .pull {
  display: block;
  font-family: var(--font-script);
  color: var(--ink);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  margin: 20px 0;
  font-style: normal;
}
.story-signature {
  margin-top: 44px;
  font-family: var(--font-script);
  color: var(--ink);
  font-size: 54px;
  line-height: 1;
}
.story-signature .amp { font-family: var(--font-script); opacity: 0.7; padding: 0 6px; }

/* ---------- Events ---------- */
.events {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.event {
  text-align: center;
  position: relative;
  padding: 16px 12px;
  display: flex; flex-direction: column;
}
.event + .event::before {
  content: "";
  position: absolute; left: -2px; top: 8%; bottom: 8%;
  width: 1px; background: var(--rule);
}
.event-kicker {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 18px;
  font-weight: 600;
}
.date-stamp {
  display: flex; flex-direction: column; align-items: center;
  margin: 0 auto 20px;
  position: relative;
  padding: 12px 28px;
}
.date-stamp::before, .date-stamp::after {
  content: ""; position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--ink);
  opacity: 0.4;
}
.date-stamp::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.date-stamp::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.date-day {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 8vw, 92px);
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.date-month {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.event-icon {
  width: 88px; margin: 0 auto 18px;
  opacity: 0.88;
}
.event-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 3vw, 40px);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}
.event-time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
}
.event-venue {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 16px;
}
.event-desc {
  max-width: 360px;
  margin: 10px auto 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.event-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 24px auto 0;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  transition: border-color 0.25s, gap 0.25s;
}
.event-link:hover { border-color: var(--ink); gap: 12px; }
.event-link svg { width: 14px; height: 14px; }

@media (max-width: 820px) {
  .events-grid { grid-template-columns: 1fr; }
  .event + .event::before { display: none; }
  .event + .event { padding-top: 36px; border-top: 1px solid var(--rule); margin-top: 12px; }
}

/* ---------- Details (day timeline) ---------- */
.details {
  background: var(--cream);
  position: relative;
}
.details-inner {
  max-width: 960px;
  margin: 0 auto;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto;
  max-width: 620px;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--rule);
}
.tl-item {
  position: relative;
  padding: 22px 0 22px 36px;
  border-bottom: 1px dashed var(--rule);
}
.tl-item:last-child { border-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute; left: -27px; top: 28px;
  width: 10px; height: 10px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 50%;
  z-index: 2;
}
.tl-item.highlight::before {
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(107,26,41,0.08);
}
.tl-time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.tl-title {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.tl-note {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 70px auto 0;
  max-width: 620px;
}
.detail-card {
  text-align: center;
  padding: 32px 22px;
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.detail-card .lbl {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--olive); font-weight: 600; margin-bottom: 14px;
}
.detail-card .val {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.detail-card .sub {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .detail-cards { grid-template-columns: 1fr; }
}

/* When two cream sections sit next to each other, halve the seam */
.details + .transport,
.transport + .details {
  padding-top: clamp(40px, 6vw, 70px);
}
.details {
  padding-bottom: clamp(50px, 8vw, 90px);
}

/* ---------- Transport ---------- */
.transport {
  background: var(--cream);
  text-align: center;
}
.transport-icon { width: 200px; margin: 0 auto 8px; }

/* Venue location card */
.venue-card {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 30px);
  max-width: 720px;
  margin: 0 auto;
  padding: 26px clamp(24px, 3.5vw, 38px);
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-align: left;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.venue-card:hover { background: rgba(255,255,255,0.85); border-color: var(--ink); transform: translateY(-2px); }
.venue-pin {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--ink);
}
.venue-pin svg { width: 24px; height: 24px; }
.venue-body { flex: 1 1 auto; min-width: 0; }
.venue-label {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--olive); font-weight: 600; margin-bottom: 8px;
}
.venue-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
}
.venue-addr {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.venue-go {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  transition: gap 0.25s, border-color 0.25s;
}
.venue-card:hover .venue-go { gap: 12px; border-color: var(--ink); }
.venue-go svg { width: 13px; height: 13px; }

.transport-lede {
  margin: clamp(44px, 6vw, 64px) auto 0 !important;
}

@media (max-width: 600px) {
  .venue-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .venue-go { margin-top: 6px; }
}
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 880px;
  margin: 60px auto 0;
}
.route {
  padding: 32px 24px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(255,255,255,0.35);
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.route:hover { background: rgba(255,255,255,0.7); border-color: var(--ink); transform: translateY(-2px); }
.route-from {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1;
}
.route-tag {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--olive);
  margin-bottom: 16px; font-weight: 600;
}
.route-time {
  font-family: var(--font-serif); font-size: 18px; color: var(--ink-soft);
}
.route-time strong { color: var(--ink); font-weight: 500; }
.route-note {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.route-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
  transition: border-color 0.2s, gap 0.2s;
  margin-top: 12px;
}
.route-link:hover { border-color: var(--ink); gap: 10px; }
.route-link svg { width: 12px; height: 12px; }
.route-back {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .routes { grid-template-columns: 1fr; max-width: 360px; gap: 16px; }
}

/* ---------- Hotels ---------- */
.hotels {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hotels-icon { width: 130px; margin: 0 auto 8px; }
.hotel-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 40px auto 0;
  max-width: 960px;
  border-top: 1px solid var(--rule);
}
.hotel {
  padding: 34px 32px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.hotel:nth-child(odd) { border-right: 1px solid var(--rule); }
.hotel-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--olive);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.hotel-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.hotel-addr {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.hotel-detail {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hotel-contact {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
}
.hotel-pill {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--rule);
  color: var(--ink-mute);
  border-radius: 999px;
  font-weight: 500;
}
.hotel-pill.contact { color: var(--olive); border-color: var(--olive); }
.hotel-pill.discount { color: var(--ink); border-color: var(--ink); }

@media (max-width: 720px) {
  .hotel-list { grid-template-columns: 1fr; }
  .hotel:nth-child(odd) { border-right: 0; }
  .hotel { padding: 28px 4px; }
}

/* ---------- RSVP ---------- */
.rsvp {
  background: var(--cream);
}
.rsvp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.rsvp-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 44px clamp(28px, 4vw, 52px);
  border-radius: 4px;
}
.rsvp-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 8px;
}
.rsvp-card .lede {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.rsvp-icon { width: 70px; opacity: 0.85; margin-bottom: 14px; }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.field input[type="text"], .field input[type="email"], .field textarea, .field select {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-soft);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--rule);
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--ink); }
.field textarea { resize: vertical; min-height: 60px; }

.radio-group {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.radio-group label {
  flex: 1; min-width: 100px;
  position: relative;
  cursor: pointer;
}
.radio-group input {
  position: absolute; inset: 0;
  opacity: 0;
  cursor: pointer;
}
.radio-group span {
  display: block;
  text-align: center;
  border: 1px solid var(--rule);
  padding: 14px 12px;
  border-radius: 4px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.radio-group input:checked + span {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
}
.radio-group label:hover span {
  border-color: var(--ink);
}

.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink-soft);
  margin-bottom: 18px;
  cursor: pointer;
}
.checkbox input { margin-top: 4px; accent-color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 12px;
  padding: 16px 32px;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.2s, background 0.2s;
  width: 100%;
}
.btn:hover { background: transparent; color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.rsvp-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.rsvp-success.show { display: block; }
.rsvp-success .script {
  font-size: 56px; line-height: 1; margin-bottom: 14px;
}
.rsvp-error {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  background: rgba(107, 26, 41, 0.06);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 12px 14px;
  text-align: center;
}

/* Gift card */
.gift {
  text-align: center;
}
.gift .rsvp-icon { margin: 0 auto 14px; }
.iban-box {
  background: var(--cream);
  border: 1px dashed var(--rule);
  padding: 18px;
  margin: 22px 0 8px;
  text-align: center;
}
.iban-code {
  font-family: 'Courier New', monospace;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 10px;
  word-break: break-all;
}
.iban-status {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  min-height: 16px;
  font-weight: 600;
}

@media (max-width: 820px) {
  .rsvp-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cream);
  padding: 100px var(--pad-x) 60px;
  text-align: center;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}
.footer-sparkles { width: 150px; margin: 0 auto 14px; opacity: 0.7; }
.footer-script {
  font-family: var(--font-script);
  font-size: clamp(54px, 7vw, 84px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 16px;
}
.footer-heart {
  width: 60px; opacity: 0.7; margin: 26px auto 18px;
}
.footer-couple {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.5;
}
.footer-couple .amp {
  font-family: var(--font-script);
  font-size: 1.5em;
  vertical-align: -0.15em;
  padding: 0 0.1em;
  font-style: normal;
}
.footer-meta {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 36px;
  font-weight: 500;
}
.footer-line {
  width: 60px; height: 1px;
  background: var(--ink); opacity: 0.4;
  margin: 28px auto 0;
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
