:root {
  --ink: #25342f;
  --forest: #28483c;
  --sage: #829281;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --rose: #c9877b;
  --blush: #e9c7be;
  --wine: #713e47;
  --line: rgba(37, 52, 47, 0.19);
  --serif: "Italiana", Georgia, serif;
  --script: "Italianno", cursive;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: var(--paper);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

.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;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 72px);
  color: var(--paper);
  transition: color 0.35s ease, background 0.35s ease, height 0.35s ease;
}

.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(247, 242, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.monogram {
  justify-self: start;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.15em;
}

.monogram span {
  color: var(--rose);
  font-family: var(--script);
  font-size: 27px;
}

.site-nav {
  display: flex;
  gap: clamp(22px, 3.5vw, 52px);
}

.site-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.language-switcher {
  justify-self: end;
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.language-switcher button {
  padding: 6px 2px;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
  opacity: 0.5;
}

.language-switcher button.active {
  opacity: 1;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.curtain-scene {
  height: 200vh;
  background: var(--wine);
}

.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 8vw, 140px);
  padding: 120px clamp(6vw, 10vw, 170px) 70px;
  background:
    radial-gradient(circle at 74% 48%, rgba(201, 135, 123, 0.15), transparent 25%),
    var(--cream);
}

.hero-copy {
  z-index: 2;
  max-width: 600px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.hero-copy.visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--rose);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(76px, 9vw, 148px);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:last-child {
  margin-left: clamp(35px, 6vw, 100px);
}

.hero-copy h1 b {
  display: block;
  height: 26px;
  margin: 2px 0 6px 44%;
  color: var(--rose);
  font-family: var(--script);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.5;
}

.hero-date {
  margin: 50px 0 3px;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.28em;
}

.hero-location {
  margin: 0 0 30px;
  color: var(--sage);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.25em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid var(--forest);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button-primary {
  color: var(--paper);
  background: var(--forest);
}

.button:hover {
  transform: translateY(-2px);
  color: var(--forest);
  background: transparent;
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(37, 52, 47, 0.55);
  background:
    linear-gradient(135deg, transparent 49.8%, rgba(37, 52, 47, 0.12) 50%, transparent 50.2%),
    linear-gradient(45deg, transparent 49.8%, rgba(37, 52, 47, 0.12) 50%, transparent 50.2%),
    #dfded2;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.photo-placeholder span {
  z-index: 1;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero-photo {
  width: min(36vw, 540px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  transform: rotate(2.5deg);
  border: 10px solid var(--paper);
  box-shadow: 0 22px 60px rgba(37, 52, 47, 0.18);
}

.botanical {
  position: absolute;
  z-index: 1;
  width: 240px;
  height: 400px;
  opacity: 0.28;
}

.botanical::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: var(--forest);
  transform: rotate(24deg);
  transform-origin: bottom;
}

.botanical span {
  position: absolute;
  width: 70px;
  height: 28px;
  border: 1px solid var(--forest);
  border-radius: 100% 0 100% 0;
}

.botanical span:nth-child(1) { left: 55%; bottom: 17%; transform: rotate(30deg); }
.botanical span:nth-child(2) { left: 33%; bottom: 33%; transform: rotate(210deg); }
.botanical span:nth-child(3) { left: 63%; bottom: 49%; transform: rotate(18deg); }
.botanical span:nth-child(4) { left: 36%; bottom: 65%; transform: rotate(202deg); }
.botanical span:nth-child(5) { left: 62%; bottom: 80%; transform: rotate(15deg); }

.botanical-left {
  left: -50px;
  bottom: -70px;
  transform: rotate(-20deg);
}

.botanical-right {
  right: -50px;
  top: 40px;
  transform: rotate(160deg);
}

.curtain {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 51%;
  height: 100%;
  background: var(--wine);
  will-change: transform;
}

.curtain-left {
  left: 0;
  transform-origin: left center;
}

.curtain-right {
  right: 0;
  transform-origin: right center;
}

.curtain-folds {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 4, 8, 0.23), transparent 9%, rgba(255, 255, 255, 0.06) 16%, transparent 23%, rgba(18, 4, 8, 0.23) 33%, transparent 46%, rgba(255, 255, 255, 0.05) 56%, transparent 67%, rgba(18, 4, 8, 0.22) 82%, transparent);
}

.curtain-left .curtain-folds {
  border-radius: 0 0 28% 0;
}

.curtain-right .curtain-folds {
  transform: scaleX(-1);
  border-radius: 0 0 0 28%;
}

.curtain-edge {
  position: absolute;
  top: 0;
  width: 28px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.18);
}

.curtain-left .curtain-edge {
  right: -4px;
  border-radius: 0 0 80% 0;
}

.curtain-right .curtain-edge {
  left: -4px;
  border-radius: 0 0 0 80%;
}

.invitation-front {
  position: absolute;
  z-index: 12;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
  pointer-events: none;
  will-change: opacity, transform;
}

.invitation-front > p {
  margin: 0 0 34px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.38em;
}

