:root {
  --paper: #f8eee8;
  --paper-strong: rgba(255, 248, 242, 0.94);
  --surface: rgba(255, 248, 244, 0.58);
  --surface-strong: rgba(255, 248, 244, 0.76);
  --ink: #2c1422;
  --ink-strong: #180a13;
  --ink-soft: #7a6270;
  --navy: #4e2037;
  --navy-deep: #220b18;
  --teal: #dcb46c;
  --teal-soft: #f5e2bb;
  --coral: #bb5b7e;
  --amber: #f0d39e;
  --success: #2ea66f;
  --warning: #c57b36;
  --danger: #c14e60;
  --line: rgba(44, 20, 34, 0.1);
  --line-strong: rgba(44, 20, 34, 0.16);
  --shadow: 0 28px 90px rgba(34, 11, 24, 0.16);
  --shadow-soft: 0 16px 40px rgba(34, 11, 24, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(220, 180, 108, 0.28), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(187, 91, 126, 0.22), transparent 22%),
    radial-gradient(circle at 70% 64%, rgba(78, 32, 55, 0.14), transparent 24%),
    linear-gradient(180deg, #fff8f3 0%, #f9ede7 44%, #f6e0d8 100%);
  overflow-x: hidden;
}

body.guest-auth-open {
  overflow: hidden;
}

body.executive-open {
  overflow: hidden;
}

body.story-viewer-open {
  overflow: hidden;
}

body.executive-open .topbar,
body.executive-open .page-shell {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

body.admin-page {
  background:
    radial-gradient(circle at 16% 12%, rgba(220, 180, 108, 0.18), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(187, 91, 126, 0.16), transparent 24%),
    linear-gradient(180deg, #140712 0%, #28111e 42%, #f7efe7 42%, #f7efe7 100%);
}

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

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

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

button {
  cursor: pointer;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #f1d8ad, #dca85d, #bb5b7e);
  box-shadow: 0 0 30px rgba(187, 91, 126, 0.45);
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
  animation: floatAura 16s ease-in-out infinite;
}

.ambient-one {
  width: 32vw;
  aspect-ratio: 1;
  top: 10vh;
  left: -8vw;
  background: rgba(220, 180, 108, 0.24);
}

.ambient-two {
  width: 26vw;
  aspect-ratio: 1;
  top: 18vh;
  right: -5vw;
  background: rgba(187, 91, 126, 0.24);
  animation-delay: -5s;
}

.ambient-three {
  width: 28vw;
  aspect-ratio: 1;
  bottom: 4vh;
  right: 24vw;
  background: rgba(109, 35, 63, 0.18);
  animation-delay: -10s;
}

.topbar,
.page-shell {
  position: relative;
  z-index: 2;
}

.fireworks-canvas {
  display: none;
}

.topbar {
  position: sticky;
  top: 12px;
  width: min(1240px, calc(100% - 30px));
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.88);
  border: 1px solid rgba(255, 243, 236, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  isolation: isolate;
  z-index: 20;
}

body.admin-page .topbar {
  background: rgba(92, 78, 88, 0.92);
  border-color: rgba(240, 211, 158, 0.22);
  color: #fff3ea;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-nav-toggle,
.mobile-nav-header,
.mobile-nav-toolbar,
.mobile-nav-backdrop,
.mobile-nav-drawer {
  display: none;
}

.guest-persona-shell {
  position: relative;
}

.dashboard-launch-button {
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0d9a8, #d49d62 42%, #a43d69 100%);
  color: #fff7ef;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.32rem;
  box-shadow: 0 18px 30px rgba(164, 61, 105, 0.24);
}

.brand-label,
.brand-subtitle,
.eyebrow,
.fact-label,
.form-message,
.section-copy,
.admin-note,
.supporting-copy,
.helper-copy {
  margin: 0;
}

.brand-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

body.admin-page .brand-label,
body.admin-page .brand-subtitle {
  color: #dce9f0;
}

.brand-subtitle {
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a,
.nav-tab {
  position: relative;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.nav-links a::after,
.nav-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-tab:hover::after,
.nav-tab.is-active::after {
  transform: scaleX(1);
}

body.admin-page .nav-links a,
body.admin-page .nav-tab {
  color: #dce9f0;
}

.nav-tab.is-active,
.nav-tab:hover {
  color: var(--ink);
}

.mobile-nav-toggle {
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(122, 98, 112, 0.14);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.66);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(48, 22, 33, 0.08);
}

.mobile-nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.mobile-nav-toggle-icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.guest-persona {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(122, 98, 112, 0.14);
  border-radius: 999px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 251, 247, 0.72);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.guest-persona.is-open {
  border-color: rgba(220, 170, 96, 0.26);
  box-shadow: 0 18px 34px rgba(220, 170, 96, 0.14);
}

.guest-persona-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1d8ad, #dcaa60 58%, #bb5b7e);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #2b101c;
  font-weight: 800;
}

.guest-persona-avatar.has-image {
  color: transparent;
}

.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;
}

.guest-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(241, 216, 173, 0.98), rgba(220, 170, 96, 0.92) 58%, rgba(187, 91, 126, 0.88));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #2b101c;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(187, 91, 126, 0.15);
}

.guest-avatar.has-image {
  color: transparent;
}

.guest-avatar-large {
  width: 92px;
  height: 92px;
  border-radius: 30px;
  font-size: 1.6rem;
}

.guest-avatar-sm {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  font-size: 1rem;
}

.guest-persona-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.guest-persona-copy strong,
.guest-persona-copy span {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guest-persona-copy span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.guest-persona-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(380px, calc(100vw - 36px));
  max-height: min(78vh, calc(100vh - 104px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(122, 98, 112, 0.12);
  background:
    radial-gradient(circle at top right, rgba(240, 211, 158, 0.2), transparent 34%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.96), rgba(252, 240, 235, 0.94));
  box-shadow: 0 28px 64px rgba(34, 11, 24, 0.18);
  z-index: 25;
}

.guest-persona-menu[hidden] {
  display: none !important;
}

.guest-persona-menu-head,
.guest-persona-menu-copy {
  display: flex;
}

.guest-persona-menu-head {
  align-items: center;
  gap: 16px;
}

.guest-persona-menu-copy {
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.guest-persona-menu-copy strong,
.guest-persona-menu-copy p {
  margin: 0;
}

.guest-persona-menu-copy p {
  color: var(--ink-soft);
  line-height: 1.5;
}

.guest-persona-stat-grid,
.guest-persona-action-grid {
  display: grid;
  gap: 12px;
}

.guest-persona-stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.guest-persona-stat-card {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(122, 98, 112, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.guest-persona-stat-card span,
.guest-persona-stat-card strong {
  display: block;
}

.guest-persona-stat-card span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.guest-persona-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.guest-persona-action-grid .secondary-button,
.guest-persona-menu-footer .secondary-button,
.guest-persona-menu-footer .ghost-button {
  width: 100%;
}

.guest-persona-menu-footer {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(122, 98, 112, 0.1);
}

.guest-notification-status {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.page-shell {
  width: min(1240px, calc(100% - 30px));
  margin: 0 auto;
  padding: 24px 0 80px;
}

.guest-page .page-shell {
  padding-top: 40px;
}

[data-guest-panel][hidden],
.guest-auth-modal[hidden],
.wedding-alert-modal[hidden],
.incoming-chat-popup[hidden] {
  display: none !important;
}

.hero,
.feature-spotlight,
.feature-list,
.event-card,
.prize-card,
.immersive-card,
.gallery-item,
.menu-card,
.rsvp-card,
.travel-card,
.car-card,
.admin-hero,
.admin-hero-note,
.admin-login-card,
.admin-card,
.admin-record,
.metric-card,
.projection-panel,
.budget-summary,
.fact-card,
.countdown-card,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  padding: 30px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 82% 14%, rgba(240, 211, 158, 0.24), transparent 22%),
    radial-gradient(circle at 14% 24%, rgba(187, 91, 126, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(34, 11, 24, 0.98), rgba(72, 25, 48, 0.96) 44%, rgba(110, 39, 72, 0.94));
  color: #f2f8fb;
  transform-style: preserve-3d;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -60px;
  background: radial-gradient(circle, rgba(240, 211, 158, 0.34), transparent 72%);
  --aura-x: var(--hero-shift-x, 0px);
  --aura-y: var(--hero-shift-y, 0px);
  transform: translate3d(var(--aura-x), var(--aura-y), 0);
  animation: floatAura 16s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero::after {
  width: 240px;
  height: 240px;
  bottom: -90px;
  left: 42%;
  background: radial-gradient(circle, rgba(187, 91, 126, 0.22), transparent 74%);
  --aura-x: calc(var(--hero-shift-x, 0px) * -0.6);
  --aura-y: calc(var(--hero-shift-y, 0px) * -0.6);
  transform: translate3d(var(--aura-x), var(--aura-y), 0);
  animation: floatAura 20s ease-in-out infinite reverse;
  will-change: transform, opacity;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  color: #f1d49d;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.8rem, 9vw, 7rem);
  max-width: 10ch;
  margin: 16px 0 20px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.95rem;
}

h4 {
  font-size: 1.34rem;
}

.hero-tagline,
.section-copy,
.feature-spotlight p,
.feature-list p,
.event-description,
.menu-card p,
.travel-card p,
.rsvp-card label,
.stacked-form label,
.admin-record p,
.projection-panel p,
.gallery-meta p,
.countdown-card span,
.fact-card strong,
.supporting-copy,
.site-footer p {
  line-height: 1.72;
}

.hero-tagline,
.fact-card strong,
.countdown-card span,
.supporting-copy {
  color: rgba(242, 248, 251, 0.78);
}

.section-copy,
.feature-spotlight p,
.feature-list p,
.event-description,
.menu-card p,
.travel-card p,
.rsvp-card label,
.stacked-form label,
.admin-record p,
.projection-panel p,
.gallery-meta p,
.site-footer p {
  color: var(--ink-soft);
}

.hero-actions,
.travel-actions,
.admin-login-actions,
.record-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 28px 0;
}

.hero-interaction-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 24px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(240, 211, 158, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 239, 228, 0.78);
  font-size: 0.94rem;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: pulseHint 3.2s ease-in-out infinite;
}

.hero-interaction-hint::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1d8ad, #bb5b7e);
  box-shadow: 0 0 18px rgba(241, 216, 173, 0.5);
}

.primary-button,
.secondary-button,
.ghost-button,
.danger-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.primary-button::before,
.secondary-button::before,
.ghost-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.25), transparent 60%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.primary-button:hover::before,
.secondary-button:hover::before,
.ghost-button:hover::before {
  transform: translateX(120%);
}

.primary-button {
  border: none;
  color: #2b101c;
  background: linear-gradient(135deg, #f1d8ad, #dcaa60 54%, #bb5b7e);
  box-shadow: 0 18px 34px rgba(187, 91, 126, 0.2);
}

.secondary-button,
.ghost-button {
  color: var(--ink);
  background: rgba(255, 249, 245, 0.58);
  border: 1px solid rgba(122, 98, 112, 0.18);
}

.danger-button {
  border: none;
  background: rgba(193, 78, 96, 0.12);
  color: var(--danger);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.danger-button:hover {
  transform: translateY(-2px);
}

.fact-grid,
.hero-metric-grid,
.countdown-grid,
.intro-grid,
.event-grid,
.showcase-grid,
.gallery-grid,
.menu-grid,
.guest-zone,
.car-grid,
.admin-metric-grid,
.admin-columns,
.map-grid {
  display: grid;
}

.event-grid,
.gallery-grid,
.menu-grid,
.car-grid,
.admin-record-list,
.map-grid,
.budget-dashboard-grid {
  content-visibility: auto;
  contain-intrinsic-size: 640px;
}

.fact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fact-card,
.countdown-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 247, 240, 0.08);
  backdrop-filter: blur(18px);
}

.fact-label,
.metric-label {
  display: block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: rgba(242, 248, 251, 0.66);
  margin-bottom: 10px;
}

.hero-panel {
  display: grid;
  gap: 16px;
  transform: translate3d(calc(var(--hero-shift-x, 0px) * -0.18), calc(var(--hero-shift-y, 0px) * -0.18), 0);
}

.countdown-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.countdown-grid article,
.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 247, 240, 0.1);
  border: 1px solid rgba(255, 240, 230, 0.16);
}

