/*
 * WF-LAUNCH-004 — WedFrame Cinema
 * Preview-only presentation layer. Existing feature logic remains authoritative.
 */

:root {
  color-scheme: dark;
  --wf-cinema-bg: #050607;
  --wf-cinema-bg-soft: #0b0d0f;
  --wf-cinema-panel: rgba(24, 26, 29, .88);
  --wf-cinema-panel-solid: #16181b;
  --wf-cinema-panel-raised: #202327;
  --wf-cinema-text: #f7f7f5;
  --wf-cinema-muted: #a7aaad;
  --wf-cinema-faint: #777b80;
  --wf-cinema-line: rgba(255, 255, 255, .13);
  --wf-cinema-line-strong: rgba(255, 255, 255, .24);
  --wf-cinema-glass: rgba(17, 19, 21, .76);
  --wf-cinema-control: rgba(255, 255, 255, .085);
  --wf-cinema-accent: #e0b86f;
  --wf-cinema-accent-strong: #c99743;
  --wf-cinema-gold: #e0b86f;
  --wf-cinema-gold-strong: #c99743;
  --wf-cinema-on-accent: #171008;
  --wf-cinema-danger: #ff8d8d;
  --wf-cinema-success: #e0b86f;
  --wf-cinema-radius-xl: 30px;
  --wf-cinema-radius-lg: 22px;
  --wf-cinema-radius-md: 15px;
  --wf-cinema-shadow: 0 28px 80px rgba(0, 0, 0, .38);
  --wf-cinema-font: "DM Sans", Inter, "Segoe UI", system-ui, sans-serif;
  --wf-cinema-page-width: 1510px;
  --wf-cinema-page-gutter: clamp(20px, 2.4vw, 38px);

  /* Compatibility tokens used by the existing preview modules. */
  --cream: var(--wf-cinema-bg);
  --cream2: var(--wf-cinema-bg-soft);
  --cream-dark: var(--wf-cinema-bg-soft);
  --ivory: var(--wf-cinema-text);
  --paper: var(--wf-cinema-panel);
  --white: #fff;
  --green: var(--wf-cinema-accent);
  --green-2: var(--wf-cinema-accent-strong);
  --green-dark: #21190c;
  --gold: var(--wf-cinema-accent);
  --ink: var(--wf-cinema-text);
  --muted: var(--wf-cinema-muted);
  --line: var(--wf-cinema-line);
  --sage: rgba(224, 184, 111, .14);
  --sage-ink: var(--wf-cinema-accent);
  --blush: rgba(255, 255, 255, .08);
  --blush-ink: #f0b7b7;
  --lilac: rgba(178, 168, 255, .12);
  --lilac-ink: #c7c0ff;
  --peach: rgba(255, 188, 133, .12);
  --peach-ink: #ffc18e;
  --focus: var(--wf-cinema-accent);
  --radius-lg: var(--wf-cinema-radius-xl);
  --radius-md: var(--wf-cinema-radius-lg);
  --shadow: var(--wf-cinema-shadow);
}

:root[data-wf-theme="light"] {
  color-scheme: light;
  --wf-cinema-bg: #f2f2ef;
  --wf-cinema-bg-soft: #e9e9e5;
  --wf-cinema-panel: rgba(255, 255, 252, .9);
  --wf-cinema-panel-solid: #fff;
  --wf-cinema-panel-raised: #f7f7f3;
  --wf-cinema-text: #151719;
  --wf-cinema-muted: #5f6468;
  --wf-cinema-faint: #85898c;
  --wf-cinema-line: rgba(17, 20, 22, .13);
  --wf-cinema-line-strong: rgba(17, 20, 22, .24);
  --wf-cinema-glass: rgba(248, 248, 244, .78);
  --wf-cinema-control: rgba(17, 20, 22, .07);
  --wf-cinema-accent: #95651f;
  --wf-cinema-accent-strong: #754a11;
  --wf-cinema-gold: #95651f;
  --wf-cinema-gold-strong: #754a11;
  --wf-cinema-on-accent: #fff;
  --wf-cinema-danger: #a33535;
  --wf-cinema-success: #95651f;
  --wf-cinema-shadow: 0 24px 64px rgba(26, 31, 29, .14);
  --ivory: #fff;
  --white: #fff;
  --green-dark: #4a3217;
  --blush-ink: #914d4d;
  --lilac-ink: #625b99;
  --peach-ink: #8c592e;
}

html { background: var(--wf-cinema-bg); }
body {
  min-width: 320px;
  background:
    radial-gradient(circle at 80% -12%, color-mix(in srgb, var(--wf-cinema-accent) 11%, transparent), transparent 35rem),
    var(--wf-cinema-bg) !important;
  color: var(--wf-cinema-text) !important;
  font-family: var(--wf-cinema-font) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, button, input, select, textarea { font-family: var(--wf-cinema-font) !important; }
a { color: inherit; }
h1, h2, h3, h4, .brand, .public-brand, .mobile-brand,
.story h1, .card h2, .card h3, .results h2, .public-tools-sidebar h2,
.guest-overview strong, .big-stat, .supplier-summary strong {
  font-family: var(--wf-cinema-font) !important;
  letter-spacing: -.035em;
}
h1 { font-weight: 600 !important; }
h2, h3 { font-weight: 560 !important; }
.handwritten { display: none !important; }
.eyebrow, .pill {
  color: var(--wf-cinema-accent) !important;
  font-family: var(--wf-cinema-font) !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
}

button, a, input, select, textarea { transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex="0"]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--wf-cinema-accent) 68%, white) !important;
  outline-offset: 3px !important;
}

input, select, textarea, .control {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}
input::placeholder, textarea::placeholder { color: var(--wf-cinema-faint); }
option { background: var(--wf-cinema-panel-solid); color: var(--wf-cinema-text); }

.button, .action, button.control, .public-tools-actions a, .business-signup a {
  border-radius: 999px !important;
}
.button-primary, .button.button-primary, .action.primary, button.control, .public-tools-actions a.primary, .business-signup a {
  border-color: var(--wf-cinema-accent) !important;
  background: var(--wf-cinema-accent) !important;
  color: var(--wf-cinema-on-accent) !important;
  box-shadow: none !important;
}
.button-primary:hover, .action.primary:hover, button.control:hover { background: var(--wf-cinema-accent-strong) !important; }
.secondary-button, .button.secondary, .button-secondary, .action:not(.primary), .public-tools-actions a:not(.primary) {
  border-color: var(--wf-cinema-line-strong) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}

/* Shared primary navigation, mounted by wedframe-cinema-theme.js. */
.wf-global-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(168px, 1fr) auto 48px;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 0 26px;
  border-bottom: 1px solid var(--wf-cinema-line);
  background: var(--wf-cinema-bg);
  color: var(--wf-cinema-text);
}
.wf-global-brand {
  color: inherit;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.wf-global-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.wf-global-links a {
  color: inherit;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.wf-global-links a:hover,
.wf-global-links a[aria-current="page"] { color: var(--wf-cinema-text); }
.wf-global-links .wf-global-priority,
.wf-global-links .wf-global-priority:hover,
.wf-global-links .wf-global-priority[aria-current="page"] { color: var(--wf-cinema-gold); }
.wf-global-nav .wf-theme-toggle {
  width: 48px;
  height: 48px;
}
body[data-wf-global-nav="true"] > .public-topbar,
body[data-wf-global-nav="true"] > .top { display: none !important; }
@media (min-width: 821px) {
  body[data-wf-global-nav="true"] .sidebar[data-wedframe-sidebar] { display: none !important; }
  body[data-wf-global-nav="true"] .app-shell { display: block !important; }
}
@media (min-width: 821px) and (max-width: 1500px) {
  .wf-global-nav {
    grid-template-columns: minmax(130px, 1fr) auto 44px;
    gap: 16px;
    padding-inline: 18px;
  }
  .wf-global-links { gap: 14px; }
  .wf-global-links a { font-size: 12px; }
  .wf-global-nav .wf-theme-toggle { width: 44px; height: 44px; }
}
@media (max-width: 820px) {
  .wf-global-nav {
    grid-template-columns: 1fr 44px;
    gap: 10px;
    min-height: auto;
    padding: 12px 16px 10px;
  }
  .wf-global-brand { font-size: 20px; }
  .wf-global-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 6px;
    scrollbar-width: none;
  }
  .wf-global-links::-webkit-scrollbar { display: none; }
  .wf-global-links a { font-size: 13px; }
  body[data-wf-global-nav="true"] .sidebar[data-wedframe-sidebar] { display: none !important; }
  body[data-wf-global-nav="true"] .mobile-header { display: none !important; }
}

/* Persistent theme control, inserted by wedframe-cinema-theme.js. */
.wf-theme-toggle {
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--wf-cinema-line);
  border-radius: 50%;
  background: var(--wf-cinema-control);
  color: var(--wf-cinema-text);
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(145%);
}
.wf-theme-toggle:hover { transform: scale(1.06); background: color-mix(in srgb, var(--wf-cinema-control) 70%, var(--wf-cinema-text) 8%); }
.wf-theme-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
body > .wf-theme-toggle { position: fixed; top: 15px; right: 16px; }

