:root {
  --paper: #f4eee5;
  --paper-deep: #e8dece;
  --ink: #1c241e;
  --green: #172d24;
  --red: #a61f2b;
  --burgundy: #521820;
  --gold: #b99255;
  --line: rgba(28, 36, 30, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }

.noise { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.topbar { height: 88px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 4.5vw; border-bottom: 1px solid var(--line); position: relative; z-index: 5; }
.monogram { font-family: var(--serif); font-size: 25px; letter-spacing: -.12em; width: fit-content; }
.monogram span { color: var(--red); font-style: italic; font-size: .7em; margin: 0 .16em; }
.topbar nav { display: flex; gap: 42px; font-size: 12px; text-transform: uppercase; letter-spacing: .17em; }
.topbar nav a, footer a { transition: color .2s ease; }
.topbar nav a:hover, footer a:hover { color: var(--red); }
.nav-cta { justify-self: end; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; border-bottom: 1px solid; padding-bottom: 5px; }

.hero { min-height: calc(100svh - 88px); display: grid; grid-template-columns: .92fr 1.08fr; padding: 3.5vw 4.5vw 4.5vw; gap: 5vw; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 32px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .25em; }
.eyebrow span { width: 36px; height: 1px; background: currentColor; }
h1, h2 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -.055em; line-height: .88; }
h1 { font-size: clamp(70px, 8.5vw, 145px); }
h1 i, h2 i { color: var(--red); font-weight: 400; }
.intro { max-width: 390px; font-family: var(--serif); font-size: clamp(17px, 1.4vw, 22px); line-height: 1.6; margin: 36px 0; color: #50574f; }
.hero-date { display: flex; align-items: center; width: fit-content; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 13px 0; margin-bottom: 32px; }
.date-number { font-family: var(--serif); color: var(--red); font-size: 54px; line-height: 1; padding-right: 18px; }
.date-meta { border-left: 1px solid var(--line); padding-left: 18px; font-family: var(--serif); font-size: 16px; line-height: 1.4; }
.date-meta b { font-family: var(--sans); font-size: 9px; text-transform: uppercase; letter-spacing: .17em; }
.text-link { display: flex; align-items: center; gap: 34px; width: fit-content; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.text-link span { display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; width: 38px; height: 38px; transition: .25s ease; }
.text-link:hover span { background: var(--red); color: white; transform: translateY(3px); }
.hero-visual { position: relative; padding: 0 38px 30px 0; max-width: 720px; justify-self: end; }
.photo-frame { position: relative; height: min(72vh, 770px); overflow: hidden; border-radius: 46% 46% 4px 4px; background: var(--paper-deep); }
.photo-frame img { height: 100%; object-fit: cover; object-position: 50% 35%; }
.vertical-note { position: absolute; right: -10px; top: 16%; margin: 0; writing-mode: vertical-rl; font-size: 9px; text-transform: uppercase; letter-spacing: .22em; }
.seal { position: absolute; right: 0; bottom: 0; width: 112px; height: 112px; border-radius: 50%; background: var(--red); color: #fff4e8; display: flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--serif); font-size: 30px; box-shadow: 0 14px 34px rgba(89, 18, 25, .22); transform: rotate(-8deg); }
.seal::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.seal i { font-size: 16px; color: #e6bf7d; }

.ticker { background: var(--red); color: #fff8ec; height: 58px; display: flex; align-items: center; overflow: hidden; font-family: var(--serif); font-style: italic; font-size: 17px; white-space: nowrap; }
.ticker div { min-width: max-content; word-spacing: 12px; animation: ticker 22s linear infinite; }
.ticker span { color: #d9b575; font-size: 8px; vertical-align: middle; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 130px max(5vw, 24px); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 80px; }
.section-heading .eyebrow { align-self: start; }
h2 { font-size: clamp(56px, 6.8vw, 112px); }
.details { background: #f8f3eb; }
.details-grid { display: grid; grid-template-columns: .9fr 1.1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.day-card { min-height: 460px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-right: 1px solid var(--line); background: var(--paper); }
.day-card strong { font-family: var(--serif); font-size: clamp(150px, 20vw, 290px); line-height: .8; font-weight: 400; color: var(--red); letter-spacing: -.1em; margin-left: -.08em; }
.day-card p { margin: 18px 0; text-transform: uppercase; font-size: 10px; font-weight: 600; letter-spacing: .26em; }
.details-copy { padding: 70px 7vw; display: flex; flex-direction: column; justify-content: center; }
.lead { font-family: var(--serif); font-size: clamp(25px, 3vw, 45px); line-height: 1.25; max-width: 580px; margin: 0 0 55px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 50px; }
.countdown div { border-left: 1px solid var(--line); padding-left: 14px; }
.countdown strong { display: block; font-family: var(--serif); font-size: clamp(31px, 4vw, 58px); font-weight: 400; line-height: 1; }
.countdown span { font-size: 8px; text-transform: uppercase; letter-spacing: .2em; }
.button { min-height: 53px; width: fit-content; padding: 0 22px; border: 0; display: inline-flex; align-items: center; gap: 45px; text-transform: uppercase; letter-spacing: .16em; font-size: 9px; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--green); }
.button-light { color: var(--green); background: var(--paper); }
.venue .button-light { color: var(--burgundy); }

.story { display: grid; grid-template-columns: 1.03fr .97fr; gap: 9vw; align-items: center; }
.story-image { height: min(78vw, 900px); overflow: hidden; border-radius: 2px 2px 48% 48%; }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 61%; }
.story-copy { position: relative; max-width: 620px; }
.story-number { position: absolute; right: 0; top: -120px; color: var(--red); font-family: var(--serif); font-size: 70px; opacity: .3; }
.story-copy h2 { margin-bottom: 42px; }
.story-copy > p:not(.eyebrow) { max-width: 470px; line-height: 1.8; color: #596159; }
blockquote { margin: 70px 0 0; padding: 24px 0 24px 28px; border-left: 2px solid var(--red); font-family: var(--serif); font-size: clamp(20px, 2vw, 29px); font-style: italic; }

.venue { background: var(--burgundy); color: #f7f0e5; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; min-height: 670px; padding-top: 110px; padding-bottom: 110px; overflow: hidden; }
.eyebrow.light { color: #d9b77f; }
.venue h2 { color: #fff8ed; margin-bottom: 20px; }
.venue-meta { margin: 36px 0 48px; padding: 25px 0; border-top: 1px solid rgba(217,183,127,.42); border-bottom: 1px solid rgba(217,183,127,.42); width: min(100%, 430px); }
.floor { margin: 0 0 8px; color: #e0bd82; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 36px); font-style: italic; letter-spacing: -.02em; }
address { margin: 0; font-family: var(--sans); font-style: normal; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; line-height: 1.55; }
.venue-map { min-height: 450px; position: relative; overflow: hidden; border: 1px solid rgba(217,183,127,.55); background: #d8d2c8; box-shadow: 0 28px 70px rgba(27,2,6,.28); }
.venue-map::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 7px rgba(82,24,32,.12); pointer-events: none; }
.venue-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: sepia(.2) saturate(.62) contrast(.94); }
.map-label { position: absolute; left: 18px; bottom: 18px; z-index: 1; padding: 13px 17px; background: var(--burgundy); color: #fff8ed; border: 1px solid rgba(217,183,127,.5); box-shadow: 0 10px 28px rgba(0,0,0,.22); font-family: var(--serif); font-size: 15px; pointer-events: none; }
.map-label span { display: block; margin-bottom: 4px; color: #d9b77f; font-family: var(--sans); font-size: 8px; text-transform: uppercase; letter-spacing: .2em; }

.closing { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; align-items: center; }
.closing-image { height: min(65vw, 780px); overflow: hidden; border-radius: 50% 50% 3px 3px; }
.closing-image img { height: 100%; object-fit: cover; object-position: 50% 50%; }
.closing-copy h2 { font-size: clamp(58px, 7.3vw, 120px); }
.names { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 50px; font-family: var(--serif); font-size: 17px; }
.names b { color: var(--red); font-style: italic; }
footer { min-height: 100px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 25px; padding: 0 5vw; font-size: 9px; text-transform: uppercase; letter-spacing: .17em; }
.footer-mark { font-size: 28px; text-transform: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .topbar { height: 68px; padding: 0 20px; grid-template-columns: 1fr 1fr; }
  .topbar nav { display: none; }
  .nav-cta { grid-column: 2; font-size: 9px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 52px 20px 60px; gap: 45px; }
  .hero-copy { display: flex; flex-direction: column; }
  .eyebrow { margin-bottom: 24px; }
  h1 { font-size: clamp(64px, 20vw, 88px); }
  .intro { margin: 26px 0; font-size: 17px; }
  .hero-date { margin-bottom: 24px; }
  .text-link { display: none; }
  .hero-visual { padding: 0 22px 22px 0; width: 100%; }
  .photo-frame { height: 118vw; max-height: 650px; }
  .seal { width: 84px; height: 84px; font-size: 24px; }
  .vertical-note { display: none; }
  .section { padding: 85px 20px; }
  .section-heading { display: block; margin-bottom: 50px; }
  h2 { font-size: clamp(52px, 16vw, 74px); }
  .details-grid, .story, .venue, .closing { grid-template-columns: 1fr; }
  .day-card { min-height: 340px; border: 0; border-bottom: 1px solid var(--line); }
  .day-card strong { font-size: 190px; }
  .details-copy { padding: 52px 0; }
  .lead { margin-bottom: 40px; }
  .countdown { gap: 5px; }
  .countdown div { padding-left: 8px; }
  .story { gap: 75px; }
  .story-image { height: 126vw; max-height: 700px; }
  .story-number { top: -52px; font-size: 46px; }
  blockquote { margin-top: 45px; }
  .venue { gap: 65px; }
  .venue-map { min-height: 380px; }
  .closing { gap: 70px; }
  .closing-image { width: 87%; height: 125vw; max-height: 680px; justify-self: center; }
  .closing-copy h2 { font-size: clamp(54px, 17vw, 76px); }
  .names { display: grid; grid-template-columns: 1fr; gap: 9px; }
  footer { min-height: 150px; flex-wrap: wrap; padding: 30px 20px; }
  footer p { order: 3; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker div { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