.countdown-grid strong,
.metric-value {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: #f2f8fb;
  font-weight: 800;
}

.hero-metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-support {
  margin-top: 8px;
  font-size: 0.92rem;
  color: rgba(242, 248, 251, 0.72);
}

.section {
  margin-top: 28px;
  padding: 30px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
  gap: 28px;
  margin-bottom: 24px;
}

.section-heading > div {
  min-width: 0;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-copy {
  max-width: 34ch;
  justify-self: end;
}

.section-intro {
  padding-top: 40px;
}

.intro-grid,
.showcase-grid,
.guest-zone,
.admin-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-spotlight,
.feature-list,
.prize-card,
.immersive-card,
.rsvp-card,
.travel-card,
.admin-hero,
.admin-hero-note,
.admin-login-card,
.admin-card,
.projection-panel,
.budget-summary,
.site-footer {
  border-radius: var(--radius-xl);
  padding: 30px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.feature-spotlight {
  background:
    radial-gradient(circle at top right, rgba(240, 211, 158, 0.24), transparent 30%),
    linear-gradient(160deg, rgba(255, 250, 246, 0.72), rgba(252, 241, 236, 0.8));
}

.pill,
.reward-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  font-weight: 700;
}

.pill {
  padding: 8px 14px;
  margin-bottom: 18px;
  background: rgba(187, 91, 126, 0.12);
  color: #9a315b;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.feature-list div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card,
.gallery-item,
.menu-card,
.car-card,
.admin-record,
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.event-card,
.menu-card,
.car-card,
.admin-record {
  padding: 24px;
}

.event-card {
  position: relative;
}

.event-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(187, 91, 126, 0.16), transparent 72%);
}

.event-meta,
.car-meta,
.admin-record-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.car-meta h3 {
  margin: 0;
  line-height: 1.04;
  max-width: min(100%, 12ch);
}

.car-card p {
  margin: 10px 0 0;
}

.event-meta {
  color: #a34164;
  font-size: 0.92rem;
  margin: 16px 0 12px;
}

.event-description {
  min-height: 84px;
}

.reward-badge {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(240, 211, 158, 0.18);
  color: #93612c;
}

.immersive-card {
  background:
    radial-gradient(circle at top left, rgba(240, 211, 158, 0.12), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(187, 91, 126, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(35, 11, 24, 0.98), rgba(74, 28, 51, 0.94));
  color: #eef7fa;
}

.immersive-card .eyebrow,
.immersive-card .section-copy {
  color: rgba(238, 247, 250, 0.72);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 200px;
}

.gallery-item:nth-child(4n + 1) {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(36, 10, 23, 0.64);
  color: #f1fbff;
  backdrop-filter: blur(16px);
}

.gallery-link-card {
  display: flex;
  min-height: 220px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at top left, rgba(240, 211, 158, 0.22), transparent 32%),
    linear-gradient(160deg, rgba(255, 250, 247, 0.9), rgba(251, 239, 235, 0.92));
}

.gallery-link-card span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(187, 91, 126, 0.12);
  color: #9a315b;
  font-weight: 700;
  font-size: 0.82rem;
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.menu-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.menu-event-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(220, 180, 108, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.82), rgba(250, 239, 233, 0.88));
  border: 1px solid rgba(122, 98, 112, 0.08);
  box-shadow: var(--shadow-soft);
}

.menu-event-head,
.menu-set-head,
.admin-menu-event-head,
.admin-menu-cost-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-event-summary,
.admin-menu-event-metric {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.menu-event-summary span,
.admin-menu-event-metric span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.menu-event-summary strong,
.menu-set-head strong,
.admin-menu-event-metric strong,
.admin-menu-summary-card h3 {
  color: var(--coral);
}

.menu-set-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-set-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(122, 98, 112, 0.08);
}

.menu-set-card h4 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--ink);
}

.admin-menu-summary-card {
  margin-bottom: 6px;
}

.admin-menu-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-menu-cost-grid > div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(122, 98, 112, 0.08);
}

.admin-menu-event-group {
  display: grid;
  gap: 14px;
}

.menu-survey-stack {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.menu-survey-card {
  background:
    radial-gradient(circle at top right, rgba(220, 180, 108, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.84), rgba(250, 239, 233, 0.88));
  border: 1px solid rgba(122, 98, 112, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.menu-survey-card h3,
.survey-option span,
.survey-result-row span,
.survey-result-row strong {
  color: var(--ink);
}

.menu-survey-card .section-copy {
  max-width: none;
  justify-self: auto;
}

.menu-survey-form {
  gap: 16px;
}

.survey-option-list {
  display: grid;
  gap: 10px;
}

.survey-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(122, 98, 112, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.survey-option:hover {
  transform: translateY(-1px);
  border-color: rgba(220, 180, 108, 0.28);
  box-shadow: 0 12px 24px rgba(34, 11, 24, 0.08);
}

.survey-option input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.survey-option span {
  font-weight: 700;
}

.survey-option strong {
  color: var(--coral);
  font-size: 0.9rem;
  white-space: nowrap;
}

.survey-result-block {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(122, 98, 112, 0.08);
}

.survey-result-list {
  display: grid;
  gap: 10px;
}

.survey-result-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(122, 98, 112, 0.08);
}

.survey-result-row strong {
  white-space: nowrap;
}

.guest-zone {
  align-items: start;
}

.concierge-zone {
  display: grid;
  gap: 20px;
}

.concierge-summary-grid,
.concierge-quick-grid,
.concierge-checklist-grid {
  display: grid;
  gap: 14px;
}

.concierge-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concierge-summary-grid .metric-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.74), rgba(248, 237, 232, 0.82));
  border: 1px solid rgba(122, 98, 112, 0.08);
}

