:root {
  --ink: #172a2c;
  --ink-deep: #0e1c1e;
  --cream: #f4ead8;
  --paper: #fff8ec;
  --sky: #78909d;
  --river: #315d63;
  --marigold: #efb72f;
  --marigold-soft: #f8cf62;
  --rust: #a94f34;
  --orange: #db6a32;
  --plum: #522d36;
  --lux-ivory: #f7f2e9;
  --lux-stone: #e8dfd2;
  --lux-gold: #b5965a;
  --lux-gold-ink: #80602e;
  --lux-gold-soft: #d7c39a;
  --lux-oxblood: #542d32;
  --line-dark: rgba(23, 42, 44, 0.18);
  --line-light: rgba(244, 234, 216, 0.24);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --editorial: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --page-pad: clamp(1rem, 4vw, 4.5rem);
  --section-space: clamp(5rem, 10vw, 9rem);
  --shadow: 0 26px 80px rgba(7, 22, 24, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body,
button,
a {
  font-family: var(--sans);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lux-gold-soft);
  outline-offset: 4px;
}

::selection {
  color: var(--ink-deep);
  background: var(--lux-gold-soft);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--ink-deep);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1rem var(--page-pad);
}

.header-inner {
  position: relative;
  width: min(1180px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 0.5rem 0.6rem 0.5rem 0.75rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
  background: rgba(14, 28, 30, 0.91);
  border: 1px solid rgba(181, 150, 90, 0.34);
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(5, 17, 19, 0.25);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(181, 150, 90, 0.7);
  border-radius: 50%;
  color: var(--lux-gold-soft);
  font-family: var(--editorial);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--editorial);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.desktop-nav a,
.header-cta {
  position: relative;
  color: rgba(244, 234, 216, 0.88);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--lux-gold-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  position: relative;
  justify-self: end;
}

.header-cta {
  min-height: 42px;
  padding: 0 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-deep);
  background: var(--lux-gold-soft);
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--lux-ivory);
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--cream);
  background: var(--ink-deep);
  isolation: isolate;
  overflow: hidden;
}

.hero-art,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.88) contrast(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 23, 27, 0.54) 0%, rgba(7, 23, 27, 0.08) 24%, rgba(7, 23, 27, 0.18) 58%, rgba(6, 19, 21, 0.83) 100%),
    radial-gradient(circle at 50% 42%, rgba(9, 28, 31, 0.08) 5%, rgba(8, 24, 27, 0.45) 92%);
}

.hero-grain {
  z-index: -1;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 14% 29%, rgba(255, 255, 255, 0.85) 0 0.55px, transparent 0.8px),
    radial-gradient(circle at 73% 61%, rgba(255, 255, 255, 0.66) 0 0.55px, transparent 0.85px),
    radial-gradient(circle at 45% 82%, rgba(0, 0, 0, 0.8) 0 0.55px, transparent 0.9px);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  pointer-events: none;
}

.hero-inner {
  width: min(1320px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(7rem, 13vh, 9rem) var(--page-pad) 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
}

.hero-kicker {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 1rem;
  color: var(--cream);
  background: rgba(18, 39, 42, 0.7);
  border: 1px solid rgba(181, 150, 90, 0.58);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-kicker span:nth-child(2) {
  color: var(--lux-gold-soft);
}

.hero-lockup {
  position: relative;
  width: 100%;
  align-self: start;
  text-align: center;
  transform: translateY(clamp(2.75rem, 6vh, 4.5rem));
}

.hero h1 {
  margin: 0;
  display: grid;
  justify-items: center;
  font-family: var(--editorial);
  font-size: clamp(4.8rem, 12vw, 10.5rem);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-name {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--lux-gold-soft);
  -webkit-text-stroke: 0.5px rgba(14, 28, 30, 0.74);
  paint-order: stroke fill;
  text-shadow:
    0 1px 2px rgba(5, 17, 19, 0.78),
    0 20px 52px rgba(5, 17, 19, 0.48);
}

.hero-name-one {
  transform: translateX(-4%);
}

.hero-name-two {
  color: var(--lux-ivory);
  transform: translateX(4%);
}

.hero-name i {
  color: var(--lux-gold-soft);
  font-weight: 400;
}

.gary-portrait {
  width: clamp(265px, min(32vw, 36vh), 500px);
  align-self: end;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 12px 20px rgba(8, 22, 24, 0.22));
}

.gary-portrait img {
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 94%, rgba(0, 0, 0, 0.86) 97%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 94%, rgba(0, 0, 0, 0.86) 97%, transparent 100%);
}

.hero-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 2rem;
}

.hero-meta,
.hero-buttons {
  padding-bottom: clamp(2rem, 5vh, 3.75rem);
}

