:root {
  --cream: #f7f2e8;
  --cream-deep: #eee6d6;
  --paper: #fcfaf5;
  --olive: #4f5d32;
  --olive-deep: #354123;
  --olive-soft: #9ca984;
  --gold: #b58b3a;
  --gold-soft: #d1b57b;
  --ink: #50483d;
  --muted: #7a7164;
  --line: rgba(79, 93, 50, 0.2);
  --shadow: 0 24px 70px rgba(70, 59, 38, 0.13);
  --radius-lg: 32px;
  --radius-md: 20px;
  --font-body: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", "Segoe Script", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 12%, rgba(181, 139, 58, 0.12), transparent 27rem),
    radial-gradient(circle at 94% 76%, rgba(79, 93, 50, 0.1), transparent 31rem),
    #ddd7cb;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.invitation-shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 780px);
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 242, 232, 0.92), rgba(247, 242, 232, 0.92)),
    radial-gradient(circle at 15% 40%, rgba(181, 139, 58, 0.14), transparent 32rem);
  box-shadow: var(--shadow);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.28;
  filter: blur(1px);
}

.ambient--one {
  top: 31rem;
  left: -17rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(181, 139, 58, 0.16), transparent 67%);
}

.ambient--two {
  top: 125rem;
  right: -18rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(79, 93, 50, 0.18), transparent 66%);
}

.petal-field {
  position: fixed;
  inset: 0;
  z-index: 20;
  overflow: hidden;
  pointer-events: none;
}

.petal {
  position: absolute;
  top: -2rem;
  width: 0.62rem;
  height: 0.95rem;
  border-radius: 80% 20% 80% 20%;
  background: rgba(181, 139, 58, 0.32);
  transform: rotate(30deg);
  animation: drift 15s linear infinite;
}

@keyframes drift {
  0% { transform: translate3d(0, -3rem, 0) rotate(25deg); opacity: 0; }
  12% { opacity: 0.72; }
  88% { opacity: 0.44; }
  100% { transform: translate3d(3rem, 108vh, 0) rotate(330deg); opacity: 0; }
}

.section {
  position: relative;
  padding: clamp(4.6rem, 10vw, 7rem) clamp(1.25rem, 7vw, 4.8rem);
  border-bottom: 1px solid rgba(79, 93, 50, 0.11);
}

.section:last-of-type { border-bottom: 0; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

.hero {
  display: grid;
  place-items: center;
  min-height: min(980px, 100svh);
  padding-block: clamp(4.5rem, 12vh, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.8), transparent 41%),
    linear-gradient(160deg, rgba(247, 242, 232, 0.98), rgba(242, 237, 225, 0.96));
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  inset: 1.1rem;
  border: 1px solid rgba(79, 93, 50, 0.35);
  pointer-events: none;
}

.hero::after { inset: 1.7rem; border-color: rgba(181, 139, 58, 0.38); }

.hero-botanical {
  position: absolute;
  inset: clamp(-7rem, -8vw, -2rem) clamp(-10rem, -6vw, -3rem) auto;
  width: calc(100% + clamp(2rem, 10vw, 8rem));
  height: min(92%, 900px);
  opacity: 0.88;
}

.hero-botanical .stem {
  fill: none;
  stroke: var(--olive);
  stroke-linecap: round;
  stroke-width: 2.6;
  opacity: 0.76;
}

.hero-botanical .stem--inner { stroke: var(--gold); stroke-width: 1.5; opacity: 0.65; }
.hero-botanical .stem--branch { stroke: var(--olive-soft); stroke-width: 2; }

.hero-botanical .leaf path:first-child {
  fill: rgba(120, 142, 78, 0.35);
  stroke: var(--olive);
  stroke-width: 1.2;
}

.hero-botanical .leaf path:last-child { fill: none; stroke: var(--olive); stroke-width: 1.1; opacity: 0.75; }
.hero-botanical .leaf:nth-of-type(even) path:first-child { fill: rgba(181, 139, 58, 0.23); }

.hero-botanical .flower ellipse {
  fill: rgba(255, 252, 242, 0.93);
  stroke: rgba(181, 139, 58, 0.48);
  stroke-width: 1.3;
}