/* Shared Cinema navigation: a floating TV-style top rail on desktop. */
@media (min-width: 821px) {
  .app-shell { display: block !important; min-height: 100vh; }
  .sidebar[data-wedframe-sidebar] {
    position: sticky !important;
    top: 14px !important;
    z-index: 100 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: clamp(12px, 1.5vw, 24px) !important;
    width: min(calc(100% - 28px), 1660px) !important;
    height: 74px !important;
    margin: 14px auto 0 !important;
    padding: 0 clamp(14px, 2vw, 28px) !important;
    border: 1px solid var(--wf-cinema-line) !important;
    border-radius: 26px !important;
    background: var(--wf-cinema-glass) !important;
    color: var(--wf-cinema-muted) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .19) !important;
    backdrop-filter: blur(24px) saturate(145%) !important;
  }
  .sidebar .brand {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--wf-cinema-text) !important;
    font-size: 20px !important;
    font-weight: 650 !important;
    letter-spacing: .2em !important;
    text-transform: uppercase;
  }
  .sidebar .brand-mark { display: none !important; }
  .sidebar .side-nav {
    display: flex !important;
    align-items: center;
    gap: 1px !important;
    min-width: 0;
    margin: 0 auto !important;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .sidebar .side-nav::-webkit-scrollbar { display: none; }
  .sidebar .nav-link {
    flex: 0 0 auto;
    width: auto !important;
    min-height: 40px !important;
    padding: 0 11px !important;
    border-radius: 999px !important;
    color: var(--wf-cinema-muted) !important;
    font-size: 12px !important;
    font-weight: 560 !important;
  }
  .sidebar .nav-link svg, .sidebar .nav-pound, .sidebar .nav-badge { display: none !important; }
  .sidebar .nav-link:hover { color: var(--wf-cinema-text) !important; background: var(--wf-cinema-control) !important; }
  .sidebar .nav-link.active { color: var(--wf-cinema-text) !important; background: transparent !important; }
  .sidebar .nav-link.active::after {
    position: absolute;
    right: 13px;
    bottom: 3px;
    left: 13px;
    height: 2px;
    border-radius: 2px;
    background: var(--wf-cinema-accent);
    content: "";
  }
  .sidebar .sidebar-secondary { display: none !important; }
  .sidebar .couple-profile {
    display: grid !important;
    grid-template-columns: 34px auto 0 !important;
    width: auto !important;
    min-width: 42px;
    margin: 0 !important;
    padding: 3px !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--wf-cinema-text) !important;
  }
  .sidebar .couple-profile > span:nth-child(2), .sidebar .couple-profile > svg { display: none !important; }
  .sidebar .avatar { width: 34px !important; height: 34px !important; border-color: var(--wf-cinema-line-strong) !important; }
  .sidebar .wf-theme-toggle { order: 3; }
  .sidebar .couple-profile { order: 4; }
  .main-content { min-width: 0; }
}

