:root {
  --ivory: #f7f4ec;
  --cream: #eee6d5;
  --olive: #5d6445;
  --olive-dark: #444b31;
  --beige: #d5c7ae;
  --beige-light: #e8dfcf;
  --gold: #ad9766;
  --ink: #36362f;
  --muted: #717165;
  --white: #fffdf8;
  --border: rgba(93, 100, 69, 0.18);
  --shadow: 0 24px 70px rgba(54, 54, 47, 0.10);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --radius: 28px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--beige); color: var(--olive-dark); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--olive-dark);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.center { text-align: center; }
.section { padding: clamp(78px, 10vw, 140px) 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; }
h2 { margin-bottom: 24px; font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
.eyebrow {
  margin-bottom: 14px;
  color: rgba(255,255,255,.82);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow.olive { color: var(--olive); }
.eyebrow.light { color: var(--cream); }
.lead { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.55; color: #56564d; }
.lead.smaller { font-size: clamp(1.2rem, 2vw, 1.55rem); }
.section-intro { max-width: 610px; margin: -6px auto 0; color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(173,151,102,.55);
  outline-offset: 3px;
}
.button-light { background: rgba(247,244,236,.96); color: var(--olive-dark); box-shadow: 0 14px 40px rgba(0,0,0,.15); }
.button-light:hover { background: white; }
.button-primary { background: var(--olive); color: var(--white); box-shadow: 0 16px 35px rgba(93,100,69,.2); }
.button-primary:hover { background: var(--olive-dark); }
.button.full { width: 100%; }
.button[disabled] { cursor: not-allowed; opacity: .75; transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(247,244,236,.9);
  box-shadow: 0 10px 30px rgba(54,54,47,.07);
  backdrop-filter: blur(14px);
}
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { color: var(--white); font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1; text-decoration: none; letter-spacing: -.05em; transition: color .3s ease; }
.brand span { color: var(--gold); font-style: italic; }
.site-header.is-scrolled .brand { color: var(--olive-dark); }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a { position: relative; color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 500; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; transition: color .3s ease; }
.nav-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .25s ease; }
.nav-menu a:hover::after { right: 0; }
.site-header.is-scrolled .nav-menu a { color: var(--olive-dark); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 50%; background: rgba(247,244,236,.14); cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--white); transition: transform .25s ease, opacity .25s ease, background .25s ease; }
.site-header.is-scrolled .nav-toggle span { background: var(--olive-dark); }

.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; background: var(--olive-dark); }
.hero-slides, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transform: scale(1.04); transition: opacity 1.4s ease, transform 7s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { z-index: 1; background: linear-gradient(180deg, rgba(27,29,21,.38), rgba(27,29,21,.52)); }
.hero-content { position: relative; z-index: 2; width: min(950px, calc(100% - 34px)); padding: 120px 0 90px; color: var(--white); text-align: center; }
.hero-content h1 { max-width: 920px; margin: 0 auto 20px; font-size: clamp(3.5rem, 8.2vw, 7.6rem); letter-spacing: -.055em; text-shadow: 0 5px 35px rgba(0,0,0,.22); }
.hero-content h1 span { display: inline-block; margin-inline: .1em; color: var(--beige); font-style: italic; font-weight: 400; }
.hero-date { margin-bottom: 22px; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.45rem); letter-spacing: .05em; }
.hero-details { margin-bottom: 12px; }
.hero-details p { margin: 2px 0; font-size: .88rem; letter-spacing: .09em; text-transform: uppercase; }
.hero-details strong { color: var(--cream); }
.punctuality { margin: 12px 0 28px; font-family: var(--serif); font-size: 1.18rem; font-style: italic; }
.slide-indicators { position: absolute; z-index: 4; right: 30px; bottom: 32px; display: flex; gap: 8px; }
.slide-indicators button { width: 22px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: width .3s ease, background .3s ease; }
.slide-indicators button.is-active { width: 45px; background: var(--white); }
.scroll-cue { position: absolute; z-index: 3; bottom: 24px; left: 50%; width: 28px; height: 42px; border: 1px solid rgba(255,255,255,.6); border-radius: 20px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: white; transform: translateX(-50%); animation: scrollCue 2s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 25% { opacity: 1; } 75% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,17px); } }