.hero-botanical .flower--small ellipse { fill: rgba(255, 250, 237, 0.7); }
.hero-botanical .flower-center { fill: var(--gold); stroke: rgba(115, 81, 26, 0.25); stroke-width: 2; }

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 600px);
  flex-direction: column;
  align-items: center;
  padding: 5rem 1.25rem 2rem;
  text-align: center;
}

.monogram {
  display: grid;
  width: 5.1rem;
  height: 5.1rem;
  place-items: center;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(79, 93, 50, 0.55);
  border-radius: 50%;
  color: var(--olive);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.16em;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.28), 0 8px 22px rgba(79, 93, 50, 0.1);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-names {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  margin: 0;
  color: var(--olive-deep);
  font-family: var(--font-script);
  font-size: clamp(3.4rem, 12vw, 6.3rem);
  font-weight: 400;
  line-height: 0.92;
  text-shadow: 0 2px 0 rgba(255,255,255,0.5);
}

.hero-names span:not(.hero-amp) { display: block; }
.hero-amp { margin: 0.5rem 0 0.34rem; color: var(--gold); font-family: var(--font-serif); font-size: 2.3rem; line-height: 1; }

.hero-rule,
.ornament-line {
  display: flex;
  width: min(100%, 230px);
  align-items: center;
  gap: 0.8rem;
  margin: 1.6rem 0 1.1rem;
  color: var(--gold);
}

.hero-rule span,
.ornament-line span { height: 1px; flex: 1; background: var(--gold-soft); }
.hero-rule i,
.ornament-line i { font-style: normal; font-size: 0.8rem; }

.hero-date {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  letter-spacing: 0.18em;
}

.hero-invite {
  max-width: 31rem;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  line-height: 1.5;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.3rem;
  color: var(--olive);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span { font-size: 1.2rem; transition: transform 200ms ease; }
.scroll-cue:hover span { transform: translateY(4px); }

.section-heading { margin: 0 auto 2.6rem; text-align: center; }
.section-heading h2 { margin: 0; color: var(--olive-deep); font-family: var(--font-serif); font-size: clamp(2.2rem, 6vw, 3.45rem); font-weight: 600; line-height: 1.05; }
.section-heading--left { margin-left: 0; text-align: left; }
.heading-flourish { margin-top: 0.6rem; color: var(--gold); font-family: var(--font-serif); font-size: 1.7rem; }
.heading-subtitle { max-width: 30rem; margin: 0.8rem auto 0; color: var(--muted); font-size: 0.92rem; }

.family-section {
  background: linear-gradient(135deg, rgba(238, 230, 214, 0.45), rgba(252, 250, 245, 0.5));
}

.family-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.family-card {
  position: relative;
  padding: 1.7rem 1.3rem 1.45rem;
  border: 1px solid rgba(181, 139, 58, 0.32);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.74);
  text-align: center;
  box-shadow: 0 12px 28px rgba(79, 93, 50, 0.06);
}

.family-card::before { position: absolute; top: -0.47rem; left: 50%; width: 0.84rem; height: 0.84rem; border: 1px solid var(--gold); border-radius: 50%; background: var(--cream); content: ""; transform: translateX(-50%); }
.family-card__side { display: block; margin-bottom: 0.65rem; color: var(--gold); font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; }
.family-card__parent { margin: 0.24rem 0; color: var(--ink); font-family: var(--font-serif); font-size: 1.26rem; font-weight: 600; line-height: 1.25; }

.invitation-section { text-align: center; background: rgba(252, 250, 245, 0.52); }
.body-copy { max-width: 34rem; margin: 0 auto; color: var(--muted); font-family: var(--font-serif); font-size: clamp(1.13rem, 3vw, 1.35rem); line-height: 1.55; }
.invitation-copy { max-width: 31rem; }
.couple-display { display: flex; flex-direction: column; align-items: center; margin: 2.2rem 0 0.4rem; color: var(--olive-deep); font-family: var(--font-script); font-size: clamp(3rem, 9vw, 5rem); line-height: 0.95; }
.couple-display b { margin: 0.7rem 0; color: var(--gold); font-family: var(--font-serif); font-size: 2rem; font-weight: 400; }
.ornament-line { margin: 2rem auto 1.3rem; }

