@import "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Lavishly+Yours&family=Oooh+Baby&family=Parisienne&display=swap";

/* src/styles.css */
:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-display:
    "Cormorant Garamond",
    Georgia,
    "Times New Roman",
    serif;
  --font-script:
    "Oooh Baby",
    "Lavishly Yours",
    "Parisienne",
    "Brush Script MT",
    cursive;
  --midnight: #123732;
  --midnight-2: #1d5a4f;
  --ink: #123732;
  --soft-ink: #526f67;
  --muted: #8e7161;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --vellum: rgba(255, 255, 255, 0.84);
  --green: #007f73;
  --green-2: #00bfa6;
  --emerald: #007f73;
  --emerald-soft: #00a892;
  --gold: #f0a832;
  --gold-2: #ffd977;
  --champagne: #ffe99a;
  --champagne-soft: #fff5c8;
  --aura: #69f3d9;
  --aura-strong: #12c9ae;
  --garden: #f2fff9;
  --daylight: #fffdf8;
  --daylight-2: #fff1f7;
  --blush: #ff9ab7;
  --moon: #fff7d6;
  --rose: #d91f68;
  --coral: #ff6f91;
  --wine: #8f2450;
  --blue: #5c8ed9;
  --lilac: #c9b7ff;
  --pearl: #fffefa;
  --parchment: #fffdf8;
  --parchment-ink: #1e1730;
  --parchment-muted: #74695d;
  --line: rgba(31, 71, 61, 0.1);
  --line-strong: rgba(31, 71, 61, 0.18);
  --shadow: 0 30px 92px rgba(111, 74, 54, 0.13);
  --shadow-soft: 0 18px 48px rgba(111, 74, 54, 0.09);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--daylight);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