/* Dashboard: immersive hero and horizontally curated feature shelf. */
.page-wrap { width: min(100%, var(--wf-cinema-page-width)) !important; padding: clamp(18px, 2.5vw, 38px) var(--wf-cinema-page-gutter) 36px !important; }
.story-hero {
  min-height: clamp(470px, 63vh, 690px) !important;
  align-items: end !important;
  padding: clamp(28px, 4.5vw, 72px) !important;
  border: 0 !important;
  border-radius: var(--wf-cinema-radius-xl) !important;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .5) 43%, rgba(0, 0, 0, .08) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, .58), transparent 58%),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2200&q=88") !important;
  background-position: center, center, center 42% !important;
  background-size: cover !important;
  box-shadow: var(--wf-cinema-shadow) !important;
}
.story-hero::after { display: none !important; }
.hero-copy { max-width: 760px; }
.hero-copy h1 { font-size: clamp(48px, 6vw, 86px) !important; line-height: .98 !important; font-weight: 540 !important; }
.hero-lead { font-size: clamp(17px, 1.4vw, 22px) !important; }
.hero-summary { color: rgba(255, 255, 255, .72) !important; font-size: 14px !important; }
.hero-progress { justify-self: end; }
.countdown-ring {
  width: 170px !important;
  height: 170px !important;
  border-color: rgba(255, 255, 255, .28) !important;
  background: rgba(0, 0, 0, .28) !important;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .035) !important;
  backdrop-filter: blur(16px) !important;
}
.countdown-ring strong { font-family: var(--wf-cinema-font) !important; font-size: 54px !important; font-weight: 350 !important; }
.completion-copy { display: none !important; }
.hero-action, .hero-profile { background: rgba(8, 9, 10, .48) !important; backdrop-filter: blur(16px) !important; }
.button-light { border-radius: 999px !important; background: #fff !important; color: #111 !important; }

.focus-panel, .dashboard-card, .lower-card,
.summary-strip > *, .summary-grid > *, .status-grid > *, .editor-card,
.tables-panel, .guest-panel, .warning-panel, dialog,
.search, .business-signup, .public-tools-sidebar, .card {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(125%);
}
.focus-panel { margin-top: 24px !important; }
.focus-item { border-color: var(--wf-cinema-line) !important; }
.focus-item:hover { background: var(--wf-cinema-control) !important; }
.focus-icon, .card-icon, .activity-icon, .round-link, .ai-orb { border-radius: 50% !important; }
.round-link { border-color: var(--wf-cinema-line) !important; background: var(--wf-cinema-control) !important; color: var(--wf-cinema-text) !important; }
.module-grid {
  display: flex !important;
  gap: 16px !important;
  overflow-x: auto !important;
  padding: 6px 3px 22px !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--wf-cinema-line-strong) transparent;
}
.dashboard-card {
  flex: 0 0 clamp(288px, 25vw, 390px) !important;
  min-height: 300px !important;
  scroll-snap-align: start;
  overflow: hidden;
}
.dashboard-card:hover { border-color: var(--wf-cinema-line-strong) !important; box-shadow: 0 18px 48px rgba(0, 0, 0, .2) !important; transform: translateY(-5px) scale(1.008) !important; }
.dashboard-card:first-child { border-color: rgba(255, 255, 255, .42) !important; box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 18px 58px rgba(0,0,0,.28) !important; }
.ai-card { background: linear-gradient(145deg, #172118, #0c110d) !important; }
:root[data-wf-theme="light"] .ai-card { background: linear-gradient(145deg, #e2eedc, #f5f7f2) !important; color: var(--wf-cinema-text) !important; }
.site-preview { border: 1px solid var(--wf-cinema-line); }
.prototype-note { color: var(--wf-cinema-faint) !important; }

/* Module pages and editors. */
.budget-wrap, .checklist-wrap, .guests-wrap, .editor-wrap, .website-main, .page-shell,
.music-page, .gallery-page, .graphics-wrap, .studio-shell {
  box-sizing: border-box !important;
  width: min(100%, var(--wf-cinema-page-width)) !important;
  max-width: var(--wf-cinema-page-width) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: var(--wf-cinema-page-gutter) !important;
  padding-left: var(--wf-cinema-page-gutter) !important;
  padding-top: clamp(28px, 4vw, 64px) !important;
}
.graphics-main { padding: 0 !important; }
.budget-header, .checklist-header, .guests-header, .editor-header, .website-header, .page-intro,
.timeline-intro, .music-intro, .gallery-hero {
  padding: clamp(28px, 4vw, 56px) !important;
  border: 1px solid var(--wf-cinema-line) !important;
  border-radius: var(--wf-cinema-radius-xl) !important;
  background-color: #17191b !important;
  color: #fff !important;
  box-shadow: var(--wf-cinema-shadow) !important;
}
.budget-header {
  background-image: linear-gradient(105deg, rgba(0,0,0,.88), rgba(0,0,0,.34)), url("https://images.unsplash.com/photo-1513128034602-7814ccaddd4e?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
}
.checklist-header {
  background-image: linear-gradient(105deg, rgba(0,0,0,.88), rgba(0,0,0,.34)), url("https://images.unsplash.com/photo-1507504031003-b417219a0fde?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 52% !important;
  background-size: cover !important;
}
.guests-header {
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1561928070-590b9c48f0bb?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
}
.editor-header {
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.32)), url("https://images.unsplash.com/photo-1632610992723-82d7c212f6d7?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 50% !important;
  background-size: cover !important;
}
.website-header {
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.32)), url("https://images.unsplash.com/photo-1738898179451-b5fc497f9f8e?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
}
.seating-shell .page-intro {
  background-image: linear-gradient(105deg, rgba(0,0,0,.88), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
}
.timeline-intro {
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1507504031003-b417219a0fde?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 52% !important;
  background-size: cover !important;
}
.music-intro {
  background-image: linear-gradient(105deg, rgba(0,0,0,.91), rgba(0,0,0,.28)), url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
}
.gallery-hero {
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
}
.budget-header h1, .checklist-header h1, .guests-header h1,
.editor-header h1, .website-header h1, .page-intro h1,
.timeline-intro h1, .music-intro h1, .gallery-hero h1 {
  color: #fff !important;
}
.budget-header > div > p:not(.eyebrow), .checklist-header > div > p:not(.eyebrow),
.guests-header > div > p:not(.eyebrow), .editor-header > div > p:not(.eyebrow),
.website-header > div > p:not(.eyebrow), .page-intro > div > p:not(.eyebrow),
.timeline-intro > div > p:not(.eyebrow), .music-intro > div > p:not(.eyebrow),
.gallery-hero > div > p:not(.gallery-eyebrow) { color: rgba(255,255,255,.76) !important; }

/* DM Sans is the single typeface for the authenticated WedFrame Cinema shell. */
.app-shell, .app-shell *, .graphics-shell, .graphics-shell * { font-family: var(--wf-cinema-font) !important; }
.summary-strip, .summary-grid, .status-grid, .editor-summary { margin-top: 18px !important; }
.summary-strip > *, .summary-grid > *, .status-grid > *, .editor-summary > * { border-radius: var(--wf-cinema-radius-md) !important; }
.tabs, .editor-tabs, .segmented { border-color: var(--wf-cinema-line) !important; background: var(--wf-cinema-control) !important; }
.tabs button, .editor-tabs button, .segmented button { color: var(--wf-cinema-muted) !important; }
.tabs button.active, .editor-tabs button[aria-selected="true"], .segmented button.active { background: var(--wf-cinema-panel-raised) !important; color: var(--wf-cinema-text) !important; }
.table-card, .guest-row, .category-row, .supplier-row, .task-card, .section-row { border-color: var(--wf-cinema-line) !important; background: var(--wf-cinema-panel) !important; }
.preview-notice, .route-notice, .privacy-note, .message, .state, .context-note { border-color: var(--wf-cinema-line) !important; background: var(--wf-cinema-control) !important; color: var(--wf-cinema-muted) !important; }
.message.error, .error-banner { color: var(--wf-cinema-danger) !important; }
.message.ok { color: var(--wf-cinema-success) !important; }

/* Checklist: its specialised focus and recommendation cards sit outside the
   generic task-card family, so map them explicitly to the Seating surfaces. */
.checklist-wrap .recommendation,
.checklist-wrap .focus-hero .next-card,
.checklist-wrap .focus-stats article,
.checklist-wrap .group-card,
.checklist-wrap .empty-state {
  border: 1px solid var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
}
.checklist-wrap .recommendation h2,
.checklist-wrap .focus-hero h2,
.checklist-wrap .section-title h2,
.checklist-wrap .task-main h3,
.checklist-wrap .focus-stats strong {
  color: var(--wf-cinema-text) !important;
}
.checklist-wrap .recommendation p,
.checklist-wrap .focus-hero p,
.checklist-wrap .focus-stats span,
.checklist-wrap .empty-state {
  color: var(--wf-cinema-muted) !important;
}
.checklist-wrap .recommendation .eyebrow { color: var(--wf-cinema-gold) !important; }
.checklist-wrap .recommendation .text-action { color: var(--wf-cinema-accent) !important; }
.checklist-wrap .recommend-icon {
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-accent) !important;
}
.checklist-wrap .progress-ring::before { background: var(--wf-cinema-panel) !important; }
.checklist-wrap .task-check {
  border-color: var(--wf-cinema-line-strong) !important;
  background: var(--wf-cinema-control) !important;
}

/* Guests and RSVP: legacy cream cards must not survive inside Cinema themes. */
.guests-wrap .guest-summary article,
.guests-wrap .guest-recommendation,
.guests-wrap .surface,
.guests-wrap .guest-filters,
.guests-wrap .attention-item,
.guests-wrap .recent-item,
.guests-wrap .household-card,
.guests-wrap .question-card,
.guests-wrap .permission-card,
.guests-wrap .metric-card,
.guests-wrap .guest-card-actions button,
.guest-modal {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
}
.guests-wrap .guest-tabs {
  border: 1px solid var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
}
.guests-wrap .guest-tabs button { color: var(--wf-cinema-muted) !important; }
.guests-wrap .guest-tabs button[aria-selected="true"] {
  background: var(--wf-cinema-panel-raised) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
}
.guests-wrap .guest-summary span,
.guests-wrap .surface p,
.guests-wrap .surface small,
.guests-wrap .recent-item,
.guests-wrap .household-card small,
.guests-wrap .guest-table th,
.guests-wrap .guest-table td { color: var(--wf-cinema-muted) !important; }
.guests-wrap .surface h2,
.guests-wrap .surface h3,
.guests-wrap .recent-item strong,
.guests-wrap .household-card strong,
.guests-wrap .question-card strong,
.guests-wrap .permission-card strong,
.guests-wrap .metric-card span,
.guests-wrap .guest-name button { color: var(--wf-cinema-text) !important; }
.guests-wrap .guest-recommendation .eyebrow { color: var(--wf-cinema-gold) !important; }
.guests-wrap .guest-recommendation h2 { color: var(--wf-cinema-text) !important; }
.guests-wrap .guest-recommendation .text-action { color: var(--wf-cinema-accent) !important; }
.guests-wrap .guest-recommendation p { color: var(--wf-cinema-muted) !important; }
.guests-wrap .guest-recommendation .recommend-icon {
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-accent) !important;
}

/* Seating: use the shared Cinema shell and keep copy readable over imagery/panels. */
.seating-shell .page-intro h1 { color: #fff !important; }
.seating-shell .page-intro .eyebrow { color: var(--wf-cinema-gold) !important; }
.seating-shell .summary-grid span,
.seating-shell .preview-notice,
.seating-shell .warning-panel > p,
.seating-shell .section-heading label,
.seating-shell .table-card-header p,
.seating-shell .table-progress p,
.seating-shell .roster-list span { color: var(--wf-cinema-muted) !important; }
.seating-shell .summary-grid strong,
.seating-shell .warning-panel h2,
.seating-shell .section-heading h2,
.seating-shell .table-card-header h3,
.seating-shell .table-roster h4,
.seating-shell .roster-list strong { color: var(--wf-cinema-text) !important; }
.seating-shell .table-card,
.seating-shell .table-card-header,
.seating-shell .roster-list li {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel-raised) !important;
  color: var(--wf-cinema-text) !important;
}

/* Cross-page consistency audit: Seating is the canonical panel, type and
   contrast model. Legacy module colours are mapped back to Cinema tokens. */
.summary-strip > *, .summary-grid > *, .status-grid > *, .editor-summary > *,
.surface, .filter-panel, .editor-surface, .editor-card, .section-dialog,
.checklist-modal, .feature,
.category-card, .payment-card, .supplier-card, .recent-item,
.page-row, .announcement-row, .identity-grid article,
.wf-card, .wf-panel, .wf-state-card, .wf-table-wrap,
.page .card, .page .summary-item, .page .signup-result, .page .media-card,
.page .partner-card, .page .claim-row, .page .vip-region, .page .edit-box,
.page .description-editor {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
}
.summary-strip span, .summary-grid span, .status-grid span, .editor-summary span,
.surface p, .surface small, .task-card p, .task-card small,
.feature p,
.editor-surface p, .editor-surface small, .section-row p,
.wf-production-shell p, .wf-production-shell small, .wf-production-shell th,
.page .muted, .page .lede, .page .note, .page .field label,
.page .supplier span, .page .media-meta, .page .vip-summary,
.page .partner-card small, .page .signup-result small {
  color: var(--wf-cinema-muted) !important;
}
.summary-strip strong, .summary-grid strong, .status-grid strong, .editor-summary strong,
.surface h2, .surface h3, .task-card h3, .editor-surface h2, .editor-surface h3,
.feature h2, .feature h3,
.editor-card h2, .editor-card h3, .section-row strong,
.wf-production-shell h1, .wf-production-shell h2, .wf-production-shell h3,
.wf-production-shell td, .page .card h2, .page .card h3,
.page .summary-item span, .page .supplier strong, .page .partner-card strong {
  color: var(--wf-cinema-text) !important;
}
.view-tabs, .view-toggle, .auth-switch, .profile-tabs,
.description-format-toolbar, .wf-tabs {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
}
.view-tabs button, .view-toggle button, .auth-tab, .profile-tab, .wf-tabs button, .wf-tabs a {
  color: var(--wf-cinema-muted) !important;
}
.wf-tabs button, .wf-tabs a {
  border-color: rgba(255,255,255,.22) !important;
  background: #202327 !important;
  color: #f7f3ec !important;
}
.view-tabs button[aria-selected="true"], .view-toggle button.active,
.auth-tab.active, .profile-tab.active, .wf-tabs button.active {
  border-color: var(--wf-cinema-line-strong) !important;
  background: var(--wf-cinema-panel-raised) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
}
.wf-tabs button[aria-current="page"], .wf-tabs a[aria-current="page"] {
  border-color: var(--wf-cinema-gold) !important;
  background: var(--wf-cinema-gold) !important;
  color: #090a0a !important;
}
.task-actions button, .reorder-buttons button, .section-actions button,
.description-format-button, .small-action, .text-button,
.page .button:not(.primary):not(.gold):not(.danger-solid),
.wf-button:not(.primary) {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}
.bulk-bar, .financial-warning, .warning, .editor-warning,
.settings-danger, .danger-zone, .error-banner, .wf-notice.is-error {
  border-color: color-mix(in srgb, var(--wf-cinema-danger) 42%, transparent) !important;
  background: color-mix(in srgb, var(--wf-cinema-danger) 10%, var(--wf-cinema-panel)) !important;
  color: var(--wf-cinema-danger) !important;
}
.status, .badge, .payment-state, .section-badge, .wf-role, .pill {
  border: 1px solid var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}
.wf-status-pill,
.wf-account-bar a,
.wf-account-bar button {
  border: 1px solid var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
}
.wf-status-pill.is-live,
.wf-status-pill.is-approved {
  border-color: color-mix(in srgb, var(--wf-cinema-gold) 44%, transparent) !important;
  background: color-mix(in srgb, var(--wf-cinema-gold) 14%, transparent) !important;
  color: var(--wf-cinema-gold) !important;
}
.wf-account-bar a:hover,
.wf-account-bar button:hover {
  border-color: var(--wf-cinema-line-strong) !important;
  background: var(--wf-cinema-panel-raised) !important;
}
.status.accepted, .badge.completed, .payment-state.fully-paid, .wf-notice.is-success {
  border-color: color-mix(in srgb, var(--wf-cinema-success) 38%, transparent) !important;
  background: color-mix(in srgb, var(--wf-cinema-success) 14%, var(--wf-cinema-panel)) !important;
  color: var(--wf-cinema-success) !important;
}
.status.declined, .badge.overdue, .badge.critical, .payment-state.overpaid {
  border-color: color-mix(in srgb, var(--wf-cinema-danger) 38%, transparent) !important;
  background: color-mix(in srgb, var(--wf-cinema-danger) 12%, var(--wf-cinema-panel)) !important;
  color: var(--wf-cinema-danger) !important;
}
.status.awaiting-response, .badge.in-progress, .payment-state.part-paid {
  border-color: color-mix(in srgb, var(--wf-cinema-gold) 38%, transparent) !important;
  background: color-mix(in srgb, var(--wf-cinema-gold) 12%, var(--wf-cinema-panel)) !important;
  color: var(--wf-cinema-gold) !important;
}
.eyebrow, .summary-item strong, .feature small, .status:not(.accepted):not(.declined) {
  color: var(--wf-cinema-gold) !important;
}
.progress-track, .master-progress, .category-progress, .rsvp-bar {
  background: var(--wf-cinema-control) !important;
}
.editor-form input, .editor-form select, .editor-form textarea,
.form-fields input, .form-fields select, .form-fields textarea,
.wf-production-shell input, .wf-production-shell select, .wf-production-shell textarea,
.page .input, .page .textarea, .page .select {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}

/* Guests renders its editor over the page. Keep the modal and every control
   on one Cinema surface so translucent controls never sit on an ivory panel. */
.wf-production-shell .wf-modal {
  border: 1px solid var(--wf-cinema-line-strong) !important;
  background: var(--wf-cinema-panel-solid) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: var(--wf-cinema-shadow) !important;
}
.wf-production-shell .wf-modal h2,
.wf-production-shell .wf-modal label,
.wf-production-shell .wf-modal legend,
.wf-production-shell .wf-modal-close {
  color: var(--wf-cinema-text) !important;
}
.wf-production-shell .wf-modal input:not([type="checkbox"]),
.wf-production-shell .wf-modal select,
.wf-production-shell .wf-modal textarea {
  border-color: var(--wf-cinema-line-strong) !important;
  background: var(--wf-cinema-bg-soft) !important;
  color: var(--wf-cinema-text) !important;
}
.wf-production-shell .wf-modal input::placeholder,
.wf-production-shell .wf-modal textarea::placeholder {
  color: var(--wf-cinema-muted) !important;
  opacity: 1;
}
.wf-production-shell .wf-modal fieldset {
  border-color: var(--wf-cinema-line-strong) !important;
  background: var(--wf-cinema-control) !important;
}
.wf-production-shell .wf-modal .wf-check input {
  accent-color: var(--wf-cinema-gold);
}
.wf-production-shell .wf-modal-actions .wf-button {
  border: 1px solid var(--wf-cinema-gold) !important;
  background: var(--wf-cinema-gold) !important;
  color: var(--wf-cinema-on-accent) !important;
}
.wf-production-shell .wf-modal-actions .wf-button:hover {
  background: var(--wf-cinema-gold-strong) !important;
}

/* Authenticated Guests uses a dynamic renderer, but follows the same
   photographic module-header standard with its own reception image. */
.wf-production-header {
  min-height: 300px;
  padding: clamp(28px, 4vw, 56px) !important;
  border: 1px solid var(--wf-cinema-line) !important;
  border-radius: var(--wf-cinema-radius-xl) !important;
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.28)), url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
  color: #fff !important;
  box-shadow: var(--wf-cinema-shadow) !important;
}
.wf-production-header h1, .wf-production-header p, .wf-production-header .wf-role { color: #fff !important; }
.wf-production-header .wf-role { background: rgba(0,0,0,.38) !important; }

/* Supplier workspaces retain their task-specific navigation, but share the
   same editorial header geometry and contrast as Seating. */
.page .hero, .cinema-module-hero, .index-hero {
  padding: clamp(30px, 4vw, 58px) !important;
  border: 1px solid var(--wf-cinema-line) !important;
  border-radius: var(--wf-cinema-radius-xl) !important;
  color: #fff !important;
  box-shadow: var(--wf-cinema-shadow) !important;
}
.page .hero {
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1529636600939-9edeb1f9719f?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
}
.cinema-module-hero {
  margin-bottom: 22px;
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 45% !important;
  background-size: cover !important;
}
.index-hero {
  background-image: linear-gradient(105deg, rgba(0,0,0,.9), rgba(0,0,0,.28)), url("https://images.unsplash.com/photo-1529636798458-92182e662485?auto=format&fit=crop&w=1800&q=84") !important;
  background-position: center, center 48% !important;
  background-size: cover !important;
}
.page .hero h1, .page .hero h2, .page .hero h3, .page .hero p,
.cinema-module-hero h1, .cinema-module-hero h2, .cinema-module-hero p,
.index-hero h1, .index-hero h2, .index-hero p { color: #fff !important; }
.page .hero .eyebrow, .cinema-module-hero .eyebrow, .index-hero .eyebrow { color: var(--wf-cinema-gold) !important; }
.page .hero .lede, .cinema-module-hero .lede, .index-hero p { color: rgba(255,255,255,.76) !important; }

/* Account front door: cinematic image wall with floating authentication card. */
.page { background: var(--wf-cinema-bg) !important; }
.story {
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.84)),
    url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1500&q=86") center/cover !important;
  color: #fff !important;
}
.story::after { display: none !important; }
.story .brand { font-size: 22px !important; font-weight: 650 !important; letter-spacing: .18em !important; text-transform: uppercase; }
.story .brand-mark { display: none !important; }
.story h1 { font-size: clamp(46px, 6vw, 78px) !important; font-weight: 520 !important; }
.account-area { background: var(--wf-cinema-bg) !important; }
.account-area .card {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: var(--wf-cinema-shadow) !important;
  backdrop-filter: blur(24px) saturate(135%);
}
.account-area .card h2 { font-size: clamp(38px, 5vw, 58px) !important; }
.account-area .intro, .account-area .small { color: var(--wf-cinema-muted) !important; }

/* Public supplier experience: cinematic editorial cards and glass search. */
.public-topbar, .topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-glass) !important;
  color: var(--wf-cinema-text) !important;
  backdrop-filter: blur(24px) saturate(145%);
}
.public-brand, .topbar .brand { font-size: 20px !important; font-weight: 650 !important; letter-spacing: .18em !important; text-transform: uppercase; }
main[data-wf-public-supplier-directory] .hero,
main[data-wf-public-feature-page] .hero {
  width: min(calc(100% - 28px), 1720px);
  min-height: 430px;
  margin: 18px auto 0;
  display: grid;
  place-items: center;
  padding: 68px 24px !important;
  border-radius: var(--wf-cinema-radius-xl);
  background-color: #17191b;
  color: #fff;
  box-shadow: var(--wf-cinema-shadow);
}
main[data-wf-public-supplier-directory] .hero {
  background-image: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1507501336603-6e31db2be093?auto=format&fit=crop&w=2100&q=86");
  background-position: center, center 48%;
  background-size: cover;
}
main[data-wf-public-feature-page] .hero {
  background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1583939003579-730e3918a45a?auto=format&fit=crop&w=2100&q=86");
  background-position: center, center 48%;
  background-size: cover;
}
main[data-wf-public-supplier-directory] .hero h1,
main[data-wf-public-feature-page] .hero h1 { color: #fff !important; font-size: clamp(48px, 7vw, 86px) !important; font-weight: 540 !important; }
main[data-wf-public-supplier-directory] .hero p,
main[data-wf-public-feature-page] .hero p { color: rgba(255,255,255,.76) !important; }
main[data-wf-public-feature-page] .signup {
  border: 1px solid var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
}
main[data-wf-public-feature-page] .signup h2 { color: var(--wf-cinema-text) !important; }
main[data-wf-public-feature-page] .signup p { color: var(--wf-cinema-muted) !important; }
.pill { border-color: rgba(255,255,255,.25) !important; background: rgba(0,0,0,.35) !important; }
.public-directory-layout { max-width: 1720px !important; }
.search { background: rgba(9, 10, 11, .58) !important; backdrop-filter: blur(20px) !important; }
.business-signup { background: rgba(9, 10, 11, .58) !important; }
.cards .card { border-radius: var(--wf-cinema-radius-lg) !important; }
.card-media {
  border-color: var(--wf-cinema-line) !important;
  background-color: var(--wf-cinema-control) !important;
}
.card-body h3, .location { color: var(--wf-cinema-text) !important; }
.badge, .save, .claim { border-color: var(--wf-cinema-line) !important; background: var(--wf-cinema-glass) !important; color: var(--wf-cinema-text) !important; backdrop-filter: blur(15px); }
.save:hover, .save.saved, .save[aria-pressed="true"] { background: var(--wf-cinema-accent) !important; color: var(--wf-cinema-on-accent) !important; }
.public-tool { border-color: var(--wf-cinema-line) !important; color: var(--wf-cinema-text) !important; }
.public-tool:hover { background: var(--wf-cinema-control) !important; color: var(--wf-cinema-accent) !important; }
.foot { border-color: var(--wf-cinema-line) !important; color: var(--wf-cinema-muted) !important; }

/* Supplier profiles: preserve the photographic hero while making every
   information surface genuinely theme-aware and high contrast. */
.top {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-glass) !important;
  color: var(--wf-cinema-text) !important;
  backdrop-filter: blur(24px) saturate(145%) !important;
}
.top .nav-links, .top .back { color: var(--wf-cinema-text) !important; }
.top .nav-links a:hover, .top .back:hover { color: var(--wf-cinema-gold) !important; }
.profile .panel,
.profile .rating-panel,
.profile .profile-note,
.profile .partner-card {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(125%);
}
.profile .panel h2,
.profile .panel h3,
.profile .partner-card h3,
.profile .copy strong,
.profile .value { color: var(--wf-cinema-text) !important; }
.profile .kicker,
.profile .partner-cat,
.profile .profile-note strong,
.profile .generated-note svg,
.profile .gallery-prompt svg,
.profile .view-counter svg {
  color: var(--wf-cinema-gold) !important;
}
.profile .copy,
.profile .empty,
.profile .generated-note,
.profile .gallery-prompt,
.profile .partner-loc,
.profile .profile-note span,
.profile .view-counter,
.profile .rating-note { color: var(--wf-cinema-muted) !important; }
.profile .empty,
.profile .map,
.profile .detail-icon,
.profile .social-link {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}
.profile .map strong { color: var(--wf-cinema-text) !important; }
.profile .action:not(.primary) { color: var(--wf-cinema-text) !important; }
.profile + footer,
body > footer {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-bg-soft) !important;
  color: var(--wf-cinema-muted) !important;
}

