:root {
  --bg: #161615;
  --bg-elevated: rgba(34, 34, 31, 0.82);
  --panel: rgba(28, 28, 26, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --text: #f6efe4;
  --text-muted: #cbc0b1;
  --accent: #d7b36d;
  --accent-deep: #9b7a3d;
  --border: rgba(255, 255, 255, 0.1);
  --success: #a4d2b0;
  --danger: #f3b7b0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(215, 179, 109, 0.16), transparent 34%),
    linear-gradient(180deg, #121211 0%, #181816 38%, #111110 100%);
  color: var(--text);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.public-header,
.public-footer,
.public-main {
  position: relative;
  z-index: 1;
}

.public-header {
  padding: 1.5rem clamp(1.2rem, 3vw, 2.6rem) 0;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-eyebrow,
.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.public-main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 0 4rem;
}

.public-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 12rem);
}

.hero-copy h1,
.rsvp-header h1,
.confirmation-panel h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  font-size: clamp(3.3rem, 8vw, 6.2rem);
}

.hero-date {
  margin: 1.15rem 0 0.3rem;
  font-size: 1.4rem;
}

.hero-venue,
.hero-note {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.confirmation-update-copy {
  flex: 1 0 100%;
  margin: 0;
}

.hero-image-card,
.panel,
.member-card,
.travel-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-image-card {
  overflow: hidden;
}

.hero-image-card img,
.rsvp-header-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-image-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem 1.25rem;
  background: linear-gradient(180deg, rgba(18, 18, 17, 0.1), rgba(18, 18, 17, 0.95));
}

.hero-image-caption p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.hero-image-caption span {
  color: var(--text-muted);
}

.panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.code-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
}

.invite-code-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: end;
}

.invite-code-form input,
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel-soft);
  color: var(--text);
  padding: 0.85rem 1rem;
}

textarea {
  resize: vertical;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #1d1710;
}

.button-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.rsvp-shell {
  display: grid;
  gap: 1.5rem;
}

.rsvp-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.rsvp-header-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.alert {
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  border: 1px solid transparent;
}

.alert p,
.alert ul {
  margin: 0;
}

.alert ul {
  margin-top: 0.55rem;
  padding-left: 1.25rem;
}

.alert-error {
  background: rgba(243, 183, 176, 0.12);
  border-color: rgba(243, 183, 176, 0.25);
}

.alert-info {
  background: rgba(215, 179, 109, 0.12);
  border-color: rgba(215, 179, 109, 0.25);
}

.alert-family {
  background: rgba(164, 210, 176, 0.12);
  border-color: rgba(164, 210, 176, 0.28);
}

.panel-intro {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.member-list {
  display: grid;
  gap: 1rem;
}

.member-card {
  padding: 1.2rem;
}

.member-card-head,
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.member-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.status-pill {
  background: rgba(255, 255, 255, 0.08);
}

.status-attending,
.status-accepted {
  background: rgba(164, 210, 176, 0.14);
  color: var(--success);
}

.status-declining,
.status-declined {
  background: rgba(243, 183, 176, 0.14);
  color: var(--danger);
}

.status-pending,
.status-partial {
  background: rgba(215, 179, 109, 0.14);
  color: var(--accent);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0.75rem 1rem;
  cursor: pointer;
  min-width: 10rem;
}

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

.choice-pill:has(input:checked) {
  border-color: rgba(215, 179, 109, 0.7);
  background: rgba(215, 179, 109, 0.14);
}

.field-label,
fieldset legend {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.field-help,
.muted {
  color: var(--text-muted);
}

.travel-card {
  padding: 1.4rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
}

.travel-grid,
.summary-stack,
.stack-lg {
  display: grid;
  gap: 1rem;
}

.travel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.travel-price {
  margin-top: 0;
  color: var(--accent);
}

.detail-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hotel-detail-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.checkbox-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.checkbox-row input {
  width: auto;
  margin: 0;
}

.is-hidden {
  display: none;
}

.summary-stack {
  margin-top: 1rem;
}

.note-copy {
  margin: 0.35rem 0 0;
  white-space: pre-wrap;
}

.glass-view .public-main {
  width: min(1320px, calc(100% - 1rem));
  padding-top: 1rem;
}

.glass-rsvp-shell {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: rgba(7, 7, 7, 0.35);
}

.glass-rsvp-media,
.glass-rsvp-overlay {
  position: absolute;
  inset: 0;
}

.glass-rsvp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.82);
}

.glass-rsvp-overlay {
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.26), rgba(9, 9, 9, 0.78)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.68));
  backdrop-filter: blur(5px);
}

.glass-rsvp-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.5rem;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.glass-rsvp-heading {
  text-align: center;
  max-width: 46rem;
}

.glass-rsvp-heading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.98;
}

.glass-kicker {
  margin: 0 0 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(246, 239, 228, 0.78);
}

.glass-event-line {
  margin: 0.9rem 0 0;
  color: rgba(246, 239, 228, 0.72);
  letter-spacing: 0.08em;
}

.glass-card {
  width: min(100%, 46rem);
  border-radius: 28px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.glass-card-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.glass-card-header h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.glass-panel {
  padding: 1rem 0;
}

.glass-panel + .glass-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-section-title {
  margin-bottom: 1rem;
}

.glass-section-title h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.glass-section-title p,
.glass-help-copy {
  margin: 0.45rem 0 0;
  color: rgba(246, 239, 228, 0.7);
}

.glass-member-list {
  display: grid;
  gap: 0.85rem;
}

.glass-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-meta-row {
  margin-top: 0.45rem;
}

.glass-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.glass-choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.6rem 0.95rem;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.glass-choice-pill:has(input:checked) {
  background: rgba(246, 239, 228, 0.98);
  color: #111;
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.glass-card textarea,
.glass-card select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.glass-card textarea::placeholder {
  color: rgba(246, 239, 228, 0.45);
}

.glass-travel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.glass-hotel-details {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.glass-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.glass-submit-button,
.glass-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  min-height: 3.2rem;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

.glass-submit-button {
  width: 100%;
  border: 0;
  background: rgba(246, 239, 228, 0.98);
  color: #111;
  cursor: pointer;
}

.glass-submit-link {
  width: auto;
}

.glass-submit-button:hover,
.glass-secondary-link:hover {
  transform: translateY(-1px);
}

.glass-submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.glass-secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .hero-grid,
  .rsvp-header,
  .code-panel {
    grid-template-columns: 1fr;
  }

  .travel-grid {
    grid-template-columns: 1fr;
  }

  .member-card-head,
  .summary-row,
  .section-head,
  .glass-member-row {
    align-items: start;
    flex-direction: column;
  }

  .glass-travel-grid {
    grid-template-columns: 1fr;
  }

  .glass-choice-group,
  .glass-actions {
    width: 100%;
  }

  .glass-choice-pill,
  .glass-submit-button,
  .glass-secondary-link {
    width: 100%;
  }
}

.public-app-shell {
  --app-ink: #1e1a18;
  --app-paper: rgba(246, 237, 224, 0.93);
  --app-paper-strong: rgba(252, 246, 238, 0.98);
  --app-soft-border: rgba(255, 255, 255, 0.14);
  --app-accent: #cf9e62;
  --app-rose: #bc7a6d;
  background:
    radial-gradient(circle at 12% 18%, rgba(207, 158, 98, 0.2), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(188, 122, 109, 0.16), transparent 18%),
    radial-gradient(circle at 70% 78%, rgba(209, 221, 230, 0.12), transparent 22%),
    linear-gradient(145deg, #0e1015 0%, #171217 38%, #120f12 100%);
}

.public-app-shell .public-backdrop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.public-app-shell .public-backdrop::before,
.public-app-shell .public-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.public-app-shell .public-backdrop::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04), transparent 16%),
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.05), transparent 20%),
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 24px,
      rgba(255, 255, 255, 0.018) 24px,
      rgba(255, 255, 255, 0.018) 25px
    );
  opacity: 0.9;
}