#rsvp,
#host,
#guest-update,
#guide,
#camera,
#details,
#venue-directions,
#memory-wall,
#faq {
  scroll-margin-top: 82px;
}
body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(
      90deg,
      rgba(201, 134, 24, 0.035) 1px,
      transparent 1px) 0 0 / 160px 160px,
    linear-gradient(
      180deg,
      transparent 0 97%,
      rgba(255, 214, 227, 0.08) 97% 100%) 0 0 / 100% 420px,
    linear-gradient(
      180deg,
      #fffefa 0%,
      #fff1f7 26%,
      #f2fff9 56%,
      #fff9df 81%,
      #ffffff 100%);
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(217, 31, 104, 0.34) 0 1px,
      transparent 2px),
    radial-gradient(
      circle at 62% 8%,
      rgba(255, 217, 119, 0.5) 0 1px,
      transparent 2px),
    radial-gradient(
      circle at 86% 34%,
      rgba(0, 191, 166, 0.3) 0 1px,
      transparent 2px),
    radial-gradient(
      circle at 28% 72%,
      rgba(201, 183, 255, 0.32) 0 1px,
      transparent 2px);
  background-size:
    220px 220px,
    340px 340px,
    280px 280px,
    390px 390px;
  opacity: 0.75;
  pointer-events: none;
  animation: starDrift 18s linear infinite;
}
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(
      120deg,
      rgba(0, 191, 166, 0.15),
      transparent 34%),
    linear-gradient(
      280deg,
      rgba(217, 31, 104, 0.13),
      transparent 42%),
    linear-gradient(
      35deg,
      rgba(201, 183, 255, 0.12),
      transparent 40%),
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.4),
      rgba(255, 255, 255, 0.64));
  pointer-events: none;
}
body.modal-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus-visible {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 44px;
  padding: 0 14px;
  clip: auto;
  border: 1px solid rgba(214, 159, 47, 0.26);
  border-radius: var(--radius);
  background: var(--champagne);
  color: #2c2718;
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  letter-spacing: 0;
}
.album-site {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: var(--ink);
}
.album-site::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      ellipse at 50% 0%,
      transparent 0 47%,
      rgba(201, 134, 24, 0.07) 47.4% 47.9%,
      transparent 48.3%) 0 0 / 360px 220px,
    linear-gradient(
      90deg,
      transparent 0 49.8%,
      rgba(201, 134, 24, 0.045) 49.8% 50%,
      transparent 50%);
  background-size: 360px 220px, 100% 460px;
  opacity: 0.24;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 8px max(18px, env(safe-area-inset-left)) 8px max(18px, env(safe-area-inset-right));
  border-bottom: 1px solid rgba(243, 178, 62, 0.22);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 60px rgba(111, 74, 54, 0.08);
  backdrop-filter: blur(20px);
}
.brand-lockup,
.site-nav,
.header-action,
.primary-button,
.secondary-button,
.icon-button,
.secondary-icon-button,
.action-button {
  display: inline-flex;
  align-items: center;
}
.brand-lockup {
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}
.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(243, 178, 62, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--wine);
  font-family: var(--font-script);
  font-size: 1rem;
  line-height: 1;
  box-shadow: inset 0 0 0 5px rgba(255, 229, 138, 0.2), 0 0 30px rgba(217, 31, 104, 0.24);
}
.brand-mark::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(243, 178, 62, 0.32);
  border-radius: inherit;
  content: "";
}
.site-nav {
  justify-content: center;
  gap: 2px;
  height: 34px;
  padding: 2px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--soft-ink);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
}
.mobile-quick-nav {
  display: none;
}
.header-action {
  justify-self: end;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(243, 178, 62, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 245, 200, 0.94) 54%,
      rgba(255, 221, 232, 0.92)),
    #fffefa;
  color: #35220f;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 10px 26px rgba(111, 74, 54, 0.08),
    0 0 28px rgba(217, 31, 104, 0.16);
}
.opening-chapter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1.28fr);
  align-items: stretch;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto 72px;
  padding: 0;
  isolation: isolate;
}
.opening-chapter::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(18, 55, 50, 0.52) 0%,
      rgba(18, 55, 50, 0.25) 34%,
      rgba(255, 253, 248, 0.18) 63%,
      rgba(255, 233, 154, 0.2) 100%),
    linear-gradient(
      120deg,
      rgba(217, 31, 104, 0.14),
      transparent 38%),
    linear-gradient(
      300deg,
      rgba(105, 243, 217, 0.14),
      transparent 48%),
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.02),
      rgba(255, 253, 248, 0.08) 54%,
      rgba(18, 55, 50, 0.14) 100%);
}
.opening-chapter.together-opening::before {
  background:
    linear-gradient(
      90deg,
      rgba(18, 55, 50, 0.72) 0%,
      rgba(18, 55, 50, 0.46) 34%,
      rgba(18, 55, 50, 0.04) 58%,
      rgba(255, 253, 248, 0.02) 100%),
    linear-gradient(
      120deg,
      rgba(217, 31, 104, 0.1),
      transparent 36%),
    linear-gradient(
      300deg,
      rgba(255, 224, 138, 0.08),
      transparent 44%),
    linear-gradient(
      180deg,
      rgba(18, 55, 50, 0.04),
      rgba(18, 55, 50, 0.1) 100%);
}
.opening-chapter::after {
  position: absolute;
  inset: 92px clamp(18px, 4vw, 52px) 34px;
  z-index: 4;
  border: 1px solid rgba(255, 244, 199, 0.58);
  border-radius: 18px 18px 8px 8px;
  clip-path: polygon(0 16%, 50% 0, 100% 16%, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}
.chapter-constellation {
  position: absolute;
  inset: 104px auto auto 28%;
  z-index: 3;
  width: 230px;
  height: 96px;
  opacity: 0.75;
  pointer-events: none;
}
.chapter-constellation::before,
.chapter-constellation::after {
  position: absolute;
  inset: 50% auto auto 10px;
  width: 210px;
  height: 1px;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 224, 138, 0.54),
      rgba(166, 245, 226, 0.44),
      transparent);
  transform: rotate(-13deg);
}
.chapter-constellation::after {
  width: 130px;
  transform: translate(52px, 18px) rotate(18deg);
}
.chapter-constellation span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fffdf8;
  box-shadow: 0 0 14px rgba(255, 248, 221, 0.86), 0 0 28px rgba(255, 224, 138, 0.22);
}
.chapter-constellation span:nth-child(1) {
  left: 10px;
  top: 44px;
}
.chapter-constellation span:nth-child(2) {
  left: 78px;
  top: 28px;
}
.chapter-constellation span:nth-child(3) {
  left: 144px;
  top: 48px;
}
.chapter-constellation span:nth-child(4) {
  left: 204px;
  top: 20px;
}
.opening-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: min(100%, 760px);
  min-width: 0;
  min-height: 100svh;
  padding: 118px 0 clamp(112px, 10vw, 144px) clamp(24px, 7vw, 86px);
}
.opening-copy::before {
  position: absolute;
  top: 22%;
  bottom: 16%;
  left: 0;
  width: 1px;
  content: "";
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(167, 240, 218, 0.42),
      transparent);
}
.kicker,
.chapter-heading span,
.planning-metrics span,
.detail-panel-head span,
.guest-detail-list dt,
.event-fact > div > span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker {
  margin-bottom: 18px;
}
.opening-copy h1 {
  overflow-wrap: anywhere;
  max-width: 700px;
  color: #fffefa;
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 10vw, 11.6rem);
  font-weight: 600;
  line-height: 0.84;
  text-shadow: 0 12px 46px rgba(0, 0, 0, 0.38);
}
.opening-copy h1 span {
  display: block;
}
.hero-script,
.chapter-script,
.story-script {
  color: var(--champagne);
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.hero-script {
  max-width: 520px;
  margin-top: 0;
  font-size: clamp(2.25rem, 3.1vw, 3.9rem);
  line-height: 0.95;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.42);
  transform: rotate(-3deg);
}
.event-line {
  margin-top: 28px;
  color: #ffeaf1;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.opening-note {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 1.1rem;
  line-height: 1.76;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 640px;
  margin-top: 24px;
}
.invitation-seal {
  position: absolute;
  top: clamp(122px, 16vw, 182px);
  left: clamp(360px, 38vw, 560px);
  display: grid;
  width: clamp(78px, 8vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 244, 199, 0.68);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.34);
  color: #fffaf0;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.16),
    0 0 42px rgba(255, 224, 138, 0.22);
  transform: rotate(5deg);
}
.invitation-seal::before,
.invitation-seal::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 244, 199, 0.44);
  border-radius: inherit;
  content: "";
}
.invitation-seal::after {
  inset: -9px;
  border-color: rgba(255, 244, 199, 0.26);
}
.invitation-seal span {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 600;
  line-height: 0.75;
}
.invitation-seal small {
  margin-top: -8px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-facts span {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 244, 199, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.24);
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.8rem;
  font-weight: 850;
}
.opening-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.domain-easter-egg {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.55;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}
.domain-easter-egg span {
  display: inline-flex;
  margin-right: 8px;
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.domain-easter-egg a {
  color: #fffefa;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(255, 224, 138, 0.58);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.signature-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: #f1fff8;
  box-shadow: none;
  isolation: isolate;
}
.signature-photo::before {
  position: absolute;
  inset: 88px clamp(18px, 4vw, 52px) 34px;
  z-index: 2;
  border: 1px solid rgba(255, 244, 199, 0.58);
  border-radius: 18px 18px 8px 8px;
  clip-path: polygon(0 16%, 50% 0, 100% 16%, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}
.signature-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(18, 55, 50, 0.22),
      transparent 48%),
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.02),
      rgba(255, 233, 154, 0.08)),
    linear-gradient(
      120deg,
      rgba(105, 243, 217, 0.18),
      transparent 34%),
    linear-gradient(
      300deg,
      rgba(217, 31, 104, 0.14),
      transparent 42%);
}
.signature-photo picture,
.hero-portrait-grid,
.signature-photo img,
.portrait-panel img,
.closing-photo img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-portrait-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}
.hero-portrait-grid.single-portrait {
  grid-template-columns: minmax(0, 1fr);
}
.signature-photo img,
.portrait-panel img,
.closing-photo img {
  object-fit: cover;
}
.signature-photo img {
  object-position: 50% 50%;
  filter: saturate(1.2) contrast(1.02) brightness(1.13);
}
.hero-portrait-grid img:first-child {
  object-position: 35% 47%;
}
.hero-portrait-grid img:last-child {
  object-position: 44% 50%;
}
.hero-portrait-grid.together-hero img {
  object-position: 58% 50%;
  filter: saturate(1.08) contrast(1.08) brightness(0.94);
}
.hero-portrait-grid.together-hero.hero-bright img {
  object-position: 50% 45%;
  filter: saturate(1.08) contrast(1.03) brightness(1.03);
}
.hero-portrait-grid.together-hero.hero-outdoor img {
  object-position: 50% 48%;
  filter: saturate(1.12) contrast(1.02) brightness(0.98);
}
.hero-portrait-grid.francis-corner-hero img {
  object-position: 52% 43%;
}
.hero-portrait-grid.carmen-corner-hero img {
  object-position: 44% 43%;
}
.opening-card {
  position: absolute;
  right: clamp(20px, 4vw, 62px);
  bottom: 42px;
  z-index: 6;
  width: min(426px, calc(100% - 36px));
}
.hero-preview-switcher {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 28px;
  z-index: 6;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 244, 199, 0.32);
  border-radius: var(--radius);
  background: rgba(20, 28, 26, 0.42);
  backdrop-filter: blur(16px);
}
.hero-preview-switcher a {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.74rem;
  font-weight: 940;
}
.hero-preview-switcher a.selected {
  background: rgba(255, 253, 248, 0.88);
  color: var(--emerald);
}
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(214, 159, 47, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}
.language-toggle button {
  min-width: 42px;
  min-height: 34px;
  padding: 0 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--soft-ink);
  font-size: 0.74rem;
  font-weight: 950;
}
.language-toggle button.selected {
  background: var(--emerald);
  color: #fffefa;
}
.language-toggle.compact {
  padding: 2px;
}
.language-toggle.compact button {
  min-width: 36px;
  min-height: 32px;
  padding: 0 6px;
}
.primary-button,
.secondary-button,
.icon-button,
.secondary-icon-button,
.action-button {
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 950;
  transition:
    transform 160ms var(--ease),
    box-shadow 160ms var(--ease),
    background-color 160ms var(--ease),
    border-color 160ms var(--ease);
}
.primary-button {
  padding: 0 16px;
  border: 1px solid rgba(146, 48, 79, 0.2);
  background: var(--rose);
  color: #fffefa;
  box-shadow:
    inset 0 -2px 0 rgba(146, 48, 79, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 14px 32px rgba(217, 31, 104, 0.24),
    0 0 0 4px rgba(255, 233, 154, 0.18);
}
.secondary-button {
  padding: 0 16px;
  border: 1px solid rgba(243, 178, 62, 0.24);
  background: rgba(255, 255, 255, 0.84);
  color: var(--emerald);
  box-shadow: inset 0 0 0 1px rgba(255, 229, 138, 0.12), 0 12px 26px rgba(79, 58, 40, 0.06);
}
.guest-chapter,
.guest-guide-chapter,
.night-camera-chapter,
.story-chapter,
.details-chapter,
.faq-chapter,
.final-chapter {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.guest-chapter {
  padding: 40px 0 92px;
}
.chapter-heading {
  display: grid;
  gap: 12px;
  max-width: 790px;
}
.chapter-heading h2,
.story-copy h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.4vw, 5.9rem);
  font-weight: 600;
  line-height: 0.96;
}
.chapter-script {
  margin-top: -4px;
  color: var(--rose);
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  line-height: 0.95;
}
.guest-layout,
.rsvp-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 32px;
}
.rsvp-workspace {
  width: min(860px, 100%);
}
.lookup-panel,
.guest-update-panel,
.planning-detail-panel,
.empty-detail {
  border: 1px solid rgba(243, 178, 62, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(
      120deg,
      rgba(255, 214, 227, 0.28),
      transparent 42%),
    linear-gradient(
      310deg,
      rgba(201, 183, 255, 0.14),
      transparent 34%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 253, 248, 0.92)),
    #ffffff;
  color: var(--parchment-ink);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.lookup-panel {
  position: relative;
  padding: 18px;
  overflow: hidden;
  animation: rsvpReveal 260ms var(--ease) both;
}
.lookup-panel::before,
.guest-update-panel::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(214, 159, 47, 0.12);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}
.lookup-panel::after,
.guest-update-panel::after {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 0;
  color: rgba(217, 31, 104, 0.14);
  content: "F+C";
  font-family: var(--font-script);
  font-size: 3.2rem;
  line-height: 1;
  pointer-events: none;
}
.lookup-panel > *,
.guest-update-panel > * {
  position: relative;
  z-index: 1;
}
.lookup-panel.compact {
  background: rgba(255, 253, 248, 0.94);
}
.rsvp-intent-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(0, 127, 115, 0.14);
  border-radius: var(--radius);
  background: rgba(242, 255, 249, 0.7);
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
}
.rsvp-intent-note svg {
  flex: 0 0 auto;
  margin-top: 1px;
}
.rsvp-entry-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(255, 233, 154, 0.22),
      transparent 28%),
    rgba(18, 55, 50, 0.38);
  backdrop-filter: blur(12px);
  animation: reveal 220ms var(--ease) both;
}
.rsvp-entry-modal {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  overflow: hidden;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(214, 159, 47, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(
      120deg,
      rgba(255, 214, 227, 0.24),
      transparent 46%),
    linear-gradient(
      315deg,
      rgba(255, 233, 154, 0.3),
      transparent 42%),
    rgba(255, 253, 248, 0.97);
  color: var(--parchment-ink);
  box-shadow: 0 28px 90px rgba(31, 23, 48, 0.22);
}
.cancellation-confirmation {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 100%;
  padding: 12px;
  border: 1px solid rgba(217, 31, 104, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 214, 227, 0.28);
}
.cancellation-confirmation span {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.cancellation-confirmation strong {
  color: var(--ink);
  font-size: 1rem;
}
.cancellation-confirmation p {
  color: var(--soft-ink);
  font-size: 0.82rem;
  line-height: 1.4;
}
.rsvp-entry-modal::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(214, 159, 47, 0.14);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}
.rsvp-entry-modal::after {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: rgba(217, 31, 104, 0.13);
  content: "F+C";
  font-family: var(--font-script);
  font-size: 4rem;
  line-height: 1;
  pointer-events: none;
}
.rsvp-entry-modal > * {
  position: relative;
  z-index: 1;
}
.rsvp-entry-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(214, 159, 47, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--soft-ink);
}
.rsvp-entry-eyebrow {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rsvp-entry-modal h2 {
  max-width: 390px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 650;
  line-height: 0.92;
}
.rsvp-entry-modal p {
  max-width: 420px;
  color: var(--soft-ink);
  font-size: 0.98rem;
  line-height: 1.55;
}
.rsvp-entry-form {
  display: grid;
  gap: 8px;
}
.rsvp-entry-form label {
  color: var(--parchment-ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rsvp-entry-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.rsvp-entry-form input {
  min-height: 44px;
  border: 1px solid rgba(214, 159, 47, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
}
.rsvp-entry-form input::placeholder {
  color: rgba(56, 45, 31, 0.48);
}
.rsvp-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.rsvp-entry-actions .secondary-button {
  box-shadow: none;
}
.rsvp-entry-skip {
  justify-self: start;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.saved-rsvp-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(214, 159, 47, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 95% 12%,
      rgba(255, 233, 154, 0.34),
      transparent 28%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 253, 248, 0.78));
  box-shadow: 0 16px 36px rgba(111, 74, 54, 0.08);
}
.saved-rsvp-card span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.saved-rsvp-card h3 {
  margin-top: 4px;
  color: var(--parchment-ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 0.98;
}
.saved-rsvp-card p {
  margin-top: 7px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 850;
}
.saved-rsvp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.rsvp-note-strip,
.rsvp-summary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rsvp-note-strip span,
.rsvp-summary-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(21, 82, 70, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 680;
  transition:
    border-color 170ms var(--ease),
    background-color 170ms var(--ease),
    transform 170ms var(--ease);
}
.rsvp-summary-strip {
  margin-bottom: 2px;
}
.rsvp-summary-strip.calm {
  padding: 6px 0 2px;
}
.rsvp-summary-strip span {
  background: rgba(255, 246, 209, 0.34);
  color: var(--parchment-ink);
}
.rsvp-summary-strip span.complete {
  border-color: rgba(21, 127, 105, 0.18);
  background: rgba(166, 245, 226, 0.28);
  color: var(--emerald);
}
.rsvp-summary-strip span.pending {
  border-color: rgba(217, 31, 104, 0.18);
  background: rgba(255, 214, 227, 0.34);
  color: var(--wine);
}
.rsvp-summary-strip svg {
  flex: 0 0 auto;
}
.panel-heading {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.panel-heading .panel-return {
  margin-left: auto;
  white-space: nowrap;
}
.panel-heading h2 {
  margin-bottom: 5px;
  font-size: 1.26rem;
  line-height: 1.12;
}
.panel-heading p,
.lookup-form label,
.state-block p,
.guest-result p,
.privacy-column p,
.stay-panel p,
.faq-list p,
.detail-sheet p,
.opening-note {
  color: var(--soft-ink);
}
.lookup-panel .panel-heading p,
.guest-update-panel .panel-heading p,
.lookup-panel .lookup-form label,
.lookup-panel .state-block p,
.lookup-panel .guest-result p,
.guest-update-panel .stacked-form label {
  color: var(--parchment-muted);
}
.lookup-panel .panel-heading h2,
.guest-update-panel .panel-heading h2,
.empty-detail h3,
.planning-detail-panel h3 {
  color: var(--parchment-ink);
}
.opening-copy .opening-note {
  color: rgba(255, 250, 240, 0.88);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}
.opening-copy .secondary-button {
  background: rgba(255, 253, 248, 0.26);
  color: #fff7d8;
}
.panel-heading p,
.state-block p,
.guest-result p,
.privacy-column p,
.stay-panel p,
.faq-list p,
.empty-detail p {
  font-size: 0.9rem;
  line-height: 1.55;
}
.icon-disc {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(214, 159, 47, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--emerald);
}
.wedding-glyph {
  position: relative;
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(243, 178, 62, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 68% 24%,
      rgba(255, 255, 255, 0.92),
      transparent 32%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 246, 209, 0.56));
  color: var(--emerald);
  box-shadow:
    inset 0 0 0 5px rgba(255, 229, 138, 0.12),
    0 10px 24px rgba(79, 58, 40, 0.08),
    0 0 26px rgba(217, 31, 104, 0.1);
}
.wedding-glyph::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(243, 178, 62, 0.2);
  border-radius: inherit;
  content: "";
}
.wedding-glyph > svg {
  position: relative;
  z-index: 1;
  display: block;
  stroke-width: 1.9;
}
.wedding-glyph > span {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 12px rgba(255, 229, 138, 0.72);
}
.wedding-glyph.rose {
  color: var(--wine);
  background:
    radial-gradient(
      circle at 70% 22%,
      rgba(255, 255, 255, 0.88),
      transparent 30%),
    linear-gradient(
      135deg,
      rgba(255, 214, 224, 0.8),
      rgba(255, 246, 209, 0.5));
}
.wedding-glyph.gold {
  color: #8a5a0b;
  background:
    radial-gradient(
      circle at 70% 22%,
      rgba(255, 255, 255, 0.9),
      transparent 30%),
    linear-gradient(
      135deg,
      rgba(255, 229, 138, 0.72),
      rgba(255, 255, 255, 0.62));
}
.wedding-glyph.aura {
  color: var(--emerald);
  background:
    radial-gradient(
      circle at 70% 22%,
      rgba(255, 255, 255, 0.9),
      transparent 30%),
    linear-gradient(
      135deg,
      rgba(0, 191, 166, 0.32),
      rgba(255, 214, 227, 0.34));
}
.wedding-glyph.prompt,
.wedding-glyph.schedule {
  width: 42px;
  height: 42px;
  border-color: rgba(243, 178, 62, 0.2);
  box-shadow: inset 0 0 0 4px rgba(255, 229, 138, 0.08), 0 8px 18px rgba(79, 58, 40, 0.06);
}
.wedding-glyph.prompt > span,
.wedding-glyph.schedule > span {
  opacity: 0.72;
}
.lookup-panel .icon-disc,
.guest-update-panel .icon-disc {
  border-color: rgba(243, 178, 62, 0.26);
  background:
    linear-gradient(
      135deg,
      rgba(255, 229, 138, 0.56),
      rgba(255, 214, 227, 0.34)),
    #fffefa;
  color: var(--wine);
}
.lookup-form {
  position: relative;
  display: grid;
  gap: 8px;
}
.lookup-add-button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-self: start;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--emerald);
  font-size: 0.86rem;
  font-weight: 900;
}
.lookup-add-button svg {
  flex: 0 0 auto;
}
.lookup-form label,
.state-block label,
.stacked-form label,
.planning-tools label {
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 680;
}
.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
}
.phone-confirm-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}
.search-row input,
.phone-confirm-row input,
.stacked-form input,
.stacked-form select,
.stacked-form textarea,
.planning-tools input,
.planning-tools select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(142, 36, 68, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--parchment-ink);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}
.search-row input,
.phone-confirm-row input,
.stacked-form input,
.stacked-form select,
.planning-tools input,
.planning-tools select {
  padding: 0 13px;
}
.stacked-form textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
  line-height: 1.5;
}
input::placeholder,
textarea::placeholder {
  color: rgba(116, 95, 60, 0.72);
}
.search-row input:focus-visible,
.phone-confirm-row input:focus-visible,
.stacked-form input:focus-visible,
.stacked-form select:focus-visible,
.stacked-form textarea:focus-visible,
.photo-caption-composer input:focus-visible,
.photo-caption-composer textarea:focus-visible,
.planning-tools input:focus-visible,
.planning-tools select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(217, 31, 104, 0.32);
  outline-offset: 3px;
}
.verification-note {
  margin-top: 8px;
  color: var(--parchment-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.icon-button {
  min-width: 48px;
  border: 1px solid rgba(143, 36, 80, 0.2);
  background: var(--rose);
  color: #fffefa;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48), 0 12px 28px rgba(217, 31, 104, 0.2);
}
.secondary-icon-button {
  padding: 0 12px;
  border: 1px solid rgba(243, 178, 62, 0.26);
  background: rgba(255, 246, 209, 0.58);
  color: var(--green);
}
.primary-button:disabled,
.secondary-button:disabled,
.icon-button:disabled,
.secondary-icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}
.source-grid button {
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}
.state-block,
.guest-result {
  position: relative;
  margin-top: 16px;
  padding: 15px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}
.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 10px;
  color: var(--soft-ink);
  font-size: 0.84rem;
  font-weight: 900;
}
.status-line.green {
  color: #08705d;
}
.status-line.amber {
  color: var(--gold);
}
.status-line.muted {
  color: var(--muted);
}
.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.source-grid button {
  padding: 0 8px;
  border: 1px solid rgba(214, 159, 47, 0.2);
  background: rgba(255, 253, 248, 0.76);
  color: #244f40;
}
.source-grid button.selected,
.match-row.selected {
  border-color: rgba(217, 31, 104, 0.28);
  background: rgba(255, 214, 224, 0.46);
}
.match-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 11px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  color: var(--parchment-ink);
  text-align: left;
}
.match-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.match-row > span:last-child {
  flex: 0 0 auto;
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 900;
}
.result-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.result-main h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}
.rsvp-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.remove-rsvp-button {
  border-color: rgba(217, 31, 104, 0.2);
  color: var(--wine);
}
.remove-rsvp-button:hover {
  border-color: rgba(217, 31, 104, 0.34);
  background: rgba(255, 214, 227, 0.42);
}
.pax-chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(217, 31, 104, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 214, 224, 0.48);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
}
.table-reveal {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(214, 159, 47, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(217, 31, 104, 0.22),
      transparent 28%),
    linear-gradient(
      135deg,
      rgba(255, 242, 181, 0.92),
      rgba(255, 249, 244, 0.94));
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58), 0 18px 38px rgba(79, 58, 40, 0.12);
  animation: reveal 360ms var(--ease);
}
.table-reveal span {
  font-size: 0.88rem;
  font-weight: 900;
}
.table-reveal strong {
  color: var(--emerald);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.85;
  animation: placeRise 360ms var(--ease);
}
.locked-note {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(214, 159, 47, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 244, 199, 0.28);
  color: #365d4d;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}
.arrival-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(214, 159, 47, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 16%,
      rgba(217, 31, 104, 0.26),
      transparent 30%),
    radial-gradient(
      circle at 12% 86%,
      rgba(0, 191, 166, 0.36),
      transparent 32%),
    radial-gradient(
      circle at 58% 0%,
      rgba(201, 183, 255, 0.2),
      transparent 30%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99),
      rgba(255, 249, 244, 0.98));
  color: #18231d;
  box-shadow: 0 18px 42px rgba(79, 58, 40, 0.1);
  isolation: isolate;
  animation: passShimmer 720ms var(--ease);
}
.arrival-card::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(214, 159, 47, 0.14);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}
.arrival-card-orbit {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 132px;
  aspect-ratio: 1;
  border: 1px solid rgba(214, 159, 47, 0.34);
  border-radius: 50%;
  pointer-events: none;
}
.arrival-card-orbit span {
  position: absolute;
  border: 1px solid rgba(15, 128, 111, 0.12);
  border-radius: inherit;
}
.arrival-card-orbit span:nth-child(1) {
  inset: 16px;
}
.arrival-card-orbit span:nth-child(2) {
  inset: 32px;
}
.arrival-card-orbit span:nth-child(3) {
  top: 34px;
  left: 18px;
  width: 6px;
  height: 6px;
  border: 0;
  background: var(--champagne);
  box-shadow: 0 0 20px rgba(232, 201, 121, 0.42);
}
.arrival-card > *:not(.arrival-card-orbit) {
  position: relative;
  z-index: 1;
}
.arrival-card-head {
  display: grid;
  gap: 5px;
}
.arrival-card-head span,
.arrival-card-meta span {
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.arrival-card-head h3 {
  color: #18231d;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 0.95;
}
.arrival-card-head p {
  max-width: 420px;
  color: #566a60;
  font-size: 0.94rem;
  line-height: 1.5;
}
.arrival-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.arrival-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 7px 9px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}
.arrival-pass-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 16%,
      rgba(201, 183, 255, 0.2),
      transparent 30%),
    rgba(255, 255, 255, 0.7);
}
.arrival-pass-code > div:first-child {
  display: grid;
  gap: 5px;
}
.arrival-pass-code > div:first-child span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.arrival-pass-code strong {
  color: #18231d;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.arrival-pass-code p {
  color: #617267;
  font-size: 0.82rem;
  line-height: 1.4;
}
.arrival-pass-code button {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  width: max-content;
  padding: 0 12px;
  border: 1px solid rgba(214, 159, 47, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 950;
}
.pass-code-grid {
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.84);
}
.pass-code-grid span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(15, 128, 111, 0.12);
}
.pass-code-grid span.active {
  background: var(--emerald);
  box-shadow: 0 0 10px rgba(90, 219, 198, 0.22);
}
.arrival-guide {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}
.arrival-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  padding: 12px;
  border-top: 1px solid rgba(214, 159, 47, 0.12);
}
.arrival-step:first-child {
  border-top: 0;
}
.arrival-step::before {
  position: absolute;
  top: 46px;
  bottom: -12px;
  left: 28px;
  width: 1px;
  content: "";
  background: rgba(255, 224, 138, 0.38);
}
.arrival-step:last-child::before {
  display: none;
}
.arrival-step > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(214, 159, 47, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      rgba(0, 191, 166, 0.5),
      rgba(255, 229, 138, 0.28));
  color: var(--emerald);
  transition:
    transform 160ms var(--ease),
    border-color 160ms var(--ease),
    background-color 160ms var(--ease);
}
.arrival-step h4 {
  color: #18231d;
  font-size: 0.92rem;
  line-height: 1.2;
}
.arrival-step p {
  margin-top: 3px;
  color: #617267;
  font-size: 0.84rem;
  line-height: 1.38;
}
.arrival-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.arrival-card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  border: 1px solid rgba(214, 159, 47, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 950;
  transition:
    border-color 160ms var(--ease),
    background-color 160ms var(--ease),
    transform 160ms var(--ease);
}
.arrival-card-actions svg {
  transition: transform 160ms var(--ease);
}
.full-width {
  width: 100%;
}
.guest-update-panel {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 96px;
  padding: 18px;
  overflow: hidden;
  animation: rsvpReveal 260ms var(--ease) both;
}
.guest-update-panel.embedded {
  width: 100%;
  margin: 0;
}
.guest-guide-chapter {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 0.8fr);
  gap: 24px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 96px;
  padding: clamp(24px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(
      120deg,
      rgba(0, 191, 166, 0.2),
      transparent 36%),
    linear-gradient(
      300deg,
      rgba(217, 31, 104, 0.16),
      transparent 44%),
    linear-gradient(
      35deg,
      rgba(188, 167, 255, 0.14),
      transparent 36%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.99),
      rgba(255, 253, 248, 0.9));
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.guest-guide-chapter::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(214, 159, 47, 0.12);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}
.guide-copy,
.guide-grid,
.guide-arrival-cue,
.guide-note {
  position: relative;
  z-index: 1;
}
.guide-copy {
  display: grid;
  gap: 20px;
}
.guide-actions {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.guide-pass {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(214, 159, 47, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(201, 183, 255, 0.22),
      transparent 30%),
    linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.96),
      rgba(255, 246, 209, 0.76));
  color: var(--ink);
}
.guide-pass::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(214, 159, 47, 0.12);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}
.guide-pass > div:not(.guide-pass-mark) {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
}
.guide-pass span {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.guide-pass strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}
.guide-pass p {
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.42;
}
.guide-pass-mark {
  position: absolute;
  right: 16px;
  top: 8px;
  z-index: 0;
  color: rgba(217, 111, 132, 0.1);
  font-family: var(--font-script);
  font-size: 4.6rem;
  line-height: 1;
}
.guide-actions .action-button {
  justify-content: center;
  min-height: 46px;
  border-color: rgba(214, 159, 47, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--emerald);
  box-shadow: 0 14px 30px rgba(79, 58, 40, 0.07);
}
.guide-share-button {
  cursor: pointer;
}
.guide-arrival-cue {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(0, 127, 115, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(
      135deg,
      rgba(242, 255, 249, 0.92),
      rgba(255, 253, 248, 0.74)),
    #ffffff;
  color: var(--ink);
}
.guide-arrival-cue > svg {
  color: var(--emerald);
}
.guide-arrival-cue p {
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.45;
}
.guide-arrival-cue a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 38px;
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 950;
  white-space: nowrap;
}
.guide-orbital {
  position: absolute;
  top: -84px;
  right: clamp(20px, 8vw, 100px);
  width: 230px;
  aspect-ratio: 1;
  border: 1px solid rgba(214, 159, 47, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.guide-orbital span {
  position: absolute;
  border: 1px solid rgba(15, 128, 111, 0.1);
  border-radius: inherit;
}
.guide-orbital span:nth-child(1) {
  inset: 26px;
}
.guide-orbital span:nth-child(2) {
  inset: 58px;
}
.guide-orbital span:nth-child(3) {
  top: 74px;
  left: 34px;
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--champagne);
  box-shadow: 0 0 24px rgba(214, 159, 47, 0.34);
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.guide-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  align-content: center;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86),
      rgba(255, 249, 244, 0.78)),
    #ffffff;
}
.guide-item-label {
  grid-column: 2;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.guide-grid h3 {
  grid-column: 2;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.18;
}
.guide-grid p {
  grid-column: 2;
  color: var(--soft-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}
.guide-grid .wedding-glyph {
  grid-row: 1 / span 3;
  align-self: center;
}
.guide-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(214, 159, 47, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
}
.guide-note > svg {
  color: var(--rose);
}
.guide-note p {
  color: var(--soft-ink);
  font-size: 0.92rem;
  line-height: 1.45;
}
.guide-note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  color: var(--emerald);
  font-size: 0.84rem;
  font-weight: 950;
}
.night-camera-chapter {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(16px, 3vw, 30px);
  border: 1px solid rgba(214, 159, 47, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 14% 14%,
      rgba(255, 246, 209, 0.76),
      transparent 26%),
    radial-gradient(
      circle at 86% 10%,
      rgba(166, 245, 226, 0.54),
      transparent 25%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 253, 248, 0.8));
  box-shadow: var(--shadow-soft);
}
.night-camera-copy,
.memory-wall {
  position: relative;
  overflow: hidden;
}
.night-camera-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  padding: clamp(10px, 1.8vw, 18px);
}
.night-camera-copy .chapter-heading h2 {
  max-width: min(12ch, 100%);
  overflow-wrap: anywhere;
  font-size: clamp(2.35rem, 3.7vw, 4.25rem);
  line-height: 0.98;
}
.night-camera-copy .chapter-script {
  max-width: 16ch;
  font-size: clamp(1.28rem, 1.9vw, 2.05rem);
  line-height: 1;
}
.night-camera-copy::after {
  position: absolute;
  right: clamp(16px, 3vw, 34px);
  bottom: 8px;
  color: rgba(217, 31, 104, 0.16);
  content: "camera";
  font-family: var(--font-script);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
  pointer-events: none;
}
.night-camera-copy > * {
  position: relative;
  z-index: 1;
}
.album-invite {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid rgba(214, 159, 47, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.58);
  color: var(--soft-ink);
  font-size: 0.94rem;
  line-height: 1.55;
}
.album-invite svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--rose);
}
.photo-caption-composer {
  display: grid;
  gap: 10px;
}
.photo-caption-composer label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 650;
}
.photo-caption-composer textarea,
.photo-caption-composer input {
  width: 100%;
  border: 1px solid rgba(142, 36, 68, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--parchment-ink);
  font: inherit;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}