.concierge-summary-grid .metric-label {
  color: rgba(78, 46, 63, 0.62);
}

.concierge-summary-grid .metric-value {
  color: var(--ink);
}

.concierge-summary-grid .metric-support {
  color: var(--ink-soft);
}

.concierge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.concierge-stack,
.concierge-request-list {
  display: grid;
  gap: 16px;
}

.concierge-quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 20px;
}

.concierge-quick-button {
  cursor: pointer;
  text-align: left;
  display: grid;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.concierge-quick-button:hover {
  transform: translateY(-2px);
  border-color: rgba(220, 180, 108, 0.24);
  box-shadow: 0 20px 36px rgba(34, 11, 24, 0.12);
}

.concierge-quick-button strong,
.concierge-request-item h3 {
  color: var(--ink);
}

.concierge-quick-button span,
.concierge-request-item p,
.concierge-checklist-item p {
  color: var(--ink-soft);
}

.concierge-checklist-item,
.concierge-request-item {
  padding: 22px;
}

.concierge-request-copy {
  gap: 8px;
}

.guest-form,
.stacked-form,
.admin-login-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.guest-form input,
.guest-form select,
.guest-form textarea,
.stacked-form input,
.stacked-form select,
.stacked-form textarea,
.admin-login-form input {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.guest-form textarea,
.stacked-form textarea {
  resize: vertical;
}

.guest-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.guest-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 10, 19, 0.38);
  backdrop-filter: blur(16px);
}

.guest-auth-dialog,
.guest-profile-card,
.guest-access-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122, 98, 112, 0.12);
  background:
    radial-gradient(circle at top right, rgba(240, 211, 158, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.86), rgba(252, 240, 235, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.guest-auth-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  z-index: 1;
  padding: 32px;
}

.wedding-alert-modal {
  position: fixed;
  inset: 0;
  z-index: 31;
  display: grid;
  place-items: end center;
  padding: 24px;
}

.wedding-alert-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 10, 19, 0.22);
  backdrop-filter: blur(12px);
}

.wedding-alert-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 24px 24px 22px;
  border-radius: 30px;
  border: 1px solid rgba(122, 98, 112, 0.16);
  background:
    radial-gradient(circle at top right, rgba(240, 211, 158, 0.24), transparent 34%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.96), rgba(248, 236, 229, 0.94));
  box-shadow:
    0 34px 70px rgba(43, 16, 28, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.wedding-alert-dialog h3 {
  margin-top: 8px;
  margin-bottom: 10px;
}

.wedding-alert-dialog .record-actions {
  margin-top: 18px;
  justify-content: flex-start;
}

body.wedding-alert-open {
  overflow: hidden;
}

.incoming-chat-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 29;
  width: min(390px, calc(100vw - 24px));
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(241, 216, 173, 0.12);
  background:
    radial-gradient(circle at top right, rgba(220, 170, 96, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(28, 10, 18, 0.97), rgba(49, 20, 33, 0.95));
  box-shadow:
    0 30px 60px rgba(22, 6, 15, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
  color: #fff7ef;
}

.incoming-chat-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.incoming-chat-popup-head strong {
  color: #fff8f1;
}

.incoming-chat-popup-head p {
  margin: 4px 0 0;
  color: rgba(255, 241, 234, 0.68);
  font-size: 0.88rem;
}

.incoming-chat-close {
  min-height: 42px;
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 245, 236, 0.9);
}

.incoming-chat-popup-body {
  display: grid;
  gap: 10px;
  max-height: min(280px, 42vh);
  overflow: auto;
  padding-right: 4px;
}

.incoming-chat-popup-body .empty-state {
  border-style: solid;
  border-color: rgba(241, 216, 173, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 244, 236, 0.72);
}

.incoming-chat-popup-message {
  display: grid;
  gap: 8px;
  margin-right: 36px;
  padding: 14px 15px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 216, 173, 0.08);
}

.incoming-chat-popup-message.is-self {
  margin-left: 36px;
  margin-right: 0;
  background: linear-gradient(135deg, rgba(241, 216, 173, 0.18), rgba(187, 91, 126, 0.18));
}

.incoming-chat-popup-message p {
  margin: 0;
  color: #fff8f1;
  line-height: 1.5;
}

.incoming-chat-popup-attachment,
.incoming-chat-popup-time {
  font-size: 0.78rem;
  color: rgba(255, 241, 234, 0.68);
}