.public-app-shell .public-backdrop::after {
  width: 34rem;
  height: 34rem;
  inset: auto auto -10rem -8rem;
  border-radius: 42% 58% 64% 36% / 42% 38% 62% 58%;
  background: radial-gradient(circle, rgba(207, 158, 98, 0.18), rgba(207, 158, 98, 0.02) 70%, transparent 78%);
  filter: blur(18px);
  animation: driftBlob 16s ease-in-out infinite alternate;
}

.public-app-shell .public-header,
.public-app-shell .public-footer,
.public-app-shell .public-main {
  z-index: 1;
}

.public-app-shell .public-header,
.public-app-shell .public-footer {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.public-app-shell .public-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.35rem;
}

.public-app-shell .brand-lockup {
  gap: 0.1rem;
}

.public-app-shell .brand-eyebrow {
  color: rgba(246, 239, 228, 0.56);
  letter-spacing: 0.26em;
}

.public-app-shell .brand-name {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.public-app-shell .public-main {
  width: min(1280px, calc(100% - 2rem));
  padding-top: 1.25rem;
  padding-bottom: 4.5rem;
}

.public-app-shell .public-footer {
  padding-bottom: 2rem;
  color: rgba(246, 239, 228, 0.62);
}

.public-app-shell .muted,
.public-app-shell .field-help,
.public-app-shell .detail-label {
  color: rgba(30, 26, 24, 0.62);
}

.editorial-overline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  color: rgba(246, 239, 228, 0.62);
}

.editorial-script {
  margin: 0 0 0.6rem;
  font-family: "Snell Roundhand", "Segoe Script", "Apple Chancery", cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  color: rgba(246, 239, 228, 0.78);
}

.editorial-landing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 10rem);
}

.editorial-copy-column h1,
.editorial-aside-card h1,
.editorial-message-card h1 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.editorial-copy-column {
  max-width: 38rem;
}

.editorial-lead,
.editorial-note-copy,
.editorial-message-copy,
.editorial-aside-copy,
.editorial-aside-foot,
.editorial-section-copy {
  font-size: 1.02rem;
  line-height: 1.7;
}

.editorial-lead {
  max-width: 33rem;
  color: rgba(246, 239, 228, 0.78);
  margin: 1.4rem 0;
}

.editorial-note-copy,
.editorial-aside-foot {
  color: rgba(246, 239, 228, 0.62);
}

.editorial-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.6rem 0 1.2rem;
}

.editorial-meta-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.3rem 0.6rem 1.3rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.editorial-meta-card .detail-label {
  color: rgba(246, 239, 228, 0.54);
}

.editorial-stage-column {
  position: relative;
}

.editorial-stage-card {
  position: relative;
  display: grid;
  gap: 1rem;
}

.editorial-image-stack {
  position: relative;
  padding: 1rem 0 0 3rem;
}

.editorial-image-frame {
  overflow: hidden;
  border-radius: 3rem 0.9rem 3rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(-3.5deg);
  background: rgba(255, 255, 255, 0.04);
}

.editorial-image-frame img,
.editorial-rsvp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.editorial-image-frame img {
  aspect-ratio: 4 / 5;
}