.photo-caption-composer textarea {
  min-height: 88px;
  padding: 12px;
  resize: vertical;
  line-height: 1.5;
}
.photo-caption-composer input {
  min-height: 44px;
  padding: 0 12px;
}
.photo-caption-composer textarea[readonly],
.photo-caption-composer input[readonly] {
  cursor: pointer;
  background:
    linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.9),
      rgba(242, 255, 249, 0.56)),
    #fffdf8;
  color: var(--parchment-muted);
}
.photo-caption-composer small {
  justify-self: end;
  color: var(--parchment-muted);
  font-size: 0.76rem;
  font-weight: 650;
}
.photo-note-lock-status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 246, 209, 0.42);
  color: var(--parchment-ink);
  font-size: 0.8rem;
  font-weight: 720;
  line-height: 1.35;
}
.photo-note-lock-status svg {
  flex: 0 0 auto;
  color: var(--gold);
}
.camera-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.camera-day-tools {
  grid-column: 1 / -1;
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(214, 159, 47, 0.14);
  animation: rsvpReveal 260ms var(--ease) both;
}
.photo-upload-button {
  cursor: pointer;
}
.photo-upload-button.disabled {
  position: relative;
  overflow: hidden;
  cursor: not-allowed;
  opacity: 0.68;
}
.photo-upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.camera-note {
  max-width: 620px;
  color: var(--soft-ink);
  font-size: 0.94rem;
  line-height: 1.6;
}
.camera-upload-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(32, 212, 186, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 16%,
      rgba(0, 191, 166, 0.18),
      transparent 30%),
    rgba(255, 255, 255, 0.72);
  color: var(--emerald);
  font-size: 0.86rem;
  font-weight: 900;
}
.camera-upload-status span {
  overflow-wrap: anywhere;
}
.camera-share-kit {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(214, 159, 47, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(255, 183, 199, 0.2),
      transparent 28%),
    rgba(255, 255, 255, 0.74);
  opacity: 0.9;
}
.camera-qr {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(214, 159, 47, 0.2);
  border-radius: var(--radius);
  background: #fffdf8;
}
.camera-qr svg {
  display: block;
  width: 100%;
  height: 100%;
}
.camera-share-kit span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.camera-share-kit p {
  margin-top: 6px;
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.45;
}
.camera-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.moment-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.moment-prompts button {
  display: inline-flex;
  flex: 1 1 120px;
  gap: 7px;
  align-items: center;
  min-height: 40px;
  padding: 7px 9px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.6);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  transition:
    transform 160ms var(--ease),
    background-color 160ms var(--ease),
    border-color 160ms var(--ease);
}
.moment-prompts button.selected {
  border-color: rgba(0, 127, 115, 0.24);
  background: rgba(232, 255, 246, 0.78);
  color: var(--emerald);
}
.moment-prompts .wedding-glyph {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
}
.moment-prompts span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.moment-prompts small {
  margin-left: auto;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 920;
  text-transform: uppercase;
}
.memory-wall {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  gap: 14px;
  padding: 0;
  overflow: visible;
}
.memory-wall-head {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4px 4px 0;
}
.memory-wall-head > div:first-child {
  max-width: 720px;
}
.memory-wall-tools {
  display: flex;
  width: 100%;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.memory-wall-head span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.memory-wall-head h3 {
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 0.96;
}
.memory-wall-head p {
  max-width: 560px;
  margin-top: 8px;
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.5;
}
.memory-filter {
  display: inline-flex;
  flex: 1 1 340px;
  min-width: 0;
  gap: 6px;
  align-items: center;
  overflow-x: auto;
  padding: 5px;
  border: 1px solid rgba(214, 159, 47, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.58);
}
.memory-filter button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  transition:
    background-color 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease);
}
.memory-filter button:hover,
.memory-filter button:focus-visible {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}
.memory-filter button.selected {
  background:
    linear-gradient(
      135deg,
      rgba(255, 246, 209, 0.92),
      rgba(232, 255, 246, 0.72));
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(214, 159, 47, 0.18), 0 8px 18px rgba(37, 50, 46, 0.1);
}
.memory-filter small {
  display: inline-grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: inherit;
  font-size: 0.72rem;
  font-weight: 920;
}
.memory-refresh-button,
.memory-export-button,
.memory-clear-selection {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  transition:
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease);
}
.memory-export-button small {
  display: inline-grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 127, 115, 0.13);
  color: inherit;
  font-size: 0.72rem;
  font-weight: 940;
}
.memory-export-button.selected-export {
  border-color: rgba(0, 127, 115, 0.24);
  background: rgba(232, 255, 246, 0.82);
  color: var(--ink);
}
.memory-clear-selection {
  min-height: 40px;
  padding: 0 11px;
  color: var(--soft-ink);
  font-size: 0.78rem;
}
.memory-tool-status {
  width: 100%;
  margin: -2px 4px 0;
  color: var(--emerald-soft);
  font-size: 0.78rem;
  font-weight: 860;
  line-height: 1.35;
}
.memory-refresh-button:hover,
.memory-refresh-button:focus-visible,
.memory-export-button:hover,
.memory-export-button:focus-visible,
.memory-clear-selection:hover,
.memory-clear-selection:focus-visible {
  border-color: rgba(0, 127, 115, 0.24);
  background: rgba(232, 255, 246, 0.82);
  color: var(--ink);
  transform: translateY(-1px);
}
.memory-refresh-button:active svg {
  transform: rotate(90deg);
}
.memory-photo-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 24px);
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 999px;
  background: rgba(20, 28, 26, 0.42);
  color: #fffdf8;
  font-size: 0.72rem;
  font-weight: 940;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 8px rgba(15, 24, 21, 0.45);
  white-space: nowrap;
  backdrop-filter: blur(12px);
}
.memory-slides {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 42vw, 520px);
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 50% 110%,
      rgba(214, 159, 47, 0.18),
      transparent 46%),
    #15211d;
  box-shadow: 0 22px 54px rgba(37, 50, 46, 0.16);
}
.memory-slides figure {
  position: absolute;
  inset: 0;
  margin: 0;
  cursor: zoom-in;
}
.memory-slides img,
.memory-slides video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.07) contrast(1.02) brightness(1.04);
}
.memory-slides::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(
      180deg,
      rgba(15, 24, 21, 0.08),
      transparent 30%,
      rgba(15, 24, 21, 0.18)),
    linear-gradient(
      90deg,
      rgba(15, 24, 21, 0.22),
      transparent 22%,
      transparent 78%,
      rgba(15, 24, 21, 0.22));
  pointer-events: none;
}
.memory-slides figcaption {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: min(380px, calc(100% - 36px));
  max-height: 42%;
  overflow: hidden;
  padding: 0;
  color: #fffdf8;
  text-align: right;
  text-shadow: 0 2px 18px rgba(15, 24, 21, 0.72), 0 1px 2px rgba(15, 24, 21, 0.7);
  transform: rotate(-2deg);
}
.memory-slides figcaption span {
  display: -webkit-box;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 0.96;
  overflow: hidden;
}
.memory-slides figcaption small {
  justify-self: end;
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.8rem;
  font-weight: 760;
  text-shadow: 0 1px 10px rgba(15, 24, 21, 0.72);
}
.memory-upvote-button {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 46px;
  min-height: 34px;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 999px;
  background: rgba(20, 28, 26, 0.42);
  color: #fffdf8;
  font-size: 0.78rem;
  font-weight: 920;
  text-shadow: 0 1px 8px rgba(15, 24, 21, 0.45);
  backdrop-filter: blur(12px);
  transition:
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease);
}
.memory-upvote-button:hover,
.memory-upvote-button:focus-visible {
  background: rgba(255, 253, 248, 0.88);
  color: var(--rose);
  transform: translateY(-1px);
}
.memory-upvote-button.selected {
  border-color: rgba(217, 31, 104, 0.34);
  background: rgba(255, 246, 249, 0.92);
  color: var(--rose);
}
.memory-select-button {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 5;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 50%;
  background: rgba(20, 28, 26, 0.38);
  color: rgba(255, 253, 248, 0.62);
  opacity: 0;
  transform: scale(0.94);
  backdrop-filter: blur(10px);
  transition:
    background-color 160ms var(--ease),
    color 160ms var(--ease),
    opacity 160ms var(--ease),
    transform 160ms var(--ease);
}
.memory-grid figure:hover .memory-select-button,
.memory-grid figure:focus-visible .memory-select-button,
.memory-select-button:focus-visible,
.memory-select-button.selected {
  opacity: 1;
  transform: scale(1);
}
.memory-select-button.selected {
  border-color: rgba(0, 127, 115, 0.24);
  background: rgba(232, 255, 246, 0.92);
  color: var(--emerald);
}
.memory-grid .memory-photo-tag {
  left: auto;
  right: 10px;
  max-width: calc(100% - 52px);
}
.memory-slides .memory-upvote-button {
  top: 54px;
}
.memory-slide-button,
.memory-slide-count {
  position: absolute;
  z-index: 4;
}
.memory-slide-button {
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  transform: translateY(-50%);
  transition: background-color 160ms var(--ease), transform 160ms var(--ease);
}
.memory-slide-button:hover {
  background: rgba(255, 253, 248, 0.94);
  transform: translateY(-50%) scale(1.04);
}
.memory-slide-button.previous {
  left: 12px;
}
.memory-slide-button.previous svg {
  transform: rotate(180deg);
}
.memory-slide-button.next {
  right: 12px;
}
.memory-slide-count {
  right: 14px;
  top: 14px;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(20, 28, 26, 0.5);
  color: #fffdf8;
  font-size: 0.78rem;
  font-weight: 820;
}
.memory-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(72px, 8vw);
  grid-auto-flow: dense;
  gap: 10px;
  max-height: clamp(520px, 78vh, 860px);
  min-height: 360px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  scrollbar-gutter: stable;
}
.memory-grid::-webkit-scrollbar {
  width: 9px;
}
.memory-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(214, 159, 47, 0.1);
}
.memory-grid::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 253, 248, 0.7);
  border-radius: 999px;
  background: rgba(0, 127, 115, 0.38);
}
.memory-grid figure {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background: #f3fff9;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 170ms var(--ease), transform 170ms var(--ease);
}
.memory-grid figure:nth-child(1) {
  grid-column: span 5;
  grid-row: span 5;
}
.memory-grid figure:nth-child(2),
.memory-grid figure:nth-child(6n+5) {
  grid-column: span 4;
  grid-row: span 3;
}
.memory-grid figure:nth-child(3),
.memory-grid figure:nth-child(6n+4) {
  grid-column: span 3;
  grid-row: span 4;
}
.memory-grid figure:nth-child(4),
.memory-grid figure:nth-child(6n+6) {
  grid-column: span 4;
  grid-row: span 2;
}
.memory-grid figure:nth-child(5),
.memory-grid figure:nth-child(6n+7) {
  grid-column: span 3;
  grid-row: span 2;
}
.memory-grid figure.uploading img,
.memory-grid figure.uploading video {
  filter: saturate(0.9) brightness(1.08);
}
.memory-grid figure.uploading::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.42),
      transparent) -160% 0 / 70% 100% no-repeat,
    rgba(255, 253, 248, 0.24);
  animation: uploadSweep 1.2s linear infinite;
  pointer-events: none;
}
.memory-grid figure::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(37, 50, 46, 0.34));
  pointer-events: none;
}
.memory-grid img,
.memory-grid video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.01) brightness(1.05);
  transition: filter 180ms var(--ease), transform 220ms var(--ease);
}
.memory-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 18px);
  overflow: hidden;
  padding: 0;
  color: #fffdf8;
  text-align: right;
  text-shadow: 0 2px 14px rgba(15, 24, 21, 0.72), 0 1px 2px rgba(15, 24, 21, 0.72);
  transform: rotate(-2deg);
}
.memory-grid figcaption span {
  display: -webkit-box;
  font-family: var(--font-script);
  font-size: clamp(1.12rem, 2vw, 1.7rem);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 0.98;
  overflow: hidden;
}
.memory-grid figcaption small {
  justify-self: end;
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.72rem;
  font-weight: 750;
}
.memory-grid figure:hover,
.memory-grid figure:focus-visible,
.memory-grid figure.selected {
  border-color: rgba(0, 127, 115, 0.32);
  box-shadow: inset 0 0 0 2px rgba(255, 253, 248, 0.74);
  transform: translateY(-1px);
}
.memory-grid figure:hover img,
.memory-grid figure:focus-visible img,
.memory-grid figure:hover video,
.memory-grid figure:focus-visible video {
  filter: saturate(1.14) contrast(1.03) brightness(1.07);
  transform: scale(1.035);
}
.memory-empty-state {
  grid-column: 1 / -1;
  display: grid;
  min-height: 240px;
  place-items: center;
  gap: 8px;
  border: 1px dashed rgba(214, 159, 47, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.52);
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 820;
}
.memory-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(
      circle at 50% 110%,
      rgba(214, 159, 47, 0.18),
      transparent 46%),
    rgba(9, 14, 12, 0.9);
  backdrop-filter: blur(18px);
  animation: rsvpReveal 220ms var(--ease) both;
}
.memory-lightbox-frame {
  position: relative;
  display: grid;
  width: min(96vw, 1500px);
  height: min(92vh, 980px);
  min-height: 0;
  place-items: center;
}
.memory-lightbox img,
.memory-lightbox video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 253, 248, 0.12);
}
.memory-lightbox-caption {
  position: absolute;
  right: clamp(12px, 3vw, 30px);
  bottom: clamp(12px, 3vw, 30px);
  z-index: 4;
  display: grid;
  gap: 4px;
  max-width: min(420px, calc(100% - 24px));
  padding: 11px 13px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(20, 28, 26, 0.46);
  color: #fffdf8;
  text-align: right;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}
