:root {
  --ink: #173a36;
  --paper: #f4efe5;
  --paper-deep: #e9dfcf;
  --coral: #d95848;
  --gold: #c9a267;
  --white: #fffaf2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button { font: inherit; }
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero__image {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  animation: reveal-image 1.4s ease-out both;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,22,20,.45) 0%, rgba(7,22,20,.05) 38%, rgba(7,22,20,.35) 100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 72px);
}
.monogram { font: 24px "Italiana", serif; text-decoration: none; letter-spacing: .12em; }
.language { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.45); border-radius: 100px; backdrop-filter: blur(8px); }
.language span { width: 1px; height: 12px; background: rgba(255,255,255,.5); }
.language__button { border: 0; padding: 0; background: none; color: inherit; font-size: 11px; letter-spacing: .14em; cursor: pointer; opacity: .55; }
.language__button.is-active { opacity: 1; font-weight: 600; }
.hero__content {
  min-height: calc(100svh - 92px);
  padding: clamp(90px, 18vh, 190px) 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.eyebrow, .section-label { margin: 0 0 20px; text-transform: uppercase; letter-spacing: .3em; font-size: 11px; font-weight: 600; }
.hero h1 { display: flex; align-items: center; gap: clamp(12px, 3vw, 36px); margin: 0; font: clamp(62px, 11vw, 150px)/.8 "Italiana", serif; letter-spacing: -.03em; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 i { color: var(--coral); font-size: .62em; font-weight: 400; }
.hero__date { display: flex; align-items: baseline; gap: 14px; margin-top: 34px; text-transform: uppercase; letter-spacing: .25em; }
.hero__date span:first-child { font: 30px "Italiana", serif; letter-spacing: 0; }
.hero__date span:last-child { font-size: 12px; }
.scroll-cue { margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; text-decoration: none; }
.scroll-cue svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; animation: bounce 1.8s infinite; }

.invitation, .closing { padding: clamp(90px, 12vw, 160px) 24px; text-align: center; background-image: radial-gradient(circle at 20% 10%, rgba(201,162,103,.12), transparent 25%), radial-gradient(circle at 90% 80%, rgba(217,88,72,.08), transparent 30%); }
.flourish { margin-bottom: 40px; color: var(--coral); font-size: 22px; }
.section-label { color: var(--coral); }
.invitation h2, .schedule h2, .closing h2 { margin: 0; font: clamp(42px, 6vw, 78px)/1.05 "Italiana", serif; font-weight: 400; }
.invitation__copy { max-width: 620px; margin: 38px auto 0; font: 17px/1.9 "DM Sans", sans-serif; color: rgba(23,58,54,.75); }
.signature { margin: 34px 0 0; font: 28px "Italiana", serif; color: var(--coral); }

.schedule { padding: clamp(90px, 10vw, 140px) clamp(24px, 8vw, 120px); color: var(--white); background: var(--ink); }
.schedule__heading { text-align: center; }
.section-label--light { color: var(--gold); }
.schedule__date { margin: 24px 0 0; font-size: 12px; text-transform: uppercase; letter-spacing: .22em; color: rgba(255,250,242,.65); }
.timeline { max-width: 980px; margin: 90px auto 0; }
.event { display: grid; grid-template-columns: 130px 70px 1fr; min-height: 290px; }
.event__time { padding-top: 8px; font: 32px "Italiana", serif; color: var(--gold); }
.event__line { position: relative; display: flex; justify-content: center; }
.event__line::after { content: ""; width: 1px; height: 100%; background: rgba(255,255,255,.18); }
.event__line span { position: absolute; top: 12px; width: 13px; height: 13px; border: 3px solid var(--ink); border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 1px var(--coral); z-index: 1; }
.event:last-child .event__line::after { height: 20px; }
.event__details { padding: 0 0 70px 28px; }
.event__number { margin: 0 0 14px; color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: .2em; }
.event h3 { margin: 0 0 26px; font: 42px "Italiana", serif; }
.event__place { margin: 0 0 8px; color: var(--gold); font-weight: 600; }
.event address { color: rgba(255,250,242,.65); font-style: normal; line-height: 1.7; }
.map-link { display: inline-flex; align-items: center; gap: 20px; margin-top: 24px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; text-decoration: none; transition: color .2s, border-color .2s; }
.map-link:hover { color: var(--gold); border-color: var(--gold); }

.closing { min-height: 620px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.closing__names { margin-top: 60px; font: 30px "Italiana", serif; letter-spacing: .2em; }
.closing__names span { color: var(--coral); font-size: 18px; }
.closing__date { margin: 16px 0 0; font-size: 11px; letter-spacing: .28em; }
footer { display: flex; justify-content: space-between; padding: 28px clamp(24px, 5vw, 72px); color: rgba(255,250,242,.65); background: #0d2b28; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
footer p { margin: 0; }
footer a { text-decoration: none; }

@keyframes reveal-image { from { transform: scale(1.04); opacity: .65; } to { transform: scale(1); opacity: 1; } }
@keyframes bounce { 50% { transform: translateY(6px); } }
@media (max-width: 720px) {
  .hero h1 { flex-direction: column; gap: 2px; font-size: clamp(58px, 20vw, 92px); }
  .hero h1 i { margin: -8px 0 -3px; }
  .hero__image { object-position: 58% 50%; }
  .hero__content { padding-top: 15vh; }
  .event { grid-template-columns: 80px 34px 1fr; }
  .event__time { font-size: 24px; }
  .event__details { padding-left: 18px; }
  .event h3 { font-size: 34px; }
  footer { flex-direction: column; gap: 14px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
