@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --navy-950: #001c3e;
  --navy-900: #032c5e;
  --navy-800: #063f7c;
  --blue-600: #087fc4;
  --cyan-400: #2bb9ed;
  --cyan-300: #77d8f4;
  --orange-500: #ff7657;
  --paper: #f5f7f5;
  --ink: #032b59;
  --muted: #5e7288;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 90px;
  padding: 16px clamp(22px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(245, 247, 245, .9);
  border-bottom: 1px solid rgba(3, 43, 89, .13);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: clamp(152px, 13vw, 194px); height: auto; }
nav { display: flex; align-items: center; gap: clamp(20px, 2.8vw, 44px); font-size: 12px; font-weight: 800; }
nav > a:not(.button) { position: relative; }
nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--cyan-400); transition: right .2s ease; }
nav > a:not(.button):hover::after, nav > a:not(.button):focus-visible::after { right: 0; }

.button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .015em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 25, 61, .22); }
.button b { font-size: 19px; font-weight: 500; }
.button-small { min-height: 44px; padding-inline: 18px; gap: 22px; color: var(--white); background: var(--navy-900); }
.button-light { color: var(--navy-950); background: var(--white); }
.button-dark { color: var(--white); background: var(--navy-950); }
.button-large { min-width: 270px; min-height: 64px; padding-inline: 26px; }