.event-section { overflow: hidden; background: rgba(247, 242, 232, 0.67); }
.event-section::after { position: absolute; right: -4rem; bottom: -5rem; width: 20rem; height: 20rem; border: 1px solid rgba(79, 93, 50, 0.13); border-radius: 50%; content: ""; box-shadow: 0 0 0 1.2rem rgba(79, 93, 50, 0.035), 0 0 0 2.4rem rgba(79, 93, 50, 0.035); }
.event-section--reception { background: linear-gradient(145deg, rgba(238,230,214,.58), rgba(247,242,232,.82)); }
.event-mark { position: absolute; top: 1.65rem; right: clamp(1.2rem, 7vw, 4.8rem); color: rgba(181, 139, 58, 0.48); font-family: var(--font-serif); font-size: 1rem; letter-spacing: 0.2em; }
.date-emphasis { display: flex; flex-direction: column; align-items: center; text-align: center; }
.date-emphasis__time { color: var(--olive-deep); font-family: var(--font-serif); font-size: clamp(3.5rem, 12vw, 5.6rem); font-weight: 600; line-height: 1; }
.date-emphasis__date { display: flex; align-items: center; gap: 1rem; margin-top: 0.85rem; color: var(--ink); font-family: var(--font-body); font-size: clamp(0.88rem, 2.5vw, 1.07rem); font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.date-emphasis__date b { font-weight: 700; }
.date-emphasis__date i { width: 1px; height: 1.2rem; background: var(--gold); transform: rotate(18deg); }
.date-emphasis__lunar { margin-top: 1rem; color: var(--muted); font-family: var(--font-serif); font-size: 1.05rem; }
.event-tag { display: flex; width: fit-content; align-items: center; gap: 0.55rem; margin: 2rem auto 0; padding: 0.62rem 1.15rem; border: 1px solid rgba(79,93,50,.28); border-radius: 100px; color: var(--olive); font-size: 0.86rem; font-weight: 600; }
.tag-icon { color: var(--gold); font-size: 1.1rem; }

.gallery-section { background: rgba(252, 250, 245, 0.7); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(0.68rem, 2vw, 1rem); }
.gallery-item { position: relative; display: block; min-width: 0; overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: var(--cream-deep); cursor: zoom-in; box-shadow: 0 9px 25px rgba(70,59,38,.11); }
.gallery-item--feature { grid-column: span 2; }
.gallery-item picture, .gallery-item img { display: block; width: 100%; height: 100%; }
.gallery-item img { aspect-ratio: 4 / 5; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.65,.25,1), filter 350ms ease; }
.gallery-item--feature img { aspect-ratio: 16 / 11; }
.gallery-item::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.38); border-radius: inherit; content: ""; pointer-events: none; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.055); filter: saturate(1.06); }
.gallery-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.gallery-item__number { position: absolute; right: 0.75rem; bottom: 0.6rem; z-index: 1; display: grid; width: 1.8rem; height: 1.8rem; place-items: center; border: 1px solid rgba(255,255,255,.56); border-radius: 50%; background: rgba(53,65,35,.6); color: white; font-size: 0.69rem; }
.gallery-hint { margin: 1.45rem 0 0; color: var(--muted); font-family: var(--font-serif); font-size: 1rem; text-align: center; }
.gallery-hint span { margin: 0 0.45rem; color: var(--gold); font-size: 0.7rem; }

