:root {
  --paper: #f6f0e7;
  --paper-deep: #eee4d6;
  --ink: #2d2925;
  --muted: #746c64;
  --wine: #7f4b4d;
  --wine-dark: #5f3639;
  --sage: #7a8772;
  --gold: #b89a6f;
  --line: rgba(45, 41, 37, 0.14);
  --white: #fffdf9;
  --shadow: 0 28px 80px rgba(54, 43, 34, 0.12);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 12%, rgba(184, 154, 111, .12), transparent 28rem),
    radial-gradient(circle at 92% 35%, rgba(127, 75, 77, .08), transparent 30rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.lang-pending { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; width: 100%; }
address { font-style: normal; }
::selection { background: rgba(127, 75, 77, .22); }

.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 30;
}
.petal {
  position: absolute;
  top: -8vh;
  width: 11px;
  height: 7px;
  border-radius: 80% 20% 70% 30%;
  background: rgba(127, 75, 77, .22);
  filter: blur(.1px);
  animation: petalFall var(--fall, 14s) linear infinite;
  animation-delay: var(--delay, 0s);
  left: var(--left, 50%);
  transform: rotate(var(--rotate, 0deg));
}
@keyframes petalFall {
  0% { transform: translate3d(0,-8vh,0) rotate(0deg); opacity: 0; }
  12% { opacity: .55; }
  50% { transform: translate3d(40px,52vh,0) rotate(190deg); }
  100% { transform: translate3d(-30px,110vh,0) rotate(380deg); opacity: 0; }
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.92) 0 12rem, rgba(246,240,231,.8) 32rem, rgba(238,228,214,.98) 100%),
    var(--paper);
  transition: opacity .75s ease, visibility .75s ease;
}
.language-gate::before,
.language-gate::after {
  content: "";
  position: absolute;
  width: min(58vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(184,154,111,.22);
  border-radius: 50%;
}
.language-gate::before { transform: translate(-37vw,-34vh); }
.language-gate::after { transform: translate(37vw,34vh); }
.language-gate.is-closing { opacity: 0; visibility: hidden; }
.gate-card {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  text-align: center;
}
.gate-monogram {
  width: 132px;
  height: 132px;
  margin: 0 auto 30px;
  border: 1px solid rgba(45,41,37,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--serif);
  font-size: 36px;
  position: relative;
}
.gate-monogram::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(184,154,111,.35);
  border-radius: 50%;
}
.gate-monogram i { color: var(--wine); font-size: 20px; font-weight: 400; }
.gate-card h1 {
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.3rem);
  letter-spacing: -.05em;
  line-height: .95;
}
.gate-copy { margin: 0 auto 32px; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.06rem; }
.gate-languages { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: min(420px, 100%); margin: 0 auto; }
.language-choice {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.language-choice:hover { transform: translateY(-2px); background: var(--ink); color: var(--white); border-color: var(--ink); }
.language-code { font-size: .7rem; letter-spacing: .15em; opacity: .6; }
.gate-note { color: var(--muted); font-size: .72rem; letter-spacing: .08em; margin-top: 22px; }
.gate-ornament { position: absolute; width: 210px; height: 320px; opacity: .22; }
.gate-ornament-left { left: -50px; bottom: -100px; border: 1px solid var(--sage); border-radius: 50% 10% 60% 20%; transform: rotate(28deg); }
.gate-ornament-right { right: -70px; top: -110px; border: 1px solid var(--wine); border-radius: 30% 70% 20% 60%; transform: rotate(-22deg); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(246,240,231,.72);
  box-shadow: 0 12px 36px rgba(54,43,34,.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
body.is-ready .site-header { opacity: 1; pointer-events: auto; }
.brand { text-decoration: none; display: flex; align-items: baseline; gap: 10px; }
.brand-mark { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -.04em; }
.brand-mark span { color: var(--wine); font-size: .8em; margin: 0 1px; }
.brand-date { font-size: .67rem; letter-spacing: .12em; color: var(--muted); }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 38px); }
.site-nav a {
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--wine); }
.lang-switch {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: .7rem;
  letter-spacing: .12em;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(246,240,231,.2), rgba(246,240,231,.25)),
    radial-gradient(circle at calc(50% + var(--mx, 0px)) calc(46% + var(--my, 0px)), rgba(255,255,255,.95) 0 5rem, rgba(255,255,255,.28) 22rem, transparent 42rem);
}
.hero-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .42;
  animation: aura 10s ease-in-out infinite alternate;
}
.hero-aura-one { width: 35vw; height: 35vw; min-width: 320px; min-height: 320px; background: rgba(127,75,77,.12); left: -14vw; top: 18vh; }
.hero-aura-two { width: 30vw; height: 30vw; min-width: 280px; min-height: 280px; background: rgba(122,135,114,.12); right: -10vw; bottom: 6vh; animation-delay: -4s; }
@keyframes aura { from { transform: scale(.94) translateY(-8px); } to { transform: scale(1.08) translateY(12px); } }
.hero-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(184,154,111,.24);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.orbit-one { width: min(68vw, 760px); aspect-ratio: 1; animation: rotateOrbit 32s linear infinite; }
.orbit-two { width: min(50vw, 560px); aspect-ratio: 1; border-style: dashed; animation: rotateOrbit 45s linear infinite reverse; }
@keyframes rotateOrbit { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; text-align: center; width: min(980px, 100%); }
.eyebrow {
  margin: 0 0 12px;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
}
.hero-kicker { color: var(--sage); }
.hero-rings { position: relative; width: 65px; height: 35px; margin: 18px auto 8px; }
.hero-rings span {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  top: 0;
}
.hero-rings span:first-child { left: 9px; }
.hero-rings span:last-child { right: 9px; }
.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 13vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .72;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title span { display: block; }
.hero-title i {
  color: var(--wine);
  font-weight: 400;
  font-size: .37em;
  line-height: .9;
  margin: .18em 0 .1em;
  letter-spacing: 0;
}
.hero-subtitle { margin: 34px 0 0; font-family: var(--serif); font-size: clamp(1.25rem,2vw,1.7rem); font-style: italic; color: var(--muted); }
.hero-date { margin: 22px auto 30px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero-date strong { color: var(--ink); font-size: .8rem; font-weight: 700; }
.button {
  border: 0;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease, opacity .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--wine); color: var(--white); box-shadow: 0 14px 34px rgba(127,75,77,.18); }