.memory-lightbox-caption span {
  justify-self: end;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.72rem;
  font-weight: 940;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.memory-lightbox-caption p {
  display: -webkit-box;
  color: #fffdf8;
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 0.98;
  overflow: hidden;
}
.memory-lightbox-caption small {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 820;
}
.memory-lightbox-close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  background: rgba(20, 28, 26, 0.62);
  color: #fffdf8;
  font-weight: 950;
  backdrop-filter: blur(12px);
}
.memory-lightbox-actions {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.memory-lightbox-actions button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
  font-weight: 950;
  backdrop-filter: blur(12px);
}
.memory-lightbox-actions button.selected {
  background: rgba(232, 255, 246, 0.9);
  color: var(--emerald);
}
.memory-lightbox-tap-zone {
  position: absolute;
  top: 52px;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 50%;
  align-items: center;
  border: 0;
  background: transparent;
  color: #fffdf8;
}
.memory-lightbox-tap-zone.previous {
  left: 0;
  justify-content: flex-start;
  padding-left: clamp(10px, 2vw, 24px);
}
.memory-lightbox-tap-zone.previous span {
  transform: rotate(180deg);
}
.memory-lightbox-tap-zone.next {
  right: 0;
  justify-content: flex-end;
  padding-right: clamp(10px, 2vw, 24px);
}
.memory-lightbox-tap-zone span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 50%;
  background: rgba(20, 28, 26, 0.38);
  opacity: 0;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transition:
    background-color 160ms var(--ease),
    opacity 160ms var(--ease),
    transform 160ms var(--ease);
}
.memory-lightbox-frame:hover .memory-lightbox-tap-zone span,
.memory-lightbox-tap-zone:focus-visible span {
  opacity: 0.9;
}
.memory-lightbox-tap-zone:hover span,
.memory-lightbox-tap-zone:focus-visible span {
  background: rgba(255, 253, 248, 0.22);
  transform: scale(1.04);
}
.memory-lightbox-tap-zone.previous:hover span,
.memory-lightbox-tap-zone.previous:focus-visible span {
  transform: rotate(180deg) scale(1.04);
}
@media (hover: none) {
  .memory-lightbox-tap-zone span {
    opacity: 0.78;
  }
}
.photo-queue {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 44px rgba(18, 63, 54, 0.06);
}
.photo-queue-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}
.photo-queue-head span {
  color: var(--emerald-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.photo-queue-head h3 {
  margin-top: 5px;
  color: #18231d;
  font-size: 1.24rem;
}
.photo-queue-head p,
.photo-queue-empty p {
  margin-top: 6px;
  color: #587066;
  font-size: 0.9rem;
  line-height: 1.45;
}
.photo-queue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.photo-queue-grid article {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}
.host-upload-rehearsal {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(0, 127, 115, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(
      120deg,
      rgba(198, 255, 236, 0.42),
      transparent 38%),
    rgba(255, 255, 255, 0.68);
}
.host-upload-rehearsal > div:first-child {
  display: grid;
  gap: 5px;
}
.host-upload-rehearsal span,
.host-upload-note span,
.photo-queue-edit span {
  color: var(--emerald-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.host-upload-rehearsal h3 {
  color: var(--ink);
  font-size: 1.18rem;
}
.host-upload-rehearsal p {
  color: #587066;
  font-size: 0.86rem;
  line-height: 1.45;
}
.host-upload-note,
.photo-queue-edit label {
  display: grid;
  gap: 5px;
}
.host-upload-note input,
.photo-queue-edit input {
  width: 100%;
  min-height: 38px;
  min-width: 0;
  border: 1px solid rgba(18, 63, 54, 0.14);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
}
.host-upload-button {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.host-upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.host-upload-status {
  grid-column: 1 / -1;
}
.photo-queue-grid article.hidden {
  opacity: 0.62;
}
.photo-queue-grid img,
.photo-queue-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 6px;
}
.photo-queue-grid strong {
  display: block;
  overflow: hidden;
  color: #18231d;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.photo-queue-grid span {
  color: var(--emerald-soft);
  font-size: 0.76rem;
  font-weight: 900;
}
.photo-queue-grid small {
  display: block;
  margin-top: 3px;
  color: #587066;
  font-size: 0.72rem;
  font-weight: 850;
}
.photo-queue-grid .secondary-icon-button {
  width: 100%;
  min-height: 38px;
}
.photo-queue-edit {
  display: grid;
  gap: 8px;
}
.photo-queue-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.photo-queue-empty {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px dashed rgba(18, 63, 54, 0.18);
  border-radius: var(--radius);
  color: var(--emerald);
}
.stacked-form {
  position: relative;
  display: grid;
  gap: 12px;
}
.request-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.request-compare > div {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(243, 178, 62, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}
.request-compare span,
.request-receipt > div span {
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.request-compare p {
  display: grid;
  gap: 2px;
  color: var(--soft-ink);
  font-size: 0.84rem;
  line-height: 1.35;
}
.request-compare strong {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.request-receipt {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(32, 212, 186, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(0, 191, 166, 0.24),
      transparent 30%),
    rgba(255, 255, 255, 0.72);
  color: var(--ink);
}
.request-receipt > div {
  display: flex;
  gap: 8px;
  align-items: center;
}
.request-receipt > div svg {
  color: var(--emerald);
}
.request-receipt strong {
  color: var(--emerald);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.request-receipt p {
  color: var(--soft-ink);
  font-size: 0.86rem;
  line-height: 1.45;
}
.request-receipt a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: max-content;
  min-height: 36px;
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 950;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.form-grid.compact {
  margin-top: 12px;
}
.rsvp-decision-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(320px, 1.12fr);
  gap: 14px;
  align-items: end;
}
.rsvp-decision-grid > label,
.rsvp-decision-grid .pax-field {
  min-height: 126px;
  padding: 12px;
  border: 1px solid rgba(214, 159, 47, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 253, 248, 0.52)),
    rgba(255, 255, 255, 0.52);
}
.form-section {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}
.form-section + .form-section {
  padding-top: 14px;
  border-top: 1px solid rgba(214, 159, 47, 0.12);
}
.form-section-copy {
  display: grid;
  gap: 3px;
}
.form-section-copy span {
  color: var(--parchment-ink);
  font-size: 0.88rem;
  font-weight: 760;
}
.form-section-copy p {
  color: var(--soft-ink);
  font-size: 0.82rem;
  line-height: 1.45;
}
.form-helper {
  align-self: center;
  padding: 12px;
  border: 1px solid rgba(0, 127, 115, 0.12);
  border-radius: var(--radius);
  background: rgba(242, 255, 249, 0.58);
  color: var(--soft-ink);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.45;
}
.field-hint {
  display: block;
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 560;
  line-height: 1.38;
}
.stacked-form label,
.planning-tools label,
.pax-field {
  display: grid;
  gap: 7px;
}
.pax-field > span {
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 680;
}
.pax-stepper {
  display: grid;
  grid-template-columns: 44px minmax(72px, 1fr) 44px;
  gap: 8px;
  align-items: center;
}
.pax-stepper button {
  min-height: 44px;
  border: 1px solid rgba(142, 36, 68, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--parchment-ink);
  font-weight: 760;
}
.pax-stepper strong {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(214, 159, 47, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  color: var(--parchment-ink);
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}
.rsvp-extra-details {
  overflow: hidden;
  border: 1px solid rgba(214, 159, 47, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.74),
      rgba(255, 255, 255, 0.5)),
    rgba(255, 253, 248, 0.58);
}
.rsvp-extra-details summary {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: baseline;
  min-height: 50px;
  padding: 11px 48px 11px 14px;
  color: var(--parchment-ink);
  cursor: pointer;
  list-style: none;
}
.rsvp-extra-details summary::-webkit-details-marker {
  display: none;
}
.rsvp-extra-details summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--rose);
  content: "+";
  font-size: 1.2rem;
  font-weight: 900;
  transform: translateY(-50%);
}
.rsvp-extra-details[open] summary::after {
  content: "-";
}
.rsvp-extra-details summary span {
  flex: 0 0 auto;
  font-weight: 950;
}
.rsvp-extra-details summary small {
  min-width: 0;
  color: var(--parchment-muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}
.rsvp-extra-details > label,
.rsvp-extra-details > .form-grid,
.rsvp-extra-details > .seating-detail-grid {
  padding: 0 14px 14px;
}
.seating-detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(280px, 1.08fr);
  gap: 12px 14px;
  align-items: start;
  margin-top: 4px;
}
.seating-detail-grid .recognition-field {
  grid-column: 1 / -1;
}
.seating-detail-grid .other-relationship-field {
  grid-column: 1 / -1;
}
.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}
.segmented-control button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--soft-ink);
  font-size: 0.8rem;
  font-weight: 900;
}
.segmented-control button.selected {
  background: var(--emerald);
  color: #fffefa;
  box-shadow: 0 8px 22px rgba(18, 55, 50, 0.14);
}
.inline-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(139, 210, 179, 0.22);
  border-radius: var(--radius);
  background: rgba(139, 210, 179, 0.12);
  color: #14715f;
  font-size: 0.86rem;
  font-weight: 900;
  animation: successPop 360ms var(--ease) both;
}
.host-access-gate {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 32px));
  margin: 18px auto 96px;
  padding: 96px 0 48px;
  scroll-margin-top: 72px;
}
.host-gate-card {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid rgba(18, 63, 54, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(217, 31, 104, 0.16),
      transparent 30%),
    radial-gradient(
      circle at 12% 88%,
      rgba(0, 191, 166, 0.2),
      transparent 32%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.86),
      rgba(255, 249, 244, 0.74));
  box-shadow: var(--shadow-soft);
}
.host-gate-card::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(243, 178, 62, 0.12);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}
.host-gate-card > * {
  position: relative;
  z-index: 1;
}
.host-gate-card .chapter-heading h2 {
  max-width: 620px;
}
.host-gate-card .chapter-heading p,
.host-gate-note {
  max-width: 680px;
  color: var(--soft-ink);
  font-size: 0.94rem;
  line-height: 1.55;
}
.host-gate-form {
  display: grid;
  gap: 8px;
}
.host-gate-form label {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.host-gate-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.host-gate-form .host-gate-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.host-gate-fields label {
  display: grid;
  gap: 6px;
}
.host-gate-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(142, 36, 68, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--parchment-ink);
  outline: none;
}
.host-gate-error {
  color: var(--wine);
  font-size: 0.86rem;
  font-weight: 900;
}
.host-gate-note {
  padding-top: 14px;
  border-top: 1px solid rgba(243, 178, 62, 0.16);
}
.planning-chapter {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 76px 0 104px;
  scroll-margin-top: 72px;
}
.planning-chapter::before {
  position: absolute;
  inset: 0 50% auto;
  width: 100vw;
  height: calc(100% - 40px);
  content: "";
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(84, 215, 190, 0.1),
      transparent 30%),
    radial-gradient(
      circle at 88% 8%,
      rgba(255, 183, 173, 0.26),
      transparent 28%),
    radial-gradient(
      circle at 56% 72%,
      rgba(244, 221, 160, 0.12),
      transparent 34%),
    linear-gradient(
      90deg,
      rgba(18, 63, 54, 0.055) 1px,
      transparent 1px) 0 0 / 64px 64px,
    linear-gradient(
      180deg,
      var(--daylight),
      var(--daylight-2));
  border-block: 1px solid rgba(18, 63, 54, 0.14);
  transform: translateX(-50%);
  pointer-events: none;
}
.planning-chapter::after {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
  width: 76px;
  height: 1px;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--aura),
      transparent);
}
.planning-chapter > * {
  position: relative;
  z-index: 1;
}
.planning-head {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
.planning-head .chapter-heading {
  max-width: 620px;
  gap: 8px;
}
.planning-head .chapter-heading span {
  color: var(--emerald-soft);
}
.planning-head .chapter-heading h2 {
  max-width: 620px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  color: #18231d;
}
.planning-note {
  max-width: 560px;
  color: #587066;
  font-size: 0.95rem;
  line-height: 1.55;
}
.planning-chapter .primary-button {
  border-color: rgba(18, 63, 54, 0.2);
  background: var(--emerald);
  color: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 16px 34px rgba(18, 63, 54, 0.18);
}
.planning-chapter .secondary-button {
  border-color: rgba(18, 63, 54, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: #18231d;
  box-shadow: 0 12px 28px rgba(18, 63, 54, 0.06);
}
.planning-actions .primary-button:disabled {
  border-color: rgba(18, 63, 54, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: #587066;
  box-shadow: none;
  opacity: 1;
}
.host-only-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(18, 63, 54, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.planning-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.host-reminder-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 0%,
      rgba(255, 183, 199, 0.22),
      transparent 32%),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 44px rgba(18, 63, 54, 0.06);
}
.host-reminder-panel span,
.host-reminder-status {
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.host-reminder-panel h3 {
  margin-top: 5px;
  color: #18231d;
  font-size: 1.16rem;
}
.host-reminder-panel p {
  margin-top: 5px;
  color: #587066;
  font-size: 0.9rem;
  line-height: 1.45;
}
.host-reminder-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.host-reminder-actions .secondary-button {
  min-height: 42px;
}
.host-reminder-actions small {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 63, 54, 0.1);
  color: var(--emerald);
  font-size: 0.72rem;
}
.host-reminder-status {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 2px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.host-reminder-status.compact {
  padding: 0;
}
.update-reminder-status {
  padding: 10px 12px;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(232, 255, 246, 0.62);
}
.host-utility-details {
  margin-top: 18px;
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 44px rgba(18, 63, 54, 0.05);
}
.host-utility-details summary {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 14px;
  color: #18231d;
  cursor: pointer;
  list-style: none;
}
.host-utility-details summary::-webkit-details-marker {
  display: none;
}
.host-utility-details summary span {
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.host-utility-details summary small {
  color: #587066;
  font-size: 0.82rem;
  font-weight: 760;
}
.host-utility-details > .venue-kit,
.host-utility-details > .camera-day-tools,
.host-utility-details > .host-upload-rehearsal {
  margin: 0 14px 14px;
}
.planning-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.planning-metrics article {
  display: grid;
  gap: 7px;
  min-height: 86px;
  padding: 15px;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 44px rgba(18, 63, 54, 0.08);
}
.planning-metrics strong {
  color: #18231d;
  font-size: 1.32rem;
  line-height: 1;
}
.venue-kit {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(217, 31, 104, 0.16),
      transparent 30%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 249, 244, 0.64));
  box-shadow: 0 18px 44px rgba(18, 63, 54, 0.06);
}
.venue-kit-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}
.venue-kit-head span,
.venue-kit-card-copy span,
.venue-kit-checklist span {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.venue-kit-head h3 {
  margin-top: 5px;
  color: #18231d;
  font-size: 1.24rem;
}
.venue-kit-head p {
  margin-top: 6px;
  max-width: 620px;
  color: #587066;
  font-size: 0.9rem;
  line-height: 1.45;
}
.venue-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.venue-kit-card {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 12px;
  align-content: start;
  padding: 12px;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}
.venue-kit-qr {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(243, 178, 62, 0.22);
  border-radius: var(--radius);
  background: #fffdf8;
}
.venue-kit-qr svg {
  display: block;
  width: 100%;
  height: 100%;
}
.venue-kit-card-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.venue-kit-card-copy h4 {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #18231d;
  font-size: 0.98rem;
  line-height: 1.2;
}
.venue-kit-card-copy h4 svg {
  color: var(--emerald);
}
.venue-kit-card-copy p {
  color: #587066;
  font-size: 0.84rem;
  line-height: 1.42;
}
.venue-kit-card-copy small {
  overflow-wrap: anywhere;
  color: rgba(24, 35, 29, 0.62);
  font-size: 0.72rem;
  line-height: 1.35;
}
.venue-kit-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.venue-kit-actions .secondary-icon-button {
  min-height: 38px;
}
.venue-kit-checklist {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px dashed rgba(18, 63, 54, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}
.venue-kit-checklist p {
  color: #587066;
  font-size: 0.88rem;
  line-height: 1.45;
}
.update-inbox {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(0, 191, 166, 0.16),
      transparent 30%),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(18, 63, 54, 0.06);
}
.update-inbox-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}
.update-inbox-head span,
.update-request-main span,
.review-note-field span {
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.update-inbox-head h3 {
  margin-top: 5px;
  color: #18231d;
  font-size: 1.24rem;
}
.update-inbox-head p {
  margin-top: 6px;
  max-width: 680px;
  color: #587066;
  font-size: 0.9rem;
  line-height: 1.45;
}
.update-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.update-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: #587066;
  font-size: 0.8rem;
  font-weight: 950;
}
.update-tabs button.selected {
  border-color: rgba(18, 63, 54, 0.22);
  background: var(--emerald);
  color: #fffdf8;
}
.update-tabs strong {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--emerald);
  font-size: 0.76rem;
}
.update-request-list {
  display: grid;
  gap: 10px;
}
.update-request-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}
.update-request-main h4 {
  margin-top: 5px;
  color: #18231d;
  font-size: 1.04rem;
}
.update-request-main p,
.update-message {
  margin-top: 4px;
  color: #587066;
  font-size: 0.86rem;
  line-height: 1.45;
}
.update-diff {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}
.update-diff div {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(18, 63, 54, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.54);
}
.update-diff dt {
  color: var(--emerald);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.update-diff dd {
  margin: 0;
  color: #18231d;
  font-size: 0.86rem;
  font-weight: 850;
}
.review-note-field {
  display: grid;
  gap: 7px;
}
.review-note-field input {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(18, 63, 54, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: #18231d;
  outline: none;
}
.update-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.update-actions .secondary-icon-button,
.update-actions .primary-button {
  min-height: 38px;
}
.guest-reminder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.guest-reminder-actions .secondary-icon-button {
  min-height: 38px;
}
.update-empty {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px dashed rgba(18, 63, 54, 0.18);
  border-radius: var(--radius);
  color: var(--emerald);
}
.update-empty p {
  color: #587066;
  font-size: 0.9rem;
}
.planning-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 12px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 44px rgba(18, 63, 54, 0.06);
}
.planning-tools label {
  color: #3d5d50;
}
.planning-tools input,
.planning-tools select {
  border-color: rgba(18, 63, 54, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: #18231d;
  box-shadow: none;
}
.planning-tools input::placeholder {
  color: rgba(62, 80, 70, 0.68);
}
.planning-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 14px;
  align-items: start;
  margin-top: 18px;
}
.guest-table {
  overflow: hidden;
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 52px rgba(18, 63, 54, 0.1);
}
.guest-table-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) minmax(112px, 0.75fr) 60px minmax(126px, 0.8fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 11px 14px;
  border: 0;
  border-top: 1px solid rgba(18, 63, 54, 0.09);
  background: transparent;
  color: #18231d;
  text-align: left;
}
.guest-table-row:first-child {
  border-top: 0;
}
.guest-table-row.selected {
  background: rgba(255, 183, 173, 0.16);
}
.guest-table-head {
  position: static;
  z-index: 2;
  min-height: 42px;
  background: var(--emerald);
  color: #fffdf8;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.planning-chapter .planning-metrics span,
.planning-chapter .guest-detail-list dt {
  color: var(--emerald-soft);
}
.guest-table strong {
  display: block;
  margin-bottom: 3px;
}
.guest-table small {
  color: #6a756d;
  font-size: 0.78rem;
}
.mono {
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}
.status-chip.green {
  background: #dff8ed;
  color: #08705d;
}
.status-chip.amber {
  background: rgba(255, 183, 173, 0.24);
  color: #8d5049;
}
.status-chip.muted {
  background: rgba(18, 63, 54, 0.08);
  color: #587066;
}
.planning-detail-panel,
.empty-detail {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 16px;
  padding: 18px;
  border-color: rgba(18, 63, 54, 0.13);
  background: rgba(255, 255, 255, 0.64);
  color: #18231d;
  box-shadow: 0 22px 52px rgba(18, 63, 54, 0.09);
}
.empty-detail {
  min-height: 240px;
  align-content: center;
  color: #587066;
  text-align: center;
}
.empty-detail svg {
  margin: 0 auto;
  color: var(--emerald-soft);
}
.empty-detail h3 {
  color: #18231d;
}
.sheet-backdrop,
.sheet-handle {
  display: none;
}
.detail-panel-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}
.detail-panel-head h3 {
  margin-top: 5px;
  font-size: 1.22rem;
}
.planning-detail-panel h3 {
  color: #18231d;
}
.close-sheet {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
}
.guest-detail-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(18, 63, 54, 0.08);
}
.guest-detail-list div {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid rgba(18, 63, 54, 0.08);
  background: rgba(255, 255, 255, 0.54);
}
.guest-detail-list div:first-child {
  border-top: 0;
}
.guest-detail-list dd {
  margin: 0;
  color: #18231d;
  font-weight: 850;
}
.csv-note {
  display: flex;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(18, 63, 54, 0.14);
  border-radius: var(--radius);
  background: rgba(232, 255, 246, 0.72);
  color: #14715f;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.45;
}
.privacy-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.privacy-column article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(21, 82, 70, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 249, 244, 0.62)),
    #fffdf8;
}
.privacy-column article::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(243, 178, 62, 0.1);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}
.privacy-column .wedding-glyph {
  grid-row: 1 / span 2;
}
.privacy-column h3 {
  font-size: 1rem;
  line-height: 1.16;
}
.privacy-column p {
  align-self: start;
}
.guest-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.story-chapter {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 0.86fr) minmax(260px, 0.7fr);
  gap: 18px;
  align-items: center;
  padding-bottom: 96px;
}
.portrait-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 159, 47, 0.18);
  border-radius: var(--radius);
  background: #f3fff9;
  box-shadow: var(--shadow-soft);
}
.portrait-panel::after,
.closing-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.02),
      rgba(255, 224, 138, 0.12));
  pointer-events: none;
}
.portrait-panel::before {
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
  pointer-events: none;
}
.portrait-a {
  aspect-ratio: 0.88;
}
.portrait-b {
  aspect-ratio: 0.72;
}
.portrait-panel img {
  object-position: center;
  filter: saturate(1.08) contrast(1.01) brightness(1.06);
}
.story-copy {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 44px);
  border-block: 1px solid rgba(214, 159, 47, 0.18);
}
.story-copy::before {
  width: 82px;
  height: 1px;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--champagne),
      transparent);
}
.story-copy svg {
  color: var(--rose);
}
.story-script {
  color: var(--rose);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 0.96;
  transform: rotate(-2deg);
}
.story-copy p {
  color: var(--soft-ink);
  font-size: 1.02rem;
  line-height: 1.72;
}
.inline-success {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  color: var(--emerald);
  font-size: 0.86rem;
  font-weight: 900;
  animation: successPop 360ms var(--ease) both;
}
.details-chapter {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 0.78fr);
  gap: 16px;
  align-items: start;
  padding-bottom: 72px;
}
.detail-sheet {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(214, 159, 47, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(217, 31, 104, 0.2),
      transparent 30%),
    radial-gradient(
      circle at 16% 84%,
      rgba(0, 191, 166, 0.3),
      transparent 30%),
    radial-gradient(
      circle at 52% 0%,
      rgba(201, 183, 255, 0.18),
      transparent 28%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 249, 244, 0.84));
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.detail-sheet .chapter-heading h2,
.detail-sheet .chapter-heading span,
.detail-sheet p {
  color: inherit;
}
.detail-sheet > p {
  max-width: 640px;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.7;
}
.location-sketch {
  overflow: hidden;
  border: 1px solid rgba(214, 159, 47, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}
.location-sketch > svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
}
.location-sketch > svg > rect:first-of-type {
  fill: #f3fff9;
}
.map-river {
  fill: none;
  stroke: rgba(166, 245, 226, 0.5);
  stroke-linecap: round;
  stroke-width: 46;
}
.map-road {
  fill: none;
  stroke: rgba(39, 116, 103, 0.22);
  stroke-linecap: round;
  stroke-width: 18;
}
.map-road.main {
  stroke: var(--champagne);
  stroke-width: 26;
}
.map-road.thin {
  stroke: rgba(39, 116, 103, 0.12);
  stroke-width: 10;
}
.map-blocks rect {
  fill: rgba(255, 255, 255, 0.58);
  stroke: rgba(214, 159, 47, 0.18);
  stroke-width: 2;
}
.map-pin path {
  fill: var(--rose);
}
.map-pin circle {
  fill: #fffdf8;
}
.map-label rect {
  fill: rgba(255, 255, 255, 0.96);
}
.map-label text {
  fill: #1b1309;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-weight: 900;
}
.map-label.destination text:first-of-type {
  font-size: 23px;
}
.map-label.destination text:last-of-type {
  fill: #5d4b31;
  font-size: 15px;
}
.map-label.road text {
  fill: rgba(39, 52, 47, 0.6);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.old-klang {
  transform: rotate(-19deg);
  transform-origin: 88px 211px;
}
.puchong {
  transform: rotate(12deg);
  transform-origin: 414px 82px;
}
.location-sketch figcaption {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}
.detail-list {
  display: grid;
  gap: 10px;
}
.event-fact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(214, 159, 47, 0.18);
}
.icon-disc svg,
.action-button svg {
  display: block;
  flex: 0 0 auto;
}
.event-fact strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}
.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.action-button {
  padding: 0 13px;
  border: 1px solid rgba(214, 159, 47, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--emerald);
}
.venue-directions {
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(0, 127, 115, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(242, 255, 249, 0.74)),
    #ffffff;
}
.venue-directions-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.venue-directions-head span,
.direction-route-head span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.venue-directions-head h3 {
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 0.98;
}
.venue-directions-head p {
  max-width: 620px;
  margin-top: 8px;
  color: var(--soft-ink);
  font-size: 0.94rem;
  line-height: 1.55;
}
.level-seal {
  display: grid;
  width: clamp(68px, 10vw, 92px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(214, 159, 47, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 65% 25%,
      rgba(255, 255, 255, 0.9),
      transparent 30%),
    linear-gradient(
      135deg,
      rgba(255, 246, 209, 0.96),
      rgba(166, 245, 226, 0.42));
  color: var(--wine);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(79, 58, 40, 0.1);
}
.direction-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.direction-route {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}
.direction-route-head {
  display: grid;
  gap: 5px;
}
.direction-route h4 {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}
.direction-route ol {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.direction-route ol::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 15px;
  width: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 127, 115, 0.16),
      rgba(214, 159, 47, 0.42));
  content: "";
}
.direction-route li {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.direction-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(0, 127, 115, 0.18);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--emerald);
  font-size: 0.7rem;
  font-weight: 950;
}
.direction-route strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.25;
}
.direction-route p {
  margin-top: 3px;
  color: var(--soft-ink);
  font-size: 0.86rem;
  line-height: 1.5;
}
.stay-panel {
  display: grid;
  gap: 12px;
  align-self: start;
  min-width: 0;
  overflow: clip;
  padding: 14px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(217, 31, 104, 0.2),
      transparent 26%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 246, 209, 0.58));
  box-shadow: var(--shadow-soft);
}
.stay-panel-head {
  display: grid;
  gap: 8px;
  padding: 6px 6px 0;
}
.stay-panel-head > div {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}
.stay-panel-head span,
.hotel-card > div > span {
  color: var(--emerald-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stay-panel-head h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  line-height: 1;
}
.stay-panel-head p {
  max-width: 640px;
}
.hotel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  overflow: visible;
  padding: 2px 6px 6px;
}
.hotel-card {
  display: grid;
  gap: 10px;
  align-content: space-between;
  min-width: 0;
  min-height: 174px;
  padding: 13px;
  border: 1px solid rgba(214, 159, 47, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 253, 248, 0.62)),
    #fffdf8;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 170ms var(--ease),
    box-shadow 170ms var(--ease),
    transform 170ms var(--ease);
}
.hotel-card:hover {
  border-color: rgba(0, 127, 115, 0.24);
  box-shadow: 0 16px 34px rgba(111, 74, 54, 0.08);
  transform: translateY(-1px);
}
.hotel-card.more {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(0, 191, 166, 0.24),
      transparent 34%),
    rgba(255, 253, 248, 0.78);
}
.hotel-list h4 {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.hotel-list p {
  margin-top: 6px;
  color: var(--soft-ink);
  display: -webkit-box;
  font-size: 0.8rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.42;
  overflow: hidden;
}
.hotel-meta {
  min-width: 0;
}
.hotel-meta span {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hotel-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--emerald);
  font-size: 0.74rem;
  font-weight: 760;
}
.hotel-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 8px;
  border: 1px solid rgba(0, 127, 115, 0.12);
  border-radius: 999px;
  background: rgba(242, 255, 249, 0.62);
  white-space: nowrap;
}
.faq-chapter {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-bottom: 80px;
}
.closing-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(214, 159, 47, 0.18);
  border-radius: var(--radius);
  background: #f3fff9;
  box-shadow: var(--shadow-soft);
}
.closing-photo img {
  object-position: center;
  filter: saturate(1.08) contrast(1.01) brightness(1.06);
}
.faq-copy {
  display: grid;
  gap: 24px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list article {
  padding: 18px 0;
  border-top: 1px solid rgba(214, 159, 47, 0.16);
}
.faq-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.final-chapter {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 46px;
  border-top: 1px solid rgba(214, 159, 47, 0.16);
}
.final-chapter p {
  flex: 1;
  color: var(--muted);
  font-size: 0.92rem;
}
.motion-ready .reveal-item {
  opacity: 0;
  filter: saturate(0.96);
  transform: translateY(18px);
  transition:
    opacity 520ms var(--ease),
    filter 520ms var(--ease),
    transform 520ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.motion-ready .reveal-item.is-visible {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(0);
}
.motion-ready .memory-grid figure.reveal-item {
  transform: translateY(14px) scale(0.98);
}
.motion-ready .memory-grid figure.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}
.opening-copy {
  animation: reveal 680ms var(--ease) both;
}
.signature-photo {
  animation: reveal 760ms var(--ease) 100ms both;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes rsvpReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes placeRise {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes passShimmer {
  0% {
    box-shadow: 0 18px 42px rgba(79, 58, 40, 0.1), 0 0 0 rgba(255, 224, 138, 0);
  }
  38% {
    box-shadow: 0 18px 42px rgba(79, 58, 40, 0.1), 0 0 0 4px rgba(255, 224, 138, 0.2);
  }
  100% {
    box-shadow: 0 18px 42px rgba(79, 58, 40, 0.1), 0 0 0 rgba(255, 224, 138, 0);
  }
}
@keyframes successPop {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes uploadSweep {
  from {
    background-position: -160% 0, 0 0;
  }
  to {
    background-position: 260% 0, 0 0;
  }
}
@keyframes starDrift {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }
  to {
    background-position:
      220px 220px,
      -340px 340px,
      280px -280px,
      -390px 390px;
  }
}
@media (hover: hover) {
  .primary-button:hover,
  .secondary-button:hover,
  .header-action:hover,
  .action-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(79, 58, 40, 0.12);
  }
  .site-nav a:hover {
    background: rgba(166, 245, 226, 0.42);
    color: var(--ink);
  }
  .guest-table-row:hover,
  .match-row:hover,
  .source-grid button:hover {
    background-color: rgba(166, 245, 226, 0.28);
  }
  .arrival-step:hover > span {
    border-color: rgba(214, 159, 47, 0.58);
    background: rgba(255, 253, 248, 0.9);
    transform: translateY(-1px);
  }
  .arrival-card-actions a:hover {
    border-color: rgba(214, 159, 47, 0.5);
    background: rgba(255, 253, 248, 0.9);
  }
  .arrival-card-actions a:hover svg {
    transform: translate(2px, -1px);
  }
  .moment-prompts button:hover {
    border-color: rgba(214, 159, 47, 0.34);
    background: rgba(255, 255, 255, 0.82);
    transform: translateY(-1px);
  }
}
.primary-button:active,
.secondary-button:active,
.action-button:active,
.icon-button:active,
.secondary-icon-button:active,
.moment-prompts button:active,
.source-grid button:active,
.pax-stepper button:active {
  transform: translateY(1px) scale(0.99);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-nav {
    display: none;
  }
  .opening-chapter,
  .guest-layout,
  .guest-guide-chapter,
  .night-camera-chapter,
  .story-chapter,
  .details-chapter,
  .faq-chapter {
    grid-template-columns: 1fr;
  }
  .camera-day-tools {
    grid-template-columns: 1fr;
  }
  .moment-prompts {
    grid-template-columns: 1fr;
  }
  .opening-chapter {
    min-height: 100svh;
    margin-bottom: 54px;
    padding-top: 0;
  }
  .opening-copy {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 76px;
  }
  .invitation-seal {
    top: 116px;
    left: auto;
    right: 38px;
  }
  .signature-photo {
    min-height: 100%;
  }
  .chapter-constellation {
    right: 26px;
    left: auto;
  }
  .privacy-column {
    grid-template-columns: 1fr;
  }
  .planning-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .planning-actions {
    justify-content: flex-start;
  }
  .planning-grid {
    grid-template-columns: 1fr;
  }
  .venue-kit-grid {
    grid-template-columns: 1fr;
  }
  .update-diff {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .photo-queue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .planning-detail-panel,
  .empty-detail {
    position: static;
  }
  .memory-grid {
    min-height: 620px;
  }
  .guide-copy {
    max-width: 760px;
  }
  .privacy-column article {
    min-height: auto;
  }
  .portrait-a,
  .portrait-b,
  .closing-photo {
    aspect-ratio: 1.08;
    min-height: auto;
  }
}
@media (max-width: 620px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }
  .site-header {
    min-height: 64px;
    padding: 10px 12px;
  }
  .mobile-quick-nav {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(214, 159, 47, 0.2);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 18px 48px rgba(79, 58, 40, 0.14);
    backdrop-filter: blur(18px);
  }
  .mobile-quick-nav a {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    color: var(--emerald);
    font-size: 0.78rem;
    font-weight: 950;
  }
  .mobile-quick-nav a:focus-visible {
    outline-offset: 2px;
  }
  .mobile-quick-nav .language-toggle {
    align-self: center;
    justify-self: stretch;
    min-height: 44px;
    border-radius: 999px;
  }
  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .brand-lockup span:last-child {
    max-width: 152px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .header-action {
    width: 42px;
    min-width: 42px;
    padding: 0;
  }
  .header-action span {
    display: none;
  }
  .opening-chapter,
  .guest-chapter,
  .guest-guide-chapter,
  .night-camera-chapter,
  .planning-chapter,
  .story-chapter,
  .details-chapter,
  .faq-chapter,
  .final-chapter {
    width: min(100% - 24px, 560px);
  }
  .opening-chapter {
    gap: 12px;
    min-height: 100svh;
    padding-bottom: 0;
  }
  .chapter-constellation {
    top: 76px;
    right: -42px;
    opacity: 0.44;
    transform: scale(0.72);
  }
  .opening-copy {
    order: initial;
    width: 100%;
    min-height: 100svh;
    padding: 44vh 18px 30px;
  }
  .opening-copy::before {
    display: none;
  }
  .signature-photo {
    order: initial;
    min-height: 100%;
  }
  .signature-photo::before {
    inset: 10px;
  }
  .hero-portrait-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .hero-portrait-grid.single-portrait {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-portrait-grid img:first-child {
    object-position: 51% center;
  }
  .hero-portrait-grid img:last-child {
    object-position: 43% center;
  }
  .hero-portrait-grid.together-hero img {
    object-position: 53% center;
  }
  .hero-portrait-grid.francis-corner-hero img {
    object-position: 54% center;
  }
  .hero-portrait-grid.carmen-corner-hero img {
    object-position: 48% center;
  }
  .opening-copy h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 15.5vw, 4.85rem);
    line-height: 0.88;
  }
  .hero-script {
    max-width: 340px;
    margin-top: 4px;
    font-size: clamp(1.9rem, 7.4vw, 2.55rem);
    transform: rotate(-2deg);
  }
  .chapter-script {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }
  .story-script {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }
  .invitation-seal {
    right: 22px;
    bottom: auto;
    top: 96px;
    width: 68px;
    opacity: 0.82;
  }
  .event-line {
    margin-top: 16px;
    font-size: 0.76rem;
  }
  .opening-note,
  .story-copy p,
  .detail-sheet > p {
    font-size: 0.96rem;
  }
  .opening-note {
    margin-top: 12px;
  }
  .opening-actions {
    align-items: stretch;
    margin-top: 18px;
  }
  .domain-easter-egg {
    margin-top: 14px;
    font-size: 0.78rem;
  }
  .opening-copy {
    padding-bottom: 104px;
  }
  .opening-actions .primary-button,
  .opening-actions .secondary-button,
  .guest-actions-row .secondary-button {
    flex: 1 1 100%;
  }
  .hero-facts {
    display: none;
  }
  .guest-chapter {
    padding-bottom: 58px;
  }
  .privacy-column {
    display: none;
  }
  .chapter-heading h2,
  .story-copy h2 {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }
  .lookup-panel,
  .guest-update-panel,
  .guest-guide-chapter {
    padding: 14px;
  }
  .guide-actions,
  .guide-actions .action-button,
  .guide-share-button {
    width: 100%;
  }
  .guide-actions .action-button,
  .guide-share-button {
    justify-content: center;
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .guide-grid article {
    min-height: auto;
  }
  .guide-note {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .guide-note a {
    width: max-content;
  }
  .guide-arrival-cue {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .guide-arrival-cue a {
    grid-column: 2;
    width: max-content;
  }
  .night-camera-chapter {
    padding-bottom: 58px;
  }
  .night-camera-copy {
    order: 1;
  }
  .memory-wall {
    order: 2;
  }
  .camera-day-tools {
    order: 3;
  }
  .night-camera-copy,
  .memory-wall {
    min-width: 0;
    padding: 14px;
  }
  .night-camera-copy .chapter-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10.5vw, 3.2rem);
  }
  .memory-slides {
    height: clamp(300px, 62vw, 420px);
  }
  .camera-actions,
  .camera-actions .primary-button,
  .camera-actions .secondary-button {
    width: 100%;
  }
  .camera-upload-status {
    width: 100%;
    align-items: flex-start;
    min-height: 46px;
    padding: 10px 12px;
  }
  .camera-share-kit {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
  .camera-share-actions,
  .camera-share-actions .secondary-icon-button {
    width: 100%;
  }
  .moment-prompts button {
    flex-basis: 100%;
    justify-content: flex-start;
  }
  .memory-wall-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 4px 4px 0;
  }
  .memory-wall-tools {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
  }
  .memory-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 50px;
    box-sizing: border-box;
    overflow: visible;
    border-radius: var(--radius);
  }
  .memory-filter button {
    min-width: 0;
    justify-content: space-between;
    padding: 7px 10px;
    white-space: normal;
  }
  .memory-tool-status {
    margin-top: 0;
  }
  .memory-refresh-button,
  .memory-export-button,
  .memory-clear-selection {
    width: 100%;
    min-height: 42px;
  }
  .memory-select-button {
    opacity: 1;
    transform: scale(1);
  }
  .memory-lightbox-frame {
    align-content: center;
    padding-top: 52px;
  }
  .memory-lightbox-close,
  .memory-lightbox-actions {
    top: 6px;
  }
  .memory-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 178px;
    max-height: min(430px, 52vh);
    min-height: auto;
  }
  .memory-grid figure,
  .memory-grid figure:nth-child(2),
  .memory-grid figure:nth-child(3),
  .memory-grid figure:nth-child(4),
  .memory-grid figure:nth-child(5),
  .memory-grid figure:nth-child(6n+4),
  .memory-grid figure:nth-child(6n+5),
  .memory-grid figure:nth-child(6n+6),
  .memory-grid figure:nth-child(6n+7) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .memory-grid figure:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .memory-grid figure:nth-child(4n+2) {
    grid-row: span 2;
  }
  .photo-queue {
    padding: 12px;
  }
  .photo-queue-head {
    flex-direction: column;
  }
  .photo-queue-head .secondary-button {
    width: 100%;
  }
  .host-upload-rehearsal {
    grid-template-columns: minmax(0, 1fr);
  }
  .photo-queue-grid {
    grid-template-columns: 1fr;
  }
  .arrival-card {
    padding: 16px;
  }
  .arrival-card-head h3 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }
  .arrival-card-meta {
    gap: 7px;
  }
  .arrival-pass-code {
    grid-template-columns: 1fr;
  }
  .arrival-pass-code button {
    width: 100%;
    min-height: 44px;
  }
  .pass-code-grid {
    justify-self: start;
  }
  .arrival-guide {
    gap: 0;
  }
  .arrival-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
  }
  .arrival-step > span {
    width: 32px;
    height: 32px;
  }
  .arrival-step::before {
    left: 27px;
  }
  .arrival-card-actions {
    grid-template-columns: 1fr;
  }
  .arrival-card-actions a {
    min-height: 46px;
  }
  .rsvp-entry-backdrop {
    align-items: end;
    padding: 12px 12px calc(88px + env(safe-area-inset-bottom));
  }
  .rsvp-entry-modal {
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    padding: 22px 18px;
  }
  .rsvp-entry-actions,
  .rsvp-entry-actions .primary-button,
  .rsvp-entry-actions .secondary-button,
  .rsvp-entry-form > div,
  .rsvp-entry-form .primary-button {
    width: 100%;
  }
  .rsvp-entry-form > div {
    grid-template-columns: 1fr;
  }
  .saved-rsvp-card {
    grid-template-columns: 1fr;
  }
  .saved-rsvp-actions,
  .saved-rsvp-actions .primary-button,
  .saved-rsvp-actions .secondary-button {
    width: 100%;
  }
  .form-grid,
  .rsvp-decision-grid,
  .seating-detail-grid,
  .request-compare,
  .planning-tools,
  .planning-metrics {
    grid-template-columns: 1fr;
  }
  .rsvp-decision-grid > label,
  .rsvp-decision-grid .pax-field {
    min-height: auto;
  }
  .rsvp-extra-details summary {
    display: grid;
    gap: 3px;
    align-items: start;
  }
  .rsvp-extra-details summary span {
    min-width: 0;
  }
  .seating-detail-grid .recognition-field,
  .seating-detail-grid .other-relationship-field {
    grid-column: auto;
  }
  .planning-chapter {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .host-access-gate {
    width: min(100% - 24px, 560px);
    padding-top: 78px;
    margin-bottom: 58px;
  }
  .host-gate-card {
    padding: 18px;
  }
  .host-gate-form > div {
    grid-template-columns: 1fr;
  }
  .planning-actions {
    width: 100%;
  }
  .planning-actions .primary-button,
  .planning-actions .secondary-button {
    flex: 1 1 100%;
  }
  .venue-kit {
    padding: 12px;
  }
  .venue-kit-head {
    flex-direction: column;
  }
  .venue-kit-head .primary-button,
  .venue-kit-actions .secondary-icon-button {
    width: 100%;
  }
  .venue-kit-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .update-inbox {
    padding: 12px;
  }
  .update-inbox-head {
    flex-direction: column;
  }
  .host-reminder-panel {
    grid-template-columns: 1fr;
  }
  .host-reminder-actions {
    justify-content: stretch;
  }
  .host-reminder-actions .secondary-button {
    width: 100%;
  }
  .update-inbox-head .secondary-button {
    width: 100%;
  }
  .update-tabs,
  .update-diff {
    grid-template-columns: 1fr;
  }
  .update-actions .secondary-icon-button,
  .update-actions .primary-button {
    width: 100%;
  }
  .guest-table {
    max-height: 62vh;
    overflow: auto;
  }
  .guest-table-row,
  .guest-table-head {
    grid-template-columns: minmax(0, 1.35fr) minmax(86px, auto);
  }
  .guest-table-head {
    position: static;
  }
  .guest-table-row > span:nth-child(3),
  .guest-table-row > span:nth-child(4),
  .guest-table-head > span:nth-child(3),
  .guest-table-head > span:nth-child(4) {
    display: none;
  }
  .sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    border: 0;
    background: rgba(7, 16, 14, 0.48);
  }
  .planning-detail-panel {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    min-height: min(76vh, 620px);
    max-height: min(76vh, 620px);
    overflow: auto;
    padding: 10px 16px calc(18px + env(safe-area-inset-bottom));
    border-color: rgba(18, 63, 54, 0.14);
    border-radius: 18px 18px 0 0;
    background: rgba(255, 250, 240, 0.98);
    color: #18231d;
    animation: sheetIn 260ms var(--ease);
  }
  .sheet-handle {
    display: block;
    width: 46px;
    height: 5px;
    margin: 0 auto 4px;
    border-radius: 999px;
    background: rgba(47, 42, 33, 0.28);
  }
  .guest-detail-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .source-grid {
    grid-template-columns: 1fr;
  }
  .match-row,
  .result-main {
    align-items: flex-start;
    flex-direction: column;
  }
  .match-row > span:last-child {
    flex: 0 1 auto;
  }
  .story-chapter,
  .details-chapter,
  .faq-chapter {
    padding-bottom: 58px;
  }
  .story-copy {
    padding: 20px 0;
  }
  .detail-sheet {
    padding: 22px;
  }
  .venue-directions {
    padding: 14px;
  }
  .stay-panel {
    padding: 12px;
  }
  .stay-panel-head {
    padding: 4px 4px 0;
  }
  .stay-panel-head h3 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }
  .hotel-list {
    grid-template-columns: minmax(0, 1fr);
    padding: 2px 4px 4px;
  }
  .hotel-card {
    min-height: auto;
  }
  .venue-directions-head,
  .direction-routes {
    grid-template-columns: 1fr;
  }
  .level-seal {
    justify-self: start;
    width: 68px;
  }
  .location-sketch > svg {
    min-height: 190px;
  }
  .map-label.destination {
    transform: translate(-88px, 88px);
  }
  .map-label.destination text:first-of-type {
    font-size: 20px;
  }
  .map-label.destination text:last-of-type {
    font-size: 13px;
  }
  .venue-actions .action-button {
    width: 100%;
  }
  .final-chapter {
    align-items: flex-start;
    flex-direction: column;
  }
}
@keyframes sheetIn {
  from {
    transform: translateY(28px);
  }
  to {
    transform: translateY(0);
  }
}
