:root {
  --milk: #fbf6ee;
  --cream: #f2e7da;
  --beige: #dcc8b2;
  --taupe: #746258;
  --brown: #6b4a39;
  --warm-rose: #b77a68;
  --warm-rose-dark: #9d6556;
  --wedding-red: #ad575b;
  --dark-brown: #3d2f28;
  --graphite: #4a4541;
  --rose: #dbc0bd;
  --blue-grey: #b9c4c8;
  --white-line: rgba(255, 255, 255, .74);
  --glass: rgba(255, 255, 255, .34);
  --shadow: 0 24px 60px rgba(61, 47, 40, .13);
  --radius: 26px;
  --display: "Cormorant Garamond", Georgia, serif;
  --script: "Allura", "Great Vibes", cursive;
  --body: "Manrope", "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--body);
  color: var(--wedding-red);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .92), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(245, 220, 209, .62), transparent 30%),
    radial-gradient(circle at 74% 74%, rgba(255, 255, 255, .52), transparent 28%),
    linear-gradient(145deg, #efe0d0 0%, #fff9f2 45%, #e5cfc0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, .72) 0 5%, transparent 16%),
    radial-gradient(circle at 22% 82%, rgba(255, 255, 255, .54) 0 4%, transparent 15%),
    radial-gradient(circle at 89% 68%, rgba(255, 255, 255, .46) 0 4%, transparent 14%),
    linear-gradient(118deg, transparent 0 28%, rgba(255, 255, 255, .4) 38%, transparent 52%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, .42), transparent 46%);
  filter: blur(12px);
  animation: silkDrift 16s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 18%, rgba(161, 111, 73, .22) 0 2%, transparent 13%),
    radial-gradient(ellipse at 0% 31%, rgba(255, 255, 255, .82) 0 3%, transparent 12%),
    radial-gradient(ellipse at 0% 45%, rgba(190, 133, 91, .2) 0 2%, transparent 14%),
    radial-gradient(ellipse at 100% 22%, rgba(255, 255, 255, .64) 0 3%, transparent 15%),
    radial-gradient(ellipse at 100% 58%, rgba(214, 174, 149, .2) 0 2%, transparent 16%);
  filter: blur(10px);
  opacity: .76;
}

a {
  color: inherit;
}

.music-toggle {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: 16px;
  z-index: 20;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: rgba(255, 255, 255, .46);
  box-shadow: 0 14px 34px rgba(61, 47, 40, .16);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}

.music-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 18px 40px rgba(61, 47, 40, .18);
}

.music-toggle:active {
  transform: translateY(0);
}

.music-toggle:focus-visible {
  outline: 2px solid rgba(173, 87, 91, .7);
  outline-offset: 4px;
}

.music-toggle__icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--wedding-red);
  border-left-width: 7px;
  border-radius: 4px 9px 9px 4px;
}

.music-toggle__icon::before,
.music-toggle__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  width: 8px;
  height: 12px;
  border: 2px solid var(--wedding-red);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 14px 0 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .2s ease;
}

.music-toggle__icon::after {
  width: 13px;
  height: 18px;
}

.music-toggle[aria-pressed="true"] {
  background: var(--wedding-red);
}

.music-toggle[aria-pressed="true"] .music-toggle__icon {
  border-color: var(--milk);
}

.music-toggle[aria-pressed="true"] .music-toggle__icon::before,
.music-toggle[aria-pressed="true"] .music-toggle__icon::after {
  border-color: var(--milk);
  opacity: 1;
}

.mobile-shell {
  width: 100%;
  max-width: 390px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 13%, rgba(255,255,255,.82), transparent 24%),
    radial-gradient(circle at 93% 30%, rgba(222, 190, 173, .38), transparent 29%),
    radial-gradient(circle at 72% 81%, rgba(255,255,255,.45), transparent 25%),
    linear-gradient(160deg, rgba(253, 247, 239, .86), rgba(237, 221, 208, .76));
  box-shadow: 0 0 70px rgba(61, 47, 40, .14);
}

.mobile-shell--invite {
  opacity: 0;
  transform: translateY(18px);
}

.mobile-shell--invite.is-opened {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .85s ease, transform .85s ease;
}