.button-primary:hover { background: var(--wine-dark); }
.button-arrow {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.button-quiet { border: 1px solid var(--line); background: transparent; color: var(--ink); }
.button-quiet:hover { background: var(--ink); color: var(--white); }
.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--muted);
  gap: 6px;
}
.hero-scroll span { width: 1px; height: 35px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.hero-scroll small { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }
@keyframes scrollPulse { 50% { transform: scaleY(.55); transform-origin: top; opacity: .45; } }

.section { padding: clamp(88px, 10vw, 150px) 24px; position: relative; }
.section-shell { width: min(1120px, 100%); margin: 0 auto; }
.section-number { margin: 0 0 16px; color: var(--gold); font-family: var(--serif); font-style: italic; font-size: .95rem; }
.section-heading { max-width: 700px; margin-bottom: 56px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2,
.editorial h2,
.menu-copy h2,
.photo-intro h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.4vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}
.section-heading p:not(.eyebrow):not(.section-number) { color: var(--muted); max-width: 630px; }

.love-note { background: var(--ink); color: var(--white); overflow: hidden; }
.love-note::after { content: "amore"; position: absolute; right: -1vw; bottom: -4vw; font-family: var(--serif); font-style: italic; font-size: clamp(8rem,22vw,22rem); color: rgba(255,255,255,.025); line-height: .8; }
.editorial { display: grid; grid-template-columns: .24fr 1fr; gap: 40px; position: relative; z-index: 1; }
.editorial .section-number { color: rgba(255,255,255,.45); }
.editorial-copy { max-width: 800px; }
.editorial .eyebrow { color: #c9b18d; }
.editorial .lead { max-width: 650px; color: rgba(255,255,255,.68); font-size: 1.06rem; }
.signature { margin-top: 42px; font-family: var(--serif); font-style: italic; font-size: clamp(2rem,4vw,3.5rem); color: #e8d9c3; }
.signature span { color: #b67a7c; font-size: .65em; margin: 0 .14em; }

.countdown-section { background: var(--paper-deep); overflow: hidden; }
.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: 930px;
  margin: 0 auto;
  padding: 30px 0;
}
.countdown-unit { text-align: center; }
.countdown-unit strong { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(3rem,7vw,6.2rem); line-height: 1; letter-spacing: -.06em; }
.countdown-unit span { display: block; margin-top: 11px; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; }
.countdown-separator { color: var(--gold); font-family: var(--serif); font-size: 2rem; opacity: .65; }

.day-section { overflow: hidden; }
.timeline { max-width: 850px; margin-left: auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 38px; top: 38px; bottom: 38px; width: 1px; background: linear-gradient(var(--gold), rgba(184,154,111,.12)); }
.timeline-item { display: grid; grid-template-columns: 76px 1fr; gap: 28px; position: relative; padding: 22px 0 48px; }
.timeline-index {
  width: 76px; height: 76px; border-radius: 50%; background: var(--paper); border: 1px solid rgba(184,154,111,.5);
  display: grid; place-items: center; color: var(--wine); font-family: var(--serif); font-style: italic; position: relative; z-index: 1;
}
.timeline-body { padding-top: 3px; }
.timeline-time { margin: 0 0 5px; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.timeline-body h3 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 400; }
.timeline-body p:not(.timeline-time) { margin: 0 0 10px; color: var(--muted); }
.timeline-place { display: inline-block; font-size: .73rem; letter-spacing: .09em; text-transform: uppercase; color: var(--wine); }

.locations-section { background: #e9e3d8; overflow: hidden; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,54px); align-items: start; }
.location-card { background: rgba(255,253,249,.78); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.location-card-offset { margin-top: 90px; }
.location-photo { height: clamp(340px,44vw,540px); position: relative; overflow: hidden; }
.location-photo img { height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.location-card:hover .location-photo img { transform: scale(1.035); }
.photo-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(35,29,24,.25)); pointer-events: none; }
.location-badge { position: absolute; top: 20px; left: 20px; background: rgba(246,240,231,.88); backdrop-filter: blur(10px); padding: 9px 13px; border-radius: 999px; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.location-content { padding: 30px 30px 34px; }
.location-content h3 { margin: 0 0 13px; font-family: var(--serif); font-size: clamp(2rem,3vw,3rem); font-weight: 400; letter-spacing: -.03em; }
.location-content p:not(.eyebrow) { color: var(--muted); }
.location-content address { margin: 22px 0 17px; font-size: .82rem; color: var(--ink); }
.text-link { display: inline-flex; gap: 9px; align-items: center; text-decoration: none; color: var(--wine); font-size: .79rem; font-weight: 700; }
.text-link span:last-child { transition: transform .2s ease; }
.text-link:hover span:last-child { transform: translate(3px,-3px); }

.menu-section { background: #9a8e79; color: var(--white); overflow: hidden; }
.menu-shell { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; min-height: 560px; gap: 60px; }
.menu-copy { max-width: 650px; }
.menu-copy .section-number, .menu-copy .eyebrow { color: #f0dfbf; }
.menu-copy p:not(.eyebrow):not(.section-number) { color: rgba(255,255,255,.72); }
.menu-flower { display: grid; place-items: center; opacity: .58; }
.menu-flower svg { width: min(290px,70%); fill: none; stroke: #f3e6cf; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.menu-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.menu-tags span { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 9px 13px; font-size: .72rem; color: rgba(255,255,255,.86); }

.rsvp-section { background: var(--paper); }
.rsvp-shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px,7vw,90px); align-items: start; }
.rsvp-shell .section-heading { position: sticky; top: 120px; }
.rsvp-form {
  background: var(--white);
  border: 1px solid rgba(45,41,37,.08);
  border-radius: var(--radius);
  padding: clamp(24px,4vw,46px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 16px; }
.form-row-two { grid-template-columns: 1fr 1fr; }
label > span, .attendance-fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
}
label small, .attendance-fieldset small { font-weight: 400; color: var(--muted); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fcfaf6;
  color: var(--ink);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: rgba(127,75,77,.62); box-shadow: 0 0 0 4px rgba(127,75,77,.08); background: #fff; }
.attendance-fieldset { margin: 30px 0 34px; padding: 0; border: 0; }
.attendance-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.choice-card:hover { transform: translateY(-1px); }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-dot { flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(45,41,37,.4); margin-top: 2px; display: grid; place-items: center; }
.choice-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wine); transform: scale(0); transition: transform .2s ease; }
.choice-card:has(input:checked) { border-color: rgba(127,75,77,.55); background: rgba(127,75,77,.045); }
.choice-card:has(input:checked) .choice-dot::after { transform: scale(1); }
.choice-card strong { display: block; font-size: .83rem; }
.choice-card small { display: block; margin-top: 3px; font-size: .72rem; }
.guest-area { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; margin-bottom: 30px; }
.guest-area.is-hidden { display: none; }
.guest-area-head { display: flex; justify-content: space-between; gap: 18px; align-items: flex-end; margin-bottom: 18px; }
.guest-area-head h3 { margin: 0; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.guest-list { display: grid; gap: 12px; }
.guest-card { padding: 18px; border-radius: 18px; background: #f8f4ee; border: 1px solid rgba(45,41,37,.07); }
.guest-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.guest-heading { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.guest-remove { border: 0; background: transparent; color: var(--muted); font-size: 1.35rem; cursor: pointer; line-height: 1; }
.form-message { display: block; }
.privacy-note { margin: 16px 0 0; color: var(--muted); font-size: .68rem; }
.form-submit-row { display: flex; align-items: center; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.form-status { margin: 0; color: var(--muted); font-size: .76rem; }
.form-status.success { color: #48704c; }
.form-status.error { color: #9a4547; }
.button:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.photos-section { background: var(--ink); color: var(--white); overflow: hidden; }
.photo-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(42px,7vw,90px); align-items: center; }
.photo-intro .section-number, .photo-intro .eyebrow { color: #cbb188; }
.photo-intro p:not(.eyebrow):not(.section-number) { color: rgba(255,255,255,.64); max-width: 520px; }
.upload-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); padding: clamp(18px,3vw,30px); }
.upload-dropzone {
  width: 100%;
  min-height: 270px;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
  color: var(--white);
  cursor: pointer;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.upload-dropzone:hover, .upload-dropzone.is-dragging { border-color: #d3b987; background: rgba(255,255,255,.055); transform: translateY(-2px); }
.upload-icon { width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; margin-bottom: 18px; font-size: 1.5rem; color: #d3b987; }
.upload-dropzone strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.upload-dropzone small { color: rgba(255,255,255,.5); margin-top: 6px; }
.upload-files { display: grid; gap: 7px; margin: 14px 0; }
.upload-file { display: flex; justify-content: space-between; gap: 12px; font-size: .72rem; color: rgba(255,255,255,.7); background: rgba(255,255,255,.045); padding: 8px 10px; border-radius: 10px; }
.upload-file span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.upload-submit { width: 100%; margin-top: 5px; }
.upload-card .form-status { margin-top: 12px; color: rgba(255,255,255,.6); }
.upload-card .form-status.success { color: #a9d4ae; }
.upload-card .form-status.error { color: #e5a8aa; }

.faq-section { background: var(--paper-deep); }
.faq-shell { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px,7vw,90px); }
.faq-list details { border-bottom: 1px solid rgba(45,41,37,.14); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; font-family: var(--serif); font-size: clamp(1.25rem,2vw,1.7rem); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { font-family: var(--sans); font-style: normal; font-size: 1rem; color: var(--wine); transition: transform .25s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { margin: -4px 48px 22px 0; color: var(--muted); max-width: 650px; }

.site-footer { padding: 90px 24px 40px; text-align: center; background: #efe7dc; }
.footer-monogram { font-family: var(--serif); font-size: 3.3rem; }
.footer-monogram span { color: var(--wine); font-size: .65em; }
.footer-date { font-size: .7rem; letter-spacing: .2em; color: var(--gold); }
.site-footer > p:not(.footer-date):not(.photo-credits) { color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.footer-language { margin: 26px 0 22px; display: flex; gap: 9px; justify-content: center; color: var(--muted); }
.footer-language button { border: 0; background: transparent; color: inherit; cursor: pointer; padding: 0; font-size: .72rem; }
.footer-language button:hover { color: var(--wine); }
.photo-credits { max-width: 760px; margin: 0 auto; font-size: .6rem; color: rgba(45,41,37,.45); }
.photo-credits a { color: inherit; }

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

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .rsvp-shell, .photo-shell, .faq-shell { grid-template-columns: 1fr; }
  .rsvp-shell .section-heading { position: static; }
  .location-grid { gap: 20px; }
  .location-card-offset { margin-top: 50px; }
  .menu-shell { grid-template-columns: .55fr 1.45fr; }
}
@media (max-width: 700px) {
  .section { padding-left: 18px; padding-right: 18px; }
  .site-header { top: 10px; width: calc(100% - 20px); padding-left: 14px; }
  .brand-date { display: none; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-title { font-size: clamp(4rem,22vw,7.2rem); line-height: .77; }
  .hero-date { max-width: 280px; }
  .orbit-one { width: 118vw; }
  .orbit-two { width: 90vw; }
  .editorial { grid-template-columns: 1fr; gap: 12px; }
  .editorial .section-number { margin-bottom: 0; }
  .countdown { grid-template-columns: repeat(4,1fr); gap: 6px; }
  .countdown-separator { display: none; }
  .countdown-unit strong { font-size: clamp(2.6rem,13vw,4.3rem); }
  .countdown-unit span { letter-spacing: .06em; font-size: .58rem; }
  .timeline { margin-left: 0; }
  .timeline::before { left: 27px; }
  .timeline-item { grid-template-columns: 54px 1fr; gap: 18px; padding-bottom: 38px; }
  .timeline-index { width: 54px; height: 54px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card-offset { margin-top: 0; }
  .location-photo { height: 390px; }
  .location-content { padding: 24px; }
  .menu-shell { grid-template-columns: 1fr; gap: 10px; min-height: 0; }
  .menu-flower { order: 2; height: 180px; overflow: hidden; }
  .menu-flower svg { width: 150px; }
  .form-row-two, .attendance-options { grid-template-columns: 1fr; }
  .guest-area-head { align-items: flex-start; flex-direction: column; }
  .guest-area-head .button { width: 100%; }
  .rsvp-form { border-radius: 22px; }
  .upload-dropzone { min-height: 230px; }
  .gate-languages { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .hero-title { font-size: 4.25rem; }
  .countdown-unit span { font-size: .5rem; }
  .location-photo { height: 340px; }
  .form-submit-row .button { width: 100%; }
}
@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; }
  .petals { display: none; }
}