.story { background: var(--ivory); }
.story .narrow { margin-bottom: 56px; }
.story-image { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story-image img { aspect-ratio: 3 / 2; object-fit: cover; transition: transform 1s ease; }
.story-image:hover img { transform: scale(1.015); }

.event-section { background: var(--white); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.info-card { min-height: 315px; padding: 42px 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--ivory); text-align: center; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.info-card:hover { transform: translateY(-8px); border-color: rgba(173,151,102,.5); box-shadow: var(--shadow); }
.icon-circle { width: 65px; height: 65px; display: grid; place-items: center; margin: 0 auto 28px; border: 1px solid rgba(173,151,102,.45); border-radius: 50%; color: var(--olive); }
.icon-circle svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.info-card h3 { margin-bottom: 14px; }
.info-card p { margin: 0; color: var(--muted); }
.map-card { display: grid; grid-template-columns: .7fr 1.3fr; min-height: 390px; margin-top: 32px; border-radius: var(--radius); overflow: hidden; background: var(--cream); box-shadow: var(--shadow); }
.map-copy { display: flex; flex-direction: column; justify-content: center; padding: 55px; }
.map-copy h3 { margin-bottom: 8px; font-size: 3rem; }
.map-copy p { color: var(--muted); }
.text-link { width: fit-content; color: var(--olive-dark); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--gold); }
.map-card iframe { width: 100%; min-height: 390px; border: 0; filter: saturate(.55) sepia(.12); }

.dress-code { background: var(--cream); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(45px, 8vw, 110px); }
.dress-illustration svg { width: 100%; max-width: 570px; }
.illustration-bg { fill: var(--ivory); stroke: rgba(173,151,102,.35); stroke-width: 2; }
.suit path, .dress path { fill: none; stroke: var(--olive); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.dress path { stroke: var(--gold); }
.palette-dots { display: flex; gap: 12px; margin-top: 28px; }
.dot { width: 28px; height: 28px; border: 3px solid rgba(255,255,255,.6); border-radius: 50%; box-shadow: 0 0 0 1px rgba(54,54,47,.12); }
.ivory { background: var(--ivory); }.cream { background: var(--cream); }.olive-dot { background: var(--olive); }.beige-dot { background: var(--beige); }.gold-dot { background: var(--gold); }

.notes-section { background: var(--ivory); }
.notes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.note-card { position: relative; padding: clamp(42px, 6vw, 72px); border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.note-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; bottom: -100px; border: 1px solid rgba(173,151,102,.2); border-radius: 50%; }
.note-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid rgba(173,151,102,.45); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.note-card h2 { font-size: clamp(2.3rem, 4vw, 3.7rem); }
.note-card p { color: var(--muted); }
.gift-card { background: var(--olive); color: var(--white); }
.gift-card .eyebrow, .gift-card p { color: rgba(255,255,255,.76); }
.gift-card .note-icon { color: var(--cream); border-color: rgba(255,255,255,.3); }
.signature { margin-top: 28px; color: var(--cream) !important; font-family: var(--serif); font-size: 1.6rem; font-style: italic; }

.countdown-section { position: relative; background: var(--olive); color: var(--white); overflow: hidden; }
.countdown-section::before, .countdown-section::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(247,244,236,.1); border-radius: 50%; }
.countdown-section::before { left: -220px; top: -180px; }.countdown-section::after { right: -180px; bottom: -240px; }
.countdown { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: min(850px, 100%); margin: 52px auto 0; }
.countdown > div { padding: 25px 10px; border-right: 1px solid rgba(247,244,236,.2); }
.countdown > div:last-child { border-right: 0; }
.countdown strong { display: block; font-family: var(--serif); font-size: clamp(3.1rem, 7vw, 6.2rem); font-weight: 400; line-height: .9; }
.countdown span { display: block; margin-top: 15px; color: rgba(255,255,255,.68); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }

.rsvp-section { background: var(--cream); }
.rsvp-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(42px, 7vw, 90px); align-items: start; }
.rsvp-intro { position: sticky; top: calc(var(--header-height) + 40px); }
.rsvp-intro > p:not(.eyebrow) { color: var(--muted); }
.rsvp-date { display: flex; flex-direction: column; margin-top: 48px; padding: 26px 0; border-top: 1px solid rgba(93,100,69,.25); border-bottom: 1px solid rgba(93,100,69,.25); }
.rsvp-date span { color: var(--muted); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
.rsvp-date strong { margin-top: 6px; color: var(--olive); font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.rsvp-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 20px; padding: clamp(28px, 5vw, 56px); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; min-width: 0; }
.field.full, fieldset.full, .form-status.full { grid-column: 1 / -1; }
.field label, .field legend { margin-bottom: 8px; color: var(--ink); font-size: .74rem; font-weight: 600; letter-spacing: .05em; }
.field label span, .field legend span { color: var(--gold); }
input, select, textarea { width: 100%; border: 1px solid rgba(93,100,69,.2); border-radius: 14px; background: var(--ivory); color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
input, select { height: 53px; padding: 0 16px; }
textarea { min-height: 135px; padding: 14px 16px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(173,151,102,.12); outline: 0; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #9f5f54; }
.error { min-height: 20px; margin-top: 4px; color: #8b4d43; font-size: .68rem; }
.attendance-field { display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px; margin: 0; padding: 0; border: 0; }
.attendance-field legend { width: 100%; }
.radio-option { flex: 1; min-width: 180px; margin: 0 !important; cursor: pointer; }
.radio-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.radio-option span { display: flex; align-items: center; justify-content: center; min-height: 52px; padding: 10px 14px; border: 1px solid rgba(93,100,69,.2); border-radius: 14px; background: var(--ivory); color: var(--ink) !important; font-size: .75rem; transition: all .2s ease; }
.radio-option input:checked + span { border-color: var(--olive); background: var(--olive); color: var(--white) !important; }
.radio-option input:focus-visible + span { outline: 3px solid rgba(173,151,102,.55); outline-offset: 3px; }
.privacy-note p { margin: 0; color: var(--muted); font-size: .7rem; line-height: 1.5; }
.honeypot { position: absolute; left: -9999px; }
.form-status { display: none; grid-column: 1 / -1; padding: 14px 18px; border-radius: 14px; font-size: .82rem; }
.form-status.is-success { display: block; background: rgba(93,100,69,.11); color: var(--olive-dark); }
.form-status.is-error { display: block; background: rgba(159,95,84,.1); color: #7d433a; }
.button-loader { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.4); border-top-color: white; border-radius: 50%; animation: spin .8s linear infinite; }
.rsvp-form.is-loading .button-label { display: none; }.rsvp-form.is-loading .button-loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 235px; gap: 14px; margin-top: 52px; }
.gallery-item { position: relative; min-width: 0; padding: 0; border: 0; border-radius: 18px; overflow: hidden; background: var(--beige); cursor: zoom-in; }
.gallery-item.tall { grid-row: span 2; }.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .65s ease; }
.gallery-item::after { content: "+"; position: absolute; right: 16px; bottom: 16px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(247,244,236,.9); color: var(--olive); font-family: var(--serif); font-size: 1.4rem; opacity: 0; transform: translateY(8px); transition: all .3s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(.85); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(24,25,20,.94); }
.lightbox.is-open { display: flex; }
.lightbox img { width: auto; max-width: min(90vw, 1100px); max-height: 88vh; object-fit: contain; border-radius: 10px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; z-index: 2; border: 0; background: transparent; color: white; cursor: pointer; }
.lightbox-close { top: 18px; right: 24px; font-size: 2.7rem; }.lightbox-prev, .lightbox-next { top: 50%; width: 50px; height: 70px; font-family: var(--serif); font-size: 3.5rem; transform: translateY(-50%); }.lightbox-prev { left: 18px; }.lightbox-next { right: 18px; }

.future-album { padding-top: 0; background: var(--white); }
.album-card { padding: clamp(55px, 8vw, 90px); border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(135deg, var(--cream), var(--ivory)); text-align: center; }
.album-card p:not(.eyebrow) { max-width: 620px; margin-inline: auto; color: var(--muted); }
.coming-soon { display: inline-block; margin-top: 22px; padding: 10px 18px; border: 1px solid rgba(93,100,69,.25); border-radius: 999px; color: var(--olive); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }

.faq-section { background: var(--ivory); }
.accordion { margin-top: 44px; border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { position: relative; padding: 24px 54px 24px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 1.8rem); }
summary::-webkit-details-marker { display: none; }
summary span, summary span::after { position: absolute; top: 50%; right: 6px; width: 18px; height: 1px; background: var(--olive); content: ""; transition: transform .25s ease; }
summary span::after { top: 0; right: 0; transform: rotate(90deg); }
details[open] summary span::after { transform: rotate(0); }
details p { padding: 0 40px 24px 0; color: var(--muted); }

.site-footer { position: relative; padding: 90px 0 55px; background: var(--olive); color: var(--white); overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: -250px; left: 50%; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: translateX(-50%); }
.footer-mark { position: relative; margin-bottom: 25px; font-family: var(--serif); font-size: 4rem; line-height: 1; }
.footer-mark span { color: var(--beige); font-style: italic; }
.site-footer p { position: relative; max-width: 640px; margin: 0 auto; color: rgba(255,255,255,.75); }
.footer-icons { position: relative; display: flex; justify-content: center; gap: 15px; margin: 24px 0 16px; color: var(--beige); }
.footer-date { font-family: var(--serif); font-size: 1.3rem; letter-spacing: .1em; }

.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: var(--olive); color: white; box-shadow: 0 12px 30px rgba(54,54,47,.22); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: all .3s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }

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

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; inset: var(--header-height) 16px auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; border: 1px solid var(--border); border-radius: 20px; background: rgba(247,244,236,.98); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: all .25s ease; }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-menu a, .site-header .nav-menu a { padding: 13px 10px; color: var(--olive-dark); text-align: center; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.nav-toggle.is-open span:nth-child(2) { opacity: 0; }.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-header:not(.is-scrolled) .nav-toggle.is-open span { background: var(--olive-dark); }
  .cards-grid { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .map-card, .split-layout, .notes-grid, .rsvp-wrap { grid-template-columns: 1fr; }
  .map-card iframe { min-height: 320px; }
  .dress-illustration { order: 2; }
  .rsvp-intro { position: static; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  h2 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
  .hero-content { padding-top: 105px; }
  .hero-content h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .hero-content h1 span { display: block; margin: -.05em 0; }
  .hero-details p { font-size: .74rem; }
  .slide-indicators { right: 18px; bottom: 20px; }
  .scroll-cue { display: none; }
  .story .narrow { margin-bottom: 34px; }
  .map-copy { padding: 40px 28px; }
  .map-copy h3 { font-size: 2.4rem; }
  .note-card { padding: 38px 26px; }
  .countdown { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .countdown > div { border-right: 1px solid rgba(247,244,236,.2); border-bottom: 1px solid rgba(247,244,236,.2); }
  .countdown > div:nth-child(2) { border-right: 0; }.countdown > div:nth-child(3), .countdown > div:nth-child(4) { border-bottom: 0; }.countdown > div:last-child { border-right: 0; }
  .rsvp-form { grid-template-columns: 1fr; padding: 26px 20px; gap: 19px; }
  .field.full, fieldset.full { grid-column: auto; }
  .radio-option { min-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; gap: 9px; }
  .gallery-item.wide { grid-column: span 2; }
  .lightbox { padding: 20px; }.lightbox-prev { left: 2px; }.lightbox-next { right: 2px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

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