.hero {
  position: relative;
  min-height: 760px;
  padding: clamp(48px, 7vw, 104px) clamp(22px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .7fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  color: var(--white);
  background:
    radial-gradient(circle at 72% 28%, rgba(43,185,237,.22), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(8,127,196,.35), transparent 32%),
    linear-gradient(122deg, #00152f, var(--navy-950) 46%, #064c83);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 38%, black 80%, transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 570px; height: 570px; left: -330px; bottom: -350px; background: rgba(43,185,237,.23); }
.hero-glow-two { width: 340px; height: 340px; right: 22%; top: -260px; background: rgba(255,118,87,.14); }
.hero-copy { position: relative; z-index: 2; min-width: 0; max-width: 890px; }
.eyebrow { margin: 0 0 34px; display: flex; align-items: center; gap: 10px; color: var(--cyan-300); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow i { width: 16px; height: 1px; background: currentColor; }
h1, h2 { font-family: inherit; font-weight: 800; letter-spacing: -.06em; }
h1 { margin: 0; max-width: 950px; font-size: clamp(60px, 7vw, 112px); line-height: .87; }
h1 em { margin-top: .11em; display: block; color: var(--cyan-400); font-style: normal; font-weight: 800; }
.hero-intro { max-width: 670px; margin: 34px 0 0; color: rgba(255,255,255,.73); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.65; }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link { padding-bottom: 5px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.4); font-size: 12px; font-weight: 800; }
.text-link span { margin-left: 10px; color: var(--cyan-300); }

.hero-image {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(0, 16, 42, .46);
  transform: rotate(.55deg);
}
.hero-image img { width: 100%; height: auto; display: block; }

.hero-poster {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  min-height: 560px;
  justify-self: end;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #7adcf6 0%, var(--cyan-400) 48%, #159fd7 100%);
  color: var(--navy-950);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 28px;
  box-shadow: 0 36px 90px rgba(0, 16, 42, .45), inset 0 1px rgba(255,255,255,.65);
  transform: rotate(1.4deg);
  overflow: hidden;
}
.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(0,28,62,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(0,28,62,.22) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.poster-topline { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 20px; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.date-lockup { position: relative; z-index: 2; margin-top: 26px; display: flex; align-items: flex-start; }
.date-day { font-size: clamp(120px, 12vw, 190px); font-weight: 900; line-height: .72; letter-spacing: -.11em; }
.date-month { margin: 8px 0 0 10px; font-size: clamp(34px, 3vw, 54px); font-weight: 900; line-height: 1; }
.poster-meta { position: relative; z-index: 3; margin-top: 42px; display: grid; grid-template-columns: 1.2fr 1.5fr .55fr; border-top: 2px solid var(--navy-950); border-bottom: 2px solid var(--navy-950); }
.poster-meta p { margin: 0; padding: 14px 12px 15px 0; display: flex; flex-direction: column; gap: 5px; border-right: 1px solid rgba(0,28,62,.45); }
.poster-meta p:not(:first-child) { padding-left: 12px; }
.poster-meta p:last-child { border: 0; }
.poster-meta span { font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.poster-meta strong { font-size: 18px; letter-spacing: -.03em; }
.poster-note { position: relative; z-index: 3; margin: auto 0 0; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.drink-art { position: absolute; right: -15px; bottom: 6px; width: 250px; height: 250px; }
.drink-bubble { position: absolute; border-radius: 50%; background: var(--orange-500); mix-blend-mode: multiply; }
.bubble-one { width: 160px; height: 160px; right: -10px; bottom: 8px; }
.bubble-two { width: 74px; height: 74px; right: 125px; bottom: 25px; background: rgba(255,255,255,.65); }
.drink-glass { position: absolute; right: 54px; bottom: 28px; width: 88px; height: 115px; border: 4px solid var(--navy-950); border-top-width: 7px; border-radius: 4px 4px 42px 42px; transform: rotate(-9deg); }
.drink-glass::before { content: ""; position: absolute; left: 39px; bottom: -53px; width: 4px; height: 52px; background: var(--navy-950); }
.drink-glass::after { content: ""; position: absolute; left: 15px; bottom: -57px; width: 52px; height: 4px; background: var(--navy-950); }
.drink-glass i { position: absolute; left: 45px; top: -40px; width: 4px; height: 94px; background: var(--navy-950); transform: rotate(15deg); transform-origin: bottom; }

.ticker { overflow: hidden; color: var(--navy-950); background: var(--orange-500); }
.ticker > div { min-width: max-content; min-height: 64px; display: flex; align-items: center; gap: 28px; padding-inline: 28px; animation: ticker-flow 22s linear infinite; }
.ticker span { font-family: inherit; font-size: 20px; font-style: normal; font-weight: 750; letter-spacing: -.025em; }
.ticker i { font-style: normal; font-size: 14px; }
@keyframes ticker-flow { to { transform: translateX(-25%); } }

.details { padding: clamp(92px, 11vw, 170px) clamp(22px, 7vw, 112px); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 170px); }
.kicker { margin: 0 0 26px; color: var(--blue-600); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.section-intro h2, .experience h2, .rsvp h2 { margin: 0; font-size: clamp(48px, 5vw, 78px); line-height: .96; }
.section-intro h2 em, .experience h2 em, .rsvp h2 em { color: var(--blue-600); font-style: normal; font-weight: 800; }
.detail-list { border-top: 1px solid rgba(3,43,89,.25); }
.detail-list article { min-height: 134px; display: grid; grid-template-columns: 54px minmax(90px, .55fr) 1fr; align-items: center; gap: 16px; border-bottom: 1px solid rgba(3,43,89,.25); }
.detail-index { color: var(--cyan-400); font-size: 11px; font-weight: 900; }
.detail-label { color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.detail-list strong { justify-self: end; text-align: right; font-size: clamp(21px, 2vw, 30px); letter-spacing: -.03em; }

.experience { position: relative; padding: clamp(94px, 10vw, 150px) clamp(22px, 7vw, 112px); color: var(--white); background: linear-gradient(145deg, #00152f, var(--navy-950) 60%, #053e70); overflow: hidden; }
.experience::after { content: ""; position: absolute; width: 520px; height: 520px; right: -260px; top: 80px; border: 1px solid rgba(43,185,237,.24); border-radius: 50%; box-shadow: 0 0 0 80px rgba(43,185,237,.035), 0 0 0 160px rgba(43,185,237,.025); }
.experience > * { position: relative; z-index: 2; }
.experience-heading { max-width: 920px; }
.kicker-light { color: var(--cyan-300); }
.experience h2 em { color: var(--cyan-400); }
.highlight-grid { margin-top: clamp(68px, 8vw, 116px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.25); }
.highlight-card { min-height: 300px; padding: 30px clamp(20px, 3vw, 44px) 38px 0; border-right: 1px solid rgba(255,255,255,.25); transition: transform .25s ease, background .25s ease; }
.highlight-card:not(:first-child) { padding-left: clamp(20px, 3vw, 44px); }
.highlight-card:last-child { border-right: 0; }
.card-number { color: var(--cyan-400); font-size: 11px; font-weight: 900; }
.highlight-card:hover { transform: translateY(-8px); background: linear-gradient(180deg, rgba(43,185,237,.1), transparent 70%); }
.highlight-card h3 { margin: 72px 0 16px; color: var(--white); font-family: inherit; font-size: 40px; font-weight: 750; letter-spacing: -.04em; }
.highlight-card p { max-width: 380px; margin: 0; color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.7; }

.rsvp { position: relative; padding: clamp(100px, 12vw, 180px) 22px; display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--cyan-400); overflow: hidden; }
.rsvp > *:not(.rsvp-orbit) { position: relative; z-index: 2; }
.rsvp h2 { max-width: 980px; font-size: clamp(56px, 7vw, 106px); line-height: .9; }
.rsvp h2 em { color: var(--navy-950); }
.rsvp-copy { max-width: 650px; margin: 34px 0 0; color: rgba(0,28,62,.75); font-size: 17px; line-height: 1.7; }
.rsvp .button { margin-top: 36px; }
.rsvp-note { margin: 16px 0 0; color: rgba(0,28,62,.65); font-size: 11px; }
.rsvp-orbit { position: absolute; border: 1px solid rgba(0,28,62,.22); border-radius: 50%; }
.orbit-one { width: 590px; height: 590px; left: -320px; bottom: -360px; }
.orbit-two { width: 430px; height: 430px; right: -250px; top: -240px; }

footer { min-height: 126px; padding: 30px clamp(22px, 6vw, 96px); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--paper); }
.brand-footer img { width: clamp(150px, 13vw, 190px); }
footer p { margin: 0; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
footer > a:last-child { font-size: 11px; font-weight: 850; }
.mobile-action { display: none; }

a:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding-block: 55px 28px; }
  .hero-image { width: min(100%, 660px); justify-self: center; transform: rotate(.25deg); }
  .hero-poster { width: min(100%, 560px); justify-self: center; transform: rotate(1deg); }
  .details { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .site-header { min-height: 74px; padding: 13px 18px; }
  .brand img { width: 138px; }
  nav > a:not(.button) { display: none; }
  nav .button { display: none; }
  .hero { padding: 54px 18px 60px; gap: 50px; }
  .eyebrow { margin-bottom: 26px; font-size: 9px; }
  h1 { font-size: clamp(48px, 14vw, 64px); line-height: .9; letter-spacing: -.055em; }
  .hero-intro { margin-top: 26px; font-size: 15px; line-height: 1.65; }
  .hero-actions { margin-top: 32px; align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-image { width: 100%; border-radius: 22px; box-shadow: 0 26px 64px rgba(0, 16, 42, .42); transform: none; }
  .hero-poster { min-height: 430px; padding: 24px; border-radius: 22px; box-shadow: 0 26px 64px rgba(0, 16, 42, .42); }
  .date-day { font-size: clamp(112px, 35vw, 156px); }
  .date-month { font-size: 38px; }
  .poster-meta { margin-top: 32px; grid-template-columns: 1fr 1.3fr .55fr; }
  .poster-meta p { padding: 12px 8px 12px 0; }
  .poster-meta p:not(:first-child) { padding-left: 8px; }
  .poster-meta strong { font-size: 15px; }
  .drink-art { width: 190px; height: 190px; opacity: .82; }
  .bubble-one { width: 120px; height: 120px; }
  .drink-glass { right: 40px; bottom: 25px; width: 68px; height: 88px; }
  .poster-note { max-width: 170px; line-height: 1.45; }
  .ticker > div { min-height: 56px; }
  .ticker span { font-size: 18px; }
  .details { padding: 92px 20px; gap: 58px; }
  .section-intro h2, .experience h2 { font-size: 46px; }
  .detail-list article { min-height: 112px; grid-template-columns: 32px 68px 1fr; gap: 10px; }
  .detail-list strong { font-size: 19px; }
  .experience { padding: 90px 20px; }
  .highlight-grid { margin-top: 60px; grid-template-columns: 1fr; }
  .highlight-card, .highlight-card:not(:first-child) { min-height: auto; padding: 28px 0 38px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .highlight-card:last-child { border-bottom: 0; }
  .highlight-card h3 { margin: 35px 0 12px; font-size: 34px; }
  .rsvp { padding: 100px 20px; }
  .rsvp h2 { font-size: clamp(53px, 15vw, 76px); }
  .rsvp-copy { font-size: 16px; }
  .rsvp .button { width: 100%; min-width: 0; }
  footer { padding: 44px 20px; align-items: flex-start; flex-direction: column; }
  footer p { line-height: 1.6; }
  .mobile-action { position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); display: block; background: rgba(0,28,62,.96); border-top: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); }
  .mobile-action .button { width: 100%; min-height: 58px; }
}