.front-names {
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 150px);
  line-height: 0.8;
}

.front-names span {
  display: inline-block;
  margin: 0 0.05em;
  color: var(--blush);
  font-family: var(--script);
  font-size: 0.75em;
  transform: translateY(0.08em);
}

.front-date {
  margin-top: 42px;
  font-size: 13px;
  letter-spacing: 0.46em;
}

.scroll-hint {
  position: absolute;
  z-index: 13;
  left: 50%;
  bottom: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  transform: translateX(-50%);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.26em;
  will-change: opacity;
}

.scroll-hint i {
  position: relative;
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-hint i::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scroll-line 1.8s infinite ease-in-out;
}

@keyframes scroll-line {
  to { transform: translateY(300%); }
}

.section {
  padding: clamp(90px, 12vw, 170px) clamp(24px, 8vw, 130px);
}

.intro {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.intro-ornament {
  margin-bottom: 28px;
  color: var(--sage);
  font-size: 30px;
}

.section h2,
.stay h2,
.rsvp h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.intro-copy {
  max-width: 700px;
  margin: 36px auto 20px;
  color: #66716d;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
}

.signature {
  margin-top: 22px;
  color: var(--rose);
  font-family: var(--script);
  font-size: 44px;
}

.photo-break {
  position: relative;
  padding: 0 clamp(24px, 5vw, 72px) 100px;
}

.wide-photo {
  width: 100%;
  height: min(68vw, 720px);
}

.photo-break > p {
  position: absolute;
  right: clamp(45px, 9vw, 145px);
  bottom: 55px;
  margin: 0;
  padding: 15px 25px;
  color: var(--paper);
  background: var(--rose);
  font-family: var(--script);
  font-size: clamp(25px, 3vw, 40px);
  transform: rotate(-2deg);
}

.details {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 65px;
  text-align: center;
}

.detail-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.detail-card {
  position: relative;
  min-height: 460px;
  padding: 54px 38px 44px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.detail-card.featured {
  color: var(--paper);
  background: var(--forest);
  transform: translateY(-18px);
  box-shadow: 0 20px 45px rgba(40, 72, 60, 0.18);
}

.card-number {
  position: absolute;
  top: 17px;
  left: 20px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 13px;
}

.detail-icon {
  position: relative;
  width: 80px;
  height: 65px;
  margin: 0 auto 30px;
}

.icon-rings i {
  position: absolute;
  top: 13px;
  width: 43px;
  height: 43px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon-rings i:first-child { left: 8px; }
.icon-rings i:last-child { right: 8px; }

.icon-glasses i {
  position: absolute;
  top: 7px;
  width: 28px;
  height: 38px;
  border: 1.5px solid currentColor;
  border-radius: 4px 4px 13px 13px;
}

.icon-glasses i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21px;
  width: 1px;
  height: 20px;
  background: currentColor;
}

.icon-glasses i:first-child { left: 10px; transform: rotate(-12deg); }
.icon-glasses i:last-child { right: 10px; transform: rotate(12deg); }

.icon-bus i {
  position: absolute;
  inset: 8px 7px 13px;
  border: 1.5px solid currentColor;
  border-radius: 8px;
}

.icon-bus i::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  right: 8px;
  height: 14px;
  border: 1px solid currentColor;
}

.icon-bus i::after {
  content: "•  •";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -17px;
  font-size: 30px;
  line-height: 1;
}

.detail-time {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.detail-card h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.detail-card > p:not(.detail-time) {
  margin: 0 auto 24px;
  max-width: 270px;
  color: #6d7673;
  font-size: 14px;
}

.detail-card.featured > p:not(.detail-time) {
  color: rgba(255, 253, 248, 0.68);
}

.placeholder-line {
  display: inline-block;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.dress-note {
  max-width: 1200px;
  margin: 58px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.dress-note span {
  color: var(--rose);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.23em;
}

.dress-note strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.stay {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 70px 10vw;
  background: #e8e5da;
}

.stay-copy {
  align-self: end;
}

.stay-copy > p:last-child {
  max-width: 520px;
  margin-top: 30px;
  color: #67726e;
}

.stay-collage {
  position: relative;
  min-height: 560px;
}

.collage-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  aspect-ratio: 4 / 5;
  border: 8px solid var(--paper);
  transform: rotate(2deg);
}

.collage-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1 / 1.1;
  border: 8px solid var(--paper);
  transform: rotate(-4deg);
  box-shadow: 0 20px 35px rgba(37, 52, 47, 0.13);
}

.stay-list {
  display: flex;
  flex-direction: column;
}

.stay-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(37, 52, 47, 0.18);
}

.stay-list article:last-child {
  border-bottom: 1px solid rgba(37, 52, 47, 0.18);
}

.stay-list article > span {
  color: var(--rose);
  font-family: var(--serif);
}

.stay-list h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.stay-list p {
  margin: 0;
  color: #67726e;
  font-size: 14px;
}

.hotel-note {
  align-self: center;
  padding: 38px;
  border: 1px solid rgba(37, 52, 47, 0.22);
  text-align: center;
  font-family: var(--serif);
  font-size: 18px;
}

.rsvp {
  position: relative;
  background:
    radial-gradient(circle at 0 20%, rgba(201, 135, 123, 0.12), transparent 24%),
    var(--cream);
}

.rsvp-heading {
  margin-bottom: 60px;
  text-align: center;
}

.rsvp-heading > p:last-child {
  margin-top: 20px;
  color: var(--sage);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.25em;
}

.rsvp-form {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 65px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 25px 65px rgba(37, 52, 47, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rsvp-form label > span:first-child,
.rsvp-form legend {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.rsvp-form input[type="text"],
.rsvp-form input[type="email"],
.rsvp-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.rsvp-form input[type="text"],
.rsvp-form input[type="email"] {
  height: 48px;
}

.rsvp-form textarea {
  padding: 12px 0;
  resize: vertical;
}

.rsvp-form input:focus,
.rsvp-form textarea:focus {
  border-color: var(--rose);
}

.rsvp-form fieldset {
  margin: 38px 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-grid.two { grid-template-columns: 1fr 1fr; }
.choice-grid.three { grid-template-columns: repeat(3, 1fr); }

.choice-card {
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  transition: border 0.2s ease, background 0.2s ease;
}

.choice-card i {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--paper);
}

.choice-card b {
  font-size: 12px;
  font-weight: 500;
}

.choice-card input:checked + span {
  border-color: var(--forest);
  background: rgba(40, 72, 60, 0.05);
}

.choice-card input:checked + span i {
  background: var(--forest);
}

.guest-name {
  display: block;
  margin: -10px 0 30px;
}

.guest-name[hidden] {
  display: none;
}

.submit-button {
  width: 100%;
  margin-top: 38px;
}

.form-note,
.form-success {
  margin: 14px 0 0;
  color: #7b8581;
  text-align: center;
  font-size: 11px;
}

.form-success {
  color: var(--forest);
}

footer {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  color: var(--paper);
  background: var(--forest);
  text-align: center;
}

.footer-names {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1;
}

.footer-names span {
  color: var(--blush);
  font-family: var(--script);
}

footer > p:nth-child(2) {
  margin: 25px 0 40px;
  font-size: 11px;
  letter-spacing: 0.36em;
}

footer a {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-underline-offset: 5px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: block;
    padding: 0;
    border: 0;
    color: inherit;
    background: none;
  }

  .menu-toggle > span:not(.sr-only) {
    position: absolute;
    left: 3px;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease, top 0.25s ease;
  }

  .menu-toggle > span:first-child { top: 9px; }
  .menu-toggle > span:nth-child(2) { top: 17px; }
  .menu-toggle[aria-expanded="true"] > span:first-child { top: 13px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 13px; transform: rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: var(--paper);
    background: var(--forest);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: none;
  }

  .language-switcher {
    z-index: 2;
  }

  .hero-backdrop {
    grid-template-columns: 1fr 0.78fr;
    gap: 25px;
    padding: 110px 7vw 65px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    border: 0;
  }

  .detail-card {
    min-height: auto;
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .detail-card:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .detail-card.featured {
    transform: none;
  }

  .stay {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .stay-copy {
    max-width: 650px;
  }

  .stay-collage {
    min-height: min(90vw, 650px);
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .site-header.scrolled {
    height: 60px;
  }

  .curtain-scene {
    height: 180vh;
  }

  .sticky-stage {
    min-height: 560px;
  }

  .hero-backdrop {
    display: block;
    padding: 105px 24px 40px;
  }

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

  .hero-copy h1 {
    font-size: clamp(66px, 22vw, 98px);
  }

  .hero-copy h1 span:last-child {
    margin-left: 20px;
  }

  .hero-copy h1 b {
    margin-left: 45%;
  }

  .hero-date {
    margin-top: 34px;
  }

  .hero-photo {
    display: none;
  }

  .front-names {
    max-width: 90%;
    font-size: clamp(58px, 20vw, 92px);
  }

  .front-names span {
    display: block;
    height: 0.75em;
  }

  .front-date {
    margin-top: 35px;
  }

  .section {
    padding: 90px 24px;
  }

  .photo-break {
    padding: 0 16px 90px;
  }

  .wide-photo {
    height: 75vh;
    min-height: 480px;
  }

  .photo-break > p {
    right: 27px;
    bottom: 63px;
    max-width: 78%;
    padding: 10px 17px;
  }

  .detail-grid {
    gap: 14px;
  }

  .detail-card,
  .detail-card:last-child {
    border: 1px solid var(--line);
  }

  .dress-note {
    flex-direction: column;
    gap: 7px;
  }

  .stay-collage {
    min-height: 115vw;
  }

  .collage-main {
    width: 84%;
  }

  .collage-small {
    width: 55%;
  }

  .form-row,
  .choice-grid.two,
  .choice-grid.three {
    grid-template-columns: 1fr;
  }

  .rsvp-form {
    margin: 0 -8px;
  }

  .choice-card > span {
    min-height: 48px;
  }
}

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

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