.incoming-chat-popup-attachment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.incoming-chat-popup-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.incoming-chat-popup-form input {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(241, 216, 173, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ef;
}

.incoming-chat-popup-form input::placeholder {
  color: rgba(255, 241, 234, 0.5);
}

.incoming-chat-popup-form .record-actions {
  justify-content: flex-end;
}

.incoming-chat-popup-form .secondary-button {
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ef;
  border-color: rgba(241, 216, 173, 0.14);
}

.guest-auth-dialog .card-header {
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.guest-auth-dialog .card-header > div:first-child {
  display: grid;
  gap: 8px;
}

.guest-auth-dialog h2 {
  max-width: 11ch;
  line-height: 0.92;
}

.guest-profile-card {
  margin-top: 26px;
  margin-bottom: 24px;
}

.guest-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  margin-top: 18px;
  width: min(320px, 100%);
  border-radius: 22px;
  background: rgba(86, 42, 58, 0.07);
  border: 1px solid rgba(122, 98, 112, 0.08);
}

.guest-auth-tab {
  border: none;
  min-width: 0;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 18px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.guest-auth-tab:hover {
  transform: translateY(-1px);
  color: var(--ink);
}

.guest-auth-tab.is-active {
  color: #2b101c;
  background: linear-gradient(135deg, rgba(241, 216, 173, 0.96), rgba(220, 170, 96, 0.88) 58%, rgba(187, 91, 126, 0.8));
  box-shadow: 0 10px 22px rgba(187, 91, 126, 0.16);
}

.guest-access-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.guest-auth-fields {
  display: grid;
  gap: 16px;
  align-items: start;
}

.guest-auth-fields-signup {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guest-auth-fields-signin {
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.9fr);
}

.guest-access-form label {
  display: grid;
  gap: 8px;
}

.guest-auth-field {
  min-width: 0;
}

.guest-auth-field-wide {
  min-width: 0;
}

.guest-access-form input {
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.guest-auth-actions {
  display: flex;
  align-items: end;
}

.guest-auth-actions-signup {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.guest-auth-actions-signin {
  justify-content: stretch;
}

.guest-auth-submit {
  min-width: 220px;
  min-height: 56px;
  padding-inline: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.guest-session-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 249, 245, 0.88);
  border: 1px solid rgba(122, 98, 112, 0.12);
}

.guest-form.is-locked {
  opacity: 0.62;
}

.guest-form.is-locked .submit-button {
  pointer-events: none;
}

.guest-google-login-area {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 98, 112, 0.12);
}

.guest-auth-close {
  min-width: 0;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 600;
  background: rgba(255, 249, 245, 0.82);
}

.helper-copy {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.chip-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.chip-fieldset legend {
  font-weight: 700;
  margin-bottom: 12px;
}

.chip-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-options label,
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip-options label {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.checkbox-row {
  padding: 6px 0;
}

.form-message {
  min-height: 24px;
  color: var(--coral);
  font-weight: 800;
}

.site-toast-host {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: min(360px, calc(100vw - 28px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-toast-host[hidden] {
  display: none !important;
}

.site-toast-host.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-toast {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(122, 98, 112, 0.14);
  background:
    radial-gradient(circle at top right, rgba(240, 211, 158, 0.18), transparent 30%),
    linear-gradient(165deg, rgba(255, 251, 247, 0.97), rgba(249, 238, 233, 0.95));
  box-shadow:
    0 28px 56px rgba(39, 16, 28, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  pointer-events: auto;
}

.site-toast.is-success {
  border-color: rgba(46, 166, 111, 0.18);
}

.site-toast.is-error {
  border-color: rgba(193, 78, 96, 0.18);
}

.site-toast-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  color: #fff8f1;
  background: linear-gradient(135deg, #dcaa60, #bb5b7e);
}

.site-toast.is-success .site-toast-icon {
  background: linear-gradient(135deg, #2ea66f, #8ae2b4);
  color: #113521;
}

.site-toast.is-error .site-toast-icon {
  background: linear-gradient(135deg, #c14e60, #f3a0aa);
  color: #43131c;
}

.site-toast-copy {
  display: grid;
  gap: 4px;
}

.site-toast-copy strong,
.site-toast-copy p {
  margin: 0;
}

.site-toast-copy strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.site-toast-copy p {
  color: var(--ink-soft);
  line-height: 1.5;
}

.travel-status-panel {
  margin: 22px 0 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(220, 180, 108, 0.22);
  background: linear-gradient(160deg, rgba(255, 251, 247, 0.78), rgba(251, 239, 230, 0.84));
  color: var(--ink-soft);
}

.social-state-banner,
.social-card,
.social-circle-card,
.social-post-card,
.social-story-card {
  border: 1px solid rgba(241, 216, 173, 0.1);
  background:
    radial-gradient(circle at top right, rgba(220, 170, 96, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(187, 91, 126, 0.12), transparent 28%),
    linear-gradient(165deg, rgba(18, 9, 16, 0.98), rgba(31, 14, 24, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 28px 70px rgba(18, 9, 16, 0.22);
}

.social-state-banner {
  padding: 18px 22px;
  border-radius: 24px;
  color: rgba(255, 244, 236, 0.82);
}

.social-state-banner.is-private {
  border-color: rgba(122, 98, 112, 0.14);
}

.social-state-banner.is-live {
  border-color: rgba(46, 166, 111, 0.18);
  color: rgba(219, 255, 235, 0.9);
}

.social-metric-grid,
.social-dashboard-grid,
.social-secondary-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.social-metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-dashboard-grid,
.social-secondary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-workspace {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  margin-top: 18px;
  align-items: start;
}

.social-subnav {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(241, 216, 173, 0.1);
  background:
    radial-gradient(circle at top right, rgba(220, 170, 96, 0.14), transparent 30%),
    linear-gradient(160deg, rgba(18, 9, 16, 0.96), rgba(28, 13, 22, 0.94));
}

.social-nav-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(122, 98, 112, 0.12);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 244, 236, 0.7);
  text-align: left;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-nav-button:hover,
.social-nav-button.is-active {
  color: #fff7ef;
  border-color: rgba(220, 170, 96, 0.28);
  background: linear-gradient(135deg, rgba(241, 216, 173, 0.14), rgba(187, 91, 126, 0.12));
  box-shadow: 0 18px 32px rgba(220, 170, 96, 0.1);
  transform: translateY(-1px);
}

.social-nav-badge,
.guest-persona-badge,
.chat-unread-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6f8f, #dc4258);
  color: #fff7ef;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(220, 66, 88, 0.28);
}

.guest-persona-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 1;
}

.social-panel-stack {
  display: grid;
  gap: 18px;
}

.social-panel[hidden] {
  display: none !important;
}

.social-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  color: #fff5eb;
}

.social-hub .metric-card,
.social-hub .guest-persona-stat-card {
  background:
    radial-gradient(circle at top right, rgba(220, 170, 96, 0.12), transparent 30%),
    linear-gradient(160deg, rgba(18, 9, 16, 0.94), rgba(30, 14, 24, 0.92));
  border-color: rgba(241, 216, 173, 0.1);
  box-shadow: 0 24px 50px rgba(18, 9, 16, 0.2);
}

.social-hub .metric-label,
.social-hub .metric-support,
.social-hub .section-copy,
.social-hub .helper-copy,
.social-hub .stacked-form label,
.social-hub .social-author-row p,
.social-hub .social-circle-card p,
.social-hub .social-post-footer span,
.social-hub .social-share-note,
.social-hub .guest-persona-stat-card span {
  color: rgba(255, 244, 236, 0.7);
}

.social-hub .metric-value,
.social-hub .social-card h3,
.social-hub .social-card strong,
.social-hub .guest-persona-stat-card strong {
  color: #fff7ef;
}

.social-hub .social-post-text {
  color: #fff7ef;
}

.social-hub .stacked-form input,
.social-hub .stacked-form textarea,
.social-hub .stacked-form select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(241, 216, 173, 0.1);
  color: #fff7ef;
}

.social-hub .file-picker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid rgba(241, 216, 173, 0.1);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.social-hub .file-picker-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.social-hub .file-picker-button,
.social-hub .file-picker-text {
  pointer-events: none;
}

.social-hub .file-picker-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(220, 170, 96, 0.2);
  background: linear-gradient(135deg, rgba(220, 170, 96, 0.26), rgba(187, 91, 126, 0.18));
  color: #fff7ef;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.social-hub .file-picker-text {
  min-width: 0;
  color: rgba(255, 244, 236, 0.74);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-hub .file-picker:hover {
  border-color: rgba(220, 170, 96, 0.24);
  box-shadow: 0 16px 28px rgba(18, 9, 16, 0.16);
}

.social-hub .file-picker:focus-within {
  border-color: rgba(220, 170, 96, 0.34);
  box-shadow: 0 0 0 3px rgba(220, 170, 96, 0.12);
}

.social-hub .file-picker-input:disabled {
  cursor: not-allowed;
}

.social-hub .file-picker-input:disabled + .file-picker-button,
.social-hub .file-picker-input:disabled ~ .file-picker-text {
  opacity: 0.48;
}

.social-hub .stacked-form input::placeholder,
.social-hub .stacked-form textarea::placeholder {
  color: rgba(255, 244, 236, 0.42);
}

.social-hub .secondary-button,
.social-hub .ghost-button {
  background: rgba(255, 255, 255, 0.05);
  color: #fff7ef;
  border-color: rgba(241, 216, 173, 0.12);
}

.social-profile-head,
.social-author-row,
.social-post-header,
.social-post-footer,
.social-circle-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.social-profile-head {
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.social-profile-copy {
  display: grid;
  gap: 6px;
}

.social-profile-copy strong {
  font-size: 1.1rem;
}

.social-author-row {
  justify-content: flex-start;
}

.social-author-row p,
.social-circle-card p,
.social-post-footer span,
.social-share-note {
  margin: 0;
  color: var(--ink-soft);
}

.social-hub .social-author-row p,
.social-hub .social-circle-card p,
.social-hub .social-post-footer span,
.social-hub .social-share-note,
.social-hub .social-chat-list-item p,
.social-hub .social-chat-meta,
.social-hub #socialChatPresence {
  color: rgba(255, 244, 236, 0.8);
}

.social-author-row strong,
.social-circle-card strong,
.social-post-header strong,
.social-story-copy strong {
  display: block;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(241, 216, 173, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.switch-row span {
  display: grid;
  gap: 4px;
}

.switch-row small {
  color: rgba(255, 244, 236, 0.66);
}

.switch-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 68px;
  height: 40px;
}

.switch-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 220ms ease;
}

.switch-slider::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff7ef;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease;
}

.switch-toggle input:checked + .switch-slider {
  background: linear-gradient(135deg, rgba(241, 216, 173, 0.96), rgba(220, 170, 96, 0.9) 58%, rgba(187, 91, 126, 0.82));
}

.switch-toggle input:checked + .switch-slider::before {
  transform: translateX(28px);
}

.inline-story-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.inline-story-form .secondary-button {
  align-self: stretch;
}

.social-story-rail,
.social-circle-list,
.social-timeline-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.social-story-rail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-story-launch {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
}

.social-story-card,
.social-circle-card,
.social-post-card {
  padding: 18px;
  border-radius: 24px;
}

.social-story-card {
  overflow: hidden;
}

.social-story-media {
  position: relative;
  min-height: 200px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(24, 10, 19, 0.08), rgba(24, 10, 19, 0.4)),
    linear-gradient(135deg, rgba(241, 216, 173, 0.72), rgba(187, 91, 126, 0.56));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.social-story-time {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24, 10, 19, 0.52);
  color: #fff5eb;
  font-size: 0.78rem;
}

.social-story-copy {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.social-request-strip {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.social-request-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(241, 216, 173, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.social-circle-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-circle-card {
  display: grid;
  gap: 14px;
}

.social-circle-card.is-self {
  border-color: rgba(220, 170, 96, 0.28);
  box-shadow: 0 18px 34px rgba(220, 170, 96, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.social-circle-meta {
  padding-top: 10px;
  border-top: 1px solid rgba(122, 98, 112, 0.1);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(122, 98, 112, 0.26);
}

.status-dot.is-online::before {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(46, 166, 111, 0.12);
}

.social-timeline-card {
  margin-top: 18px;
}

.social-post-card {
  display: grid;
  gap: 14px;
}

.social-post-header {
  align-items: flex-start;
}

.social-post-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
}

.social-post-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(122, 98, 112, 0.12);
}

.social-post-footer {
  align-items: center;
  padding-top: 2px;
}

.social-chat-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
}

.social-chat-sidebar,
.social-chat-window {
  min-height: 620px;
}

.social-chat-list,
.social-chat-messages {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.social-chat-list-item {
  border: 1px solid rgba(241, 216, 173, 0.08);
  border-radius: 22px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff7ef;
  text-align: left;
}

.social-chat-list-item.is-active {
  border-color: rgba(220, 170, 96, 0.28);
  box-shadow: 0 18px 32px rgba(220, 170, 96, 0.1);
}

.social-chat-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.social-chat-window {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.chat-alert-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(241, 216, 173, 0.12);
  background:
    radial-gradient(circle at top right, rgba(220, 170, 96, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.chat-alert-panel div {
  display: grid;
  gap: 4px;
}

.chat-alert-panel strong {
  color: #fff7ef;
}

.chat-alert-panel span {
  color: rgba(255, 244, 236, 0.76);
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-alert-panel .secondary-button.is-active,
.guest-persona-menu-footer .secondary-button.is-active {
  border-color: rgba(46, 166, 111, 0.26);
  background: linear-gradient(135deg, rgba(46, 166, 111, 0.16), rgba(220, 170, 96, 0.14));
}

.social-chat-messages {
  min-height: 360px;
  align-content: start;
  padding: 12px 0;
}

.social-hub .empty-state {
  border-style: solid;
  border-color: rgba(241, 216, 173, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 225, 235, 0.12));
  color: rgba(255, 236, 227, 0.82);
}

.chat-bubble {
  max-width: min(520px, 100%);
  padding: 14px 16px;
  border-radius: 22px 22px 22px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 216, 173, 0.08);
}

.chat-bubble.is-self {
  margin-left: auto;
  border-radius: 22px 22px 8px 22px;
  background: linear-gradient(135deg, rgba(241, 216, 173, 0.96), rgba(220, 170, 96, 0.86) 58%, rgba(187, 91, 126, 0.78));
}

.chat-bubble.is-self,
.chat-bubble.is-self p,
.chat-bubble.is-self strong {
  color: rgba(40, 16, 26, 0.96);
}

.chat-bubble p,
.chat-bubble span {
  margin: 0;
}

.chat-bubble span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 244, 236, 0.66);
  font-size: 0.8rem;
}

.chat-bubble.is-self span,
.chat-bubble.is-self .chat-forward-label {
  color: rgba(58, 24, 34, 0.74);
}

.chat-forward-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 244, 236, 0.66);
  font-size: 0.78rem;
}

.chat-bubble-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.chat-forward-button {
  min-width: 0;
  padding: 8px 12px;
}

.chat-bubble.is-self .chat-forward-button {
  border-color: rgba(58, 24, 34, 0.12);
  background: rgba(255, 255, 255, 0.22);
  color: rgba(40, 16, 26, 0.92);
}

.chat-attachment-stack,
.social-chat-attachment-preview,
.social-forward-list {
  display: grid;
  gap: 10px;
}

.chat-attachment-card,
.chat-attachment-preview-card,
.social-forward-item {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(241, 216, 173, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff7ef;
}

.chat-attachment-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.chat-attachment-card audio {
  width: 100%;
}

.social-chat-emoji-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-chat-emoji-row .ghost-button {
  min-width: 0;
  padding: 10px 14px;
}

.story-love-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 11px 16px;
  border-radius: 999px;
  border-color: rgba(255, 221, 230, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff1f4;
}

.story-love-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 113, 154, 0.16);
  color: #ff8fb2;
  font-size: 1rem;
  line-height: 1;
}

.story-love-text {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.story-love-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff5eb;
  font-size: 0.9rem;
  font-weight: 700;
}

.story-love-button.is-active {
  border-color: rgba(255, 133, 163, 0.38);
  background: linear-gradient(135deg, rgba(255, 123, 166, 0.2), rgba(255, 181, 141, 0.14));
  color: #fff4f7;
  box-shadow: 0 16px 34px rgba(255, 99, 146, 0.16);
}

.story-love-button.is-active .story-love-icon {
  background: linear-gradient(135deg, rgba(255, 113, 154, 0.34), rgba(255, 190, 132, 0.24));
  color: #ffd5df;
  animation: story-love-pulse 420ms ease-out;
}

.story-love-button.is-active .story-love-count {
  background: rgba(255, 255, 255, 0.16);
}

.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

.story-viewer[hidden] {
  display: none !important;
}

.story-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 8, 14, 0.82);
  backdrop-filter: blur(22px);
}

.story-viewer-dialog {
  position: relative;
  width: min(980px, 100%);
  min-height: min(86vh, 760px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 34px;
  background: rgba(20, 9, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.story-viewer-progress {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 8px;
  padding-right: 96px;
}

.story-progress-segment {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.story-progress-segment.is-complete,
.story-progress-segment.is-active {
  background: linear-gradient(90deg, rgba(241, 216, 173, 0.96), rgba(220, 170, 96, 0.9), rgba(187, 91, 126, 0.84));
}

.story-viewer-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
}

.story-viewer-media {
  min-height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20, 9, 17, 0.08), rgba(20, 9, 17, 0.4)),
    linear-gradient(135deg, rgba(241, 216, 173, 0.72), rgba(187, 91, 126, 0.48));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.story-viewer-copy {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 18px 6px 6px;
  color: #fff5eb;
}

.story-viewer-copy h3,
.story-viewer-copy p {
  margin: 0;
}

.story-viewer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: auto;
  z-index: 1;
  color: #fff5eb;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.story-viewer-nav {
  position: absolute;
  top: 88px;
  bottom: 24px;
  width: 96px;
  border: none;
  background: linear-gradient(90deg, rgba(16, 8, 14, 0.28), transparent);
}

.story-viewer-nav::before {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff5eb;
  font-size: 1.4rem;
  backdrop-filter: blur(10px);
}

.story-viewer-prev {
  left: 24px;
}

.story-viewer-prev::before {
  content: "<";
}

.story-viewer-next {
  right: 24px;
  background: linear-gradient(270deg, rgba(16, 8, 14, 0.28), transparent);
}

.story-viewer-next::before {
  content: ">";
}

.story-viewer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.story-love-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.story-love-bubble {
  position: absolute;
  right: clamp(88px, 16vw, 180px);
  bottom: clamp(30px, 10vh, 84px);
  color: #ff8baa;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 10px 24px rgba(255, 74, 128, 0.26);
  transform: translate3d(0, 0, 0) scale(0.4);
  animation: story-love-float var(--duration, 1.05s) ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes story-love-float {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.4);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift-x, 0px), calc(-170px + var(--drift-y, 0px)), 0) scale(var(--scale, 1.1));
  }
}

@keyframes story-love-pulse {
  0% {
    transform: scale(0.92);
  }

  65% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.social-forward-modal {
  position: fixed;
  inset: 0;
  z-index: 42;
  display: grid;
  place-items: center;
  padding: 24px;
}

.social-forward-modal[hidden] {
  display: none !important;
}

.social-forward-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 8, 14, 0.72);
  backdrop-filter: blur(16px);
}

.social-forward-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(241, 216, 173, 0.12);
  background:
    radial-gradient(circle at top right, rgba(220, 170, 96, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(18, 9, 16, 0.98), rgba(31, 14, 24, 0.96));
  color: #fff7ef;
  box-shadow: 0 30px 80px rgba(16, 8, 14, 0.3);
}

.transport-preview {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.compact-grid .car-card {
  align-content: start;
}

.compact-grid .car-card h3 {
  font-size: clamp(2rem, 2.2vw, 3rem);
}

.compact-grid .status-pill {
  white-space: nowrap;
}

.car-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.status-pill {
  padding: 8px 12px;
  font-size: 0.8rem;
}

.auth-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.auth-google {
  background: rgba(66, 133, 244, 0.12);
  color: #2d63d5;
}

.auth-manual {
  background: rgba(122, 98, 112, 0.1);
  color: #6d5562;
}

.status-available {
  background: rgba(46, 166, 111, 0.12);
  color: var(--success);
}

.status-reserved {
  background: rgba(232, 174, 88, 0.18);
  color: #a26619;
}

.status-full {
  background: rgba(193, 78, 96, 0.14);
  color: var(--danger);
}

.site-footer {
  margin-top: 24px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(240, 211, 158, 0.22), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(187, 91, 126, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(255, 249, 245, 0.78), rgba(251, 236, 230, 0.84));
}

.site-footer h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.site-footer-contact {
  margin-top: 14px;
  font-size: 0.95rem;
}

.site-footer-contact a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(66, 24, 42, 0.18);
  transition: border-color 180ms ease, color 180ms ease;
}

.site-footer-contact a:hover,
.site-footer-contact a:focus-visible {
  color: var(--rosewood);
  border-color: rgba(147, 73, 102, 0.38);
}

section[id],
article[id] {
  scroll-margin-top: 140px;
}

.admin-shell {
  padding-top: 28px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 20px;
  padding: 32px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(220, 180, 108, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(22, 7, 18, 0.98), rgba(44, 16, 33, 0.94));
  color: #edf7fb;
}

.admin-hero .hero-tagline {
  color: rgba(237, 247, 251, 0.8);
}

.admin-hero-note {
  background: rgba(255, 255, 255, 0.08);
  color: #edf7fb;
}

.admin-hero-note p {
  color: rgba(237, 247, 251, 0.78);
}

.admin-quick-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.admin-zone {
  padding-top: 24px;
}

.admin-login-card {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-panel {
  display: grid;
  gap: 20px;
}

.admin-filter-toolbar {
  display: grid;
  gap: 10px;
  margin: 18px 0 6px;
}

.admin-filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-filter-chip {
  border: 1px solid rgba(122, 98, 112, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.admin-filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(183, 109, 138, 0.28);
}

.admin-filter-chip.is-active {
  background: linear-gradient(135deg, rgba(241, 209, 137, 0.96), rgba(198, 102, 131, 0.94));
  border-color: transparent;
  color: #2c1420;
  box-shadow: 0 14px 26px rgba(182, 98, 126, 0.18);
}

.admin-filter-status {
  margin: 0;
}

.admin-panel[hidden],
#googleLoginSlot[hidden],
#guestGoogleLoginSlot[hidden] {
  display: none !important;
}

.google-login-area {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.google-login-area > div {
  min-height: 44px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-tab-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 244, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.admin-tab-button {
  width: 100%;
  border: 1px solid rgba(122, 98, 112, 0.16);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 18px;
  text-align: left;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-tab-button:hover {
  transform: translateX(2px);
  border-color: rgba(220, 180, 108, 0.28);
}

.admin-tab-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #f1d8ad, #dcaa60 54%, #bb5b7e);
  color: #2b101c;
  box-shadow: 0 16px 30px rgba(187, 91, 126, 0.18);
}

.admin-tab-stage {
  min-width: 0;
}

.admin-tab-panel {
  display: grid;
  gap: 20px;
}

.guest-update-fieldset {
  margin-top: 4px;
}

.admin-update-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.admin-update-preview-card {
  gap: 14px;
  align-self: stretch;
}

.admin-update-preview {
  min-height: 220px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(122, 98, 112, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(244, 248, 246, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  color: rgba(61, 35, 49, 0.84);
  line-height: 1.7;
  white-space: pre-wrap;
}

.admin-update-actions {
  margin-top: 6px;
}

.record-actions button[disabled] {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none !important;
  box-shadow: none !important;
}

.admin-tab-panel[hidden] {
  display: none !important;
}

.admin-overview-card .section-copy {
  justify-self: start;
  max-width: 58ch;
}

.admin-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-metric-grid .metric-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(244, 249, 247, 0.78));
}

.admin-metric-grid .metric-label,
.admin-metric-grid .metric-support,
.admin-metric-grid .metric-value {
  color: var(--ink);
}

.admin-columns {
  align-items: start;
}

.admin-stack {
  display: grid;
  gap: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-record-list {
  display: grid;
  gap: 14px;
}

.admin-record {
  padding: 18px;
}

.admin-gallery-record {
  gap: 16px;
}

.admin-gallery-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-gallery-preview {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 18px;
  border: 1px solid rgba(122, 98, 112, 0.14);
  background-color: rgba(255, 255, 255, 0.82);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.admin-gallery-preview.is-link {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(240, 211, 158, 0.28), transparent 35%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.92), rgba(252, 240, 235, 0.88));
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-record-top {
  align-items: start;
  margin-bottom: 12px;
}

.record-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-record-grid {
  display: grid;
  gap: 10px;
}

.inline-input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.map-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.map-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.64), rgba(243, 248, 246, 0.72));
}

.map-card-header {
  padding: 18px;
}

.map-frame {
  width: 100%;
  height: 220px;
  border: 0;
}

.projection-panel {
  margin-top: 18px;
}

.projection-highlight {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
}

.budget-summary {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.budget-summary-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(247, 241, 238, 0.72));
}

.budget-summary-card span,
.budget-summary strong {
  display: block;
}

.budget-summary-card span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.budget-summary-card strong,
.budget-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 1.16rem;
}