.editorial-date-chip {
  position: absolute;
  top: 1.4rem;
  left: 0;
  z-index: 1;
  max-width: 14rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1.4rem 1.4rem 1.4rem 0.4rem;
  background: var(--app-paper-strong);
  color: var(--app-ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.15;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transform: rotate(-8deg);
}

.editorial-location-plaque {
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  max-width: 13rem;
  padding: 1rem 1rem 0.9rem;
  border-radius: 1.2rem 1.2rem 0.5rem 1.2rem;
  background: rgba(12, 10, 10, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.editorial-location-plaque p,
.editorial-location-plaque span {
  margin: 0;
}

.editorial-location-plaque p {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.editorial-location-plaque span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(246, 239, 228, 0.6);
}

.editorial-entry-card,
.editorial-paper-card,
.editorial-message-card {
  background: var(--app-paper);
  color: var(--app-ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.editorial-entry-card {
  margin-top: -2.2rem;
  margin-left: 0.8rem;
  width: min(100%, 24rem);
  padding: 1.4rem;
  border-radius: 2rem 0.9rem 1.5rem 1.2rem;
  position: relative;
  z-index: 1;
}

.editorial-entry-card h2,
.editorial-paper-card h2,
.editorial-message-card h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.editorial-entry-card p,
.editorial-paper-card p,
.editorial-message-card p {
  margin-top: 0.6rem;
}

.editorial-invite-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.public-app-shell input,
.public-app-shell textarea,
.public-app-shell select {
  border: 1px solid rgba(30, 26, 24, 0.12);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.38);
  color: var(--app-ink);
}

.public-app-shell textarea::placeholder,
.public-app-shell input::placeholder {
  color: rgba(30, 26, 24, 0.42);
}

.editorial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.editorial-button:hover {
  transform: translateY(-1px);
}

.editorial-button-dark {
  background: linear-gradient(135deg, #171316, #2a2320);
  color: #f6efe4;
}

.editorial-button-light {
  background: rgba(255, 255, 255, 0.42);
  color: var(--app-ink);
  border-color: rgba(30, 26, 24, 0.12);
}

.editorial-rsvp-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.editorial-rsvp-aside {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 1rem;
}

.editorial-rsvp-image {
  overflow: hidden;
  min-height: 22rem;
  border-radius: 2.4rem 1rem 2.1rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.editorial-rsvp-image img {
  aspect-ratio: 4 / 5;
}

.editorial-aside-card {
  padding: 1.35rem;
  border-radius: 1.8rem 0.8rem 1.4rem 1.1rem;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
}

.editorial-aside-dark {
  background: rgba(16, 13, 16, 0.82);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

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

.editorial-mini-grid {
  margin-top: 1.2rem;
}

.editorial-form-stack {
  display: grid;
  gap: 1rem;
}

.public-app-shell .alert {
  border-radius: 1.5rem 0.8rem 1.4rem 0.9rem;
  background: rgba(248, 237, 224, 0.9);
  color: var(--app-ink);
  border-color: rgba(30, 26, 24, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.editorial-paper-card {
  padding: 1.4rem;
  border-radius: 2.1rem 0.95rem 1.8rem 1.1rem;
}

.editorial-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.editorial-member-list {
  display: grid;
  gap: 0.9rem;
}

.editorial-member-card {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(30, 26, 24, 0.08);
}

.editorial-member-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.editorial-member-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.editorial-member-meta {
  display: inline-block;
  margin-top: 0.35rem;
  color: rgba(30, 26, 24, 0.58);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.editorial-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.editorial-choice-row-wide {
  margin-top: 1.1rem;
}

.editorial-choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.75rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(30, 26, 24, 0.12);
  background: rgba(255, 255, 255, 0.42);
  color: var(--app-ink);
  cursor: pointer;
  transition: transform 160ms ease, background-color 240ms ease, border-color 240ms ease, color 240ms ease;
}

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

.editorial-choice-pill:has(input:checked) {
  background: linear-gradient(135deg, #20191a, #352926);
  color: #f6efe4;
  border-color: transparent;
  transform: translateY(-1px);
}

.editorial-travel-grid {
  margin-bottom: 1rem;
}

.editorial-travel-note {
  margin: 0;
  color: var(--app-rose);
  font-weight: 600;
}

.editorial-hotel-detail-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.editorial-hotel-detail-fields fieldset {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.editorial-hotel-detail-fields .field-label,
.editorial-hotel-detail-fields fieldset legend {
  color: rgba(21, 18, 14, 0.66);
}

.editorial-hotel-detail-fields.is-hidden,
.editorial-hotel-detail-fields[hidden] {
  display: none;
}

.editorial-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.editorial-message-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 12rem);
}

.editorial-message-shell-wide {
  align-items: start;
}

.editorial-message-card {
  width: min(100%, 44rem);
  padding: 1.7rem;
  border-radius: 2.4rem 0.9rem 2rem 1.2rem;
}

.editorial-message-card-large {
  width: min(100%, 52rem);
}

.editorial-summary-stack {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.25rem;
}

.public-app-shell .status-pill {
  background: rgba(30, 26, 24, 0.08);
  color: rgba(30, 26, 24, 0.84);
}

.public-app-shell .status-attending,
.public-app-shell .status-accepted {
  background: rgba(122, 160, 130, 0.18);
  color: #396247;
}

.public-app-shell .status-declining,
.public-app-shell .status-declined {
  background: rgba(188, 122, 109, 0.16);
  color: #8a4d46;
}

.public-app-shell .status-pending,
.public-app-shell .status-partial {
  background: rgba(207, 158, 98, 0.18);
  color: #875f24;
}

@keyframes driftBlob {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(2rem, -1rem, 0) scale(1.08);
  }
}

@media (max-width: 980px) {
  .editorial-landing,
  .editorial-rsvp-shell {
    grid-template-columns: 1fr;
  }

  .editorial-rsvp-aside {
    position: static;
  }

  .editorial-image-stack {
    padding-left: 0;
  }

  .editorial-entry-card {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .public-app-shell .public-main,
  .public-app-shell .public-header,
  .public-app-shell .public-footer {
    width: min(100%, calc(100% - 1rem));
  }

  .editorial-copy-column h1,
  .editorial-aside-card h1,
  .editorial-message-card h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .editorial-meta-grid,
  .editorial-mini-grid,
  .editorial-travel-grid {
    grid-template-columns: 1fr;
  }

  .editorial-date-chip {
    position: static;
    transform: none;
    max-width: none;
    margin-bottom: 0.75rem;
  }

  .editorial-location-plaque {
    right: auto;
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .editorial-member-head,
  .editorial-section-head {
    flex-direction: column;
    align-items: start;
  }

  .editorial-choice-pill,
  .editorial-button {
    width: 100%;
  }
}

.public-app-shell {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.055), transparent 16%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #050505 0%, #090909 52%, #040404 100%);
  color: #f2f2ed;
}

.public-app-shell .public-backdrop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.public-app-shell .public-backdrop::before,
.public-app-shell .public-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.public-app-shell .public-backdrop::before {
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.05) calc(100% - 1px)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(255, 255, 255, 0.022) 31px,
      rgba(255, 255, 255, 0.022) 32px
    );
  opacity: 0.7;
}

.public-app-shell .public-backdrop::after {
  inset: auto 4rem 4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.public-app-shell .public-header,
.public-app-shell .public-main,
.public-app-shell .public-footer {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.public-app-shell .public-header {
  padding-top: 1.25rem;
}

.public-app-shell .brand-lockup {
  gap: 0.12rem;
}

.public-app-shell .brand-eyebrow,
.public-app-shell .eyebrow,
.public-app-shell .detail-label {
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}

.public-app-shell .brand-name,
.noir-headline,
.noir-copy-column h1,
.noir-side-card h1,
.noir-panel h2,
.noir-message-card h1 {
  font-family: "Futura Condensed ExtraBold", "Avenir Next Condensed", "Helvetica Neue", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.public-app-shell .brand-name {
  font-size: 1.08rem;
}

.public-app-shell .public-main {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.public-app-shell .public-footer {
  padding-bottom: 2rem;
  color: rgba(255, 255, 255, 0.44);
}

.public-app-shell .muted,
.public-app-shell .field-help {
  color: rgba(255, 255, 255, 0.5);
}

.public-app-shell input,
.public-app-shell textarea,
.public-app-shell select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  color: #f2f2ed;
  padding: 0.95rem 1rem;
}

.public-app-shell input::placeholder,
.public-app-shell textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.public-app-shell .alert {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  color: #0f0f0f;
  border: 0;
  box-shadow: none;
}

.public-app-shell .alert .detail-label,
.public-app-shell .alert p,
.public-app-shell .alert li {
  color: inherit;
}

.noir-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.54);
}

.noir-landing {
  position: relative;
  min-height: calc(100vh - 10rem);
}

.noir-ghost-stack {
  position: absolute;
  inset: 0 auto auto 0;
  display: grid;
  gap: 0.15rem;
  font-family: "Futura Condensed ExtraBold", "Avenir Next Condensed", "Helvetica Neue", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  pointer-events: none;
}

.noir-landing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
  padding-top: 5rem;
}

.noir-photo-column {
  display: grid;
  gap: 0.85rem;
}

.noir-photo-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
  aspect-ratio: 4 / 5.1;
  overflow: hidden;
}

.noir-photo-frame img,
.noir-side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.88);
}

.noir-photo-caption {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.noir-copy-column {
  max-width: 44rem;
  justify-self: end;
}

.noir-headline,
.noir-copy-column h1,
.noir-side-card h1,
.noir-message-card h1 {
  margin: 0.45rem 0 0;
  font-size: clamp(4.4rem, 10vw, 8.6rem);
  line-height: 0.88;
  font-weight: 700;
}

.noir-subline {
  margin: 1.1rem 0 0;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.noir-rule {
  width: 100%;
  max-width: 9rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin: 1.3rem 0 1.25rem;
}

.noir-copy,
.noir-side-copy,
.noir-side-note,
.noir-panel-copy,
.noir-message-copy {
  font-size: 1rem;
  line-height: 1.7;
}

.noir-copy,
.noir-side-copy {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
}

.noir-formal-note,
.noir-side-note {
  color: rgba(255, 255, 255, 0.54);
}

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

.noir-metadata {
  margin: 1.4rem 0 1.1rem;
}

.noir-rsvp-module,
.noir-panel,
.noir-message-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.noir-rsvp-module {
  margin-top: 2rem;
  padding: 1.25rem;
}

.noir-module-head h2,
.noir-panel h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.94;
}

.noir-module-head p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.noir-invite-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.noir-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.noir-button:hover {
  transform: translateY(-1px);
}

.noir-button-dark {
  background: #f3f2ec;
  color: #050505;
  border-color: #f3f2ec;
}

.noir-button-light {
  background: transparent;
  color: #f3f2ec;
}

.noir-rsvp-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: start;
}

.noir-side-column {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 1rem;
}

.noir-side-ghost,
.noir-message-ghost {
  font-family: "Futura Condensed ExtraBold", "Avenir Next Condensed", "Helvetica Neue", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
}

.noir-side-media {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101010;
  aspect-ratio: 4 / 5.2;
  overflow: hidden;
}

.noir-side-card {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.noir-info-grid-compact {
  margin-top: 1.1rem;
}

.noir-form-stack {
  display: grid;
  gap: 1rem;
}

.noir-panel {
  padding: 1.2rem;
}

.noir-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.noir-panel-copy {
  max-width: 16rem;
  color: rgba(255, 255, 255, 0.58);
}

.noir-member-list {
  display: grid;
  gap: 0;
}

.noir-member-row,
.noir-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.noir-member-list .noir-member-row:first-child,
.noir-summary-stack .noir-summary-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.noir-member-copy,
.noir-summary-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.noir-member-row h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1;
}

.noir-member-meta {
  display: inline-block;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.noir-choice-row,
.noir-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.noir-choice-row {
  margin-top: 0.9rem;
}

.noir-choice-row-wide {
  margin-top: 1rem;
}

.noir-choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.noir-choice-pill:has(input:checked) {
  background: #f3f2ec;
  color: #050505;
  border-color: #f3f2ec;
}

.noir-hotel-detail-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.noir-inline-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.noir-summary-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.noir-message-shell {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: calc(100vh - 12rem);
  align-content: start;
}

.noir-message-shell-wide {
  padding-top: 4rem;
}

.noir-message-card {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  padding: 1.5rem;
}

.noir-message-card-wide {
  width: min(100%, 56rem);
}

.public-app-shell .status-pill {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.public-app-shell .status-attending,
.public-app-shell .status-accepted {
  background: #f3f2ec;
  color: #050505;
  border-color: #f3f2ec;
}

.public-app-shell .status-declining,
.public-app-shell .status-declined,
.public-app-shell .status-pending,
.public-app-shell .status-partial {
  background: transparent;
}

@media (max-width: 980px) {
  .noir-landing-grid,
  .noir-rsvp-shell {
    grid-template-columns: 1fr;
  }

  .noir-side-column {
    position: static;
  }
}

@media (max-width: 720px) {
  .public-app-shell .public-header,
  .public-app-shell .public-main,
  .public-app-shell .public-footer {
    width: min(100%, calc(100% - 1rem));
  }

  .noir-headline,
  .noir-copy-column h1,
  .noir-side-card h1,
  .noir-message-card h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .noir-metadata,
  .noir-info-grid {
    grid-template-columns: 1fr;
  }

  .noir-panel-head,
  .noir-member-row,
  .noir-summary-row {
    flex-direction: column;
    align-items: start;
  }

  .noir-choice-pill,
  .noir-button {
    width: 100%;
  }
}

.public-app-shell {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.035), transparent 18%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 48%, #090909 100%);
  color: #ece9e2;
}

.public-app-shell .public-backdrop::before {
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 39px,
      rgba(255, 255, 255, 0.012) 39px,
      rgba(255, 255, 255, 0.012) 40px
    );
  opacity: 0.55;
}

.public-app-shell .public-backdrop::after {
  display: none;
}

.public-app-shell .public-header,
.public-app-shell .public-main,
.public-app-shell .public-footer {
  width: min(1120px, calc(100% - 1.5rem));
}

.public-app-shell .public-header {
  padding-top: 1rem;
}

.public-app-shell .brand-eyebrow,
.public-app-shell .detail-label,
.gallery-kicker {
  color: rgba(236, 233, 226, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
}

.public-app-shell .brand-name,
.gallery-headline,
.gallery-side-card h1,
.gallery-panel h2,
.gallery-message-card h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 500;
}

.public-app-shell .brand-name {
  font-size: 1.05rem;
}

.public-app-shell .muted,
.public-app-shell .field-help {
  color: rgba(236, 233, 226, 0.48);
}

.public-app-shell input,
.public-app-shell textarea,
.public-app-shell select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  color: #ece9e2;
  padding: 0.9rem 0.95rem;
}

.public-app-shell input::placeholder,
.public-app-shell textarea::placeholder {
  color: rgba(236, 233, 226, 0.28);
}

.public-app-shell .alert {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #ece9e2;
  box-shadow: none;
}

.gallery-landing {
  min-height: calc(100vh - 9rem);
  display: grid;
  align-items: center;
}

.gallery-landing-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

.gallery-photo-column {
  display: grid;
  gap: 0.75rem;
}

.gallery-photo-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #121212;
}

.gallery-photo-frame img,
.gallery-side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03) brightness(0.92);
}