@media (max-width: 1100px) and (min-width: 821px) {
  .sidebar .brand { font-size: 17px !important; }
  .sidebar .nav-link { padding: 0 8px !important; font-size: 11px !important; }
}

@media (max-width: 820px) {
  body > .wf-theme-toggle { top: 9px; right: 58px; }
  .sidebar[data-wedframe-sidebar] {
    background: var(--wf-cinema-glass) !important;
    color: var(--wf-cinema-muted) !important;
    backdrop-filter: blur(26px) saturate(145%);
  }
  .sidebar .brand { color: var(--wf-cinema-text) !important; font-family: var(--wf-cinema-font) !important; font-weight: 650 !important; letter-spacing: .16em !important; text-transform: uppercase; }
  .sidebar .brand-mark { display: none !important; }
  .sidebar .wf-theme-toggle { margin: 14px 8px 0; }
  .mobile-header {
    border-color: var(--wf-cinema-line) !important;
    background: var(--wf-cinema-glass) !important;
    color: var(--wf-cinema-text) !important;
    backdrop-filter: blur(22px) saturate(140%) !important;
  }
  .mobile-brand, .mobile-header .notification-button { color: var(--wf-cinema-text) !important; }
  .story-hero { min-height: 520px !important; }
  .budget-wrap, .checklist-wrap, .guests-wrap, .editor-wrap, .website-main, .page-shell,
  .music-page, .gallery-page, .graphics-wrap, .studio-shell { width: 100% !important; padding: 18px 12px 72px !important; }
  .budget-header, .checklist-header, .guests-header, .editor-header, .website-header, .page-intro,
  .timeline-intro, .music-intro, .gallery-hero { padding: 30px 22px !important; }
}