.hero-meta {
  display: grid;
  gap: 0.1rem;
  color: rgba(244, 234, 216, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-meta strong {
  color: var(--lux-ivory);
  font-family: var(--editorial);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero-buttons,
.stay-actions,
.finale-shell > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-buttons {
  justify-content: flex-end;
}

.hero-buttons .button {
  border-radius: 2px;
  font-size: 0.75rem;
}

.button {
  min-height: 50px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink-deep);
  background: var(--lux-gold-soft);
  border-color: var(--lux-gold-soft);
}

.button-light:hover {
  background: var(--lux-ivory);
  border-color: var(--lux-ivory);
}

.button-ghost {
  color: var(--lux-ivory);
  background: rgba(14, 28, 30, 0.35);
  border-color: rgba(215, 195, 154, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(247, 242, 233, 0.1);
  border-color: var(--lux-ivory);
}

.button-dark {
  color: var(--cream);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.button-dark:hover {
  color: var(--ink-deep);
  background: var(--cream);
  border-color: var(--cream);
}

.detail-strip {
  position: relative;
  z-index: 2;
  color: var(--lux-ivory);
  background: var(--lux-oxblood);
  border-top: 1px solid rgba(181, 150, 90, 0.46);
  border-bottom: 1px solid rgba(181, 150, 90, 0.46);
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-strip::-webkit-scrollbar {
  display: none;
}

.detail-strip-track {
  width: max-content;
  min-width: 100%;
  min-height: 64px;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.detail-strip b {
  color: var(--lux-gold-soft);
}

.section {
  position: relative;
  padding: var(--section-space) var(--page-pad);
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro,
.celebration,
.rsvp,
.stay,
.registry,
.faq,
.finale {
  font-size: 1.05rem;
  line-height: 1.72;
}

main > :not(.hero):not(.detail-strip) :where(a, button, summary):focus-visible {
  outline: 2px solid var(--lux-ivory);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink-deep);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--lux-oxblood);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section h2,
.finale h2 {
  margin: 0;
  font-family: var(--editorial);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.lead {
  font-family: var(--editorial);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.intro {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  background: var(--lux-ivory);
  border-bottom: 1px solid rgba(181, 150, 90, 0.34);
}

.fact-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(181, 150, 90, 0.52);
  border-bottom: 1px solid rgba(181, 150, 90, 0.52);
}

.fact-card {
  --tilt: 0deg;
  min-height: 240px;
  padding: clamp(1.5rem, 2.8vw, 2.4rem);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(181, 150, 90, 0.42);
  box-shadow: none;
  transform: none;
  transition: background 180ms ease;
}

.fact-card:hover {
  background: rgba(181, 150, 90, 0.08);
  transform: none;
}

.fact-card:last-child {
  border-right: 0;
}

.fact-card p {
  margin: auto 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.fact-card strong {
  font-family: var(--editorial);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.fact-card small {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact-number {
  width: auto;
  height: auto;
  display: block;
  color: var(--lux-gold-ink);
  border: 0;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fact-date {
  --tilt: 0deg;
  color: var(--ink);
  background: transparent;
  transform: none;
}

.fact-time {
  --tilt: 0deg;
  background: transparent;
  transform: none;
}

.fact-place {
  --tilt: 0deg;
  color: var(--ink);
  background: transparent;
  transform: none;
}

.fact-attire {
  --tilt: 0deg;
  background: transparent;
  transform: none;
}

.venue {
  background:
    linear-gradient(rgba(23, 42, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 42, 44, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 68px 68px;
  border-top: 1px solid var(--line-dark);
}

.venue-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.55fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: end;
}

.venue-heading p:last-child {
  margin: 0;
  max-width: 31rem;
}

.venue-collage {
  margin-top: clamp(4rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.8rem, 2vw, 1.5rem);
  align-items: start;
}

.venue-photo {
  position: relative;
  margin: 0;
  padding: clamp(0.5rem, 1vw, 0.8rem);
  background: var(--cream);
  border: 1px solid rgba(23, 42, 44, 0.17);
  box-shadow: var(--shadow);
}

.venue-photo img {
  width: 100%;
  object-fit: cover;
}

.venue-photo figcaption,
.food-photo figcaption {
  padding: 0.75rem 0.25rem 0.25rem;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.venue-photo-wide {
  grid-column: 1 / 9;
  transform: rotate(-1.2deg);
}

.venue-photo-wide img {
  aspect-ratio: 16 / 10;
}

.venue-photo-tall {
  grid-column: 9 / 13;
  margin-top: 5.5rem;
  transform: rotate(1.8deg);
}

.venue-photo-tall img {
  min-height: 430px;
  aspect-ratio: 3 / 4;
}

.venue-poster {
  position: relative;
  z-index: 2;
  grid-column: 3 / 9;
  margin: -5rem 0 0 2rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  color: var(--cream);
  background: var(--rust);
  border: 2px solid var(--ink-deep);
  box-shadow: 10px 10px 0 var(--marigold), 0 24px 60px rgba(31, 25, 21, 0.18);
  transform: rotate(1.3deg);
}

.venue-poster > span {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.venue-poster strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.venue-poster a {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  text-underline-offset: 0.35rem;
  letter-spacing: 0.12em;
}

.evening {
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 15%, rgba(49, 93, 99, 0.7), transparent 28rem),
    var(--ink-deep);
}

.evening .eyebrow {
  color: var(--marigold);
}

.evening-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.55fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: end;
}

.evening-header > p {
  margin: 0 0 0.5rem;
  color: rgba(244, 234, 216, 0.72);
}

.timeline {
  margin-top: clamp(4rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.timeline-card {
  min-height: 270px;
  padding: clamp(1.5rem, 3.5vw, 2.7rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
}

.timeline-card time {
  color: var(--marigold);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.timeline-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(244, 234, 216, 0.55);
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.timeline-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.timeline-card p {
  margin: 0;
  max-width: 28rem;
  color: rgba(244, 234, 216, 0.7);
  font-size: 0.9rem;
}

.countdown {
  color: var(--ink-deep);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 248, 236, 0.32) 0 3px, transparent 3.5px),
    radial-gradient(circle at 88% 78%, rgba(255, 248, 236, 0.25) 0 3px, transparent 3.5px),
    var(--orange);
  background-size: 90px 90px, 130px 130px, auto;
  border-top: 2px solid var(--ink-deep);
  border-bottom: 2px solid var(--ink-deep);
}

.countdown .eyebrow {
  color: var(--ink-deep);
}

.countdown-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.countdown-copy h2 {
  font-size: clamp(3.4rem, 6vw, 6.4rem);
}

.countdown-copy > p:last-child {
  margin: 1.5rem 0 0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink-deep);
  background: rgba(255, 248, 236, 0.11);
}

.countdown-grid div {
  min-width: 0;
  padding: clamp(1rem, 2.4vw, 2rem) 0.5rem;
  text-align: center;
}

.countdown-grid div + div {
  border-left: 1px solid rgba(14, 28, 30, 0.5);
}

.countdown-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.4vw, 5.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}

.countdown-grid span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.food {
  background:
    radial-gradient(circle at 0 50%, rgba(239, 183, 47, 0.2), transparent 30rem),
    var(--cream);
}

.food-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.15fr);
  gap: clamp(3.5rem, 9vw, 8rem);
  align-items: center;
}

.food-copy {
  max-width: 34rem;
}

.food-copy h2 {
  font-size: clamp(3.4rem, 6vw, 6.5rem);
}

.food-copy > p {
  margin-bottom: 1.25rem;
}

.menu-list {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line-dark);
}

.menu-list > div {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.menu-list dt {
  color: var(--rust);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.menu-list dd {
  margin: 0;
  font-size: 0.86rem;
}

.food-photos {
  min-height: 650px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-content: center;
}

.food-photo {
  margin: 0;
  padding: 0.65rem;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.food-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-photo-one {
  z-index: 1;
  grid-column: 1 / 7;
  grid-row: 1;
  align-self: start;
  transform: rotate(-2.2deg);
}

.food-photo-one img {
  min-height: 360px;
}

.food-photo-two {
  z-index: 2;
  grid-column: 4 / 10;
  grid-row: 1;
  margin-top: 13rem;
  transform: rotate(2.4deg);
}

.food-photo-two img {
  min-height: 330px;
}

.stay {
  min-height: 82svh;
  display: grid;
  align-items: center;
  color: var(--cream);
  background: var(--ink-deep);
  isolation: isolate;
  overflow: hidden;
}

.stay-image,
.stay-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.stay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.05);
}

.stay-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 24, 27, 0.92) 0%, rgba(8, 24, 27, 0.62) 52%, rgba(8, 24, 27, 0.3) 100%),
    linear-gradient(180deg, rgba(8, 24, 27, 0.35), rgba(8, 24, 27, 0.65));
}

.stay-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.stay-card {
  width: min(650px, 100%);
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--ink-deep);
  background: var(--marigold);
  border: 2px solid var(--ink-deep);
  box-shadow: 12px 12px 0 var(--rust);
  transform: rotate(-0.7deg);
}

.stay-card .eyebrow {
  color: var(--ink-deep);
}

.stay-card h2 {
  font-size: clamp(3.6rem, 7vw, 7rem);
}

.stay-card > p:not(.eyebrow) {
  width: min(31rem, 100%);
  margin: 1.5rem 0 2rem;
}

.text-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  text-underline-offset: 0.35rem;
  letter-spacing: 0.12em;
}

.stay-note {
  margin: 0 0 1rem;
  max-width: 12rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.celebration {
  background: var(--lux-ivory);
  border-top: 0;
  border-bottom: 1px solid rgba(181, 150, 90, 0.34);
}

.celebration-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: end;
}

.celebration-heading h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.6vw, 5.9rem);
}

.celebration-copy {
  max-width: 33rem;
}

.celebration-copy .lead {
  margin: 0 0 1.25rem;
}

.celebration-copy > p:last-child {
  margin-bottom: 0;
}

.celebration-story {
  margin-top: clamp(4rem, 7vw, 6.5rem);
}

.celebration-photo {
  --tilt: 0deg;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(181, 150, 90, 0.48);
  box-shadow: 0 24px 70px rgba(14, 28, 30, 0.1);
  transform: none;
}

.celebration-photo img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.celebration-photo figcaption {
  padding: 0.9rem 0.1rem 0;
  color: rgba(23, 42, 44, 0.66);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.celebration-beats {
  width: 100%;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(181, 150, 90, 0.5);
  border-bottom: 1px solid rgba(181, 150, 90, 0.5);
}

.celebration-beat {
  --tilt: 0deg;
  min-height: 255px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(181, 150, 90, 0.38);
  box-shadow: none;
  transform: none;
}

.celebration-beat:last-child {
  border-right: 0;
}

.celebration-beat > span {
  width: auto;
  height: auto;
  display: block;
  color: var(--lux-gold-ink);
  border: 0;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.celebration-beat h3 {
  margin: auto 0 0.75rem;
  font-family: var(--editorial);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.celebration-beat p {
  margin: 0;
  color: rgba(23, 42, 44, 0.75);
  font-size: 1rem;
  line-height: 1.65;
}

.celebration-beat-one {
  --tilt: 0deg;
  color: var(--ink);
  background: transparent;
  transform: none;
}

.celebration-beat-two {
  --tilt: 0deg;
  color: var(--ink);
  background: transparent;
  transform: none;
}

.celebration-beat-three {
  --tilt: 0deg;
  color: var(--ink);
  background: transparent;
  transform: none;
}

.rsvp {
  color: var(--cream);
  background: linear-gradient(145deg, #132629, var(--ink-deep) 72%);
  border-top: 1px solid rgba(181, 150, 90, 0.32);
  border-bottom: 1px solid rgba(181, 150, 90, 0.32);
}

.rsvp .eyebrow {
  color: var(--lux-gold-soft);
}

.rsvp-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.rsvp-copy {
  max-width: 38rem;
}

.rsvp-copy h2 {
  font-size: clamp(4rem, 7.5vw, 7.2rem);
}

.rsvp-copy .lead {
  margin-bottom: 1.2rem;
}

.rsvp-copy > p:not(.eyebrow):not(.lead) {
  color: rgba(247, 242, 233, 0.8);
}

.status-pill {
  width: max-content;
  max-width: 100%;
  margin-top: 1.25rem;
  padding: 0.55rem 0.85rem;
  display: inline-flex;
  align-items: center;
  color: var(--lux-gold-soft);
  border: 1px solid rgba(181, 150, 90, 0.62);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.rsvp-card {
  --tilt: 0deg;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--ink-deep);
  background: var(--lux-ivory);
  border: 1px solid rgba(181, 150, 90, 0.7);
  box-shadow: 0 30px 80px rgba(4, 14, 16, 0.28);
  transform: none;
}

.rsvp-card-label,
.hotel-card-label {
  margin: 0;
  color: var(--lux-oxblood);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.rsvp-checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(181, 150, 90, 0.42);
}

.rsvp-checklist li {
  min-height: 66px;
  padding: 0.8rem 0;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(181, 150, 90, 0.36);
}

.rsvp-checklist li > span {
  width: auto;
  height: auto;
  display: block;
  color: var(--lux-gold-ink);
  background: transparent;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.rsvp-checklist strong {
  font-family: var(--editorial);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.afterparty-preview {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: rgba(181, 150, 90, 0.09);
  border: 1px solid rgba(181, 150, 90, 0.42);
}

.afterparty-preview > span {
  display: block;
  color: var(--lux-oxblood);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.afterparty-preview > p {
  margin: 0.6rem 0 1rem;
  font-family: var(--editorial);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.afterparty-preview > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.afterparty-preview > div span {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(181, 150, 90, 0.62);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pending-action {
  width: max-content;
  max-width: 100%;
  min-height: 50px;
  margin: 1.25rem 0 0;
  padding: 0 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lux-ivory);
  background: var(--ink-deep);
  border: 1px solid rgba(181, 150, 90, 0.7);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stay {
  min-height: auto;
  color: var(--ink);
  background: var(--lux-stone);
  border-top: 1px solid rgba(181, 150, 90, 0.42);
  border-bottom: 1px solid rgba(181, 150, 90, 0.42);
}

.stay .eyebrow {
  color: var(--lux-oxblood);
}

.hotel-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.hotel-copy {
  max-width: 40rem;
}

.hotel-copy h2 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 6.4vw, 6.2rem);
}

.hotel-copy > p:not(.eyebrow) {
  color: rgba(23, 42, 44, 0.76);
}

.hotel-copy .lead {
  color: var(--ink);
}

.hotel-card {
  --tilt: 0deg;
  padding: clamp(1.75rem, 4.5vw, 3.5rem);
  color: var(--ink-deep);
  background: var(--lux-ivory);
  border: 1px solid rgba(181, 150, 90, 0.7);
  box-shadow: 0 24px 70px rgba(14, 28, 30, 0.12);
  transform: none;
}

.hotel-card h3 {
  margin: 0.9rem 0 1.15rem;
  font-family: var(--editorial);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hotel-card address {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

.hotel-deadline {
  margin: 1.75rem 0;
  padding: 1rem 0;
  display: grid;
  gap: 0.2rem;
  border-top: 1px solid rgba(181, 150, 90, 0.5);
  border-bottom: 1px solid rgba(181, 150, 90, 0.5);
}

.hotel-deadline span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hotel-deadline strong {
  font-family: var(--editorial);
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
}

.hotel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.hotel-actions .button,
.hotel-actions .text-link,
.finale .button {
  font-size: 0.75rem;
  border-radius: 2px;
}

.registry {
  background: var(--lux-ivory);
  border-top: 0;
  border-bottom: 1px solid rgba(181, 150, 90, 0.34);
}

.registry-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 0.65fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.registry-copy {
  max-width: 48rem;
}

.registry-copy h2 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 6.6vw, 6.8rem);
}

.registry-copy > p:not(.eyebrow) {
  max-width: 40rem;
}

.pending-action-dark {
  color: rgba(14, 28, 30, 0.62);
  background: transparent;
  border-color: rgba(181, 150, 90, 0.62);
}

.registry-card {
  --tilt: 0deg;
  min-height: 370px;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--lux-ivory);
  background: var(--lux-oxblood);
  border: 1px solid rgba(181, 150, 90, 0.72);
  box-shadow: 0 24px 70px rgba(84, 45, 50, 0.16);
  transform: none;
}

.registry-card > span {
  margin-bottom: auto;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.registry-card strong {
  font-family: var(--editorial);
  font-size: clamp(5rem, 9vw, 8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.045em;
}

.registry-card p {
  margin: 1.2rem 0 0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.faq {
  background: var(--lux-ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.15fr);
  gap: clamp(3.5rem, 9vw, 9rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 7rem;
}

.faq-heading h2 {
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.faq-heading > p:last-child {
  margin: 1.5rem 0 0;
}

.faq-list {
  border-top: 1px solid rgba(181, 150, 90, 0.7);
}

.faq-list details {
  border-bottom: 1px solid rgba(181, 150, 90, 0.42);
}

.faq-list summary {
  min-height: 80px;
  padding: 1rem 3.2rem 1rem 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: var(--editorial);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--lux-oxblood);
  background: transparent;
  border: 1px solid rgba(181, 150, 90, 0.62);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  width: min(42rem, 92%);
  margin: -0.25rem 0 1.75rem;
  color: rgba(23, 42, 44, 0.8);
  line-height: 1.75;
}

.finale {
  padding: var(--section-space) var(--page-pad);
  color: var(--cream);
  background: var(--ink-deep);
  border-top: 1px solid rgba(181, 150, 90, 0.36);
}

.finale-shell > p {
  margin: 0 0 1.25rem;
  color: var(--lux-gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.finale h2 {
  max-width: 900px;
  color: var(--cream);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 400;
  line-height: 0.9;
  text-shadow: none;
}

.finale-shell > div {
  margin-top: 2.5rem;
}

.finale-shell > .finale-note {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: rgba(247, 242, 233, 0.82);
  font-family: var(--editorial);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: -0.025em;
}

.finale .button-light {
  color: var(--ink-deep);
  background: var(--lux-gold-soft);
  border-color: var(--lux-gold-soft);
}

.finale .button-light:hover {
  background: var(--lux-ivory);
  border-color: var(--lux-ivory);
}

.finale .button-ghost {
  border-color: rgba(215, 195, 154, 0.62);
}

footer {
  min-height: 130px;
  padding: 2rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(244, 234, 216, 0.68);
  background: #091517;
  border-top: 1px solid rgba(181, 150, 90, 0.28);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-mark {
  width: auto;
  height: auto;
  padding-bottom: 0.2rem;
  display: inline-flex;
  align-items: center;
  color: var(--lux-gold-soft);
  border: 0;
  border-bottom: 1px solid rgba(181, 150, 90, 0.58);
  border-radius: 0;
  font-family: var(--editorial);
  font-size: 1.35rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
}

footer p {
  margin: 0;
  text-align: right;
}

@keyframes hero-drift {
  from {
    transform: scale(1.015) translate3d(-0.3%, 0, 0);
  }

  to {
    transform: scale(1.05) translate3d(0.5%, -0.4%, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(26px) rotate(var(--tilt, 0deg));
    transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  html.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: rotate(var(--tilt, 0deg));
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a {
    font-size: 0.62rem;
  }

  .venue-heading,
  .evening-header,
  .food-grid,
  .celebration-heading,
  .rsvp-shell,
  .hotel-shell,
  .registry-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-card:nth-child(2) {
    border-right: 0;
  }

  .fact-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(181, 150, 90, 0.42);
  }

  .venue-heading p:last-child,
  .evening-header > p {
    max-width: 36rem;
  }

  .food-copy {
    max-width: 43rem;
  }

  .celebration-copy,
  .rsvp-copy,
  .hotel-copy,
  .registry-copy {
    max-width: 43rem;
  }

  .rsvp-card,
  .hotel-card {
    width: min(760px, 100%);
  }

  .registry-card {
    width: min(520px, 100%);
  }

  .celebration-beats {
    width: 100%;
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
  }

  .celebration-beat {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(181, 150, 90, 0.38);
  }

  .celebration-beat:last-child {
    border-bottom: 0;
  }

  .food-photos {
    width: min(750px, 100%);
    margin: 0 auto;
  }

  .faq-heading {
    position: static;
    max-width: 38rem;
  }
}

@media (min-width: 781px) and (max-height: 850px) {
  .hero-lockup {
    transform: translateY(1.75rem);
  }

  .gary-portrait {
    width: clamp(235px, min(27vw, 32vh), 360px);
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 54px;
    padding: 0.4rem 0.45rem 0.4rem 0.65rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    min-height: 42px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-deep);
    background: var(--lux-gold-soft);
    border-radius: 999px;
    cursor: pointer;
    list-style: none;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    width: min(270px, calc(100vw - 2rem));
    padding: 0.7rem;
    display: grid;
    color: var(--cream);
    background: rgba(14, 28, 30, 0.98);
    border: 1px solid rgba(181, 150, 90, 0.4);
    border-radius: 1rem;
    box-shadow: 0 22px 65px rgba(5, 17, 19, 0.38);
  }

  .mobile-nav nav a {
    min-height: 48px;
    padding: 0 0.8rem;
    display: flex;
    align-items: center;
    border-radius: 0.6rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .mobile-nav nav a:hover {
    color: var(--ink-deep);
    background: var(--lux-gold-soft);
  }

  .hero-inner {
    grid-template-rows: auto auto auto;
    padding-top: 6.5rem;
    padding-bottom: 0;
  }

  .hero-kicker {
    max-width: 100%;
    gap: 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 18vw, 6.2rem);
    line-height: 0.77;
  }

  .hero-name {
    text-shadow:
      0 1px 2px rgba(5, 17, 19, 0.8),
      0 16px 42px rgba(5, 17, 19, 0.5);
  }

  .hero-lockup {
    padding: 3.25rem 0 0;
    display: block;
    transform: none;
  }

  .gary-portrait {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: clamp(265px, 84vw, 390px);
    height: auto;
    max-height: none;
    margin: 0.7rem auto 0;
    order: 1;
    align-self: center;
    transform: none;
  }

  .gary-portrait img {
    height: auto;
  }

  .hero-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 1.1rem;
    display: flex;
  }

  .hero-meta,
  .hero-buttons {
    padding-bottom: 0;
  }

  .hero-meta {
    text-align: center;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons .button {
    padding-inline: 0.75rem;
  }

  .venue-photo-wide {
    grid-column: 1 / 9;
  }

  .venue-photo-tall {
    grid-column: 9 / 13;
    margin-top: 3rem;
  }

  .venue-photo-tall img {
    min-height: 320px;
  }

  .venue-poster {
    grid-column: 2 / 11;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .countdown-shell {
    grid-template-columns: 1fr;
  }

  .stay-shell {
    align-items: start;
    flex-direction: column;
  }

  .stay-note {
    max-width: 18rem;
  }

  .hotel-card,
  .rsvp-card,
  .registry-card {
    --tilt: 0deg;
    transform: none;
  }
}

@media (max-width: 600px) {
  :root {
    --page-pad: 1rem;
    --section-space: 5.25rem;
  }

  html {
    scroll-padding-top: 5.5rem;
  }

  .brand-name {
    display: none;
  }

  .hero-art img {
    object-position: center 50%;
  }

  .hero h1 {
    font-size: clamp(4.35rem, 22.5vw, 6.2rem);
  }

  .hero-name-one {
    transform: translateX(-1%);
  }

  .hero-name-two {
    transform: translateX(1%);
  }

  .hero-lockup {
    padding-top: 2.75rem;
  }

  .gary-portrait {
    width: min(86vw, 360px);
    margin-top: 0.35rem;
  }

  .hero-meta strong {
    font-size: 1.75rem;
  }

  .hero-buttons {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .button {
    min-height: 52px;
  }

  .detail-strip-track {
    justify-content: flex-start;
    min-height: 58px;
    padding-right: 2rem;
    font-size: 0.72rem;
  }

  .section h2 {
    font-size: clamp(2.75rem, 11vw, 4rem);
    line-height: 1.02;
  }

  .lead {
    font-size: 1.5rem;
    line-height: 1.38;
  }

  .fact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fact-card {
    min-height: 185px;
    padding: 1.35rem 1.15rem;
    border-right: 0;
    border-bottom: 1px solid rgba(181, 150, 90, 0.42);
  }

  .fact-card:last-child {
    border-bottom: 0;
  }

  .fact-card strong {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .fact-card small {
    font-size: 0.75rem;
  }

  .venue-collage {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .venue-photo-wide,
  .venue-photo-tall,
  .venue-poster {
    width: 100%;
    margin: 0;
  }

  .venue-photo-tall img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .venue-poster {
    order: -1;
    box-shadow: 7px 7px 0 var(--marigold);
    transform: rotate(0.6deg);
  }

  .celebration-story {
    margin-top: 3rem;
  }

  .celebration-photo {
    --tilt: 0deg;
    padding: 0;
    transform: none;
  }

  .celebration-photo img {
    aspect-ratio: 4 / 3;
  }

  .celebration-beat {
    min-height: 210px;
    padding: 1.4rem;
  }

  .rsvp-shell,
  .hotel-shell,
  .registry-shell {
    gap: 3rem;
  }

  .rsvp-card,
  .hotel-card,
  .registry-card {
    padding: 1.4rem;
    box-shadow: 0 18px 50px rgba(14, 28, 30, 0.14);
  }

  .hotel-card,
  .registry-card {
    box-shadow: 0 18px 50px rgba(14, 28, 30, 0.12);
  }

  .afterparty-preview > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .afterparty-preview > div span {
    text-align: center;
  }

  .hotel-actions {
    display: grid;
  }

  .registry-card {
    min-height: 300px;
  }

  .timeline-card {
    min-height: 0;
    padding: 1.5rem 1.1rem;
    grid-template-columns: 5.8rem 1fr;
    gap: 1rem;
  }

  .timeline-card time {
    font-size: 2.9rem;
  }

  .timeline-card h3 {
    font-size: 1.65rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-grid div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(14, 28, 30, 0.5);
  }

  .countdown-grid div:nth-child(4) {
    border-top: 1px solid rgba(14, 28, 30, 0.5);
  }

  .countdown-grid strong {
    font-size: 3.2rem;
  }

  .food-grid {
    gap: 3rem;
  }

  .food-photos {
    min-height: 470px;
  }

  .food-photo-one {
    grid-column: 1 / 8;
  }

  .food-photo-one img {
    min-height: 260px;
  }

  .food-photo-two {
    grid-column: 3 / 10;
    margin-top: 10.5rem;
  }

  .food-photo-two img {
    min-height: 240px;
  }

  .stay {
    min-height: auto;
  }

  .stay-shade {
    background: linear-gradient(180deg, rgba(8, 24, 27, 0.55), rgba(8, 24, 27, 0.88));
  }

  .stay-card {
    padding: 1.6rem;
    box-shadow: 7px 7px 0 var(--rust);
  }

  .stay-card h2 {
    font-size: 3.6rem;
  }

  .stay-actions {
    display: grid;
  }

  .faq-grid {
    gap: 3rem;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 1.3rem;
  }

  .finale h2 {
    font-size: clamp(3.8rem, 18vw, 6rem);
    line-height: 0.94;
  }

  .finale-shell > div {
    display: grid;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── RSVP form ─────────────────────────────────────────────────────────────
   Lives inside .rsvp-card: ivory paper on the deep teal band. Ink text, gold
   hairlines, the same uppercase micro-labels used across the site. */

.rsvp-card-label {
  margin-bottom: 1.5rem;
}

.rsvp-message-title {
  margin: 0 0 0.85rem;
  font-family: var(--editorial);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.rsvp-note {
  margin: 0;
  color: rgba(23, 42, 44, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.rsvp-note strong {
  font-weight: 700;
}

/* ── one block per invited person ── */

.rsvp-guest {
  margin: 0 0 1.35rem;
  padding: 1.15rem 0 0;
  border: 0;
  border-top: 1px solid rgba(181, 150, 90, 0.42);
  animation: rsvpFieldIn 420ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

.rsvp-guest:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.rsvp-guest legend {
  padding: 0;
  font-family: var(--editorial);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@keyframes rsvpFieldIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ── segmented radio groups ── */

.rsvp-seg {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.rsvp-seg-two  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rsvp-seg-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Visually hidden, but still focusable and announced. The [type] selector is
   load-bearing: the after-party group sits inside a .rsvp-field, and the plain
   `.rsvp-field input` rule below has equal specificity but comes later, so it
   used to win and stretch these invisible radios to full width — which pushed
   the document 27px wider than the viewport on a phone. */
.rsvp-seg input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.rsvp-seg label {
  min-height: 46px;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(23, 42, 44, 0.72);
  background: rgba(232, 223, 210, 0.42);
  border: 1px solid rgba(181, 150, 90, 0.5);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.25;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.rsvp-seg label:hover {
  border-color: var(--lux-gold);
  background: rgba(215, 195, 154, 0.36);
}

.rsvp-seg input:checked + label {
  color: var(--cream);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.rsvp-seg input:focus-visible + label {
  outline: 2px solid var(--lux-gold-ink);
  outline-offset: 2px;
}

/* ── follow-up questions, revealed on "attending" ── */

.rsvp-followup {
  margin-top: 1rem;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(181, 150, 90, 0.5);
  display: grid;
  gap: 0.9rem;
}

.rsvp-followup[hidden] {
  display: none;
}

/* ── text fields ── */

.rsvp-field {
  display: block;
}

.rsvp-field > span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--lux-oxblood);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.rsvp-field > span i {
  font-style: normal;
  font-weight: 600;
  opacity: 0.62;
}

/* Scoped to the actual text controls rather than every `input` inside a
   .rsvp-field — a blanket rule also catches the after-party radios. */
.rsvp-field input[type="text"],
.rsvp-field input[type="email"],
.rsvp-field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  color: var(--ink-deep);
  background: rgba(255, 248, 236, 0.9);
  border: 1px solid rgba(181, 150, 90, 0.5);
  border-radius: 2px;
  font-family: var(--sans);
  /* Must stay at 16px. iOS Safari zooms the whole page when a focused input is
     any smaller, and this form is used almost entirely on phones. */
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 160ms ease, background 160ms ease;
}

.rsvp-field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.rsvp-field input[type="text"]::placeholder,
.rsvp-field input[type="email"]::placeholder,
.rsvp-field textarea::placeholder {
  color: rgba(23, 42, 44, 0.38);
}

.rsvp-field input[type="text"]:focus,
.rsvp-field input[type="email"]:focus,
.rsvp-field textarea:focus {
  outline: 0;
  background: var(--paper);
  border-color: var(--lux-gold-ink);
  box-shadow: 0 0 0 3px rgba(181, 150, 90, 0.22);
}

/* ── per-party block and submit ── */

.rsvp-party {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(181, 150, 90, 0.42);
  display: grid;
  gap: 1rem;
}

.rsvp-error {
  margin: 1.1rem 0 0;
  padding: 0.7rem 0.85rem;
  color: var(--lux-oxblood);
  background: rgba(169, 79, 52, 0.09);
  border-left: 3px solid var(--rust);
  font-size: 0.9rem;
  line-height: 1.55;
}

.rsvp-submit {
  width: 100%;
  margin-top: 1.4rem;
}

.rsvp-submit[disabled] {
  opacity: 0.62;
  cursor: progress;
  transform: none;
}

#rsvpApp[data-state="confirmed"] .rsvp-submit,
#rsvpApp[data-state="error"] .rsvp-submit {
  width: auto;
  min-width: 14rem;
}

@media (prefers-reduced-motion: reduce) {
  .rsvp-guest { animation: none; }
}