.gallery-photo-caption {
  margin: 0;
  color: rgba(236, 233, 226, 0.42);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.gallery-copy-column {
  max-width: 38rem;
  justify-self: end;
  padding-top: 0.2rem;
}

.gallery-headline,
.gallery-copy-column h1,
.gallery-side-card h1,
.gallery-message-card h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.8rem, 7vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.gallery-subline {
  margin: 0.9rem 0 0;
  color: rgba(236, 233, 226, 0.7);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}

.gallery-copy,
.gallery-side-copy,
.gallery-side-note,
.gallery-panel-copy,
.gallery-message-copy {
  line-height: 1.72;
  font-size: 0.98rem;
}

.gallery-copy,
.gallery-side-copy {
  max-width: 30rem;
  color: rgba(236, 233, 226, 0.82);
}

.gallery-formal-note,
.gallery-side-note {
  color: rgba(236, 233, 226, 0.52);
}

.gallery-metadata,
.gallery-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.3rem;
}

.gallery-metadata {
  margin: 1.35rem 0 1.15rem;
}

.gallery-rsvp-module,
.gallery-panel,
.gallery-message-card,
.gallery-side-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.gallery-rsvp-module {
  margin-top: 1.8rem;
  padding: 1rem;
  border-radius: 1rem;
}