.budget-summary-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.budget-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.budget-analytics-column,
.budget-control-column,
.budget-graph-grid,
.budget-group-list {
  display: grid;
  gap: 16px;
}

.budget-control-column {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  align-items: start;
}

.budget-control-column .stacked-form {
  margin-top: 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.74), rgba(247, 241, 238, 0.7));
  box-shadow: var(--shadow-soft);
}

.budget-graph-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.budget-graph-card {
  padding: 24px;
}

.budget-graph-grid .budget-graph-card:first-child {
  grid-column: 1 / -1;
}

.compact-card-header {
  margin-bottom: 6px;
}

.budget-funding-panel {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.budget-progress-ring {
  --budget-progress: 0;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle, rgba(255, 252, 249, 0.96) 56%, transparent 57%),
    conic-gradient(from -90deg, #bb5b7e calc(var(--budget-progress) * 1turn), rgba(220, 180, 108, 0.18) 0);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.54);
}

.budget-progress-ring strong {
  display: block;
  font-size: 1.5rem;
  color: var(--ink);
}

.budget-progress-ring span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.budget-funding-copy strong,
.budget-funding-stats strong,
.budget-group-header h4,
.budget-bar-values span {
  color: var(--ink);
}

.budget-funding-copy p,
.budget-funding-stats span,
.budget-group-meta,
.budget-bar-header p,
.budget-bar-values small {
  color: var(--ink-soft);
}

.budget-group-meta {
  max-width: 32ch;
  text-align: right;
}

.budget-progress-line {
  height: 10px;
  margin: 14px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(220, 180, 108, 0.14);
}

.budget-progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #dcaa60, #bb5b7e);
}