@media (max-width: 620px) {
  .page-wrap { padding-right: 10px !important; padding-left: 10px !important; }
  .story-hero {
    min-height: 560px !important;
    border-radius: 24px !important;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.9) 70%),
      url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1000&q=84") !important;
  }
  .hero-progress { top: 20px !important; right: 18px !important; }
  .focus-panel { border-radius: 22px !important; }
  .focus-item { background: var(--wf-cinema-panel-raised) !important; }
  .dashboard-card { flex-basis: min(84vw, 340px) !important; }
  .mobile-bottom-nav {
    border-color: var(--wf-cinema-line) !important;
    background: var(--wf-cinema-glass) !important;
    backdrop-filter: blur(22px) saturate(145%) !important;
  }
  .mobile-bottom-nav button, .mobile-bottom-nav a { color: var(--wf-cinema-muted) !important; }
  .mobile-bottom-nav .active { color: var(--wf-cinema-text) !important; }
  .page { grid-template-columns: 1fr !important; }
  .story { min-height: 360px !important; }
  main[data-wf-public-supplier-directory] .hero,
  main[data-wf-public-feature-page] .hero { min-height: 420px; padding: 54px 18px !important; }
}

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

/* WF-LAUNCH-004 — full Cinema dashboard and gold presentation system. */
.budget-header, .checklist-header, .guests-header, .editor-header,
.website-header, .page-intro, .wf-production-header,
.page .hero, .cinema-module-hero, .index-hero,
main[data-wf-public-supplier-directory] .hero,
main[data-wf-public-feature-page] .hero,
.profile .hero {
  border: 0 !important;
}