.section {
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.section-pad {
  padding: 28px 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.opening {
  min-height: 100svh;
  overflow: hidden;
  background:
    url("assets/opening-invitation.png") center top / 100% 100% no-repeat,
    linear-gradient(180deg, #f9eee5, #ead2c0);
}

.opening__arrow {
  position: absolute;
  left: 50%;
  bottom: 1.4%;
  z-index: 2;
  width: 18%;
  height: 9.4%;
  border-radius: 28px;
  transform: translateX(-50%);
}

.opening__arrow:focus-visible {
  outline: 2px solid rgba(173, 87, 91, .65);
  outline-offset: 4px;
}

.mobile-shell--opening {
  max-width: 430px;
  min-height: 100svh;
}

.mobile-shell:not(.mobile-shell--opening) > .opening {
  display: none;
}

.mobile-shell--opening .opening {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(28px, 8vh, 58px);
  padding: clamp(52px, 12vh, 86px) 24px clamp(42px, 9vh, 70px);
  overflow: hidden;
  perspective: 1200px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, .9), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(185, 196, 200, .3), transparent 28%),
    linear-gradient(158deg, #fff8f1 0%, #efdccc 52%, #f7eee7 100%);
}

.mobile-shell--opening .opening::before,
.mobile-shell--opening .opening::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .64);
  opacity: .7;
  transform: rotate(-12deg);
}

.mobile-shell--opening .opening::before {
  width: 160px;
  height: 160px;
  top: 9%;
  left: -74px;
  border-radius: 48% 52% 46% 54%;
}

.mobile-shell--opening .opening::after {
  width: 210px;
  height: 210px;
  right: -112px;
  bottom: 8%;
  border-radius: 50%;
  transform: rotate(17deg);
}

.opening__copy {
  z-index: 3;
  grid-row: 1;
  align-self: end;
  justify-self: center;
  width: min(100%, 340px);
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--wedding-red);
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
}

.opening__eyebrow {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.opening__copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 7.2vw, 31px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.opening__copy p:last-child {
  max-width: 310px;
  margin: 16px auto 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.envelope {
  position: relative;
  z-index: 2;
  grid-row: 2;
  width: min(78vw, 330px);
  aspect-ratio: 1.42;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .55s ease;
  -webkit-tap-highlight-color: transparent;
}

.envelope:hover {
  transform: translate3d(0, -4px, 0) scale(1.01);
}

.envelope:focus-visible {
  outline: 2px solid rgba(173, 87, 91, .68);
  outline-offset: 10px;
  border-radius: 18px;
}

.envelope[disabled] {
  cursor: default;
}

.envelope__shadow {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -14%;
  height: 18%;
  border-radius: 50%;
  background: rgba(61, 47, 40, .16);
  filter: blur(18px);
  transform: translateZ(-70px);
  transition: opacity .8s ease, transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.envelope__body,
.envelope__pocket,
.envelope__flap,
.envelope__letter {
  position: absolute;
  inset: 0;
  display: block;
}

.envelope__body {
  top: 21%;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(145deg, #f7e6d9, #e8c8ba 64%, #d9b4a8);
  box-shadow: 0 26px 60px rgba(61, 47, 40, .18);
}

.envelope__pocket {
  top: 21%;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  pointer-events: none;
}

.envelope__pocket--left {
  clip-path: polygon(0 0, 52% 55%, 0 100%);
  background: linear-gradient(34deg, #e2bdae, #f4ded2 72%);
}

.envelope__pocket--right {
  clip-path: polygon(100% 0, 48% 55%, 100% 100%);
  background: linear-gradient(326deg, #dbaea2, #f1d6ca 72%);
}

.envelope__flap {
  top: 21%;
  height: 58%;
  z-index: 5;
  transform-origin: 50% 0%;
  transform: rotateX(0deg);
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(160deg, #f8e4d8 0%, #e6bfb2 76%);
  clip-path: polygon(0 0, 100% 0, 50% 92%);
  box-shadow: 0 14px 34px rgba(91, 56, 45, .14);
  transition:
    transform 1.05s cubic-bezier(.2, .82, .18, 1),
    filter 1.05s ease,
    z-index 0s linear .38s;
  backface-visibility: hidden;
}

.envelope__letter {
  left: 10%;
  right: 10%;
  top: 2%;
  bottom: 22%;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.18)),
    url("assets/hero-invitation-cover.png") center top / cover no-repeat;
  box-shadow: 0 20px 38px rgba(61, 47, 40, .16);
  transform: translate3d(0, 28%, -18px) scale(.94);
  transition:
    transform 1.12s cubic-bezier(.18, .8, .2, 1) .16s,
    box-shadow 1.12s ease .16s;
}

.envelope__photo {
  display: block;
  width: 100%;
  height: 40%;
  border-radius: 12px;
  background: rgba(255,255,255,.34);
  backdrop-filter: blur(1px);
}

.envelope__monogram {
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(18px, 5.5vw, 25px);
  line-height: 1;
  letter-spacing: .04em;
  color: var(--wedding-red);
  text-transform: uppercase;
  white-space: nowrap;
}

.envelope__line {
  display: block;
  width: 72%;
  height: 2px;
  margin-top: 13px;
  border-radius: 999px;
  background: rgba(173, 87, 91, .22);
}

.envelope__line--short {
  width: 46%;
  margin-top: 8px;
}

.opening.is-opening .opening__copy {
  opacity: 0;
  transform: translate3d(0, -12px, 0);
}

.opening.is-opening .envelope {
  transform: translate3d(0, -8px, 0) scale(1.02);
  filter: saturate(1.04);
}

.opening.is-opening .envelope__flap {
  z-index: 1;
  transform: rotateX(-178deg);
  filter: brightness(1.04);
}

.opening.is-opening .envelope__letter {
  transform: translate3d(0, -44%, 34px) scale(1.02);
  box-shadow: 0 32px 70px rgba(61, 47, 40, .2);
}

.opening.is-opening .envelope__shadow {
  opacity: .72;
  transform: translate3d(0, 8px, -70px) scale(.9);
}

.hero {
  min-height: 100svh;
  display: block;
  padding: 0;
  text-align: center;
  overflow: hidden;
  background:
    url("assets/hero-invitation-cover.png") center top / 100% 100% no-repeat,
    linear-gradient(180deg, #f9eee5, #ead2c0);
}

.hero::before,
.hero::after {
  content: none;
}

.hero__content::before,
.hero__content::after {
  content: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100svh;
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wedding-red);
}

.hero .eyebrow {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero__names {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero__names em {
  font-style: normal;
}

.hero__date {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero__date strong {
  font-size: 60px;
  font-weight: 500;
  line-height: .82;
  letter-spacing: .05em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  text-decoration: none;
  color: var(--wedding-red);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}

.card {
  padding: 30px 22px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.greeting-card {
  text-align: center;
}

.script-line,
.script-heading,
.final-script {
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--wedding-red);
}

.script-line {
  margin: 20px 0 16px;
  font-size: 34px;
  line-height: .9;
}

.card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--wedding-red);
}

.card p:last-child {
  margin-bottom: 0;
}

.date-line {
  margin: 24px 0 18px !important;
  font-family: var(--display);
  font-size: 22px !important;
  letter-spacing: .14em;
  color: var(--wedding-red) !important;
}

.couple-section {
  padding-top: 8px;
  padding-bottom: 18px;
}

.couple-photo {
  position: relative;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.56), rgba(255,255,255,.18)),
    rgba(255, 255, 255, .28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.couple-photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 23px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.46), transparent 24%);
  pointer-events: none;
}

.couple-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 23px;
}

.couple-countdown {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 14px 12px 13px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, .36);
  box-shadow: 0 18px 46px rgba(61, 47, 40, .12);
  backdrop-filter: blur(14px);
  color: var(--wedding-red);
  text-align: center;
}

.couple-countdown__title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.couple-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.couple-countdown__item {
  min-width: 0;
  padding: 9px 2px 8px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 15px;
  background: rgba(255,255,255,.28);
}

.couple-countdown__item strong {
  display: block;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.couple-countdown__item span {
  display: block;
  margin-top: 5px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.newlyweds-second-section {
  padding-top: 10px;
  padding-bottom: 22px;
}

.newlyweds-second-card {
  position: relative;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,255,255,.74), transparent 28%),
    linear-gradient(150deg, rgba(255, 248, 242, .92), rgba(238, 218, 207, .72));
  box-shadow: 0 22px 54px rgba(61, 47, 40, .14);
}

.newlyweds-second-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 23px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.48);
  pointer-events: none;
}