.reception-copy { max-width: 30rem; margin-top: -0.7rem; text-align: left; }
.reception-time-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 30rem; margin: 2.1rem auto; border-block: 1px solid var(--line); }
.reception-time-grid > div { display: flex; flex-direction: column; align-items: center; padding: 1.25rem 0.5rem; }
.reception-time-grid > div + div { border-left: 1px solid var(--line); }
.reception-time-grid span { color: var(--muted); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.reception-time-grid strong { margin-top: 0.35rem; color: var(--olive-deep); font-family: var(--font-serif); font-size: 2.2rem; line-height: 1; }
.date-emphasis--small .date-emphasis__date { font-size: 0.92rem; }

.calendar-section { text-align: center; background: linear-gradient(rgba(238,230,214,.62), rgba(247,242,232,.76)); }
.countdown { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 31rem; margin: -0.25rem auto 2.2rem; padding: 1.2rem 0.5rem; border: 1px solid rgba(181,139,58,.25); border-radius: var(--radius-md); background: rgba(255,255,255,.42); }
.countdown > div { display: flex; flex-direction: column; align-items: center; gap: 0.18rem; }
.countdown > div + div { border-left: 1px solid var(--line); }
.countdown strong { color: var(--olive-deep); font-family: var(--font-serif); font-size: clamp(1.8rem, 5vw, 2.45rem); font-weight: 600; line-height: 1; }
.countdown span { color: var(--muted); font-size: 0.67rem; letter-spacing: 0.07em; text-transform: uppercase; }
.calendar-card { max-width: 34rem; margin: 0 auto; padding: clamp(1.15rem, 4vw, 2rem); border: 1px solid rgba(181,139,58,.27); border-radius: var(--radius-lg); background: rgba(255,255,255,.64); box-shadow: 0 15px 33px rgba(79,93,50,.08); }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; color: var(--olive-deep); font-family: var(--font-serif); font-size: 1.35rem; }
.calendar-arrow { width: 2rem; height: 2rem; border: 0; border-radius: 50%; background: transparent; color: var(--gold); font-size: 1.5rem; line-height: 1; }
.calendar-arrow:disabled { opacity: 0.45; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0.28rem; }
.calendar-weekdays { margin-bottom: 0.48rem; color: var(--muted); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; }
.calendar-grid [role="gridcell"] { display: grid; min-height: 2.36rem; place-items: center; border-radius: 50%; color: var(--ink); font-size: 0.82rem; }
.calendar-grid [role="gridcell"].is-reception { border: 1px solid rgba(181,139,58,.45); color: var(--gold); font-weight: 700; }
.calendar-grid [role="gridcell"].is-ceremony { background: var(--olive); color: var(--cream); font-weight: 700; box-shadow: 0 5px 12px rgba(79,93,50,.22); }
.calendar-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem 1.2rem; margin-top: 1.3rem; color: var(--muted); font-size: 0.7rem; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 0.36rem; }
.legend-dot { display: inline-block; width: 0.58rem; height: 0.58rem; border-radius: 50%; }
.legend-dot--reception { border: 1px solid var(--gold); }
.legend-dot--ceremony { background: var(--olive); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; min-height: 3rem; padding: 0.72rem 1.2rem; border-radius: 999px; font-size: 0.77rem; font-weight: 700; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease; }
.button:hover { transform: translateY(-2px); }
.button--outline { border: 1px solid var(--gold); background: transparent; color: var(--olive); }
.button--outline:hover { background: rgba(181,139,58,.1); box-shadow: 0 8px 18px rgba(181,139,58,.14); }
.button--solid { border: 1px solid var(--olive); background: var(--olive); color: var(--cream); box-shadow: 0 8px 18px rgba(79,93,50,.2); }
.button--solid:hover { background: var(--olive-deep); }
.calendar-button { margin-top: 1.55rem; }

.venue-section { text-align: center; background: rgba(252,250,245,.68); }
.venue-card { max-width: 34rem; margin: 0 auto; padding: 2.2rem 1.2rem; border: 1px solid rgba(79,93,50,.19); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.74), rgba(238,230,214,.55)); }
.venue-pin { display: grid; width: 3.2rem; height: 3.2rem; place-items: center; margin: 0 auto 0.8rem; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 1.5rem; }
.venue-address { max-width: 24rem; margin: 0 auto 1.35rem; color: var(--ink); font-family: var(--font-serif); font-size: 1.45rem; line-height: 1.25; }