.budget-header h1, .checklist-header h1, .guests-header h1,
.editor-header h1, .website-header h1, .page-intro h1,
.wf-production-header h1, .cinema-module-hero h1, .index-hero h1 {
  color: #fff !important;
  font-size: clamp(44px, 5vw, 74px) !important;
  font-weight: 540 !important;
  line-height: .98 !important;
}

.profile .hero-facts {
  border-color: rgba(224, 184, 111, .28) !important;
  background: rgba(19, 15, 10, .84) !important;
}

body.cinema-dashboard {
  min-height: 100svh;
  overflow: hidden;
  background: #050607 !important;
}

.cinema-dashboard .main-content { overflow: hidden; }
.cinema-dashboard .page-wrap {
  position: relative;
  width: 100% !important;
  height: 100svh;
  margin-top: -88px;
  padding: 0 !important;
  overflow: hidden;
}
.cinema-dashboard .story-hero {
  position: absolute;
  inset: 0;
  min-height: 100svh !important;
  padding: clamp(110px, 14vh, 170px) clamp(28px, 6vw, 96px) clamp(250px, 32vh, 340px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .42) 48%, rgba(0, 0, 0, .08) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .08) 58%),
    url("https://images.unsplash.com/photo-1551564874-2c247864797e?auto=format&fit=crop&w=2400&q=90") !important;
  background-position: center, center, center !important;
  background-size: cover !important;
  box-shadow: none !important;
}
.cinema-dashboard .hero-copy { position: relative; z-index: 1; max-width: 850px; }