.gallery-module-head h2,
.gallery-panel h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.02;
}

.gallery-module-head p:last-child,
.gallery-panel-copy {
  color: rgba(236, 233, 226, 0.58);
}

.gallery-invite-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.gallery-button:hover {
  transform: translateY(-1px);
}

.gallery-button-solid {
  background: #ece9e2;
  color: #0c0c0c;
  border-color: #ece9e2;
}

.gallery-button-ghost {
  background: transparent;
  color: #ece9e2;
}

.gallery-rsvp-shell {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  align-items: start;
}

.gallery-side-column {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.gallery-side-media {
  overflow: hidden;
  aspect-ratio: 4 / 5.15;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.gallery-side-card {
  padding: 1rem;
  border-radius: 1rem;
}

.gallery-info-grid-compact {
  margin-top: 1rem;
}

.gallery-form-stack {
  display: grid;
  gap: 0.9rem;
}

.gallery-panel {
  padding: 1rem;
  border-radius: 1rem;
}

.gallery-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.gallery-member-list {
  display: grid;
  gap: 0.75rem;
}

.gallery-member-row,
.gallery-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-member-list .gallery-member-row:first-child,
.gallery-summary-stack .gallery-summary-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.gallery-member-copy,
.gallery-summary-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gallery-member-row h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.08;
}

.gallery-member-meta {
  color: rgba(236, 233, 226, 0.42);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-choice-row,
.gallery-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gallery-choice-row {
  margin-top: 0.9rem;
}

.gallery-choice-row-wide {
  margin-top: 1rem;
}

.gallery-choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  min-height: 2.8rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  font-size: 0.76rem;
  color: rgba(236, 233, 226, 0.86);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.gallery-choice-pill:has(input:checked) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.gallery-hotel-detail-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-inline-note {
  margin: 0;
  color: rgba(236, 233, 226, 0.64);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.gallery-summary-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.gallery-message-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 12rem);
}

.gallery-message-shell-wide {
  align-items: start;
  padding-top: 4rem;
}

.gallery-message-card {
  width: min(100%, 44rem);
  padding: 1.15rem;
  border-radius: 1rem;
}

.gallery-message-card-wide {
  width: min(100%, 52rem);
}

.public-app-shell .status-pill {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(236, 233, 226, 0.82);
}

.public-app-shell .status-attending,
.public-app-shell .status-accepted {
  background: rgba(255, 255, 255, 0.08);
  color: #ece9e2;
}

.public-app-shell .status-declining,
.public-app-shell .status-declined,
.public-app-shell .status-pending,
.public-app-shell .status-partial {
  background: transparent;
}

@media (max-width: 900px) {
  .gallery-landing-grid,
  .gallery-rsvp-shell {
    grid-template-columns: 1fr;
  }

  .gallery-side-column {
    position: static;
  }
}

@media (max-width: 640px) {
  .public-app-shell .public-header,
  .public-app-shell .public-main,
  .public-app-shell .public-footer {
    width: min(100%, calc(100% - 1rem));
  }

  .gallery-headline,
  .gallery-copy-column h1,
  .gallery-side-card h1,
  .gallery-message-card h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .gallery-metadata,
  .gallery-info-grid,
  .gallery-invite-form {
    grid-template-columns: 1fr;
  }

  .gallery-panel-head,
  .gallery-member-row,
  .gallery-summary-row {
    flex-direction: column;
    align-items: start;
  }

  .gallery-choice-pill,
  .gallery-button {
    width: 100%;
  }
}

.soft-stage {
  position: relative;
  display: grid;
  min-height: calc(100vh - 9.5rem);
  overflow: hidden;
  border-radius: 1.4rem;
  background: #090909;
}

.soft-stage-static {
  place-items: center;
}

.soft-background,
.soft-overlay {
  position: absolute;
  inset: 0;
}

.soft-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) brightness(0.7);
  transform: scale(1.03);
}

.soft-overlay {
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(circle at 50% 22%, rgba(255, 223, 185, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.4));
}

.soft-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 48rem);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  color: #f6f4ef;
  text-align: center;
}

.soft-kicker,
.soft-section-label {
  margin: 0;
  color: rgba(246, 244, 239, 0.7);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.soft-title,
.soft-content h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.soft-subtitle,
.soft-subtle-copy {
  margin: 0;
  max-width: 34rem;
  color: rgba(246, 244, 239, 0.74);
  font-size: 0.95rem;
  line-height: 1.65;
}

.soft-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 42rem);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0.01) 34%, rgba(255, 255, 255, 0.018) 56%, rgba(255, 255, 255, 0.082) 100%),
    rgba(255, 255, 255, 0.042);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    inset 1px 0 0 rgba(255, 255, 255, 0.08),
    inset -1px 0 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(112%);
  text-align: left;
}

.soft-card-narrow {
  width: min(100%, 32rem);
}

.soft-card-compact {
  width: min(100%, 31rem);
}