.closing-section { display: flex; min-height: 29rem; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(160deg, rgba(238,230,214,.55), rgba(247,242,232,.95)); }
.closing-flower { position: relative; width: 6.7rem; height: 6.7rem; margin-bottom: 1.5rem; }
.closing-flower span { position: absolute; top: 50%; left: 50%; width: 2.7rem; height: 4rem; border: 1px solid rgba(181,139,58,.55); border-radius: 70% 30% 70% 30%; background: rgba(255,252,242,.76); transform: translate(-50%,-50%) rotate(var(--rotation,0deg)); transform-origin: 50% 90%; }
.closing-flower span:nth-child(1) { --rotation: 0deg; }
.closing-flower span:nth-child(2) { --rotation: 72deg; }
.closing-flower span:nth-child(3) { --rotation: 144deg; }
.closing-flower span:nth-child(4) { --rotation: 216deg; }
.closing-flower span:nth-child(5) { --rotation: 288deg; }
.closing-flower i { position: absolute; top: 50%; left: 50%; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: var(--gold); transform: translate(-50%,-50%); }
.closing-message { margin: 0; color: var(--ink); font-family: var(--font-serif); font-size: clamp(1.15rem, 3vw, 1.45rem); line-height: 1.45; }
.closing-names { margin-top: 1.3rem; color: var(--olive); font-family: var(--font-script); font-size: 2.65rem; line-height: 1; }
.back-top { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2.5rem; color: var(--muted); font-size: 0.72rem; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.back-top span { color: var(--gold); font-size: 1rem; }

.lightbox { width: min(100% - 1.4rem, 900px); max-width: 900px; padding: 0; border: 0; border-radius: 22px; background: rgba(32, 38, 25, 0.96); color: var(--cream); overflow: hidden; }
.lightbox::backdrop { background: rgba(17, 19, 13, 0.84); backdrop-filter: blur(5px); }
.lightbox-inner { position: relative; display: grid; min-height: min(90vh, 760px); place-items: center; padding: 3.2rem 3.2rem 3.6rem; }
.lightbox figure { display: flex; max-width: 100%; max-height: 76vh; flex-direction: column; align-items: center; margin: 0; }
.lightbox picture { display: flex; max-width: 100%; max-height: 70vh; }
.lightbox img { display: block; max-width: 100%; max-height: 70vh; width: auto; height: auto; border-radius: 10px; object-fit: contain; }
.lightbox figcaption { margin-top: 0.85rem; color: rgba(247,242,232,.84); font-family: var(--font-serif); font-size: 1.05rem; text-align: center; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 1; display: grid; place-items: center; border: 1px solid rgba(247,242,232,.28); border-radius: 50%; background: rgba(247,242,232,.08); color: var(--cream); cursor: pointer; transition: background 200ms ease, transform 200ms ease; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(247,242,232,.18); transform: scale(1.06); }
.lightbox-close { top: 0.85rem; right: 0.9rem; width: 2.5rem; height: 2.5rem; font-size: 1.7rem; line-height: 1; }
.lightbox-nav { top: 50%; width: 2.7rem; height: 2.7rem; font-size: 2rem; line-height: 1; transform: translateY(-50%); }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-nav--prev { left: 0.75rem; }
.lightbox-nav--next { right: 0.75rem; }
.lightbox-count { position: absolute; right: 0; bottom: 1rem; left: 0; color: rgba(247,242,232,.62); font-size: 0.72rem; letter-spacing: .12em; text-align: center; }

.noscript-message { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 50; padding: 1rem; border-radius: 12px; background: var(--olive); color: var(--cream); text-align: center; }

@media (min-width: 760px) {
  .invitation-shell { margin-block: 1.4rem; border-radius: 24px; }
  .hero { min-height: 900px; }
  .hero::before { inset: 1.6rem; }
  .hero::after { inset: 2.2rem; }
  .gallery-item--feature img { aspect-ratio: 16 / 9; }
}

@media (max-width: 520px) {
  .section { padding-inline: 1.08rem; }
  .hero { min-height: 850px; }
  .hero-botanical { inset: 0 -9rem auto; width: calc(100% + 18rem); height: 80%; }
  .hero-content { padding-top: 4rem; }
  .hero-names { font-size: clamp(3.15rem, 17vw, 4.65rem); }
  .family-grid { grid-template-columns: 1fr; gap: 1.15rem; }
  .family-card { padding-block: 1.35rem 1.2rem; }
  .couple-display { font-size: clamp(2.65rem, 13vw, 4rem); }
  .date-emphasis__date { gap: 0.6rem; }
  .date-emphasis__date i { height: 1rem; }
  .reception-copy { text-align: center; }
  .calendar-header { font-size: 1.18rem; }
  .lightbox-inner { min-height: 72vh; padding-inline: 2.6rem; }
  .lightbox-nav { width: 2.35rem; height: 2.35rem; }
  .lightbox-nav--prev { left: 0.42rem; }
  .lightbox-nav--next { right: 0.42rem; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
  .petal-field { display: none; }
}