.budget-funding-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.budget-funding-stats div,
.budget-bar-row,
.budget-group {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(247, 241, 238, 0.66));
}

.budget-funding-sources {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.budget-source-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.budget-bar-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.budget-bar-values {
  text-align: right;
}

.budget-bar-stack {
  margin-top: 14px;
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: rgba(220, 180, 108, 0.12);
  overflow: hidden;
}

.budget-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: inherit;
}

.budget-bar-planned {
  background: rgba(220, 180, 108, 0.32);
}

.budget-bar-spent {
  background: linear-gradient(90deg, #dcaa60, #bb5b7e);
}

.budget-record-list {
  margin-top: 18px;
}

.budget-group-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.budget-line-item {
  background: rgba(255, 252, 249, 0.82);
}

.budget-input-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.executive-dashboard[hidden] {
  display: none !important;
}

.executive-dashboard {
  position: fixed;
  inset: 0;
  z-index: 70;
  overflow: auto;
  padding: 24px 0 36px;
  background:
    radial-gradient(circle at 12% 14%, rgba(220, 180, 108, 0.16), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(187, 91, 126, 0.18), transparent 24%),
    linear-gradient(180deg, #08111d 0%, #0d1725 40%, #111f2f 100%);
}

.executive-dashboard::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.22;
  pointer-events: none;
}

.executive-shell {
  position: relative;
  z-index: 1;
  width: min(1560px, calc(100% - 30px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.executive-topbar,
.executive-kpi-card,
.executive-card {
  border-radius: 28px;
  border: 1px solid rgba(126, 157, 185, 0.16);
  background: linear-gradient(160deg, rgba(14, 25, 39, 0.92), rgba(11, 21, 34, 0.88));
  box-shadow: 0 24px 70px rgba(4, 9, 16, 0.34);
}

.executive-topbar {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding: 24px 28px;
}

.executive-topbar h2,
.executive-card h3,
.executive-card strong,
.executive-kpi-card strong,
.executive-bar-metric span,
.executive-line-values span {
  color: #f4f8fb;
}

.executive-topbar .eyebrow,
.executive-card .eyebrow,
.executive-kpi-card span,
.executive-bar-copy p,
.executive-bar-metric small,
.executive-line-item p,
.executive-line-values small,
.executive-funding-copy p,
.executive-funding-stats span {
  color: rgba(212, 224, 235, 0.72);
}

.executive-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.executive-kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.executive-kpi-card {
  padding: 18px 20px;
}

.executive-kpi-card span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.executive-kpi-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

.executive-kpi-card p {
  margin-top: 10px;
  color: rgba(192, 210, 226, 0.72);
  font-size: 0.92rem;
}

.executive-analytics-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.executive-card {
  padding: 22px;
}

.executive-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
}

.executive-span-wide {
  grid-column: span 7;
}

.executive-span-half {
  grid-column: span 6;
}

.executive-span-third {
  grid-column: span 4;
}

.executive-funding-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.executive-funding-ring {
  --executive-progress: 0;
  width: 168px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle, rgba(10, 18, 29, 0.96) 56%, transparent 57%),
    conic-gradient(from -90deg, #dcb46c calc(var(--executive-progress) * 1turn), rgba(255, 255, 255, 0.08) 0);
  border: 1px solid rgba(220, 180, 108, 0.22);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.04);
}

.executive-funding-ring strong {
  display: block;
  font-size: 2rem;
}

.executive-funding-ring span {
  color: rgba(212, 224, 235, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.executive-funding-headline strong {
  display: block;
  font-size: 2rem;
}

.executive-progress-line {
  height: 12px;
  margin: 16px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.executive-progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #dcb46c, #bb5b7e);
}

.executive-funding-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.executive-funding-stats div,
.executive-bar-row,
.executive-line-item {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(126, 157, 185, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.executive-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.executive-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.executive-chip-gold {
  color: #f1d8ad;
  background: rgba(220, 180, 108, 0.14);
}

.executive-chip-rose {
  color: #f2b7cc;
  background: rgba(187, 91, 126, 0.14);
}

.executive-bar-row,
.executive-top-lines {
  display: grid;
  gap: 12px;
}

.executive-bar-copy,
.executive-line-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.executive-bar-track {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.executive-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.executive-bar-fill-gold {
  background: linear-gradient(90deg, #dcb46c, #f1d8ad);
}

.executive-bar-fill-rose {
  background: linear-gradient(90deg, #bb5b7e, #f2b7cc);
}

.executive-bar-fill-emerald {
  background: linear-gradient(90deg, #2ea66f, #7ce1b1);
}

.executive-bar-fill-slate {
  background: linear-gradient(90deg, #67a1d4, #c2d9ef);
}

.executive-line-item + .executive-line-item {
  margin-top: 12px;
}

.empty-state {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--line-strong);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.34);
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  --reveal-offset: 40px;
  transform: perspective(1200px) translate3d(0, var(--reveal-offset), 0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg)) scale(var(--card-scale, 0.985));
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  transform-style: preserve-3d;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  --reveal-offset: 0px;
  --card-scale: 1;
}

.interactive-card {
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
  will-change: transform;
}

.interactive-card:hover {
  box-shadow: 0 26px 70px rgba(34, 11, 24, 0.18);
  border-color: rgba(220, 180, 108, 0.24);
}

.interactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.18), transparent 44%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.interactive-card:hover::before {
  opacity: 1;
}

@keyframes floatAura {
  0%, 100% {
    transform: translate3d(var(--aura-x, 0px), var(--aura-y, 0px), 0) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(calc(var(--aura-x, 0px) + 10px), calc(var(--aura-y, 0px) - 18px), 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes pulseHint {
  0%, 100% {
    transform: translateY(0);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(240, 211, 158, 0.08), 0 8px 24px rgba(187, 91, 126, 0.12);
  }
}

@media (max-width: 1180px) {
  .event-grid,
  .menu-grid,
  .car-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-set-grid,
  .admin-menu-cost-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }
}

@media (max-width: 980px) {
  .topbar,
  .page-shell {
    width: min(100% - 20px, 1240px);
  }

  .topbar {
    position: relative;
    top: auto;
    border-radius: 28px;
    display: grid;
    justify-content: stretch;
    gap: 14px;
    padding: 16px 18px;
  }

  .topbar-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .nav-links {
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .guest-persona-shell {
    justify-self: end;
  }

  .hero,
  .admin-hero,
  .section-heading,
  .intro-grid,
  .showcase-grid,
  .concierge-layout,
  .guest-zone,
  .admin-columns {
    grid-template-columns: 1fr;
  }

  .hero-metric-grid,
  .admin-metric-grid,
  .map-grid,
  .social-metric-grid,
  .concierge-summary-grid,
  .budget-summary,
  .budget-graph-grid,
  .budget-funding-stats,
  .executive-funding-stats,
  .executive-kpi-grid,
  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .budget-dashboard-grid,
  .budget-funding-panel,
  .budget-control-column,
  .concierge-layout,
  .admin-update-layout,
  .social-workspace,
  .social-chat-layout,
  .social-dashboard-grid,
  .social-secondary-grid,
  .executive-funding-grid {
    grid-template-columns: 1fr;
  }

  .executive-analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .executive-span-wide,
  .executive-span-half,
  .executive-span-third {
    grid-column: span 1;
  }

  .guest-auth-fields-signup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-auth-fields-signin {
    grid-template-columns: 1fr;
  }

  .admin-tab-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-copy {
    justify-self: start;
    max-width: 56ch;
  }
}

@media (max-width: 720px) {
  .hero,
  .admin-hero,
  .feature-spotlight,
  .feature-list,
  .prize-card,
  .immersive-card,
  .rsvp-card,
  .travel-card,
  .admin-login-card,
  .admin-card,
  .site-footer {
    padding: 22px;
    border-radius: 28px;
  }

  .nav-links,
  .topbar-tools,
  .hero-actions,
  .travel-actions,
  .admin-login-actions,
  .record-actions,
  .budget-group-header,
  .budget-bar-header,
  .executive-actions,
  .executive-bar-copy,
  .executive-line-item {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button,
  .ghost-button,
  .danger-button {
    width: auto;
  }

  .topbar {
    width: min(100% - 16px, 1240px);
    padding: 12px;
    border-radius: 22px;
    gap: 10px;
  }

  .brand-lockup {
    gap: 9px;
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  body.guest-page {
    overflow-x: hidden;
  }

  body.guest-page.mobile-nav-open {
    overflow: hidden;
  }

  body.guest-page .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
  }

  body.guest-page .topbar-tools {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  body.guest-page .mobile-nav-toggle {
    display: inline-flex;
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.95rem;
    order: 2;
    margin-left: auto;
    flex: 0 0 auto;
  }

  body.guest-page .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 18;
    display: block;
    background: rgba(30, 11, 21, 0.28);
    backdrop-filter: blur(12px);
  }

  body.guest-page.mobile-nav-open .topbar {
    z-index: 24;
  }

  body.guest-page .nav-links {
    display: none;
  }

  body.guest-page .mobile-nav-drawer {
    position: fixed;
    top: 12px;
    left: 12px;
    bottom: 12px;
    width: min(320px, calc(100vw - 24px));
    margin: 0;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    overflow: auto;
    border-radius: 30px;
    border: 1px solid rgba(122, 98, 112, 0.14);
    background:
      radial-gradient(circle at top right, rgba(240, 211, 158, 0.2), transparent 30%),
      linear-gradient(165deg, rgba(255, 251, 247, 0.96), rgba(249, 238, 233, 0.94));
    box-shadow:
      0 34px 68px rgba(44, 16, 29, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transform: translateX(calc(-100% - 28px));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms ease, opacity 220ms ease;
    z-index: 25;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: none;
  }

  body.guest-page .mobile-nav-drawer::-webkit-scrollbar {
    display: none;
  }

  body.guest-page.mobile-nav-open .mobile-nav-drawer,
  body.guest-page .mobile-nav-drawer.is-mobile-open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  body.guest-page .mobile-nav-drawer-list {
    display: grid;
    gap: 6px;
  }

  body.guest-page .mobile-nav-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
  }

  body.guest-page .mobile-nav-close {
    min-height: 40px;
    padding: 8px 16px;
    background: rgba(255, 249, 245, 0.82);
    white-space: nowrap;
  }

  body.guest-page .nav-tab {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(122, 98, 112, 0.08);
    color: var(--ink-soft);
    font-size: 0.94rem;
  }

  body.guest-page .nav-tab::after {
    display: none;
  }

  body.guest-page .nav-tab.is-active,
  body.guest-page .nav-tab:hover {
    color: var(--ink);
    background: linear-gradient(135deg, rgba(241, 216, 173, 0.92), rgba(220, 170, 96, 0.88), rgba(187, 91, 126, 0.82));
    box-shadow: 0 14px 28px rgba(187, 91, 126, 0.14);
  }

  body.guest-page .guest-persona-shell {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    width: min(100%, 230px);
    justify-self: start;
  }

  body.guest-page .guest-persona {
    width: 100%;
    min-width: 0;
    max-width: none;
    justify-content: flex-start;
    min-height: 42px;
    padding: 8px 12px 8px 8px;
    gap: 10px;
  }

  body.guest-page .guest-persona-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  body.guest-page .guest-persona-copy strong {
    font-size: 0.95rem;
  }

  body.guest-page .guest-persona-copy span {
    font-size: 0.78rem;
  }

  body.admin-page .topbar-tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-toast-host {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
  }

  .site-toast {
    padding: 14px 15px;
    border-radius: 20px;
  }

  body.admin-page .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-inline: -2px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
  }

  body.admin-page .nav-links::-webkit-scrollbar {
    display: none;
  }

  body.admin-page .nav-links a,
  body.admin-page .nav-tab {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(122, 98, 112, 0.14);
    background: rgba(255, 251, 247, 0.66);
    white-space: nowrap;
    font-size: 0.88rem;
    scroll-snap-align: start;
  }

  body.admin-page .nav-links a::after,
  body.admin-page .nav-tab::after {
    display: none;
  }

  body.admin-page .nav-tab.is-active,
  body.admin-page .nav-tab:hover {
    color: #2b101c;
    border-color: transparent;
    background: linear-gradient(135deg, rgba(241, 216, 173, 0.92), rgba(220, 170, 96, 0.86) 58%, rgba(187, 91, 126, 0.76));
    box-shadow: 0 12px 22px rgba(187, 91, 126, 0.12);
  }

  body.admin-page .nav-links a,
  body.admin-page .nav-tab {
    color: #fff3ea;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(240, 211, 158, 0.16);
  }

  body.admin-page .nav-tab.is-active,
  body.admin-page .nav-tab:hover {
    color: #2b101c;
    border-color: transparent;
  }

  body.admin-page .guest-persona-shell {
    width: 100%;
    justify-self: stretch;
  }

  body.admin-page .guest-persona {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    padding: 10px 12px 10px 10px;
  }

  body.admin-page .guest-persona-copy strong,
  body.admin-page .guest-persona-copy span {
    max-width: calc(100vw - 140px);
  }

  body.admin-page .guest-persona-menu {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px;
    border-radius: 22px;
  }

  .hero-actions > *,
  .travel-actions > *,
  .admin-login-actions > *,
  .record-actions > *,
  .guest-auth-actions > *,
  .guest-form > .submit-button,
  .stacked-form > .primary-button,
  .stacked-form > .secondary-button,
  .stacked-form > .ghost-button,
  .stacked-form > .danger-button,
  .guest-session-banner > .secondary-button {
    width: 100%;
  }

  .fact-grid,
  .hero-metric-grid,
  .event-grid,
  .gallery-grid,
  .menu-grid,
  .car-grid,
  .compact-grid,
  .social-metric-grid,
  .concierge-summary-grid,
  .concierge-quick-grid,
  .social-dashboard-grid,
  .social-secondary-grid,
  .social-circle-list,
  .social-story-rail,
  .social-workspace,
  .social-chat-layout,
  .admin-metric-grid,
  .admin-update-layout,
  .map-grid,
  .budget-summary,
  .budget-graph-grid,
  .budget-funding-stats,
  .executive-funding-stats,
  .budget-control-column,
  .executive-kpi-grid,
  .executive-analytics-grid,
  .inline-input-grid,
  .budget-input-grid,
  .admin-tab-sidebar {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .guest-access-card,
  .guest-auth-dialog,
  .guest-session-banner {
    padding: 18px;
  }

  .guest-auth-dialog {
    width: min(100%, 620px);
    max-height: calc(100vh - 24px);
    padding: 20px;
  }

  .guest-auth-dialog .card-header {
    gap: 14px;
  }

  .guest-auth-dialog .card-header .secondary-button {
    align-self: start;
    min-height: 46px;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .guest-auth-dialog h2 {
    max-width: none;
    font-size: clamp(2.5rem, 10.5vw, 4rem);
    line-height: 0.94;
  }

  .guest-auth-tabs,
  .guest-session-banner {
    display: grid;
  }

  .guest-auth-tabs {
    width: 100%;
    max-width: 360px;
  }

  .guest-session-banner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .social-subnav,
  .social-chat-sidebar,
  .social-chat-window,
  .story-viewer-stage {
    position: static;
    grid-template-columns: 1fr;
  }

  .story-viewer-dialog {
    padding: 18px;
  }

  .story-viewer-progress {
    padding-right: 72px;
  }

  .story-viewer-nav {
    width: 68px;
  }

  .guest-auth-fields,
  .inline-story-form {
    grid-template-columns: 1fr;
  }

  .guest-auth-fields-signup,
  .guest-auth-fields-signin {
    grid-template-columns: 1fr;
  }

  .guest-auth-submit {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .guest-persona-stat-grid,
  .guest-persona-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-subnav {
    display: flex;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .social-subnav::-webkit-scrollbar {
    display: none;
  }

  .social-nav-button {
    flex: 0 0 auto;
    min-width: 136px;
    justify-content: center;
  }

  .chat-alert-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .chat-alert-panel .secondary-button {
    width: 100%;
  }

  .wedding-alert-modal {
    padding: 16px;
    place-items: end stretch;
  }

  .wedding-alert-dialog {
    width: 100%;
    border-radius: 26px;
    padding: 22px 20px;
  }

  .incoming-chat-popup {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px;
    border-radius: 24px;
  }

  .incoming-chat-popup-head {
    align-items: flex-start;
  }

  .incoming-chat-popup-message,
  .incoming-chat-popup-message.is-self {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-item:nth-child(4n + 1) {
    grid-row: span 1;
  }

  .brand-copy small {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .brand-copy strong {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .page-shell {
    gap: 16px;
  }

  .guest-page .page-shell {
    padding-top: 20px;
  }

  .hero {
    gap: 16px;
    padding: 20px;
    border-radius: 28px;
  }

  .hero::before {
    width: 220px;
    height: 220px;
    top: -70px;
    right: -48px;
  }

  .hero::after {
    width: 170px;
    height: 170px;
    bottom: -64px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 13.2vw, 4.4rem);
    line-height: 0.92;
  }

  .hero-tagline,
  .section-copy,
  .event-description,
  .menu-card p,
  .travel-card p,
  .gallery-item p,
  .supporting-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin: 20px 0 16px;
    gap: 10px;
  }

  .hero-interaction-hint {
    margin-bottom: 16px;
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .primary-button,
  .secondary-button,
  .ghost-button,
  .danger-button {
    min-height: 50px;
    padding: 12px 18px;
    font-size: 0.98rem;
  }

  .metric-card,
  .projection-panel,
  .budget-summary,
  .fact-card,
  .countdown-card,
  .site-footer,
  .event-card,
  .gallery-item,
  .menu-card,
  .travel-card,
  .car-card,
  .prize-card,
  .immersive-card,
  .guest-access-card,
  .social-card,
  .rsvp-card {
    padding: 16px;
    border-radius: 22px;
  }

  .countdown-grid,
  .hero-metric-grid {
    gap: 10px;
  }

  .metric-card {
    padding: 14px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    max-width: none;
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    line-height: 0.94;
  }

  .showcase-grid,
  .intro-grid,
  .event-grid,
  .gallery-grid,
  .menu-grid,
  .car-grid,
  .compact-grid {
    gap: 14px;
  }

  body.guest-page .guest-persona-menu {
    width: min(340px, calc(100vw - 28px));
    max-height: min(72vh, calc(100vh - 92px));
    padding: 12px;
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(220, 170, 96, 0.14), transparent 28%),
      linear-gradient(180deg, rgba(24, 10, 17, 0.97), rgba(39, 16, 28, 0.95));
    border-color: rgba(241, 216, 173, 0.12);
    box-shadow:
      0 28px 56px rgba(16, 6, 12, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  body.guest-page .guest-persona-menu-head {
    gap: 12px;
    align-items: center;
  }

  body.guest-page .guest-avatar-large {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.15rem;
  }

  body.guest-page .guest-persona-menu-copy strong {
    color: #fff7ef;
    font-size: 1.02rem;
  }

  body.guest-page .guest-persona-menu-copy p,
  body.guest-page .guest-notification-status {
    color: rgba(255, 241, 234, 0.68);
  }

  body.guest-page .guest-persona-stat-card {
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(241, 216, 173, 0.08);
  }

  body.guest-page .guest-persona-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.guest-page .guest-persona-menu-footer {
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top-color: rgba(241, 216, 173, 0.08);
  }

  body.guest-page .guest-persona-action-grid .secondary-button,
  body.guest-page .guest-persona-menu-footer .secondary-button,
  body.guest-page .guest-persona-menu-footer .ghost-button {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  body.guest-page .guest-persona-action-grid .secondary-button {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(241, 216, 173, 0.08);
    color: #fff7ef;
  }

  body.guest-page .guest-persona-menu-footer .secondary-button {
    background: linear-gradient(135deg, rgba(241, 216, 173, 0.16), rgba(187, 91, 126, 0.18));
    border-color: rgba(241, 216, 173, 0.12);
    color: #fff7ef;
  }

  body.guest-page .guest-persona-menu-footer .ghost-button {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(241, 216, 173, 0.08);
    color: rgba(255, 241, 234, 0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .fireworks-canvas {
    display: none;
  }
}