.soft-card::before,
.soft-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.soft-card::before {
  z-index: 0;
  background:
    radial-gradient(circle at 17% 4%, rgba(250, 209, 150, 0.22), transparent 12%),
    radial-gradient(circle at 14% 88%, rgba(244, 190, 122, 0.12), transparent 10%),
    radial-gradient(circle at 86% 72%, rgba(240, 186, 126, 0.08), transparent 12%),
    linear-gradient(90deg, transparent 2%, rgba(255, 255, 255, 0.08) 15%, transparent 25%),
    linear-gradient(90deg, transparent 32%, rgba(255, 255, 255, 0.045) 44%, transparent 54%),
    linear-gradient(90deg, transparent 63%, rgba(255, 255, 255, 0.05) 73%, transparent 82%),
    radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(255, 255, 255, 0.026) 68%, rgba(255, 255, 255, 0.11) 100%);
  backdrop-filter: blur(16px) saturate(118%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 0 43%, rgba(0, 0, 0, 0.22) 63%, #000 88%);
  mask-image: radial-gradient(circle at 50% 50%, transparent 0 43%, rgba(0, 0, 0, 0.22) 63%, #000 88%);
}

.soft-card::after {
  z-index: 0;
  opacity: 0.52;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 3.2%, transparent 96.4%, rgba(255, 255, 255, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 7%, transparent 93%, rgba(255, 255, 255, 0.03)),
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.05) 12%, transparent 22%),
    radial-gradient(circle at 7% 13%, rgba(255, 228, 189, 0.18) 0, rgba(255, 228, 189, 0.18) 0.9px, transparent 2px),
    radial-gradient(circle at 13% 28%, rgba(255, 238, 219, 0.12) 0, rgba(255, 238, 219, 0.12) 1px, transparent 2.1px),
    radial-gradient(circle at 18% 64%, rgba(252, 214, 165, 0.12) 0, rgba(252, 214, 165, 0.12) 0.9px, transparent 1.9px),
    radial-gradient(circle at 24% 83%, rgba(255, 229, 197, 0.1) 0, rgba(255, 229, 197, 0.1) 1.1px, transparent 2.1px),
    radial-gradient(circle at 41% 19%, rgba(255, 240, 223, 0.09) 0, rgba(255, 240, 223, 0.09) 0.9px, transparent 1.9px),
    radial-gradient(circle at 56% 51%, rgba(255, 224, 184, 0.11) 0, rgba(255, 224, 184, 0.11) 1px, transparent 2.2px),
    radial-gradient(circle at 68% 29%, rgba(255, 240, 221, 0.11) 0, rgba(255, 240, 221, 0.11) 1px, transparent 2px),
    radial-gradient(circle at 73% 72%, rgba(255, 226, 189, 0.1) 0, rgba(255, 226, 189, 0.1) 0.9px, transparent 1.9px),
    radial-gradient(circle at 82% 14%, rgba(255, 237, 218, 0.1) 0, rgba(255, 237, 218, 0.1) 1px, transparent 2px),
    radial-gradient(circle at 89% 63%, rgba(255, 215, 162, 0.11) 0, rgba(255, 215, 162, 0.11) 1px, transparent 2.1px);
}

.soft-card > * {
  position: relative;
  z-index: 1;
}

.soft-card h1,
.soft-card h2,
.soft-card h3 {
  margin: 0;
  color: #fffdf9;
}

.soft-card h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.08;
}

.soft-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.soft-card-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.soft-card-head p,
.soft-section-copy {
  margin: 0;
  max-width: 20rem;
  color: rgba(246, 244, 239, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
}

.soft-section + .soft-section {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.soft-section-tight {
  margin: 0;
  padding: 0;
  border-top: 0;
}

.soft-invite-form {
  display: grid;
  gap: 0.85rem;
}

.soft-wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.soft-wizard-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.1rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(246, 244, 239, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.soft-wizard-pill.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: #f6f4ef;
}

.soft-wizard-pill.is-complete {
  color: rgba(246, 244, 239, 0.82);
}

.soft-wizard-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.62rem;
  letter-spacing: 0;
}

.soft-step {
  display: none;
}

.soft-step.is-active {
  display: grid;
  gap: 0.95rem;
}

.soft-member-list,
.soft-summary-stack {
  display: grid;
  gap: 0.9rem;
}

.soft-member-row,
.soft-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.soft-member-row-readonly .soft-member-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.soft-member-copy,
.soft-summary-copy {
  min-width: 0;
}

.soft-member-row h2,
.soft-summary-copy strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.15;
}