@media (min-width: 821px) {
  .cinema-dashboard .hero-copy {
    align-self: start;
    margin-top: clamp(-54px, -5vh, -28px);
  }
}
.cinema-dashboard .hero-copy .eyebrow { color: var(--wf-cinema-gold) !important; }
.cinema-dashboard .hero-copy h1 {
  color: #fff !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: inherit !important;
  font-weight: 520 !important;
  line-height: 1 !important;
}
.cinema-dashboard .hero-greeting {
  display: block;
  font-size: clamp(28px, min(3vw, 5vh), 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.035em;
}
.cinema-dashboard .hero-event {
  display: block;
  max-width: min(860px, 72vw);
  font-size: clamp(48px, min(5.3vw, 7.7vh), 80px);
  font-weight: 540;
  line-height: .93;
  letter-spacing: -.05em;
  overflow-wrap: normal;
  text-wrap: balance;
}
.cinema-dashboard .hero-lead { max-width: 650px; color: rgba(255,255,255,.86) !important; }
.cinema-dashboard .hero-top-actions,
.cinema-dashboard .hero-progress,
.cinema-dashboard .hero-summary,
.cinema-dashboard .handwritten,
.cinema-dashboard .button-light,
.cinema-dashboard .focus-panel,
.cinema-dashboard .lower-grid,
.cinema-dashboard .prototype-note { display: none !important; }

.cinema-dashboard .backup-banner {
  position: absolute;
  z-index: 4;
  bottom: 268px;
  left: clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(760px, calc(100% - 48px));
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(224, 184, 111, .3);
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(12, 14, 15, .94), rgba(24, 25, 25, .82));
  color: #fff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px) saturate(120%);
}
.cinema-dashboard .backup-banner[data-backup-state="protected"] {
  border-color: rgba(112, 230, 150, .72);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, .26),
    0 0 0 1px rgba(112, 230, 150, .2),
    0 0 24px rgba(74, 219, 124, .2);
}
.cinema-dashboard .backup-banner[data-backup-state="partial"],
.cinema-dashboard .backup-banner[data-backup-state="in_progress"] {
  border-color: rgba(224, 184, 111, .62);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, .26),
    0 0 20px rgba(224, 184, 111, .14);
}
.cinema-dashboard .backup-banner[data-backup-state="not_protected"],
.cinema-dashboard .backup-banner[data-backup-state="backup_required"],
.cinema-dashboard .backup-banner[data-backup-state="needs_attention"],
.cinema-dashboard .backup-banner[data-backup-state="permission_expired"] {
  border-color: rgba(255, 92, 103, .9);
  animation: wf-backup-alert-pulse 1.8s ease-in-out infinite;
}
@keyframes wf-backup-alert-pulse {
  0%, 100% {
    box-shadow:
      0 16px 44px rgba(0, 0, 0, .26),
      0 0 0 1px rgba(255, 92, 103, .22),
      0 0 16px rgba(255, 61, 78, .2);
  }
  50% {
    box-shadow:
      0 16px 44px rgba(0, 0, 0, .26),
      0 0 0 2px rgba(255, 92, 103, .62),
      0 0 34px rgba(255, 61, 78, .55),
      0 0 58px rgba(255, 61, 78, .22);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cinema-dashboard .backup-banner[data-backup-state="not_protected"],
  .cinema-dashboard .backup-banner[data-backup-state="backup_required"],
  .cinema-dashboard .backup-banner[data-backup-state="needs_attention"],
  .cinema-dashboard .backup-banner[data-backup-state="permission_expired"] {
    animation: none;
    box-shadow:
      0 16px 44px rgba(0, 0, 0, .26),
      0 0 0 2px rgba(255, 92, 103, .48),
      0 0 24px rgba(255, 61, 78, .28);
  }
}
.cinema-dashboard .backup-banner-copy { min-width: 0; }
.cinema-dashboard .backup-banner .eyebrow { margin: 0 0 2px; font-size: 9px; }
.cinema-dashboard .backup-banner h2 { margin: 0 0 4px; color: #fff !important; font-size: 21px; line-height: 1.08; }
.cinema-dashboard .backup-banner p { margin: 0; color: rgba(255, 255, 255, .8); font-size: 11px; line-height: 1.42; }
.cinema-dashboard .backup-banner small { margin-top: 5px; color: rgba(255, 255, 255, .56); font-size: 9px; line-height: 1.35; }
.cinema-dashboard .backup-banner-actions { align-items: flex-end; gap: 7px; }
.cinema-dashboard .backup-banner .button { min-height: 36px; padding: 9px 15px; font-size: 10px; }
.cinema-dashboard .backup-dismiss { color: rgba(255, 255, 255, .64); }

.cinema-dashboard .module-heading {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: 211px;
  left: clamp(24px, 4vw, 64px);
  margin: 0 !important;
  color: #fff !important;
}
.cinema-dashboard .module-heading h2 { color: #fff !important; font-size: clamp(20px, 2vw, 30px) !important; }
.cinema-dashboard .module-heading > p { display: none; }
.cinema-dashboard .module-heading .eyebrow { color: var(--wf-cinema-gold) !important; }
.cinema-dashboard .module-rail-controls {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 4vw, 64px);
  bottom: 208px;
  display: flex;
  gap: 9px;
}
.cinema-dashboard .module-rail-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(10,10,10,.58);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.cinema-dashboard .module-rail-controls button:hover,
.cinema-dashboard .module-rail-controls button:focus-visible {
  border-color: var(--wf-cinema-gold);
  background: rgba(224,184,111,.22);
  transform: scale(1.06);
}
.cinema-dashboard .module-rail-controls button:first-child svg { transform: rotate(180deg); }
.cinema-dashboard .module-rail-controls svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cinema-dashboard .module-grid {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex !important;
  gap: 15px !important;
  margin: 0 !important;
  padding: 5px clamp(24px, 4vw, 64px) 12px !important;
  overflow-x: auto !important;
  overflow-y: hidden;
  scroll-padding-inline: clamp(24px, 4vw, 64px);
  scrollbar-width: none;
}
.cinema-dashboard .module-grid::-webkit-scrollbar { display: none; }
.cinema-dashboard .dashboard-card {
  position: relative;
  flex: 0 0 clamp(260px, 22vw, 355px) !important;
  min-height: 0 !important;
  height: 184px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 14px !important;
  background-color: #17191b !important;
  background-position: center !important;
  background-size: cover !important;
  box-shadow: 0 10px 32px rgba(0,0,0,.34) !important;
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease !important;
}
.cinema-dashboard .dashboard-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.08) 74%);
}
.cinema-dashboard .dashboard-card:hover,
.cinema-dashboard .dashboard-card:focus-visible {
  transform: translateY(-6px) scale(1.015) !important;
  box-shadow: 0 20px 52px rgba(0,0,0,.48) !important;
}
.cinema-dashboard .dashboard-card > *:not(.card-heading) { display: none !important; }
.cinema-dashboard .dashboard-card .card-heading {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: block !important;
  color: #fff !important;
}
.cinema-dashboard .dashboard-card .card-heading > div { display: block; }
.cinema-dashboard .dashboard-card .card-heading h3 { color: #fff !important; font-size: 22px !important; line-height: 1.05; }
.cinema-dashboard .dashboard-card .card-heading .eyebrow { color: var(--wf-cinema-gold) !important; }
.cinema-dashboard .dashboard-card .card-icon,
.cinema-dashboard .dashboard-card .round-link { display: none !important; }
.cinema-dashboard .guests-card { background-image: url("https://images.unsplash.com/photo-1561928070-590b9c48f0bb?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .budget-card { background-image: url("https://images.unsplash.com/photo-1513128034602-7814ccaddd4e?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .timeline-card { background-image: url("https://images.unsplash.com/photo-1507504031003-b417219a0fde?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .website-card { background-image: url("https://images.unsplash.com/photo-1738898179451-b5fc497f9f8e?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .graphics-card { background-image: url("https://images.unsplash.com/photo-1586281380349-632531db7ed4?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .photos-card { background-image: url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .suppliers-card { background-image: url("https://images.unsplash.com/photo-1507501336603-6e31db2be093?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .checklist-card { background-image: url("https://images.unsplash.com/photo-1632610992723-82d7c212f6d7?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .seating-card { background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .real-weddings-card { background-image: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=900&q=82") !important; }
.cinema-dashboard .ai-card { display: none !important; }

@media (max-width: 820px) {
  body.cinema-dashboard { padding: 0 !important; }
  .cinema-dashboard .mobile-header { background: transparent !important; border: 0 !important; box-shadow: none !important; }
  .cinema-dashboard .page-wrap { margin-top: -64px; }
  .cinema-dashboard .story-hero { min-height: 100svh !important; padding: 96px 24px 274px !important; }
  .cinema-dashboard .hero-copy { align-self: start; margin-top: 0; }
  .cinema-dashboard .hero-copy h1 { gap: 6px; }
  .cinema-dashboard .hero-greeting { font-size: clamp(24px, min(6vw, 4.5vh), 34px); }
  .cinema-dashboard .hero-event { max-width: 100%; font-size: clamp(40px, min(10vw, 7vh), 58px); line-height: .95; }
  .cinema-dashboard .hero-lead { margin-top: 16px !important; font-size: 17px !important; line-height: 1.35 !important; }
  .cinema-dashboard .backup-banner {
    right: 20px;
    bottom: 284px;
    left: 20px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: auto;
    padding: 13px 14px;
  }
  .cinema-dashboard .backup-banner-actions { align-items: flex-start; }
  .cinema-dashboard .backup-banner .button { width: fit-content; }
  .cinema-dashboard .module-heading { right: 126px; bottom: 264px; left: 20px; }
  .cinema-dashboard .module-heading h2 { font-size: 25px !important; }
  .cinema-dashboard .module-rail-controls { right: 20px; bottom: 262px; }
  .cinema-dashboard .module-grid { bottom: 62px; padding-inline: 20px !important; }
  .cinema-dashboard .dashboard-card { flex-basis: min(78vw, 300px) !important; height: 158px !important; }
}

@media (max-width: 520px), (max-height: 700px) {
  .cinema-dashboard .story-hero { padding-top: 82px !important; padding-bottom: 246px !important; }
  .cinema-dashboard .hero-copy { margin-top: 64px; }
  .cinema-dashboard .hero-greeting { font-size: clamp(21px, min(5.5vw, 4vh), 28px); }
  .cinema-dashboard .hero-event { font-size: clamp(36px, min(9vw, 6.5vh), 50px); }
  .cinema-dashboard .hero-lead { font-size: 15px !important; }
  .cinema-dashboard .backup-banner { bottom: 238px; padding-block: 11px; }
  .cinema-dashboard .backup-banner small { display: none; }
  .cinema-dashboard .module-heading { bottom: 194px; }
  .cinema-dashboard .module-heading .eyebrow { display: none; }
  .cinema-dashboard .module-rail-controls { bottom: 191px; }
  .cinema-dashboard .module-grid { bottom: 26px; }
  .cinema-dashboard .dashboard-card { height: 134px !important; }
}

/* WF-GUEST-014 — Guests visual consistency and canonical RSVP Cinema skin. */
.guests-wrap .guest-tabs [role="tab"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--wf-cinema-muted) !important;
  padding: 10px 13px !important;
  font-size: inherit;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none !important;
}
.guests-wrap .guest-tabs [role="tab"][aria-selected="true"],
.guests-wrap .guest-tabs [role="tab"]:hover {
  background: var(--wf-cinema-panel-raised) !important;
  color: var(--wf-cinema-text) !important;
}
.guests-wrap .group-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}
.guests-wrap .group-grid > .surface {
  min-width: 0;
  overflow-x: auto;
}
.guests-wrap .group-grid > .surface > .surface {
  margin: 0;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.guests-wrap .member-row span,
.guests-wrap .permission-options span,
.guests-wrap .status,
.guests-wrap .coming-soon {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--wf-cinema-line-strong) !important;
  border-radius: 999px;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
  padding: 5px 10px;
  font-size: .8125rem !important;
  font-weight: 600;
  line-height: 1.25;
}
.guests-wrap .status.accepted {
  border-color: color-mix(in srgb, var(--wf-cinema-accent) 50%, transparent) !important;
  background: color-mix(in srgb, var(--wf-cinema-accent) 16%, transparent) !important;
  color: var(--wf-cinema-accent) !important;
}
.guests-wrap .status.declined {
  border-color: color-mix(in srgb, var(--wf-cinema-danger) 48%, transparent) !important;
  background: color-mix(in srgb, var(--wf-cinema-danger) 14%, transparent) !important;
  color: var(--wf-cinema-danger) !important;
}
.guests-wrap .guest-table {
  width: 100%;
}
.guests-wrap .guest-table th,
.guests-wrap .guest-table td {
  box-sizing: border-box;
  vertical-align: middle;
}
.guests-wrap .seating-source-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}
.guests-wrap .seating-source-card > div:first-child {
  min-width: 0;
  max-width: 760px;
}
.guests-wrap .seating-source-actions {
  flex: 0 0 auto;
}
.guests-wrap .seating-source-actions svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 821px) {
  .guests-wrap .guest-table td.guest-name {
    display: table-cell;
    white-space: nowrap;
  }
  .guests-wrap .guest-table td.guest-name > * {
    vertical-align: middle;
  }
}
@media (max-width: 820px) {
  .guests-wrap .seating-source-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* RSVP management keeps its completed behaviour while sharing the Cinema shell. */
body:has(.wf-rsvp-shell) {
  background: var(--wf-cinema-bg) !important;
}
.wf-rsvp-shell {
  width: min(calc(100% - 30px), 1540px) !important;
  margin: 0 auto !important;
  padding: clamp(28px, 4vw, 56px) 0 96px !important;
}
.wf-rsvp-topbar {
  justify-content: flex-end !important;
  margin-bottom: 18px !important;
}
.wf-rsvp-brand {
  display: none !important;
}
.wf-rsvp-account {
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wf-rsvp-account span {
  min-width: 0;
  color: var(--wf-cinema-muted) !important;
  overflow-wrap: anywhere;
}
.wf-rsvp-account a,
.wf-rsvp-account button,
.wf-rsvp-tabs,
.wf-rsvp-tabs button {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}
.wf-rsvp-account a,
.wf-rsvp-account button,
.wf-rsvp-tabs button,
.wf-rsvp-card-actions button,
.wf-rsvp-modal-actions button,
.wf-rsvp-button {
  border-radius: 999px !important;
}
.wf-rsvp-hero {
  border: 1px solid var(--wf-cinema-line) !important;
  border-radius: var(--wf-cinema-radius-xl) !important;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, .91), rgba(0, 0, 0, .36)),
    url("https://images.unsplash.com/photo-1561928070-590b9c48f0bb?auto=format&fit=crop&w=1800&q=84") center 48% / cover !important;
  color: #fff !important;
  box-shadow: var(--wf-cinema-shadow) !important;
}
.wf-rsvp-hero h1,
.wf-rsvp-hero p,
.wf-rsvp-hero > a {
  color: #fff !important;
}
.wf-rsvp-eyebrow {
  color: var(--wf-cinema-gold) !important;
}
.wf-rsvp-tabs {
  border: 1px solid var(--wf-cinema-line) !important;
}
.wf-rsvp-tabs button[aria-pressed="true"] {
  background: var(--wf-cinema-panel-raised) !important;
  color: var(--wf-cinema-text) !important;
}
.wf-rsvp-badge {
  border: 1px solid color-mix(in srgb, var(--wf-cinema-accent) 48%, transparent) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-accent) !important;
  box-shadow: none !important;
}
.wf-rsvp-state > div,
.wf-rsvp-panel,
.wf-rsvp-metric,
.wf-rsvp-invitation,
.wf-rsvp-question,
.wf-rsvp-response-row,
.wf-rsvp-response-answers div,
.wf-rsvp-relation-row,
.wf-rsvp-check,
.wf-rsvp-target-chip,
.wf-rsvp-publish-panel,
.wf-rsvp-advanced,
.wf-rsvp-answer-row,
.wf-rsvp-reopen-card,
.wf-rsvp-modal {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-panel) !important;
  color: var(--wf-cinema-text) !important;
  box-shadow: none !important;
}
.wf-rsvp-details div,
.wf-rsvp-form-details > *,
.wf-rsvp-explainer,
.wf-rsvp-notice,
.wf-rsvp-chips span,
.wf-rsvp-response-answers,
.wf-rsvp-validation,
.wf-rsvp-advanced-grid,
.wf-rsvp-relation-section {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}
.wf-rsvp-state h1,
.wf-rsvp-panel h2,
.wf-rsvp-panel h3,
.wf-rsvp-question h3,
.wf-rsvp-reopen-card h3,
.wf-rsvp-metric strong,
.wf-rsvp-details dd,
.wf-rsvp-response-answers dd,
.wf-rsvp-check strong,
.wf-rsvp-relation-section h4,
.wf-rsvp-modal h2 {
  color: var(--wf-cinema-text) !important;
}
.wf-rsvp-panel p,
.wf-rsvp-panel small,
.wf-rsvp-card-title p,
.wf-rsvp-question p,
.wf-rsvp-reopen-card p,
.wf-rsvp-reopen-card small,
.wf-rsvp-metric span,
.wf-rsvp-metric small,
.wf-rsvp-details dt,
.wf-rsvp-response-answers dt,
.wf-rsvp-check small,
.wf-rsvp-field > span,
.wf-rsvp-field > small,
.wf-rsvp-muted,
.wf-rsvp-empty {
  color: var(--wf-cinema-muted) !important;
}
.wf-rsvp-field input,
.wf-rsvp-field select,
.wf-rsvp-field textarea,
.wf-rsvp-modal textarea,
.wf-invite-editor textarea {
  border-color: var(--wf-cinema-line) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}