.newlyweds-second-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 23px;
}

.script-heading {
  margin: 10px 0 26px;
  font-size: 44px;
  line-height: .85;
  text-align: center;
}

.day-program-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, .72), transparent 28%),
    linear-gradient(160deg, #fff8f2 0%, #f3e4d9 54%, #f8eee9 100%);
  box-shadow: 0 22px 56px rgba(104, 73, 58, .13);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding: 4px 0 2px 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(173, 87, 91, .28) 14%, rgba(173, 87, 91, .18) 86%, transparent);
}

.timeline__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  position: relative;
  align-items: start;
  transition: opacity .72s ease, transform .72s ease, box-shadow .28s ease;
}

.timeline__item:not(:last-child)::after {
  content: "♡";
  position: absolute;
  left: 12px;
  bottom: -19px;
  z-index: 2;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff8f2;
  color: rgba(173, 87, 91, .42);
  font-size: 12px;
}

.timeline__marker {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  background: linear-gradient(145deg, #fffaf5, #ead3cd);
  box-shadow: 0 10px 24px rgba(104, 73, 58, .12);
}

.timeline__icon {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
  color: var(--wedding-red);
}

.timeline__content {
  min-width: 0;
  padding: 15px 16px 16px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 18px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 12px 30px rgba(104, 73, 58, .09);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.timeline__item:hover .timeline__content {
  transform: translateY(-3px) scale(1.015);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 38px rgba(104, 73, 58, .15);
}

.timeline time {
  display: inline-grid;
  place-items: center;
  min-width: 66px;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 999px;
  background: rgba(255, 250, 246, .72);
  font-family: var(--display);
  font-size: 18px;
  color: var(--wedding-red);
}

.timeline h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.08;
}

.timeline p {
  margin: 0;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

[data-timeline-item] {
  opacity: 0;
  transform: translateY(18px);
}

[data-timeline-item].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.location-card,
.dress-card,
.form-card {
  text-align: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  margin: 8px 0 22px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--wedding-red);
  color: var(--milk);
  font: 600 12px/1 var(--body);
  letter-spacing: .18em;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(78, 52, 39, .22);
  transition: background .24s ease, box-shadow .24s ease, transform .24s ease;
}

.button:hover {
  background: var(--wedding-red);
  box-shadow: 0 18px 40px rgba(121, 78, 63, .28);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.hero__cta {
  position: absolute;
  left: 50%;
  top: 72.6%;
  width: 73.5%;
  min-height: 7.4%;
  margin: 0;
  padding: 0 24px;
  background: transparent;
  color: transparent;
  font-size: 12px;
  letter-spacing: .18em;
  white-space: nowrap;
  box-shadow: none;
  transform: translateX(-50%);
}

.hero__cta:hover {
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
  transform: translateX(-50%);
}

.hero__cta:focus-visible {
  outline: 2px solid rgba(173, 87, 91, .65);
  outline-offset: 4px;
}

.scroll-cue {
  width: 10.8%;
  height: auto;
  aspect-ratio: 1;
  bottom: 5.2%;
  border: 0;
  background: transparent;
  color: transparent;
  animation: none;
}

.venue-photo {
  height: 230px;
  display: grid;
  place-items: end start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 24px;
  background:
    linear-gradient(rgba(61,47,40,.1), rgba(61,47,40,.18)),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.7), transparent 26%),
    linear-gradient(135deg, #d9c8b8, #a98f7d 52%, #eaded3);
  color: var(--wedding-red);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.location-card__address {
  margin: -4px 0 16px !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: var(--wedding-red) !important;
  font-weight: 600;
}

.location-card__button {
  margin-bottom: 22px;
  cursor: pointer;
}

.location-card__map {
  width: 100%;
  height: clamp(260px, 74vw, 320px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 24px;
  background: rgba(255,255,255,.34);
  box-shadow: 0 18px 44px rgba(61,47,40,.12);
}

.location-card__map[hidden] {
  display: none;
}

.location-card__map iframe {
  width: 100%;
  height: calc(100% - 42px);
  display: block;
  border: 0;
}

.location-card__map-link {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  background: rgba(255,255,255,.54);
  color: var(--wedding-red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.palette {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.palette span {
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 11px;
  background: var(--swatch);
  box-shadow: 0 8px 18px rgba(61,47,40,.08);
}

.moodboard {
  width: 100%;
}

.moodboard__image-card {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, .38);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.moodboard__image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}

.guest-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  text-align: left;
}

.field,
fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.field span,
legend {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wedding-red);
}

.field small {
  font-size: 11px;
  line-height: 1.45;
  color: var(--wedding-red);
}

input[type="text"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 16px;
  padding: 0 14px;
  outline: none;
  background: rgba(255,255,255,.36);
  color: var(--wedding-red);
  font: 400 13px/1 var(--body);
}

input[type="text"]::placeholder {
  color: rgba(173, 87, 91, .72);
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: var(--wedding-red);
  font-size: 13px;
  line-height: 1.35;
}

input[type="radio"],
input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--wedding-red);
}

.button--submit {
  width: 100%;
  margin: 4px 0 0;
  cursor: pointer;
}

.success-message {
  margin: 0 !important;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 16px;
  background: rgba(255,255,255,.42);
  text-align: center;
  color: var(--wedding-red) !important;
  font-weight: 600;
}

.success-message--error {
  color: #7d3b36 !important;
}

.button:disabled {
  cursor: wait;
  opacity: .68;
}

.final-section {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 56px 22px 70px;
  text-align: center;
}

.final-title {
  margin: 0;
  font-family: var(--display);
  font-size: 43px;
  line-height: .92;
  letter-spacing: .12em;
}

.final-script {
  margin: 8px 0 44px;
  font-size: 60px;
  line-height: .8;
}

.monogram {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: rgba(255,255,255,.26);
  font-family: var(--display);
  font-size: 28px;
  color: var(--wedding-red);
}

@keyframes silkDrift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(2%, 1%, 0) rotate(2deg);
  }
}

@keyframes cue {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 0;
  }

  .hero__cta {
    width: 73.5%;
    min-height: 7.4%;
    margin: 0;
    padding: 0 16px;
    font-size: 11px;
    letter-spacing: .15em;
  }
}