.soft-member-meta {
  color: rgba(246, 244, 239, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.soft-choice-row,
.soft-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.soft-choice-row-wide {
  margin-top: 0.9rem;
}

.soft-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.soft-step-actions-end {
  justify-content: flex-end;
}

.soft-choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  min-height: 2.35rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 244, 239, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.soft-choice-pill:has(input:checked) {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #0b0b0b;
}

.soft-card textarea,
.soft-card input,
.soft-card select {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
  color: #f6f4ef;
  border-radius: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.soft-card textarea {
  min-height: 8rem;
}

.soft-card textarea:focus,
.soft-card input:focus,
.soft-card select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.soft-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin-top: 0.95rem;
}

.soft-info-grid strong {
  display: block;
  margin-top: 0.16rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.soft-inline-note {
  margin: 0;
  color: rgba(246, 244, 239, 0.66);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.soft-hotel-detail-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.soft-hotel-detail-fields fieldset {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.55rem;
}

.soft-hotel-detail-fields legend {
  margin-bottom: 0.15rem;
}

.soft-night-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.soft-night-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 244, 239, 0.82);
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.soft-night-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.soft-night-pill:has(input:checked) {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fffdf9;
}

.soft-summary-stack > div {
  display: grid;
  gap: 0.18rem;
}

.soft-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.soft-button:hover {
  transform: translateY(-1px);
}

.soft-button-solid {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.94);
  color: #0d0d0d;
}

.soft-button-ghost {
  background: transparent;
  color: #f6f4ef;
}

.soft-button-row {
  margin-top: 1.15rem;
}

.soft-button-row-center {
  justify-content: center;
}

.soft-footer-note {
  margin: 0;
  max-width: 32rem;
  color: rgba(246, 244, 239, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.65;
}

.soft-card .alert {
  margin-bottom: 0.9rem;
}

.soft-card .field-help,
.soft-card .muted,
.soft-card .detail-label {
  color: rgba(246, 244, 239, 0.58);
}

@media (max-width: 700px) {
  .soft-stage {
    min-height: calc(100vh - 7rem);
    border-radius: 1rem;
  }

  .soft-content {
    width: min(100%, 100%);
    gap: 0.75rem;
    padding: 1.25rem 0.8rem 2rem;
  }

  .soft-card {
    padding: 1.05rem;
    border-radius: 1.2rem;
  }

  .soft-title,
  .soft-content h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .soft-card-head,
  .soft-member-row,
  .soft-summary-row,
  .soft-member-row-readonly .soft-member-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .soft-invite-form,
  .soft-invite-form {
    grid-template-columns: 1fr;
  }

  .soft-choice-pill,
  .soft-button,
  .soft-wizard-pill {
    width: 100%;
  }

  .soft-button-row,
  .soft-step-actions {
    flex-direction: column;
  }

  .soft-member-row .soft-choice-row {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .soft-info-grid,
  .soft-night-grid {
    grid-template-columns: 1fr;
  }
}

.editorial-rsvp-view {
  background: #dadada;
  color: #15120e;
  overflow-x: hidden;
}

.editorial-rsvp-view .public-backdrop {
  background: transparent;
}

.editorial-rsvp-view .public-main,
.editorial-rsvp-view .public-footer {
  width: min(1180px, calc(100% - 1.5rem));
}

.editorial-rsvp-view .public-main {
  padding-top: clamp(0.9rem, 2vw, 1.6rem);
}

.editorial-rsvp-view .public-footer {
  color: rgba(21, 18, 14, 0.42);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.editorial-rsvp-view .detail-label {
  display: block;
  color: rgba(21, 18, 14, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.editorial-rsvp-view input,
.editorial-rsvp-view textarea,
.editorial-rsvp-view select {
  width: 100%;
  border: 1px solid rgba(21, 18, 14, 0.14);
  border-radius: 1rem;
  background: rgba(241, 241, 241, 0.94);
  color: #15120e;
  padding: 0.9rem 0.95rem;
}

.editorial-rsvp-view input::placeholder,
.editorial-rsvp-view textarea::placeholder {
  color: rgba(21, 18, 14, 0.34);
}

.editorial-rsvp-view textarea:focus,
.editorial-rsvp-view input:focus,
.editorial-rsvp-view select:focus {
  outline: 2px solid rgba(21, 18, 14, 0.1);
  outline-offset: 1px;
}

.editorial-rsvp-view .status-pill {
  border: 1px solid rgba(21, 18, 14, 0.14);
  background: transparent;
  color: rgba(21, 18, 14, 0.82);
}

.editorial-rsvp-view .status-attending,
.editorial-rsvp-view .status-accepted {
  background: #15120e;
  border-color: #15120e;
  color: #f8f4ec;
}

.editorial-rsvp-view .status-declining,
.editorial-rsvp-view .status-declined,
.editorial-rsvp-view .status-pending,
.editorial-rsvp-view .status-partial {
  background: transparent;
}

.editorial-rsvp-view .alert {
  margin-bottom: 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(21, 18, 14, 0.1);
  background: rgba(241, 241, 241, 0.7);
}

.editorial-rsvp-view .alert p,
.editorial-rsvp-view .alert li,
.editorial-rsvp-view .field-help,
.editorial-rsvp-view .muted {
  color: #15120e;
}

.editorial-intro,
.editorial-shell,
.editorial-closing-scene {
  animation: editorial-fade-up 320ms ease;
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(20rem, 0.7fr);
  min-height: calc(100vh - 9rem);
  overflow: hidden;
  border: 1px solid rgba(21, 18, 14, 0.1);
  border-radius: 1.8rem;
  background: #dadada;
  box-shadow: 0 24px 80px rgba(56, 45, 25, 0.08);
  transition: opacity 180ms ease, transform 180ms ease;
}

.editorial-intro.is-leaving {
  opacity: 0;
  transform: translateY(10px);
}

.editorial-intro-media,
.editorial-closing-media {
  position: relative;
  overflow: hidden;
  background: #dadada;
}

.editorial-intro-media::after,
.editorial-closing-media::after {
  content: none;
}

.editorial-intro-media img,
.editorial-closing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.editorial-intro-copy,
.editorial-closing-pane {
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.75rem);
}

.editorial-acknowledgment-copy {
  align-content: center;
}

.editorial-eyebrow,
.editorial-section-label {
  margin: 0;
  color: rgba(21, 18, 14, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.editorial-intro-copy h1,
.editorial-heading h1,
.editorial-closing-pane h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3.1rem, 6vw, 5.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: #15120e;
}

.editorial-intro-meta,
.editorial-subtitle,
.editorial-art-note,
.editorial-muted-copy {
  margin: 0;
  color: rgba(21, 18, 14, 0.6);
  font-size: 0.92rem;
  line-height: 1.55;
}

.editorial-muted-copy a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(21, 18, 14, 0.28);
}

.editorial-muted-copy a:hover {
  border-bottom-color: rgba(21, 18, 14, 0.7);
}

.editorial-hotel-question-copy {
  margin-top: 0.45rem;
}

.editorial-booking-copy,
.editorial-attire-copy {
  margin-top: 0.75rem;
}

.editorial-enter-button,
.editorial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(21, 18, 14, 0.16);
  border-radius: 999px;
  background: transparent;
  color: #15120e;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.editorial-enter-button:hover,
.editorial-button:hover,
.editorial-choice-pill:hover,
.editorial-night-pill:hover {
  transform: translateY(-1px);
}

.editorial-button:disabled {
  transform: none;
  cursor: not-allowed;
  background: rgba(21, 18, 14, 0.14);
  border-color: rgba(21, 18, 14, 0.08);
  color: rgba(21, 18, 14, 0.46);
}

.editorial-button:disabled:hover {
  transform: none;
}

.editorial-enter-button {
  justify-self: start;
  min-width: 7rem;
}

.editorial-acknowledgment-check {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(21, 18, 14, 0.14);
  border-radius: 1rem;
  background: rgba(236, 236, 236, 0.88);
  color: #15120e;
  cursor: pointer;
}

.editorial-acknowledgment-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: #15120e;
  flex-shrink: 0;
}

.editorial-acknowledgment-check span {
  line-height: 1.4;
}

.editorial-shell,
.editorial-closing-scene {
  display: grid;
  grid-template-columns: minmax(17rem, 1fr) minmax(0, 32rem);
  gap: clamp(1rem, 3vw, 2.2rem);
  min-height: calc(100vh - 9rem);
  padding: clamp(1rem, 3vw, 1.8rem);
  border: 1px solid rgba(21, 18, 14, 0.1);
  border-radius: 1.8rem;
  background: #dadada;
  box-shadow: 0 24px 80px rgba(56, 45, 25, 0.08);
}

.editorial-shell-static {
  align-items: stretch;
}

.editorial-art-pane {
  position: sticky;
  top: 1rem;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.8rem;
  min-height: clamp(28rem, 74vh, 44rem);
}

.editorial-art-surface {
  overflow: hidden;
  border: 1px solid rgba(21, 18, 14, 0.1);
  border-radius: 1.35rem;
  background: #dadada;
}

.editorial-art-surface-landing {
  position: relative;
  isolation: isolate;
  background: #dadada;
}

.editorial-art-surface-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(218, 218, 218, 0.16);
  mix-blend-mode: screen;
  pointer-events: none;
}

.editorial-art-surface img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 2.8vw, 2.4rem);
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.editorial-art-image-landing {
  width: 118%;
  height: 118%;
  max-width: none;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transform: translate(-2%, 7%) rotate(-11deg) scale(1.36);
  transform-origin: center;
  filter: grayscale(1) brightness(0.98) contrast(0.98) saturate(0);
}

.editorial-flow-pane {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
}

.editorial-heading {
  display: grid;
  gap: 0.45rem;
  max-width: 32rem;
}

.editorial-panel {
  width: min(100%, 32rem);
  padding: 1.25rem;
  border: 1px solid rgba(21, 18, 14, 0.12);
  border-radius: 1.35rem;
  background: rgba(236, 236, 236, 0.9);
  box-shadow: 0 16px 46px rgba(56, 45, 25, 0.05);
}

.editorial-panel-confirmation,
.editorial-panel-static {
  width: min(100%, 30rem);
}

.editorial-progress {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.editorial-progress-step {
  display: grid;
  gap: 0.18rem;
  padding: 0.55rem 0 0;
  border: 0;
  border-top: 1px solid rgba(21, 18, 14, 0.16);
  background: transparent;
  color: rgba(21, 18, 14, 0.38);
  text-align: left;
  cursor: pointer;
}

.editorial-progress-step.is-active {
  border-color: #15120e;
  color: #15120e;
}

.editorial-progress-step.is-complete {
  color: rgba(21, 18, 14, 0.64);
}

.editorial-progress-index {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.editorial-progress-name {
  font-size: 0.84rem;
  line-height: 1.25;
}

.editorial-step {
  display: none;
}

.editorial-step.is-active {
  display: grid;
  gap: 1rem;
}

.editorial-block + .editorial-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 18, 14, 0.08);
}

.editorial-block-tight {
  margin: 0;
  padding: 0;
  border-top: 0;
}

.editorial-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.editorial-block-head h2 {
  margin: 0.1rem 0 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.04;
  color: #15120e;
}

.editorial-button-small {
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.74rem;
}

.editorial-action-card {
  border-radius: 1.05rem;
}

.editorial-action-summary {
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(21, 18, 14, 0.08);
  border-radius: 0.95rem;
  background: rgba(248, 248, 248, 0.54);
}

.editorial-action-summary strong {
  color: #15120e;
  font-size: 0.96rem;
  line-height: 1.35;
}

.editorial-action-summary p {
  margin: 0.12rem 0 0;
}

.editorial-action-status {
  margin-top: 0.65rem;
}

.editorial-response-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 18, 14, 0.08);
}

.editorial-response-actions .editorial-button-row {
  margin-top: 0;
}

.editorial-section-copy {
  margin: 0;
  color: rgba(21, 18, 14, 0.54);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: right;
}

.editorial-member-list,
.editorial-summary-stack {
  display: grid;
  gap: 0.9rem;
}

.editorial-member-row,
.editorial-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.editorial-member-copy {
  min-width: 0;
  display: grid;
  gap: 0.16rem;
}

.editorial-member-copy strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.22;
  color: #15120e;
}