.wf-rsvp-button,
.wf-rsvp-card-actions button:not(.wf-rsvp-button-secondary):not(.wf-rsvp-button-danger),
.wf-rsvp-modal-actions button:not(.secondary),
.wf-rsvp-reopen-card > button {
  border-color: var(--wf-cinema-accent) !important;
  background: var(--wf-cinema-accent) !important;
  color: var(--wf-cinema-on-accent) !important;
}
.wf-rsvp-button-secondary,
.wf-rsvp-modal-actions .secondary {
  border-color: var(--wf-cinema-line-strong) !important;
  background: var(--wf-cinema-control) !important;
  color: var(--wf-cinema-text) !important;
}
.wf-rsvp-redraft-panel {
  border-color: color-mix(in srgb, var(--wf-cinema-accent) 45%, transparent) !important;
  background: var(--wf-cinema-panel-raised) !important;
  color: var(--wf-cinema-text) !important;
}
.wf-rsvp-redraft-panel h2,
.wf-rsvp-redraft-panel p:not(.wf-rsvp-eyebrow) {
  color: var(--wf-cinema-text) !important;
}
.wf-rsvp-content,
.wf-rsvp-stack,
.wf-rsvp-panel,
.wf-rsvp-invitation,
.wf-rsvp-question,
.wf-rsvp-response-row,
.wf-rsvp-relation-row,
.wf-rsvp-reopen-card {
  min-width: 0;
}
.wf-rsvp-panel,
.wf-rsvp-invitation,
.wf-rsvp-question,
.wf-rsvp-response-row,
.wf-rsvp-relation-row,
.wf-rsvp-reopen-card,
.wf-rsvp-card-title,
.wf-rsvp-question-body {
  overflow-wrap: anywhere;
}
@media (max-width: 760px) {
  .wf-rsvp-shell {
    width: min(100% - 24px, 1540px) !important;
    padding-top: 18px !important;
  }
  .wf-rsvp-account {
    width: 100%;
    justify-content: flex-start;
  }
}