.editorial-member-meta {
  color: rgba(21, 18, 14, 0.46);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.editorial-choice-row,
.editorial-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.editorial-hotel-submit-row {
  transition: opacity 220ms ease, visibility 220ms ease;
}

.editorial-hotel-submit-row.is-delayed-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.editorial-choice-row-wide {
  margin-top: 0.9rem;
}

.editorial-choice-row-hotel .editorial-choice-pill {
  flex: 1 1 14rem;
}

.editorial-choice-pill,
.editorial-night-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(21, 18, 14, 0.14);
  border-radius: 999px;
  background: rgba(238, 238, 238, 0.96);
  color: #15120e;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.editorial-choice-pill span,
.editorial-night-pill span {
  text-align: center;
  line-height: 1.35;
}

.editorial-choice-pill input,
.editorial-night-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.editorial-choice-pill:has(input:checked),
.editorial-night-pill:has(input:checked) {
  border-color: #15120e;
  background: #15120e;
  color: #f8f4ec;
}

.editorial-hotel-link-line a,
.editorial-hotel-question-copy a {
  color: #1d5fd0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  border-bottom: 0;
}

.editorial-hotel-link-line a:hover,
.editorial-hotel-question-copy a:hover {
  color: #154ba8;
  border-bottom: 0;
}

.editorial-booking-summary {
  gap: 0.85rem;
}

.editorial-attire-palette {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0;
}

.editorial-attire-swatch {
  min-height: 6.4rem;
  border-radius: 0.9rem;
  background: var(--swatch-color);
}

.editorial-attire-guides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.editorial-attire-guide {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  align-self: start;
  padding-top: 0.1rem;
}

.editorial-attire-guide p {
  margin: 0;
}

@media (max-width: 640px) {
  .editorial-attire-palette {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .editorial-attire-guides {
    grid-template-columns: 1fr;
  }
}

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

.editorial-meta-grid strong {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #15120e;
}

.editorial-hotel-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.editorial-hotel-fields.is-hidden {
  display: none;
}

.editorial-hotel-fields fieldset {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.editorial-night-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.editorial-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.3rem;
}

.editorial-step-actions-end {
  justify-content: flex-end;
}

.editorial-button-solid {
  border-color: #15120e;
  background: #15120e;
  color: #f8f4ec;
}

.editorial-hotel-submit-button {
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, opacity 220ms ease;
}

.editorial-button-solid:disabled {
  border-color: #c7c7c7;
  background: #c7c7c7;
  color: #676767;
}

.editorial-button-ghost {
  background: transparent;
}

.editorial-button-row {
  margin-top: 1rem;
}

.editorial-block-note {
  margin-top: 0.9rem;
}

.editorial-note-form {
  display: grid;
  gap: 0.7rem;
}

.editorial-note-status {
  min-height: 1.2em;
  font-size: 0.82rem;
}

.editorial-summary-stack > div {
  display: grid;
  gap: 0.16rem;
}

.editorial-note-copy {
  margin: 0;
  line-height: 1.55;
  white-space: pre-wrap;
  color: rgba(21, 18, 14, 0.72);
}

.editorial-note-preview {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(21, 18, 14, 0.08);
  border-radius: 0.95rem;
  background: rgba(248, 248, 248, 0.54);
}

@keyframes editorial-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .editorial-intro,
  .editorial-shell,
  .editorial-closing-scene {
    grid-template-columns: 1fr;
  }

  .editorial-intro {
    min-height: calc(100vh - 7rem);
  }

  .editorial-intro-media {
    min-height: 56vh;
  }

  .editorial-intro-media img,
  .editorial-closing-media img {
    object-fit: contain;
    padding: 1rem 1rem 0;
  }

  .editorial-art-pane {
    position: static;
    min-height: auto;
  }

  .editorial-art-surface {
    aspect-ratio: 1.1;
  }

  .editorial-art-image-landing {
    width: 122%;
    height: 122%;
    transform: translate(-1%, 5%) rotate(-9deg) scale(1.38);
  }

  .editorial-flow-pane,
  .editorial-intro-copy,
  .editorial-closing-pane {
    align-content: start;
  }

  .editorial-acknowledgment-check {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .editorial-intro,
  .editorial-shell,
  .editorial-closing-scene {
    min-height: calc(100vh - 6rem);
    border-radius: 1.2rem;
  }

  .editorial-shell,
  .editorial-closing-scene {
    padding: 0.9rem;
  }

  .editorial-intro-copy,
  .editorial-closing-pane {
    padding: 1rem;
  }

  .editorial-shell .editorial-subtitle {
    display: none;
  }

  .editorial-panel,
  .editorial-panel-confirmation,
  .editorial-panel-static {
    width: 100%;
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .editorial-intro-copy h1,
  .editorial-heading h1,
  .editorial-closing-pane h1 {
    font-size: clamp(2.4rem, 13vw, 3.9rem);
  }

  .editorial-block-head,
  .editorial-member-row,
  .editorial-summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .editorial-section-copy {
    text-align: left;
  }

  .editorial-choice-pill,
  .editorial-button {
    width: 100%;
  }

  .editorial-button-row,
  .editorial-step-actions {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .editorial-progress,
  .editorial-meta-grid,
  .editorial-night-grid {
    grid-template-columns: 1fr;
  }
}
