/* /Components/ContactForm.razor.rz.scp.css */
/* =====================================================================
   ContactForm — public contact form (Plan 03-05)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/03-public-site-foundation/artifacts/
           03-05-contact.html (Open Design prototype, 2026-05-15)

   Scoped CSS — Blazor's [b-xxxxxxxx] suffix isolates these selectors so
   they cannot collide with site.css or Contact.razor.css. Tokens come
   from design-tokens.css (Plan 03-02). Inverted shadow model + dark-
   surface form recipe match DESIGN.md.
   ===================================================================== */

.contact-form[b-jvvrru47us] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 560px;
}

/* ──────────────────────────────────────────
   ①  FIELDS — label + input + validation
   ────────────────────────────────────────── */
.field[b-jvvrru47us] {
    display: flex;
    flex-direction: column;
}

.field label[b-jvvrru47us] {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--color-cream-pearl);
    opacity: 0.85;
    margin-bottom: var(--space-2);
}

.field label .optional[b-jvvrru47us] {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    margin-left: var(--space-2);
}

.field[b-jvvrru47us]  input,
.field[b-jvvrru47us]  textarea {
    width: 100%;
    box-sizing: border-box;
    padding: var(--space-3);
    background-color: var(--color-onyx-lacquer);
    color: var(--color-cream-pearl);
    border: 1px solid var(--color-gunmetal);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

.field[b-jvvrru47us]  input:focus,
.field[b-jvvrru47us]  textarea:focus {
    outline: none;
    border-color: var(--color-hot-rod-red);
    box-shadow: 0 0 0 3px rgba(200, 35, 27, 0.15);
}

.field[b-jvvrru47us]  textarea {
    resize: vertical;
    min-height: 132px;
}

.field[b-jvvrru47us]  .validation-message {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-candy-apple);
    margin-top: var(--space-1);
}

/* ──────────────────────────────────────────
   ②  HONEYPOT — must remain in DOM, offscreen
   Use position-offscreen NOT display:none —
   some bots specifically check for the latter
   and skip those fields.
   ────────────────────────────────────────── */
.honeypot[b-jvvrru47us] {
    position: absolute;
    left: -9999px;
    top: auto;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}

/* ──────────────────────────────────────────
   ③  STATUS MESSAGE SLOT
   ────────────────────────────────────────── */
.form-status[b-jvvrru47us] {
    padding: var(--space-3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
}

.form-status.ok[b-jvvrru47us] {
    background-color: var(--color-onyx-lacquer);
    color: var(--color-cream-pearl);
    border: 1px solid var(--color-gunmetal);
}

.form-status.err[b-jvvrru47us] {
    background-color: var(--color-oxidized-red);
    color: var(--color-candy-apple);
    border: 1px solid var(--color-hot-rod-red-deep);
}

/* ──────────────────────────────────────────
   ④  SUBMIT — chrome-polish with inverted shadow
   ────────────────────────────────────────── */
.submit[b-jvvrru47us] {
    align-self: flex-start;
    background: var(--gradient-chrome-polish);
    color: var(--color-lacquer-black);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    padding: var(--space-3) var(--space-6);
    border: 1px solid var(--color-chrome-shadow);
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-chrome-top), var(--shadow-chrome-bottom);
    transition: background 120ms ease, box-shadow 160ms ease, transform 80ms ease;
}

.submit:hover[b-jvvrru47us] {
    background: var(--gradient-chrome-hot);
    box-shadow:
        var(--shadow-chrome-top),
        var(--shadow-chrome-bottom),
        0 0 24px rgba(30, 216, 255, 0.35);
}

.submit:active[b-jvvrru47us] {
    transform: translateY(1px);
}

.submit:disabled[b-jvvrru47us] {
    background: var(--gradient-chrome-dim);
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: var(--shadow-chrome-top), var(--shadow-chrome-bottom);
}
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* ─── Shell ──────────────────────────────────────────────────────── */
.admin-shell[b-i9nnty7mo6] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background: var(--admin-bg);
    color: var(--admin-text);
    font-family: var(--admin-font-body);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.admin-shell[b-i9nnty7mo6]  * {
    box-sizing: border-box;
}

.admin-shell[b-i9nnty7mo6]  :focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--admin-bg), 0 0 0 4px rgba(224, 224, 232, 0.7);
}

/* ─── Topbar ─────────────────────────────────────────────────────── */
.admin-topbar[b-i9nnty7mo6] {
    height: var(--admin-topbar-h);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 20px;
    background: var(--admin-bg);
    position: relative;
    z-index: 30;
    border-bottom: 1px solid var(--admin-border);
}

/* Chrome strip under the topbar — radial-feathered horizontal gradient */
.admin-topbar[b-i9nnty7mo6]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--admin-chrome-lo) 15%,
        var(--admin-chrome-hi) 50%,
        var(--admin-chrome-lo) 85%,
        transparent 100%
    );
    opacity: 0.6;
}

/* ─── Wordmark ───────────────────────────────────────────────────── */
.admin-wordmark[b-i9nnty7mo6] {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--admin-text);
    user-select: none;
    line-height: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.admin-wordmark-divider[b-i9nnty7mo6] {
    color: var(--admin-text-dim);
    font-weight: 400;
    margin: 0 7px;
    letter-spacing: 0;
}

.admin-wordmark-tag[b-i9nnty7mo6] {
    color: var(--admin-text-muted);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.10em;
}

/* ─── User area (right side of topbar) ───────────────────────────── */
.admin-user-area[b-i9nnty7mo6] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-user-email[b-i9nnty7mo6] {
    font-size: 12px;
    font-weight: 400;
    color: var(--admin-text-muted);
    letter-spacing: 0.01em;
}

.admin-signout-form[b-i9nnty7mo6] {
    margin: 0;
}

.admin-signout-btn[b-i9nnty7mo6] {
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--admin-text-muted);
    background: transparent;
    border: 1px solid var(--admin-border);
    padding: 6px 13px;
    border-radius: 2px;
    cursor: pointer;
    transition: color 100ms ease, border-color 100ms ease;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
}

.admin-signout-btn:hover[b-i9nnty7mo6] {
    color: var(--admin-text);
    border-color: var(--admin-chrome-lo);
}

/* ─── Body row (sidebar + content) ───────────────────────────────── */
.admin-body-row[b-i9nnty7mo6] {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* ─── Content area ───────────────────────────────────────────────── */
.admin-content[b-i9nnty7mo6] {
    flex: 1;
    overflow-y: auto;
    background: var(--admin-bg);
    padding: 36px 44px;
}

.admin-content[b-i9nnty7mo6]::-webkit-scrollbar {
    width: 6px;
}

.admin-content[b-i9nnty7mo6]::-webkit-scrollbar-track {
    background: var(--admin-bg);
}

.admin-content[b-i9nnty7mo6]::-webkit-scrollbar-thumb {
    background: var(--admin-border-raised);
    border-radius: 3px;
}

.admin-content[b-i9nnty7mo6]::-webkit-scrollbar-thumb:hover {
    background: var(--admin-text-dim);
}

@media (prefers-reduced-motion: reduce) {
    .admin-shell[b-i9nnty7mo6],
    .admin-shell[b-i9nnty7mo6]  *,
    .admin-shell[b-i9nnty7mo6]  *::before,
    .admin-shell[b-i9nnty7mo6]  *::after {
        transition-duration: 0.01ms !important;
    }
}
/* /Components/Layout/AdminNavMenu.razor.rz.scp.css */
.admin-sidebar[b-p4b6ct6i9t] {
    width: var(--admin-sidebar-w);
    flex-shrink: 0;
    background-color: var(--admin-bg);
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 7px,
        rgba(255, 255, 255, 0.018) 7px,
        rgba(255, 255, 255, 0.018) 8px
    );
    position: relative;
    z-index: 20;
    padding: 22px 0 24px;
    overflow: visible;
}

/* Vertical chrome strip down the right edge of the sidebar */
.admin-sidebar[b-p4b6ct6i9t]::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        var(--admin-border) 0%,
        var(--admin-chrome-lo) 25%,
        var(--admin-chrome-hi) 55%,
        var(--admin-chrome-lo) 80%,
        var(--admin-border) 100%
    );
    pointer-events: none;
}

.admin-nav-section-label[b-p4b6ct6i9t] {
    font-family: var(--admin-font-display);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--admin-text-dim);
    padding: 0 20px 6px;
    margin: 0;
}

.admin-nav-divider[b-p4b6ct6i9t] {
    height: 1px;
    background: var(--admin-border);
    margin: 10px 20px;
}

.admin-nav-list[b-p4b6ct6i9t] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav-list[b-p4b6ct6i9t]  li {
    position: relative;
}

/* ─── admin-nav-item ─────────────────────────────────────────────── */
[b-p4b6ct6i9t] .admin-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-family: var(--admin-font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--admin-text-muted);
    cursor: pointer;
    position: relative;
    transition: color 100ms ease, background-color 100ms ease;
    user-select: none;
    text-decoration: none;
}

[b-p4b6ct6i9t] a.admin-nav-item {
    color: var(--admin-text-muted);
}

[b-p4b6ct6i9t] .admin-nav-item:not(.admin-nav-item--active):not(.admin-nav-item--disabled):hover {
    color: var(--admin-text);
    background: rgba(255, 255, 255, 0.04);
}

[b-p4b6ct6i9t] .admin-nav-item--active {
    color: var(--admin-text);
    background: rgba(255, 255, 255, 0.055);
    font-weight: 500;
}

[b-p4b6ct6i9t] .admin-nav-item--active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--admin-chrome-hi) 0%, var(--admin-chrome-lo) 100%);
    border-radius: 0 1px 1px 0;
}

[b-p4b6ct6i9t] .admin-nav-item--disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

[b-p4b6ct6i9t] .admin-nav-item--disabled:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--admin-surface-raised);
    color: var(--admin-text-muted);
    font-size: 11px;
    font-weight: 400;
    font-family: var(--admin-font-body);
    padding: 5px 10px;
    border-radius: 2px;
    white-space: nowrap;
    border: 1px solid var(--admin-border-raised);
    z-index: 100;
    pointer-events: none;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

[b-p4b6ct6i9t] .admin-nav-item--disabled:hover::before {
    content: '';
    position: absolute;
    left: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--admin-surface-raised);
    z-index: 101;
    pointer-events: none;
}

[b-p4b6ct6i9t] .admin-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.04em;
    color: var(--admin-text-dim);
    flex-shrink: 0;
}

[b-p4b6ct6i9t] .admin-nav-text {
    flex: 1;
}
/* /Components/Layout/EmptyLayout.razor.rz.scp.css */
/* ─── Admin account shell (Login / Logout / Reset pages) ─────────────
   Plan 04-05 — same chrome-and-black ground as AdminLayout, but with the
   centred-card layout the unauthenticated pages need. Auth pages own this
   stylesheet via the .admin-account-shell wrapper that EmptyLayout.razor
   emits. ─────────────────────────────────────────────────────────── */
.admin-account-shell[b-a253msyxab] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--admin-bg);
    color: var(--admin-text);
    font-family: var(--admin-font-body);
    font-size: 14px;
    padding: 24px;
}

/* The page renders into this wrapper. We pin a tight max-width and reuse
   the chrome strip pattern from AdminLayout for a stylistic tie-back. */
.admin-account-shell[b-a253msyxab]  form {
    width: 100%;
    max-width: 380px;
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 3px;
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.admin-account-shell[b-a253msyxab]  form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--admin-chrome-lo) 0%,
        var(--admin-chrome-hi) 50%,
        var(--admin-chrome-lo) 100%
    );
}

.admin-account-shell[b-a253msyxab]  fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-account-shell[b-a253msyxab]  legend {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--admin-text);
    margin-bottom: 18px;
    padding: 0;
}

.admin-account-shell[b-a253msyxab]  label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--admin-text-muted);
}

.admin-account-shell[b-a253msyxab]  input[type="email"],
.admin-account-shell[b-a253msyxab]  input[type="password"],
.admin-account-shell[b-a253msyxab]  input[type="text"] {
    background: var(--admin-bg);
    border: 1px solid var(--admin-border);
    border-radius: 2px;
    padding: 10px 12px;
    color: var(--admin-text);
    font-family: var(--admin-font-body);
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    transition: border-color 100ms ease;
}

.admin-account-shell[b-a253msyxab]  input[type="email"]:focus,
.admin-account-shell[b-a253msyxab]  input[type="password"]:focus,
.admin-account-shell[b-a253msyxab]  input[type="text"]:focus {
    outline: none;
    border-color: var(--admin-chrome-lo);
}

.admin-account-shell[b-a253msyxab]  button[type="submit"] {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--admin-bg);
    background: linear-gradient(180deg, var(--admin-chrome-hi) 0%, var(--admin-chrome-lo) 100%);
    border: 1px solid var(--admin-chrome-lo);
    padding: 11px 16px;
    border-radius: 2px;
    cursor: pointer;
    transition: filter 100ms ease;
    line-height: 1;
    margin-top: 6px;
}

.admin-account-shell[b-a253msyxab]  button[type="submit"]:hover {
    filter: brightness(1.08);
}

.admin-account-shell[b-a253msyxab]  .error,
.admin-account-shell[b-a253msyxab]  [role="alert"] {
    color: var(--admin-accent-red);
    font-family: var(--admin-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 8px 10px;
    background: rgba(200, 16, 46, 0.08);
    border-left: 2px solid var(--admin-accent-red);
}

.admin-account-shell[b-a253msyxab]  .error li,
.admin-account-shell[b-a253msyxab]  [role="alert"] li {
    list-style: none;
}

.admin-account-shell[b-a253msyxab]  a {
    color: var(--admin-text-muted);
    text-decoration: none;
    font-family: var(--admin-font-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 100ms ease;
}

.admin-account-shell[b-a253msyxab]  a:hover {
    color: var(--admin-text);
}

/* Section/heading inside non-form pages (AccessDenied, Locked,
   confirmation pages) — they're not wrapped in <form>, so they get
   centred card treatment via .access-denied / .account-locked /
   .forgot-password-confirmation / .reset-password-confirmation classes. */
.admin-account-shell[b-a253msyxab]  section {
    width: 100%;
    max-width: 380px;
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 3px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.admin-account-shell[b-a253msyxab]  section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--admin-chrome-lo) 0%,
        var(--admin-chrome-hi) 50%,
        var(--admin-chrome-lo) 100%
    );
}

.admin-account-shell[b-a253msyxab]  h1 {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--admin-text);
    margin: 0 0 12px;
}

.admin-account-shell[b-a253msyxab]  p {
    font-family: var(--admin-font-body);
    color: var(--admin-text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.admin-account-shell[b-a253msyxab]  ul,
.admin-account-shell[b-a253msyxab]  ol {
    margin: 0 0 12px;
    padding-left: 20px;
    color: var(--admin-text-muted);
    font-size: 13px;
    line-height: 1.6;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* =====================================================================
   MainLayout — scoped styles
   Adapted from OD artifact 03-02-mainlayout.html (run c081e1e0...)
   ===================================================================== */

.layout[b-vvyoeecl3p] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---------------------------------------------------------------------
   Header — Chrome Band
   --------------------------------------------------------------------- */
.layout-header[b-vvyoeecl3p] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--gradient-chrome-polish);
    border-radius: 0;
    border-bottom: 4px solid var(--color-lacquer-black);
    box-shadow:
        var(--shadow-chrome-top),
        var(--shadow-chrome-bottom);
}

.layout-header-inner[b-vvyoeecl3p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-16);
    height: 72px;
}

/* ---------------------------------------------------------------------
   Logo — Big Shoulders Display 36px 800 ALL CAPS, hot-rod-red apostrophe
   --------------------------------------------------------------------- */
.logo[b-vvyoeecl3p] {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: var(--tracking-normal);
    text-transform: uppercase;
    color: var(--color-lacquer-black);
    line-height: 1;
    white-space: nowrap;
}

.logo:hover[b-vvyoeecl3p] { color: var(--color-lacquer-black); }

.logo-tick[b-vvyoeecl3p] { color: var(--color-hot-rod-red); }

/* ---------------------------------------------------------------------
   Logo image — SVG wordmark (replaces text-based logo)
   Half the SVG's natural 493px viewBox width for crisp retina sizing.
   --------------------------------------------------------------------- */
.logo-img[b-vvyoeecl3p] {
    display: block;
    height: auto;
    width: 246px;
    max-width: 100%;
}

@media (max-width: 640px) {
    .logo-img[b-vvyoeecl3p] {
        width: 200px;
    }
}

/* ---------------------------------------------------------------------
   Main content slot
   --------------------------------------------------------------------- */
.layout-main[b-vvyoeecl3p] {
    flex: 1;
    background-color: var(--color-lacquer-black);
}

.layout-main:focus[b-vvyoeecl3p] { outline: none; }

/* ---------------------------------------------------------------------
   Footer — Onyx Band
   --------------------------------------------------------------------- */
.layout-footer[b-vvyoeecl3p] {
    background-color: var(--color-onyx-lacquer);
    border-top: 1px solid var(--color-asphalt);
}

.layout-footer-inner[b-vvyoeecl3p] {
    max-width: 1320px;
    margin: 0 auto;
    padding: var(--space-16) var(--space-16) var(--space-12);
}

.footer-columns[b-vvyoeecl3p] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-12);
    align-items: start;
    padding-bottom: var(--space-10);
    border-bottom: 1px solid var(--color-asphalt);
}

.footer-label[b-vvyoeecl3p] {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--color-hot-rod-red);
    margin-bottom: var(--space-3);
}

.footer-about p[b-vvyoeecl3p] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-cream-pearl);
    max-width: 320px;
}

.footer-contact[b-vvyoeecl3p] { text-align: center; }
.footer-social[b-vvyoeecl3p]  { text-align: right; }
.footer-social .footer-label[b-vvyoeecl3p] { text-align: right; }

.footer-link[b-vvyoeecl3p] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--color-link-on-dark);
    text-decoration: underline;
    transition: color var(--duration-fast) var(--easing-standard);
}
.footer-link:hover[b-vvyoeecl3p] {
    color: var(--color-neon-cyan);
    text-decoration: none;
}

.footer-copyright[b-vvyoeecl3p] {
    padding-top: var(--space-6);
    text-align: center;
}

.footer-copyright p[b-vvyoeecl3p] {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--color-cream-pearl);
    margin: 0;
}

.footer-tick[b-vvyoeecl3p] { color: var(--color-hot-rod-red); }

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 1023px) {
    .layout-header-inner[b-vvyoeecl3p] { padding: 0 var(--space-12); }
    .layout-footer-inner[b-vvyoeecl3p] { padding: var(--space-12) var(--space-12) var(--space-10); }
    .footer-columns[b-vvyoeecl3p]      { gap: var(--space-8); }
}

@media (max-width: 767px) {
    .layout-header-inner[b-vvyoeecl3p] { padding: 0 var(--space-6); height: 64px; }
    .logo[b-vvyoeecl3p]                { font-size: 28px; }

    .layout-footer-inner[b-vvyoeecl3p] { padding: var(--space-10) var(--space-6) var(--space-8); }
    .footer-columns[b-vvyoeecl3p] {
        grid-template-columns: 1fr;
        gap: var(--space-7, 28px);
    }
    .footer-social[b-vvyoeecl3p],
    .footer-social .footer-label[b-vvyoeecl3p] { text-align: left; }
    .footer-contact[b-vvyoeecl3p]              { text-align: left; }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* =====================================================================
   NavMenu — horizontal primary nav inside chrome header band
   ===================================================================== */

.navmenu[b-cvexzofce3] {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link[b-cvexzofce3] {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    /* TODO(a11y): Tripod-faithful #412f8b on #1f1729 = 3.1:1 contrast.
       Fails WCAG AA (needs 4.5:1). Revisit once site is live.
       Note: current nav sits on light chrome-polish band, where contrast
       is comfortably AA; the warning applies if/when nav moves onto the
       dark drive-in-dusk background. */
    color: var(--color-nav-text);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    transition: color var(--duration-fast) var(--easing-standard),
                border-color var(--duration-fast) var(--easing-standard);
}

.nav-link:hover[b-cvexzofce3] {
    color: var(--color-hot-rod-red);
    border-bottom-color: var(--color-hot-rod-red);
    text-decoration: underline;
}

.nav-link-disabled[b-cvexzofce3],
.nav-link-disabled:hover[b-cvexzofce3] {
    color: var(--color-asphalt);
    cursor: not-allowed;
    border-bottom-color: transparent;
    pointer-events: none;
}

/* ---------------------------------------------------------------------
   Responsive — tighter spacing at narrow widths
   --------------------------------------------------------------------- */
@media (max-width: 1023px) {
    .navmenu[b-cvexzofce3]  { gap: var(--space-6); }
    .nav-link[b-cvexzofce3] { font-size: 14px; }
}

@media (max-width: 767px) {
    /* v1 ships desktop nav only; mobile drawer lands later. */
    .navmenu[b-cvexzofce3] {
        gap: var(--space-3);
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 60vw;
    }
    .nav-link[b-cvexzofce3] { font-size: 12px; }
}
/* /Components/Pages/About.razor.rz.scp.css */
/* =====================================================================
   About page — title-band + reading-card composition (Plan 03-04)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/03-public-site-foundation/artifacts/
           03-04-about.html (Open Design prototype, 2026-05-15)

   Scoped CSS — selectors are auto-scoped by Blazor's [b-xxxxxxxx]
   attribute, so .about-header / .about-body / .about-card here do NOT
   collide with any other component's classes. Tokens come from
   design-tokens.css (Plan 03-02); we reference var(--color-*),
   var(--space-*), and var(--radius-*) by name and never re-declare
   them here. The about-rule color + 4x80 size matches .hero-rule on
   Home for visual rhythm continuity.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  TITLE BAND — lacquer-black with hot-rod-red headline
   ────────────────────────────────────────── */
.about-header[b-e4pdg8w2nd] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.about-header-inner[b-e4pdg8w2nd] {
    max-width: 900px;
    margin: 0 auto;
}

.about-header-inner h1[b-e4pdg8w2nd] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
    margin: 0;
}

/* 4 x 80px hot-rod-red bar — mirrors the .hero-rule on Home so the two
   pages share a visual rhythm. */
.about-rule[b-e4pdg8w2nd] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    border-radius: 0;
    margin: var(--space-6) auto 0;
}

/* ──────────────────────────────────────────
   ②  READING CARD — cream-pearl long-form surface
   ────────────────────────────────────────── */
.about-body[b-e4pdg8w2nd] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6) var(--space-16);
    display: flex;
    justify-content: center;
}

.about-card[b-e4pdg8w2nd] {
    background-color: var(--color-cream-pearl);
    max-width: 720px;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    border: 1px solid var(--color-patina-cream);
    /* Top-down lighting (DESIGN.md): sky reflected in the top edge of the
       cream card, asphalt contact shadow on the bottom. NOT a drop shadow.
       Matches the welcome-card recipe on Home for surface continuity. */
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.60),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.about-card p[b-e4pdg8w2nd] {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-body-on-light);
    margin: 0;
}
/* /Components/Pages/Admin/Cruises/AdminCruiseEdit.razor.rz.scp.css */
/* Plan 11-04 — AdminCruiseEdit.razor scoped styles.
   Mirrors AdminSisterClubEdit.razor.css for the shared structure;
   net additions: .field-row, .radio-group/.radio-option, input[type="time"] + select.
*/

/* ── Status row ──────────────────────────────────────────────────────────── */
.edit-status-row[b-7fdzw0q11p] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

/* ── Status chip ─────────────────────────────────────────────────────────── */
.status-chip[b-7fdzw0q11p] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.status-chip.is-published[b-7fdzw0q11p] { background: #dcfce7; color: #166534; }
.status-chip.is-pending[b-7fdzw0q11p]   { background: #fef9c3; color: #854d0e; }
.status-chip.is-rejected[b-7fdzw0q11p]  { background: #fee2e2; color: #991b1b; }

/* ── Form card ───────────────────────────────────────────────────────────── */
.admin-form-card[b-7fdzw0q11p] {
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    padding: 28px 24px;
    max-width: 720px;
    margin-bottom: 20px;
}

.admin-form-section[b-7fdzw0q11p] {
    margin-bottom: 24px;
}

.admin-form-section:last-child[b-7fdzw0q11p] {
    margin-bottom: 0;
}

.admin-form-section-label[b-7fdzw0q11p] {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

/* ── Fields ──────────────────────────────────────────────────────────────── */
.field[b-7fdzw0q11p] {
    margin-bottom: 16px;
}

.field:last-child[b-7fdzw0q11p] {
    margin-bottom: 0;
}

.field label[b-7fdzw0q11p] {
    display: block;
    font-weight: 600;
    font-size: .86rem;
    margin-bottom: 4px;
}

.field label .req[b-7fdzw0q11p] {
    color: #c0392b;
    margin-left: 2px;
}

.field label .opt[b-7fdzw0q11p] {
    font-weight: 400;
    font-size: .78rem;
    color: #999;
    margin-left: 6px;
}

.field input[type="text"][b-7fdzw0q11p],
.field input[type="time"][b-7fdzw0q11p],
.field textarea[b-7fdzw0q11p],
.field select[b-7fdzw0q11p] {
    width: 100%;
    max-width: 580px;
    padding: 9px 12px;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    font-size: .9rem;
    font-family: inherit;
    box-sizing: border-box;
    background: #fff;
}

.field textarea[b-7fdzw0q11p] {
    resize: vertical;
    min-height: 80px;
}

/* ── Field-row — side-by-side fields ─────────────────────────────────────── */
.field-row[b-7fdzw0q11p] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 580px;
    margin-bottom: 16px;
}

.field-row .field[b-7fdzw0q11p] {
    margin-bottom: 0;
}

.field-row .field input[b-7fdzw0q11p],
.field-row .field select[b-7fdzw0q11p] {
    max-width: 100%;
}

@media (max-width: 540px) {
    .field-row[b-7fdzw0q11p] {
        grid-template-columns: 1fr;
    }
}

/* ── Radio group ─────────────────────────────────────────────────────────── */
.radio-group[b-7fdzw0q11p] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-option[b-7fdzw0q11p] {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500 !important;
    font-size: .86rem !important;
}

.radio-option:hover[b-7fdzw0q11p] {
    border-color: #c0392b;
}

.radio-option input[type="radio"][b-7fdzw0q11p] {
    accent-color: #c0392b;
    margin: 0;
}

/* ── Submitter panel ─────────────────────────────────────────────────────── */
.submitter-panel[b-7fdzw0q11p] {
    background: #f8f4ef;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 20px;
    max-width: 580px;
}

.submitter-panel-heading[b-7fdzw0q11p] {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 10px;
}

.submitter-field[b-7fdzw0q11p] {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    font-size: .86rem;
}

.submitter-field .sf-label[b-7fdzw0q11p] {
    color: #888;
    min-width: 90px;
}

.submitter-field .sf-value[b-7fdzw0q11p] {
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Error list ──────────────────────────────────────────────────────────── */
.admin-form-errors[b-7fdzw0q11p] {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 12px 16px 12px 32px;
    color: #991b1b;
    font-size: .88rem;
    margin-bottom: 16px;
    max-width: 580px;
}

/* ── Form actions ────────────────────────────────────────────────────────── */
.admin-form-actions[b-7fdzw0q11p] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.btn-save[b-7fdzw0q11p] {
    background: #c0392b;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.btn-save:hover[b-7fdzw0q11p] {
    opacity: .88;
}

.btn-cancel[b-7fdzw0q11p] {
    color: #c0392b;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
}

.admin-form-actions-spacer[b-7fdzw0q11p] {
    flex: 1;
}

.admin-form-actions-helper[b-7fdzw0q11p] {
    font-size: .78rem;
    color: #999;
}
/* /Components/Pages/Admin/Cruises/AdminCruiseNew.razor.rz.scp.css */
/*
    Plan 11-03 — /admin/cruises/new page styles.
    Source: features/v01/11-weekly-cruises/artifacts/11-03-admin-cruise-new.html
    Inherits topbar / sidebar / admin-page-* tokens from the admin-shell.css.
    Mirrors AdminSisterClubNew.razor.css (F09 Plan 09-03) — same admin-form-card
    + admin-form-section + button styles. Net additions over F09:
      - .field-row — side-by-side fields for time/season-month pairs
      - select   — matched to text-input chrome (admin theme)
      - .radio-group — recurrence radio choice
    No upload-zone block — F11 weekly cruises have no flyer / no file upload.
*/

/* Errors banner */
.admin-form-errors[b-fsewbsmmcx] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-fsewbsmmcx] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-fsewbsmmcx]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-fsewbsmmcx] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-fsewbsmmcx] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-fsewbsmmcx] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-fsewbsmmcx] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-fsewbsmmcx] {
    margin-bottom: 20px;
}

.field:last-child[b-fsewbsmmcx] {
    margin-bottom: 0;
}

.field label[b-fsewbsmmcx] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-fsewbsmmcx] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-fsewbsmmcx] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-fsewbsmmcx],
.field input[type="time"][b-fsewbsmmcx],
.field textarea[b-fsewbsmmcx],
.field select[b-fsewbsmmcx] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-fsewbsmmcx],
.field input[type="time"]:focus[b-fsewbsmmcx],
.field textarea:focus[b-fsewbsmmcx],
.field select:focus[b-fsewbsmmcx] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-fsewbsmmcx] {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.field-hint[b-fsewbsmmcx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Field-row — side-by-side fields */
.field-row[b-fsewbsmmcx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.field-row .field[b-fsewbsmmcx] {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .field-row[b-fsewbsmmcx] {
        grid-template-columns: 1fr;
    }
}

/* Radio group — recurrence */
.radio-group[b-fsewbsmmcx] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-option[b-fsewbsmmcx] {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
    padding: 8px 12px;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    cursor: pointer;
    color: #f4ead5;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    transition: border-color 0.12s;
}

.radio-option:hover[b-fsewbsmmcx] {
    border-color: #f4ead5;
}

.radio-option input[type="radio"][b-fsewbsmmcx] {
    accent-color: #c8281f;
    margin: 0;
}

/* Actions */
.admin-form-actions[b-fsewbsmmcx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-publish[b-fsewbsmmcx] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-publish:hover[b-fsewbsmmcx] {
    filter: brightness(1.08);
}

.btn-publish:active[b-fsewbsmmcx] {
    transform: translateY(1px);
}

.btn-publish:focus-visible[b-fsewbsmmcx] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-fsewbsmmcx] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-fsewbsmmcx] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-fsewbsmmcx] {
    flex: 1;
}

.admin-form-actions-helper[b-fsewbsmmcx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}
/* /Components/Pages/Admin/Cruises/AdminCruises.razor.rz.scp.css */
/* Plan 11-04 — AdminCruises.razor scoped styles.
   Mirrors AdminSisterClubs.razor.css; net additions:
     - .recurrence-badge — weekly / monthly pill
     - .admin-cruises-row--day-break — subtle thicker top border between day groups
     - .cruise-day formatting (mono-ish small-caps treatment)
*/

/* ── Page header ─────────────────────────────────────────────────────────── */
.admin-cruises-header[b-0b890zra9o] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 16px;
}

.admin-cruises-header-text[b-0b890zra9o] {
    flex: 1;
}

.btn-new-cruise[b-0b890zra9o] {
    background: #c0392b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    transition: opacity .15s;
}

.btn-new-cruise:hover[b-0b890zra9o] {
    opacity: .88;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.admin-cruises-empty[b-0b890zra9o] {
    background: #fff;
    border: 1px dashed #d8d0c4;
    border-radius: 6px;
    padding: 48px 24px;
    text-align: center;
}

.empty-heading[b-0b890zra9o] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.empty-caption[b-0b890zra9o] {
    color: #888;
    margin: 0;
    font-size: .9rem;
}

/* ── Table ───────────────────────────────────────────────────────────────── */
.admin-cruises-table-wrap[b-0b890zra9o] {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

.admin-cruises-table[b-0b890zra9o] {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

.admin-cruises-table thead tr[b-0b890zra9o] {
    background: #1a1a1a;
    color: #c0c0c0;
    text-align: left;
}

.admin-cruises-table thead th[b-0b890zra9o] {
    padding: 12px 14px;
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-cruises-table .admin-cruises-row[b-0b890zra9o] {
    border-top: 1px solid #e5e0d4;
    transition: background .1s;
}

.admin-cruises-table .admin-cruises-row--day-break[b-0b890zra9o] {
    border-top: 2px solid #c0c0c0;
}

.admin-cruises-table .admin-cruises-row:hover[b-0b890zra9o] {
    background: #fafaf8;
}

.admin-cruises-table td[b-0b890zra9o] {
    padding: 12px 14px;
    vertical-align: middle;
}

/* ── Column widths ───────────────────────────────────────────────────────── */
.col-day[b-0b890zra9o]         { width: 110px; }
.col-venue[b-0b890zra9o]       { min-width: 180px; }
.col-location[b-0b890zra9o]    { min-width: 140px; }
.col-time[b-0b890zra9o]        { width: 150px; white-space: nowrap; }
.col-description[b-0b890zra9o] { min-width: 180px; }
.col-season[b-0b890zra9o]      { width: 100px; white-space: nowrap; }
.col-recurrence[b-0b890zra9o]  { width: 130px; white-space: nowrap; }
.col-status[b-0b890zra9o]      { width: 110px; white-space: nowrap; }
.col-actions[b-0b890zra9o]     { width: 240px; }

/* ── Day cell + venue ────────────────────────────────────────────────────── */
.cruise-day[b-0b890zra9o] {
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .04em;
}

.cruise-venue[b-0b890zra9o] {
    font-weight: 600;
}

/* ── Status badges ───────────────────────────────────────────────────────── */
.status-badge[b-0b890zra9o] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
}

.status-badge--published[b-0b890zra9o] { background: #dcfce7; color: #166534; }
.status-badge--pending[b-0b890zra9o]   { background: #fef9c3; color: #854d0e; }
.status-badge--rejected[b-0b890zra9o]  { background: #fee2e2; color: #991b1b; }

/* ── Recurrence badges ───────────────────────────────────────────────────── */
.recurrence-badge[b-0b890zra9o] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
}

.recurrence-badge--weekly[b-0b890zra9o]  { background: #e0e7ff; color: #3730a3; }
.recurrence-badge--monthly[b-0b890zra9o] { background: #fef3c7; color: #92400e; }

/* ── Row action buttons ──────────────────────────────────────────────────── */
.row-actions[b-0b890zra9o] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-action[b-0b890zra9o] {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: .76rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: opacity .15s;
    background: none;
    font-family: inherit;
}

.btn-action--edit[b-0b890zra9o]      { background: #c0c0c0; color: #1a1a1a; }
.btn-action--unpublish[b-0b890zra9o] { background: #fef3c7; color: #92400e; }
.btn-action--republish[b-0b890zra9o] { background: #d1fae5; color: #065f46; }
.btn-action--delete[b-0b890zra9o]    { background: #fee2e2; color: #991b1b; }
.btn-action:hover[b-0b890zra9o]      { opacity: .8; }
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
.admin-page-eyebrow[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--admin-text-dim);
    margin: 0 0 6px;
}

.admin-page-title[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--admin-text);
    line-height: 1;
    margin: 0 0 28px;
}

/* ─── Stat grid ──────────────────────────────────────────────────── */
.admin-stat-grid[b-v9rxakxjo2] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.admin-stat-card[b-v9rxakxjo2] {
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 3px;
    padding: 22px 24px 20px;
    position: relative;
    overflow: hidden;
}

/* Chrome strip across the top of every stat card */
.admin-stat-card[b-v9rxakxjo2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--admin-chrome-lo) 0%,
        var(--admin-chrome-hi) 50%,
        var(--admin-chrome-lo) 100%
    );
}

.admin-stat-card-label[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--admin-text-muted);
    margin-bottom: 12px;
}

.admin-stat-card-value[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--admin-text);
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.admin-stat-card-note[b-v9rxakxjo2] {
    font-family: var(--admin-font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--admin-text-dim);
    font-style: italic;
}

/* ─── Welcome block ──────────────────────────────────────────────── */
.admin-welcome[b-v9rxakxjo2] {
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 3px;
    padding: 18px 24px;
    position: relative;
    overflow: hidden;
}

.admin-welcome[b-v9rxakxjo2]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--admin-chrome-hi) 0%, var(--admin-chrome-lo) 100%);
}

.admin-welcome-heading[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--admin-text);
    margin: 0 0 5px;
    padding-left: 14px;
}

.admin-welcome-body[b-v9rxakxjo2] {
    font-size: 12px;
    font-weight: 400;
    color: var(--admin-text-muted);
    line-height: 1.65;
    padding-left: 14px;
    margin: 0;
}
/* /Components/Pages/Admin/Events/Edit.razor.rz.scp.css */
/*
    Plan 07-03 — /admin/events/{id}/edit page styles.
    Source: features/v01/07-events/artifacts/07-03-admin-events-edit.html

    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Form-card / field / upload-zone tokens mirror New.razor.css from 07-02
    (this is the documented token-reuse pattern surfaced by TD-023).
*/

/* Status chip next to the title */
.edit-status-row[b-yeurscc24a] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.status-chip[b-yeurscc24a] {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    border: 1px solid;
}

.status-chip.is-published[b-yeurscc24a] {
    color: #f4ead5;
    background: rgba(200, 40, 31, 0.18);
    border-color: #c8281f;
}

.status-chip.is-pending[b-yeurscc24a] {
    color: #c9ccd1;
    background: rgba(201, 204, 209, 0.08);
    border-color: rgba(201, 204, 209, 0.36);
}

/* Errors banner */
.admin-form-errors[b-yeurscc24a] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-yeurscc24a] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-yeurscc24a]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-yeurscc24a] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-yeurscc24a] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-yeurscc24a] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-yeurscc24a] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-yeurscc24a] {
    margin-bottom: 20px;
}

.field:last-child[b-yeurscc24a] {
    margin-bottom: 0;
}

.field label[b-yeurscc24a] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-yeurscc24a] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-yeurscc24a] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-yeurscc24a],
.field input[type="date"][b-yeurscc24a],
.field textarea[b-yeurscc24a] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-yeurscc24a],
.field input[type="date"]:focus[b-yeurscc24a],
.field textarea:focus[b-yeurscc24a] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-yeurscc24a] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-yeurscc24a] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Current flyer + replace zone */
.current-flyer-row[b-yeurscc24a] {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.12);
    border-radius: 4px;
    margin-bottom: 16px;
}

.current-flyer-thumb[b-yeurscc24a] {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(201, 204, 209, 0.18);
    background: #131313;
    flex-shrink: 0;
}

.current-flyer-info[b-yeurscc24a] {
    flex: 1;
    min-width: 0;
}

.current-flyer-label[b-yeurscc24a] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 4px;
}

.current-flyer-name[b-yeurscc24a] {
    color: #f4ead5;
    font-size: 13px;
    word-break: break-all;
}

/* Upload zone (Replace flyer) */
.upload-zone[b-yeurscc24a] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 24px 20px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-yeurscc24a] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-yeurscc24a] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-yeurscc24a] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.upload-cta span[b-yeurscc24a] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-yeurscc24a] {
    font-size: 11px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

/* Two-column row for date + location */
.field-row[b-yeurscc24a] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

@media (max-width: 720px) {
    .field-row[b-yeurscc24a] {
        grid-template-columns: 1fr;
    }
}

/* Actions */
.admin-form-actions[b-yeurscc24a] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-save[b-yeurscc24a] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-save:hover[b-yeurscc24a] {
    filter: brightness(1.08);
}

.btn-save:active[b-yeurscc24a] {
    transform: translateY(1px);
}

.btn-save:focus-visible[b-yeurscc24a] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-yeurscc24a] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-yeurscc24a] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-yeurscc24a] {
    flex: 1;
}

.admin-form-actions-helper[b-yeurscc24a] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}
/* /Components/Pages/Admin/Events/Index.razor.rz.scp.css */
/*
    Plan 07-03 — /admin/events CRUD list page styles.
    Source: features/v01/07-events/artifacts/07-03-admin-events-index.html

    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    This file owns the events-table card + status badges + per-row action buttons.
*/

/* Header strip with New-event CTA */
.admin-events-header[b-15zl8jzjex] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    max-width: 1200px;
    gap: 16px;
}

.admin-events-header-text[b-15zl8jzjex] {
    flex: 1;
}

.btn-new-event[b-15zl8jzjex] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 10px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter 0.12s, transform 0.04s;
    white-space: nowrap;
}

.btn-new-event:hover[b-15zl8jzjex] {
    filter: brightness(1.08);
}

.btn-new-event:focus-visible[b-15zl8jzjex] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

/* Events table card */
.admin-events-card[b-15zl8jzjex] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    max-width: 1200px;
    overflow-x: auto;
}

.admin-events-table[b-15zl8jzjex] {
    width: 100%;
    border-collapse: collapse;
}

.admin-events-table thead tr[b-15zl8jzjex] {
    background: rgba(244, 234, 213, 0.04);
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-events-table th[b-15zl8jzjex] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    text-align: left;
    padding: 14px 16px;
}

.admin-events-table td[b-15zl8jzjex] {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
    vertical-align: middle;
}

.admin-events-table tr:last-child td[b-15zl8jzjex] {
    border-bottom: none;
}

/* Columns */
.col-thumb[b-15zl8jzjex] {
    width: 76px;
}

.flyer-thumb[b-15zl8jzjex] {
    width: 60px;
    height: 60px;
    border-radius: 3px;
    object-fit: cover;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.18);
    display: block;
}

.col-title[b-15zl8jzjex] {
    min-width: 240px;
}

.title-text[b-15zl8jzjex] {
    color: #f4ead5;
    font-weight: 600;
    font-size: 14px;
}

.title-alt[b-15zl8jzjex] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 11px;
    margin-top: 2px;
    font-style: italic;
}

.col-date[b-15zl8jzjex] {
    width: 140px;
    color: rgba(201, 204, 209, 0.58);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.col-location[b-15zl8jzjex] {
    width: 200px;
    color: rgba(201, 204, 209, 0.58);
    font-size: 13px;
}

.col-date.is-null[b-15zl8jzjex],
.col-location.is-null[b-15zl8jzjex] {
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}

/* Status badges */
.col-status[b-15zl8jzjex] {
    width: 130px;
}

.status-badge[b-15zl8jzjex] {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid;
}

.status-published[b-15zl8jzjex] {
    color: #f4ead5;
    background: rgba(200, 40, 31, 0.18);
    border-color: #c8281f;
}

.status-pending[b-15zl8jzjex] {
    color: #c9ccd1;
    background: rgba(201, 204, 209, 0.08);
    border-color: rgba(201, 204, 209, 0.36);
}

.status-rejected[b-15zl8jzjex] {
    color: rgba(201, 204, 209, 0.36);
    background: rgba(20, 20, 22, 0.6);
    border-color: rgba(201, 204, 209, 0.18);
}

/* Actions column */
.col-actions[b-15zl8jzjex] {
    width: 280px;
    text-align: right;
}

.actions-group[b-15zl8jzjex] {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.actions-group form[b-15zl8jzjex] {
    display: inline-block;
    margin: 0;
}

.btn-action[b-15zl8jzjex] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    color: #c9ccd1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.12s, color 0.12s, background 0.12s;
}

.btn-action:hover[b-15zl8jzjex] {
    border-color: #f4ead5;
    color: #f4ead5;
}

.btn-action:focus-visible[b-15zl8jzjex] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-edit[b-15zl8jzjex] {
    color: #f4ead5;
    border-color: rgba(244, 234, 213, 0.32);
}

.btn-unpublish[b-15zl8jzjex] {
    color: #d97706;
    border-color: rgba(217, 119, 6, 0.42);
}

.btn-unpublish:hover[b-15zl8jzjex] {
    border-color: #d97706;
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.btn-republish[b-15zl8jzjex] {
    color: #c8281f;
    border-color: rgba(200, 40, 31, 0.42);
}

.btn-republish:hover[b-15zl8jzjex] {
    border-color: #c8281f;
    color: #fff;
    background: rgba(200, 40, 31, 0.18);
}

.btn-delete[b-15zl8jzjex] {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.32);
}

.btn-delete:hover[b-15zl8jzjex] {
    border-color: #ef4444;
    color: #fff;
    background: rgba(239, 68, 68, 0.18);
}

/* Empty state */
.admin-events-empty[b-15zl8jzjex] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 56px 32px;
    text-align: center;
    max-width: 1200px;
}

.empty-heading[b-15zl8jzjex] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f4ead5;
    margin-bottom: 12px;
}

.empty-caption[b-15zl8jzjex] {
    color: rgba(201, 204, 209, 0.58);
    font-size: 13px;
    margin-bottom: 20px;
}

.empty-caption a[b-15zl8jzjex] {
    color: #c8281f;
    text-decoration: underline;
}
/* /Components/Pages/Admin/Events/New.razor.rz.scp.css */
/*
    Plan 07-02 — /admin/events/new page styles.
    Source: features/v01/07-events/artifacts/07-02-admin-events-new.html
    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    This file only owns the form-card + upload-zone + actions.
*/

/* Errors banner */
.admin-form-errors[b-nqe02786z8] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-nqe02786z8] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-nqe02786z8]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-nqe02786z8] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-nqe02786z8] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-nqe02786z8] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-nqe02786z8] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-nqe02786z8] {
    margin-bottom: 20px;
}

.field:last-child[b-nqe02786z8] {
    margin-bottom: 0;
}

.field label[b-nqe02786z8] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-nqe02786z8] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-nqe02786z8] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-nqe02786z8],
.field input[type="date"][b-nqe02786z8],
.field textarea[b-nqe02786z8] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-nqe02786z8],
.field input[type="date"]:focus[b-nqe02786z8],
.field textarea:focus[b-nqe02786z8] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-nqe02786z8] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-nqe02786z8] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Upload zone */
.upload-zone[b-nqe02786z8] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 28px 24px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-nqe02786z8] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-nqe02786z8] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-nqe02786z8] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.upload-cta span[b-nqe02786z8] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-nqe02786z8] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

.upload-hint strong[b-nqe02786z8] {
    color: rgba(244, 234, 213, 0.58);
}

/* Two-column row for date + location */
.field-row[b-nqe02786z8] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

@media (max-width: 720px) {
    .field-row[b-nqe02786z8] {
        grid-template-columns: 1fr;
    }
}

/* Actions */
.admin-form-actions[b-nqe02786z8] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-publish[b-nqe02786z8] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-publish:hover[b-nqe02786z8] {
    filter: brightness(1.08);
}

.btn-publish:active[b-nqe02786z8] {
    transform: translateY(1px);
}

.btn-publish:focus-visible[b-nqe02786z8] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-nqe02786z8] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-nqe02786z8] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-nqe02786z8] {
    flex: 1;
}

.admin-form-actions-helper[b-nqe02786z8] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}
/* /Components/Pages/Admin/Moderation/Index.razor.rz.scp.css */
/* Plan 06-03 — Moderation queue page styles.
   Source artifact: features/v01/06-moderation-queue/artifacts/06-03-admin-moderation.html

   Tokens (--chrome, --cream, --red, etc.) and the .admin-page-* heading
   classes come from AdminLayout.razor.css (Plan 04-05). This file adds
   only the moderation-row + action-button styles. CSS isolation scopes
   these to the Moderation/Index.razor component. */

.admin-moderation-list[b-z3ffuor1ks] {
    list-style: none;
    margin: 0 0 56px;
    padding: 0;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.admin-moderation-row[b-z3ffuor1ks] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
    background: rgba(255, 255, 255, 0.012);
    transition: background 0.12s;
}

.admin-moderation-row:last-child[b-z3ffuor1ks] { border-bottom: none; }
.admin-moderation-row:hover[b-z3ffuor1ks]      { background: rgba(201, 204, 209, 0.04); }

.admin-moderation-type-badge[b-z3ffuor1ks] {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--chrome, #c9ccd1);
    background: rgba(201, 204, 209, 0.1);
    border: 1px solid rgba(201, 204, 209, 0.2);
    padding: 3px 9px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 5px;
}

.admin-moderation-content[b-z3ffuor1ks] {
    flex: 1;
    min-width: 0;
}

.admin-moderation-label[b-z3ffuor1ks] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.03em;
    color: var(--cream, #f4ead5);
    line-height: 1.15;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-moderation-submitter[b-z3ffuor1ks] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.58);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.submitter-sep[b-z3ffuor1ks] {
    margin: 0 5px;
    color: rgba(201, 204, 209, 0.36);
}

.admin-moderation-when[b-z3ffuor1ks] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 88px;
    text-align: right;
}

.admin-moderation-actions[b-z3ffuor1ks] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.admin-moderation-actions form[b-z3ffuor1ks] { display: contents; }

/* Plan 06-04 — Reject form needs a textarea + button column. Switch the
   reject form back to its own flex column instead of `display: contents`
   so the textarea can sit above the button without collapsing. */
.admin-moderation-actions form:has(.admin-moderation-reject-reason)[b-z3ffuor1ks] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-moderation-reject-reason[b-z3ffuor1ks] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    color: var(--cream, #f4ead5);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(217, 119, 6, 0.32);
    border-radius: 3px;
    padding: 6px 8px;
    width: 200px;
    resize: vertical;
    min-height: 38px;
}

.admin-moderation-reject-reason:focus-visible[b-z3ffuor1ks] {
    outline: 2px solid #d97706;
    outline-offset: 1px;
    border-color: #d97706;
}

.visually-hidden[b-z3ffuor1ks] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.admin-moderation-approve[b-z3ffuor1ks],
.admin-moderation-reject[b-z3ffuor1ks],
.admin-moderation-delete[b-z3ffuor1ks] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 7px 15px;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.14s;
}

.admin-moderation-approve:focus-visible[b-z3ffuor1ks],
.admin-moderation-reject:focus-visible[b-z3ffuor1ks],
.admin-moderation-delete:focus-visible[b-z3ffuor1ks] {
    outline: 2px solid var(--cream, #f4ead5);
    outline-offset: 2px;
}

/* Approve — chrome default, primary action */
.admin-moderation-approve[b-z3ffuor1ks] {
    background: linear-gradient(180deg, #d8dce2 0%, #b8bcc4 100%);
    color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.admin-moderation-approve:hover[b-z3ffuor1ks] { filter: brightness(1.09); }

/* Reject — amber outline, caution */
.admin-moderation-reject[b-z3ffuor1ks] {
    background: transparent;
    color: #e28f10;
    border: 1px solid rgba(217, 119, 6, 0.58);
}
.admin-moderation-reject:hover[b-z3ffuor1ks] {
    background: rgba(217, 119, 6, 0.1);
    border-color: #d97706;
}

/* Delete — hot-rod red, destructive (RESERVED for destructive only) */
.admin-moderation-delete[b-z3ffuor1ks] {
    background: #c8281f;
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.admin-moderation-delete:hover[b-z3ffuor1ks] { filter: brightness(1.1); }

/* Empty state */
.admin-moderation-empty[b-z3ffuor1ks] {
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 68px 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
}

.empty-icon-ring[b-z3ffuor1ks] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 204, 209, 0.055);
    border: 1px solid rgba(201, 204, 209, 0.12);
    margin: 0 auto 22px;
    color: rgba(201, 204, 209, 0.58);
}

.admin-moderation-empty-heading[b-z3ffuor1ks] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--chrome, #c9ccd1);
    margin: 0 0 10px;
}

.admin-moderation-empty-caption[b-z3ffuor1ks] {
    font-size: 13px;
    color: rgba(201, 204, 209, 0.36);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.7;
}
/* /Components/Pages/Admin/Photos/AdminPhotoEdit.razor.rz.scp.css */
/*
    Plan 08-04 — /admin/photos/{id}/edit page styles.
    Source: features/v01/08-photos/artifacts/08-04-admin-photo-edit.html

    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Form-card / field / upload-zone tokens mirror F07 Edit.razor.css
    (the documented token-reuse pattern surfaced by TD-023).
*/

/* Status chip row next to the title */
.edit-status-row[b-9prqcy9biu] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.status-chip[b-9prqcy9biu] {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    border: 1px solid;
}

.status-chip.is-published[b-9prqcy9biu] {
    color: #f4ead5;
    background: rgba(61, 139, 92, 0.18);
    border-color: rgba(61, 139, 92, 0.5);
}

.status-chip.is-pending[b-9prqcy9biu] {
    color: #c9ccd1;
    background: rgba(201, 204, 209, 0.08);
    border-color: rgba(201, 204, 209, 0.36);
}

.status-chip.is-rejected[b-9prqcy9biu] {
    color: #e25247;
    background: rgba(212, 51, 42, 0.16);
    border-color: rgba(212, 51, 42, 0.4);
}

.status-chip.is-featured[b-9prqcy9biu] {
    color: #ffb830;
    background: rgba(255, 184, 48, 0.1);
    border-color: rgba(255, 184, 48, 0.4);
}

/* Errors banner */
.admin-form-errors[b-9prqcy9biu] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-9prqcy9biu] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-9prqcy9biu]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-9prqcy9biu] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-9prqcy9biu] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-9prqcy9biu] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-9prqcy9biu] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-9prqcy9biu] {
    margin-bottom: 20px;
}

.field:last-child[b-9prqcy9biu] {
    margin-bottom: 0;
}

.field label[b-9prqcy9biu] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-9prqcy9biu] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-9prqcy9biu] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-9prqcy9biu],
.field textarea[b-9prqcy9biu] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-9prqcy9biu],
.field textarea:focus[b-9prqcy9biu] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-9prqcy9biu] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-9prqcy9biu] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Current photo + replace zone */
.current-photo-row[b-9prqcy9biu] {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.12);
    border-radius: 4px;
    margin-bottom: 16px;
}

.current-photo-thumb[b-9prqcy9biu] {
    width: 200px;
    height: 134px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(201, 204, 209, 0.18);
    background: #131313;
    flex-shrink: 0;
}

.current-photo-info[b-9prqcy9biu] {
    flex: 1;
    min-width: 0;
}

.current-photo-label[b-9prqcy9biu] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 4px;
}

.current-photo-name[b-9prqcy9biu] {
    color: #f4ead5;
    font-size: 13px;
    word-break: break-all;
}

/* Upload zone (Replace image) */
.upload-zone[b-9prqcy9biu] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 24px 20px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-9prqcy9biu] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-9prqcy9biu] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-9prqcy9biu] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.upload-cta span[b-9prqcy9biu] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-9prqcy9biu] {
    font-size: 11px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

/* Actions */
.admin-form-actions[b-9prqcy9biu] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-save[b-9prqcy9biu] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-save:hover[b-9prqcy9biu] {
    filter: brightness(1.08);
}

.btn-save:active[b-9prqcy9biu] {
    transform: translateY(1px);
}

.btn-save:focus-visible[b-9prqcy9biu] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-9prqcy9biu] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-9prqcy9biu] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-9prqcy9biu] {
    flex: 1;
}

.admin-form-actions-helper[b-9prqcy9biu] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}
/* /Components/Pages/Admin/Photos/AdminPhotoNew.razor.rz.scp.css */
/*
    Plan 08-03 — /admin/photos/new page styles.
    Source: features/v01/08-photos/artifacts/08-03-admin-photo-new.html
    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Visual contract matches F07 /admin/events/new (Plan 07-02) — same
    design-system tokens, same admin-form-card + upload-zone + actions.
*/

/* Errors banner */
.admin-form-errors[b-ezpicsrfta] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-ezpicsrfta] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-ezpicsrfta]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-ezpicsrfta] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-ezpicsrfta] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-ezpicsrfta] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-ezpicsrfta] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-ezpicsrfta] {
    margin-bottom: 20px;
}

.field:last-child[b-ezpicsrfta] {
    margin-bottom: 0;
}

.field label[b-ezpicsrfta] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-ezpicsrfta] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-ezpicsrfta] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-ezpicsrfta],
.field textarea[b-ezpicsrfta] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-ezpicsrfta],
.field textarea:focus[b-ezpicsrfta] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-ezpicsrfta] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-ezpicsrfta] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Upload zone */
.upload-zone[b-ezpicsrfta] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 28px 24px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-ezpicsrfta] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-ezpicsrfta] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-ezpicsrfta] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.upload-cta span[b-ezpicsrfta] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-ezpicsrfta] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

/* Actions */
.admin-form-actions[b-ezpicsrfta] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-publish[b-ezpicsrfta] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-publish:hover[b-ezpicsrfta] {
    filter: brightness(1.08);
}

.btn-publish:active[b-ezpicsrfta] {
    transform: translateY(1px);
}

.btn-publish:focus-visible[b-ezpicsrfta] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-ezpicsrfta] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-ezpicsrfta] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-ezpicsrfta] {
    flex: 1;
}

.admin-form-actions-helper[b-ezpicsrfta] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}
/* /Components/Pages/Admin/Photos/AdminPhotos.razor.rz.scp.css */
/*
    Plan 08-04 — /admin/photos CRUD list page styles.
    Source: features/v01/08-photos/artifacts/08-04-admin-photos-list.html

    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Visual contract parallels F07 /admin/events Index.razor.css — same
    .admin-events-card / .admin-events-table conceptual layout, renamed
    to .admin-photos-* for namespace clarity. Adds:
      - .col-drag + .drag-handle (vertical-dots reorder handle)
      - .col-featured + .featured-star (star toggle, gold-filled when on)
      - .photo-thumb (3:2 200w image, vs F07's flyer 60x60 square)
*/

/* Header strip with Add-photo CTA */
.admin-photos-header[b-9pjji261ru] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    max-width: 1200px;
    gap: 16px;
}

.admin-photos-header-text[b-9pjji261ru] {
    flex: 1;
}

.btn-new-photo[b-9pjji261ru] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 10px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter 0.12s, transform 0.04s;
    white-space: nowrap;
}

.btn-new-photo:hover[b-9pjji261ru] {
    filter: brightness(1.08);
}

.btn-new-photo:focus-visible[b-9pjji261ru] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

/* Photos table card */
.admin-photos-table-wrap[b-9pjji261ru] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    max-width: 1200px;
    overflow-x: auto;
    margin-bottom: 8px;
}

.admin-photos-table[b-9pjji261ru] {
    width: 100%;
    border-collapse: collapse;
}

.admin-photos-table thead tr[b-9pjji261ru] {
    background: rgba(244, 234, 213, 0.04);
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-photos-table th[b-9pjji261ru] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    text-align: left;
    padding: 12px 14px;
    white-space: nowrap;
}

.admin-photos-table th.col-actions[b-9pjji261ru] { text-align: right; }
.admin-photos-table th.col-center[b-9pjji261ru]  { text-align: center; }

.admin-photos-table td[b-9pjji261ru] {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
    vertical-align: middle;
}

.admin-photos-table tr:last-child td[b-9pjji261ru] {
    border-bottom: none;
}

/* Row state — draggable cursor + drop-target glow set by photo-reorder.js */
.admin-photos-card[b-9pjji261ru] {
    background: transparent;
    transition: background 0.12s;
}

.admin-photos-card:hover[b-9pjji261ru] {
    background: rgba(201, 204, 209, 0.04);
}

.admin-photos-card.is-dragging[b-9pjji261ru] {
    opacity: 0.55;
    background: rgba(201, 204, 209, 0.07);
}

.admin-photos-card.is-drop-target[b-9pjji261ru] {
    box-shadow: inset 0 -2px 0 #c8281f;
}

.col-drag[b-9pjji261ru]      { width: 36px; }
.col-thumb[b-9pjji261ru]     { width: 220px; }
.col-caption[b-9pjji261ru]   { min-width: 180px; }
.col-alt[b-9pjji261ru]       { min-width: 180px; }
.col-status[b-9pjji261ru]    { width: 108px; }
.col-featured[b-9pjji261ru]  { width: 76px; }
.col-actions[b-9pjji261ru]   { width: 250px; }

.col-actions[b-9pjji261ru]   { text-align: right; }
.col-center[b-9pjji261ru]    { text-align: center; }

/* Drag handle */
.drag-handle[b-9pjji261ru] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 32px;
    color: rgba(201, 204, 209, 0.36);
    cursor: grab;
    border-radius: 3px;
    transition: color 0.12s, background 0.12s;
    margin: 0 auto;
    background: transparent;
    border: none;
}

.drag-handle:hover[b-9pjji261ru] {
    color: #f4ead5;
    background: rgba(201, 204, 209, 0.06);
}

.drag-handle:focus-visible[b-9pjji261ru] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

/* Thumb */
.photo-thumb[b-9pjji261ru] {
    width: 200px;
    height: 134px;
    object-fit: cover;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    display: block;
}

/* Caption + alt snippets — 2-line clamp */
.photo-caption[b-9pjji261ru],
.photo-alt[b-9pjji261ru] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
}

.photo-caption[b-9pjji261ru] {
    color: #f4ead5;
    font-weight: 500;
}

.photo-alt[b-9pjji261ru] {
    color: rgba(201, 204, 209, 0.58);
    font-style: italic;
}

/* Status badges — match F07 .status-badge contract but with dot prefix */
.status-badge[b-9pjji261ru] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid;
    white-space: nowrap;
}

.status-badge[b-9pjji261ru]::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.status-badge--published[b-9pjji261ru] {
    color: #5fb37c;
    background: rgba(61, 139, 92, 0.16);
    border-color: rgba(61, 139, 92, 0.36);
}

.status-badge--pending[b-9pjji261ru] {
    color: #e28f10;
    background: rgba(217, 119, 6, 0.16);
    border-color: rgba(217, 119, 6, 0.32);
}

.status-badge--rejected[b-9pjji261ru] {
    color: #e25247;
    background: rgba(212, 51, 42, 0.16);
    border-color: rgba(212, 51, 42, 0.4);
}

/* Featured star toggle */
.featured-star[b-9pjji261ru] {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: transform 0.12s, background 0.12s;
}

.featured-star svg[b-9pjji261ru] {
    width: 20px;
    height: 20px;
}

.featured-star:hover[b-9pjji261ru] {
    background: rgba(201, 204, 209, 0.07);
    transform: scale(1.08);
}

.featured-star:focus-visible[b-9pjji261ru] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.featured-star--off svg path[b-9pjji261ru] {
    fill: none;
    stroke: rgba(201, 204, 209, 0.36);
    stroke-width: 1.4;
}

.featured-star--off:hover svg path[b-9pjji261ru] {
    stroke: #ffb830;
}

.featured-star--on svg path[b-9pjji261ru] {
    fill: #ffb830;
    stroke: #ffb830;
    stroke-width: 1.2;
    filter: drop-shadow(0 0 6px rgba(255, 184, 48, 0.45));
}

/* Action buttons */
.row-actions[b-9pjji261ru] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.row-actions form[b-9pjji261ru] {
    display: inline-block;
    margin: 0;
}

.btn-action[b-9pjji261ru] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    color: #c9ccd1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.12s, color 0.12s, background 0.12s, filter 0.12s;
    white-space: nowrap;
}

.btn-action:focus-visible[b-9pjji261ru] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-action--edit[b-9pjji261ru] {
    color: #f4ead5;
    border-color: rgba(244, 234, 213, 0.32);
}

.btn-action--edit:hover[b-9pjji261ru] {
    border-color: #f4ead5;
    color: #f4ead5;
    background: rgba(244, 234, 213, 0.05);
}

.btn-action--unpublish[b-9pjji261ru] {
    color: #d97706;
    border-color: rgba(217, 119, 6, 0.42);
}

.btn-action--unpublish:hover[b-9pjji261ru] {
    border-color: #d97706;
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.btn-action--republish[b-9pjji261ru] {
    color: #c8281f;
    border-color: rgba(200, 40, 31, 0.42);
}

.btn-action--republish:hover[b-9pjji261ru] {
    border-color: #c8281f;
    color: #fff;
    background: rgba(200, 40, 31, 0.18);
}

.btn-action--delete[b-9pjji261ru] {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.32);
}

.btn-action--delete:hover[b-9pjji261ru] {
    border-color: #ef4444;
    color: #fff;
    background: rgba(239, 68, 68, 0.18);
}

/* Empty state */
.admin-photos-empty[b-9pjji261ru] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 56px 32px;
    text-align: center;
    max-width: 1200px;
}

.empty-heading[b-9pjji261ru] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f4ead5;
    margin-bottom: 12px;
}

.empty-caption[b-9pjji261ru] {
    color: rgba(201, 204, 209, 0.58);
    font-size: 13px;
    margin-bottom: 20px;
}

.empty-caption a[b-9pjji261ru] {
    color: #c8281f;
    text-decoration: underline;
}

/* Screen-reader-only */
.sr-only[b-9pjji261ru] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* /Components/Pages/Admin/SisterClubs/AdminSisterClubEdit.razor.rz.scp.css */
/* Plan 09-04 — AdminSisterClubEdit.razor scoped styles */

/* ── Status row ──────────────────────────────────────────────────────────── */
.edit-status-row[b-0rdynd997a] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

/* ── Status chip ─────────────────────────────────────────────────────────── */
.status-chip[b-0rdynd997a] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.status-chip.is-published[b-0rdynd997a] { background: #dcfce7; color: #166534; }
.status-chip.is-pending[b-0rdynd997a]   { background: #fef9c3; color: #854d0e; }
.status-chip.is-rejected[b-0rdynd997a]  { background: #fee2e2; color: #991b1b; }

/* ── Form card ───────────────────────────────────────────────────────────── */
.admin-form-card[b-0rdynd997a] {
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    padding: 28px 24px;
    max-width: 720px;
    margin-bottom: 20px;
}

.admin-form-section[b-0rdynd997a] {
    margin-bottom: 24px;
}

.admin-form-section:last-child[b-0rdynd997a] {
    margin-bottom: 0;
}

.admin-form-section-label[b-0rdynd997a] {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

/* ── Fields ──────────────────────────────────────────────────────────────── */
.field[b-0rdynd997a] {
    margin-bottom: 16px;
}

.field:last-child[b-0rdynd997a] {
    margin-bottom: 0;
}

.field label[b-0rdynd997a] {
    display: block;
    font-weight: 600;
    font-size: .86rem;
    margin-bottom: 4px;
}

.field label .req[b-0rdynd997a] {
    color: #c0392b;
    margin-left: 2px;
}

.field label .opt[b-0rdynd997a] {
    font-weight: 400;
    font-size: .78rem;
    color: #999;
    margin-left: 6px;
}

.field input[type="text"][b-0rdynd997a],
.field input[type="url"][b-0rdynd997a],
.field textarea[b-0rdynd997a] {
    width: 100%;
    max-width: 580px;
    padding: 9px 12px;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    font-size: .9rem;
    font-family: inherit;
    box-sizing: border-box;
}

.field textarea[b-0rdynd997a] {
    resize: vertical;
    min-height: 80px;
}

.field-hint[b-0rdynd997a] {
    font-size: .78rem;
    color: #888;
    margin: 4px 0 0;
}

/* ── Logo preview row ────────────────────────────────────────────────────── */
.current-logo-row[b-0rdynd997a] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.current-logo-thumb[b-0rdynd997a] {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #d8d0c4;
    border-radius: 4px;
    background: #fdf8f0;
}

.current-logo-info .current-logo-label[b-0rdynd997a] {
    font-size: .8rem;
    color: #888;
    margin: 0 0 2px;
}

.current-logo-info .current-logo-name[b-0rdynd997a] {
    font-size: .86rem;
    font-weight: 600;
    margin: 0;
}

/* ── Upload zone ─────────────────────────────────────────────────────────── */
.upload-zone[b-0rdynd997a] {
    border: 2px dashed #d8d0c4;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    background: #fcfaf7;
    max-width: 420px;
}

.upload-cta[b-0rdynd997a] {
    font-weight: 600;
    margin: 6px 0 4px;
}

.upload-cta span[b-0rdynd997a] {
    color: #c0392b;
    text-decoration: underline;
    cursor: pointer;
}

.upload-hint[b-0rdynd997a] {
    font-size: .78rem;
    color: #888;
    margin: 0;
}

/* ── Remove-logo checkbox ────────────────────────────────────────────────── */
.remove-logo-row[b-0rdynd997a] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.remove-logo-row input[type="checkbox"][b-0rdynd997a] {
    width: 16px;
    height: 16px;
    accent-color: #c0392b;
}

.remove-logo-row label[b-0rdynd997a] {
    font-size: .86rem;
    color: #555;
    cursor: pointer;
}

/* ── Submitter panel ─────────────────────────────────────────────────────── */
.submitter-panel[b-0rdynd997a] {
    background: #f8f4ef;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 20px;
    max-width: 580px;
}

.submitter-panel-heading[b-0rdynd997a] {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 10px;
}

.submitter-field[b-0rdynd997a] {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    font-size: .86rem;
}

.submitter-field .sf-label[b-0rdynd997a] {
    color: #888;
    min-width: 90px;
}

.submitter-field .sf-value[b-0rdynd997a] {
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Error list ──────────────────────────────────────────────────────────── */
.admin-form-errors[b-0rdynd997a] {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 12px 16px 12px 32px;
    color: #991b1b;
    font-size: .88rem;
    margin-bottom: 16px;
    max-width: 580px;
}

/* ── Form actions ────────────────────────────────────────────────────────── */
.admin-form-actions[b-0rdynd997a] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.btn-save[b-0rdynd997a] {
    background: #c0392b;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.btn-save:hover[b-0rdynd997a] {
    opacity: .88;
}

.btn-cancel[b-0rdynd997a] {
    color: #c0392b;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
}

.admin-form-actions-spacer[b-0rdynd997a] {
    flex: 1;
}

.admin-form-actions-helper[b-0rdynd997a] {
    font-size: .78rem;
    color: #999;
}
/* /Components/Pages/Admin/SisterClubs/AdminSisterClubNew.razor.rz.scp.css */
/*
    Plan 09-03 — /admin/sister-clubs/new page styles.
    Source: features/v01/09-sister-clubs/artifacts/09-03-admin-sister-club-new.html
    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Visual contract matches F07 /admin/events/new and F08 /admin/photos/new —
    same design-system tokens, same admin-form-card + upload-zone + actions.
*/

/* Errors banner */
.admin-form-errors[b-1kxtfvq7gx] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-1kxtfvq7gx] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-1kxtfvq7gx]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-1kxtfvq7gx] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-1kxtfvq7gx] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-1kxtfvq7gx] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-1kxtfvq7gx] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-1kxtfvq7gx] {
    margin-bottom: 20px;
}

.field:last-child[b-1kxtfvq7gx] {
    margin-bottom: 0;
}

.field label[b-1kxtfvq7gx] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-1kxtfvq7gx] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-1kxtfvq7gx] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-1kxtfvq7gx],
.field input[type="url"][b-1kxtfvq7gx],
.field textarea[b-1kxtfvq7gx] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-1kxtfvq7gx],
.field input[type="url"]:focus[b-1kxtfvq7gx],
.field textarea:focus[b-1kxtfvq7gx] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-1kxtfvq7gx] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-1kxtfvq7gx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Upload zone */
.upload-zone[b-1kxtfvq7gx] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 28px 24px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-1kxtfvq7gx] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-1kxtfvq7gx] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-1kxtfvq7gx] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.upload-cta span[b-1kxtfvq7gx] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-1kxtfvq7gx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

/* Actions */
.admin-form-actions[b-1kxtfvq7gx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-publish[b-1kxtfvq7gx] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-publish:hover[b-1kxtfvq7gx] {
    filter: brightness(1.08);
}

.btn-publish:active[b-1kxtfvq7gx] {
    transform: translateY(1px);
}

.btn-publish:focus-visible[b-1kxtfvq7gx] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-1kxtfvq7gx] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-1kxtfvq7gx] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-1kxtfvq7gx] {
    flex: 1;
}

.admin-form-actions-helper[b-1kxtfvq7gx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}
/* /Components/Pages/Admin/SisterClubs/AdminSisterClubs.razor.rz.scp.css */
/* Plan 09-04 — AdminSisterClubs.razor scoped styles */

/* ── Page header ─────────────────────────────────────────────────────────── */
.admin-clubs-header[b-ydgm849sfj] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 16px;
}

.admin-clubs-header-text[b-ydgm849sfj] {
    flex: 1;
}

.btn-new-club[b-ydgm849sfj] {
    background: #c0392b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    transition: opacity .15s;
}

.btn-new-club:hover[b-ydgm849sfj] {
    opacity: .88;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.admin-clubs-empty[b-ydgm849sfj] {
    background: #fff;
    border: 1px dashed #d8d0c4;
    border-radius: 6px;
    padding: 48px 24px;
    text-align: center;
}

.empty-heading[b-ydgm849sfj] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.empty-caption[b-ydgm849sfj] {
    color: #888;
    margin: 0;
    font-size: .9rem;
}

/* ── Table ───────────────────────────────────────────────────────────────── */
.admin-clubs-table-wrap[b-ydgm849sfj] {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

.admin-clubs-table[b-ydgm849sfj] {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.admin-clubs-table thead tr[b-ydgm849sfj] {
    background: #1a1a1a;
    color: #c0c0c0;
    text-align: left;
}

.admin-clubs-table thead th[b-ydgm849sfj] {
    padding: 12px 16px;
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-clubs-table .admin-clubs-row[b-ydgm849sfj] {
    border-top: 1px solid #d8d0c4;
    transition: background .1s;
}

.admin-clubs-table .admin-clubs-row:hover[b-ydgm849sfj] {
    background: #fafaf8;
}

.admin-clubs-table td[b-ydgm849sfj] {
    padding: 12px 16px;
    vertical-align: middle;
}

/* ── Column widths ───────────────────────────────────────────────────────── */
.col-logo[b-ydgm849sfj]    { width: 96px; }
.col-name[b-ydgm849sfj]    { min-width: 160px; }
.col-url[b-ydgm849sfj]     { min-width: 200px; }
.col-status[b-ydgm849sfj]  { width: 120px; white-space: nowrap; }
.col-actions[b-ydgm849sfj] { width: 220px; }

/* ── Logo thumbnail ──────────────────────────────────────────────────────── */
.club-logo[b-ydgm849sfj] {
    display: block;
    border: 1px solid #d8d0c4;
    border-radius: 4px;
    background: #fdf8f0;
}

.club-logo-placeholder[b-ydgm849sfj] {
    width: 80px;
    height: 80px;
    border: 1px dashed #d8d0c4;
    border-radius: 4px;
    background: #f0ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: .7rem;
    text-align: center;
}

/* ── Club name + URL ─────────────────────────────────────────────────────── */
.club-name[b-ydgm849sfj] {
    font-weight: 600;
}

.club-url-link[b-ydgm849sfj] {
    color: #c0392b;
    text-decoration: none;
    word-break: break-all;
    font-size: .83rem;
}

.club-url-link:hover[b-ydgm849sfj] {
    text-decoration: underline;
}

/* ── Status badges ───────────────────────────────────────────────────────── */
.status-badge[b-ydgm849sfj] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.status-badge--published[b-ydgm849sfj] { background: #dcfce7; color: #166534; }
.status-badge--pending[b-ydgm849sfj]   { background: #fef9c3; color: #854d0e; }
.status-badge--rejected[b-ydgm849sfj]  { background: #fee2e2; color: #991b1b; }

/* ── Row action buttons ──────────────────────────────────────────────────── */
.row-actions[b-ydgm849sfj] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-action[b-ydgm849sfj] {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: opacity .15s;
    background: none;
    font-family: inherit;
}

.btn-action--edit[b-ydgm849sfj]      { background: #c0c0c0; color: #1a1a1a; }
.btn-action--unpublish[b-ydgm849sfj] { background: #fef3c7; color: #92400e; }
.btn-action--republish[b-ydgm849sfj] { background: #d1fae5; color: #065f46; }
.btn-action--delete[b-ydgm849sfj]    { background: #fee2e2; color: #991b1b; }
.btn-action:hover[b-ydgm849sfj]      { opacity: .8; }
/* /Components/Pages/Admin/SiteContent/AdminContactRecipient.razor.rz.scp.css */
/* Plan 10-02 — AdminContactRecipient scoped styles.
   Inherits admin shell tokens (chrome/red/black). Mirrors AdminSisterClubEdit.razor.css.
   Only component-specific overrides live here; common admin form classes are in app.css. */

/* ── Current-value display panel ── */
.admin-info-panel[b-qkmfzjtkof] {
    background: var(--admin-card-bg, #1a1a1a);
    border: 1px solid var(--admin-card-border, #333);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-info-row[b-qkmfzjtkof] {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.admin-info-label[b-qkmfzjtkof] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--admin-muted, #888);
    min-width: 9rem;
    flex-shrink: 0;
}

.admin-info-value[b-qkmfzjtkof] {
    font-size: 0.9375rem;
    color: var(--admin-text, #e8e8e8);
    word-break: break-all;
}

/* ── Error/alert panel ── */
.admin-alert[b-qkmfzjtkof] {
    border-radius: 5px;
    padding: 0.875rem 1.125rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.admin-alert--error[b-qkmfzjtkof] {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #fca5a5;
}
/* /Components/Pages/Admin/SiteContent/AdminSiteContent.razor.rz.scp.css */
/* Plan 10-01 — AdminSiteContent list page scoped styles.
   Mirrors admin-clubs-table pattern from AdminSisterClubs.razor.css (F09).
   Chrome/dark admin theme inherited from AdminLayout. */

.admin-content-empty[b-uenjd2butb] {
    padding: 2rem;
    text-align: center;
    color: var(--color-chrome-mid, #9ca3af);
}

.empty-heading[b-uenjd2butb] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-chrome-light, #e5e7eb);
}

.empty-caption[b-uenjd2butb] {
    font-size: 0.875rem;
    color: var(--color-chrome-mid, #9ca3af);
}

.admin-content-table-wrap[b-uenjd2butb] {
    overflow-x: auto;
    border-radius: 0.5rem;
    border: 1px solid var(--color-chrome-border, #374151);
}

.admin-content-table[b-uenjd2butb] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-content-table thead[b-uenjd2butb] {
    background: var(--color-admin-header-bg, #111827);
}

.admin-content-table th[b-uenjd2butb] {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-chrome-mid, #9ca3af);
    white-space: nowrap;
}

.admin-content-row[b-uenjd2butb] {
    border-top: 1px solid var(--color-chrome-border, #374151);
    transition: background-color 0.15s;
}

.admin-content-row:hover[b-uenjd2butb] {
    background: var(--color-admin-row-hover, rgba(255, 255, 255, 0.03));
}

.admin-content-table td[b-uenjd2butb] {
    padding: 0.875rem 1rem;
    vertical-align: middle;
    color: var(--color-chrome-light, #e5e7eb);
}

.col-key[b-uenjd2butb] {
    width: 22%;
}

.col-value[b-uenjd2butb] {
    width: 38%;
}

.col-updated-at[b-uenjd2butb] {
    width: 18%;
    white-space: nowrap;
}

.col-updated-by[b-uenjd2butb] {
    width: 12%;
}

.col-actions[b-uenjd2butb] {
    width: 10%;
    text-align: right;
}

.content-key[b-uenjd2butb] {
    font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8125rem;
    color: var(--color-red, #ef4444);
    background: rgba(239, 68, 68, 0.08);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.content-value-preview[b-uenjd2butb] {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 40ch;
    color: var(--color-chrome-light, #e5e7eb);
}

.content-meta[b-uenjd2butb] {
    font-size: 0.8125rem;
    color: var(--color-chrome-mid, #9ca3af);
}

.btn-action[b-uenjd2butb] {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
    border: 1px solid transparent;
}

.btn-action--edit[b-uenjd2butb] {
    color: var(--color-chrome-light, #e5e7eb);
    border-color: var(--color-chrome-border, #374151);
    background: transparent;
}

.btn-action--edit:hover[b-uenjd2butb] {
    background: var(--color-red, #ef4444);
    border-color: var(--color-red, #ef4444);
    color: white;
}
/* /Components/Pages/Admin/SiteContent/AdminSiteContentEdit.razor.rz.scp.css */
/* Plan 10-01 — AdminSiteContentEdit page scoped styles.
   Mirrors AdminSisterClubEdit.razor.css (F09) admin-form-card pattern.
   Chrome/dark admin theme inherited from AdminLayout. */

.content-key-inline[b-bnpmsqqysv] {
    font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.875rem;
    color: var(--color-red, #ef4444);
    background: rgba(239, 68, 68, 0.08);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.content-key-display[b-bnpmsqqysv] {
    display: block;
    font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
    font-size: 1rem;
    color: var(--color-red, #ef4444);
    background: rgba(239, 68, 68, 0.08);
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
}

.content-value-textarea[b-bnpmsqqysv] {
    width: 100%;
    min-height: 12rem;
    padding: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    background: var(--color-admin-input-bg, #1f2937);
    color: var(--color-chrome-light, #e5e7eb);
    border: 1px solid var(--color-chrome-border, #374151);
    border-radius: 0.375rem;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.15s;
}

.content-value-textarea:focus[b-bnpmsqqysv] {
    outline: none;
    border-color: var(--color-red, #ef4444);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.admin-form-section--meta[b-bnpmsqqysv] {
    background: var(--color-admin-meta-bg, rgba(17, 24, 39, 0.5));
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
}

.meta-grid[b-bnpmsqqysv] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-field[b-bnpmsqqysv] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label[b-bnpmsqqysv] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-chrome-mid, #9ca3af);
}

.meta-value[b-bnpmsqqysv] {
    font-size: 0.875rem;
    color: var(--color-chrome-light, #e5e7eb);
}

.field--readonly[b-bnpmsqqysv] {
    margin-bottom: 0;
}

/* Shared admin form styles */
.admin-form-card[b-bnpmsqqysv] {
    background: var(--color-admin-card-bg, #1f2937);
    border: 1px solid var(--color-chrome-border, #374151);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.admin-form-section[b-bnpmsqqysv] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-chrome-border, #374151);
}

.admin-form-section:last-child[b-bnpmsqqysv] {
    border-bottom: none;
}

.admin-form-section-label[b-bnpmsqqysv] {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-chrome-mid, #9ca3af);
    margin-bottom: 0.875rem;
}

.field[b-bnpmsqqysv] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.field-hint[b-bnpmsqqysv] {
    font-size: 0.8125rem;
    color: var(--color-chrome-mid, #9ca3af);
    margin: 0;
}

.admin-form-errors[b-bnpmsqqysv] {
    list-style: none;
    padding: 0.875rem 1rem;
    margin: 0 0 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.375rem;
    color: #fca5a5;
    font-size: 0.875rem;
}

.admin-form-errors li + li[b-bnpmsqqysv] {
    margin-top: 0.25rem;
}

.admin-form-actions[b-bnpmsqqysv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-form-actions-spacer[b-bnpmsqqysv] {
    flex: 1;
}

.admin-form-actions-helper[b-bnpmsqqysv] {
    font-size: 0.8125rem;
    color: var(--color-chrome-mid, #9ca3af);
}

.btn-save[b-bnpmsqqysv] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--color-red, #ef4444);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s;
}

.btn-save:hover[b-bnpmsqqysv] {
    background: #dc2626;
}

.btn-cancel[b-bnpmsqqysv] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--color-chrome-mid, #9ca3af);
    border: 1px solid var(--color-chrome-border, #374151);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-cancel:hover[b-bnpmsqqysv] {
    background: var(--color-chrome-border, #374151);
    color: var(--color-chrome-light, #e5e7eb);
}

.sr-only[b-bnpmsqqysv] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Plan 10-03: Edit / Preview tab strip ──────────────────────────── */

.edit-tabs[b-bnpmsqqysv] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid var(--color-chrome-border, #374151);
}

.edit-tabs .tab[b-bnpmsqqysv] {
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: var(--color-chrome-mid, #9ca3af);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.15s, border-color 0.15s;
}

.edit-tabs .tab:hover[b-bnpmsqqysv] {
    color: var(--color-chrome-light, #e5e7eb);
}

.edit-tabs .tab.active[b-bnpmsqqysv] {
    color: var(--color-hot-rod-red, #c8231b);
    border-bottom-color: var(--color-hot-rod-red, #c8231b);
}

.tab-js-hint[b-bnpmsqqysv] {
    font-size: 0.75rem;
    color: var(--color-chrome-mid, #9ca3af);
    margin: 0.375rem 0 0.75rem;
}

/* Progressive enhancement: without JS only the .edit panel shows (CSS default). */
/* With JS: site-content-preview.js swaps .active between panels. */
.tab-content[b-bnpmsqqysv] {
    display: none;
}

.tab-content.active[b-bnpmsqqysv] {
    display: block;
}

.content-preview[b-bnpmsqqysv] {
    white-space: pre-wrap;
    padding: 1rem;
    background: var(--color-admin-meta-bg, rgba(17, 24, 39, 0.5));
    border: 1px solid var(--color-chrome-border, #374151);
    border-radius: 0.375rem;
    font-family: var(--font-body, 'IBM Plex Sans', system-ui, sans-serif);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-chrome-light, #e5e7eb);
    min-height: 12em;
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* =====================================================================
   Contact page — title-band + two-card grid (Plan 03-05)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/03-public-site-foundation/artifacts/
           03-05-contact.html (Open Design prototype, 2026-05-15)

   Scoped CSS — Blazor's [b-xxxxxxxx] suffix isolates these selectors.
   Tokens come from design-tokens.css (Plan 03-02); we reference
   var(--color-*), var(--space-*), var(--radius-*), and the chrome
   shadow tokens by name and never re-declare them. The contact-rule
   color + 4x80 size matches .hero-rule on Home and .about-rule on About.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  TITLE BAND — mirrors About
   ────────────────────────────────────────── */
.contact-header[b-mff7oy3vyo] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.contact-header-inner[b-mff7oy3vyo] {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header-inner h1[b-mff7oy3vyo] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
    margin: 0;
}

.contact-rule[b-mff7oy3vyo] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    border-radius: 0;
    margin: var(--space-6) auto 0;
}

/* ──────────────────────────────────────────
   ②  BODY — two-column grid on desktop, stacked on mobile
   ────────────────────────────────────────── */
.contact-body[b-mff7oy3vyo] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6) var(--space-16);
}

.contact-grid[b-mff7oy3vyo] {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-10);
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid[b-mff7oy3vyo] {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ──────────────────────────────────────────
   ③  FACEBOOK CARD — cream-pearl reading surface
   ────────────────────────────────────────── */
.facebook-card[b-mff7oy3vyo] {
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-patina-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    /* Inverted shadow recipe (DESIGN.md): inset top white-highlight + inset
       bottom dark-shadow. NOT a drop shadow. Matches the About reading card. */
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.60),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.facebook-card h2[b-mff7oy3vyo] {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--color-lacquer-black);
    margin: 0 0 var(--space-4);
}

.facebook-card p[b-mff7oy3vyo] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-light);
    margin: 0 0 var(--space-6);
}

.facebook-link[b-mff7oy3vyo] {
    display: inline-block;
    background: var(--gradient-chrome-polish);
    color: var(--color-lacquer-black);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    padding: var(--space-3) var(--space-6);
    border: 1px solid var(--color-chrome-shadow);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-chrome-top), var(--shadow-chrome-bottom);
    transition: background 120ms ease, box-shadow 160ms ease;
}

.facebook-link:hover[b-mff7oy3vyo],
.facebook-link:focus[b-mff7oy3vyo] {
    background: var(--gradient-chrome-hot);
    box-shadow:
        var(--shadow-chrome-top),
        var(--shadow-chrome-bottom),
        0 0 24px rgba(30, 216, 255, 0.35);
    outline: none;
}

/* ──────────────────────────────────────────
   ④  FORM CARD — onyx-lacquer working surface
   ────────────────────────────────────────── */
.form-card[b-mff7oy3vyo] {
    background-color: var(--color-onyx-lacquer);
    border: 1px solid var(--color-gunmetal);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
}

.form-card h2[b-mff7oy3vyo] {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--color-cream-pearl);
    margin: 0 0 var(--space-6);
}
/* /Components/Pages/Cruises.razor.rz.scp.css */
/* Plan 07-04 — CSS isolation for /cruises. Tokens (chrome silver / hot-rod red
   / cream / Big Shoulders + Inter) match the OD artifact at
   .planning/features/v01/07-events/artifacts/07-04-cruises-flyer-board.html.
   All selectors are page-scoped via Blazor CSS isolation; MainLayout chrome
   (header, skip-link, footer, page background) is supplied by the layout. */

/* ---------- Header band ---------- */
.cruises-header[b-avot90gs2a] {
    background: #0a0a0a;
    padding: 80px 24px 56px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    position: relative;
}

.cruises-header[b-avot90gs2a]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0,
        transparent 38%,
        rgba(192, 192, 192, 0.08) 39%,
        rgba(232, 232, 232, 0.14) 41%,
        rgba(192, 192, 192, 0.05) 43%,
        transparent 44%,
        transparent 56%,
        rgba(192, 192, 192, 0.04) 57%,
        rgba(232, 232, 232, 0.08) 59%,
        rgba(192, 192, 192, 0.03) 61%,
        transparent 62%,
        transparent 100%
    );
    z-index: -1;
    pointer-events: none;
}

.cruises-header[b-avot90gs2a]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(10, 10, 10, 0.6) 100%);
    pointer-events: none;
    z-index: -1;
}

.cruises-header-inner[b-avot90gs2a] {
    max-width: 1080px;
    margin: 0 auto;
}

.cruises-eyebrow[b-avot90gs2a] {
    display: inline-block;
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c0c0c0;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
}

.cruises-headline[b-avot90gs2a] {
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 800;
    font-stretch: condensed;
    font-size: clamp(56px, 10vw, 144px);
    line-height: 0.88;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    background: linear-gradient(
        to bottom,
        #fff 0%,
        #e8e8e8 32%,
        #c0c0c0 52%,
        #8c8c8e 64%,
        #c0c0c0 78%,
        #e8e8e8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter:
        drop-shadow(0 2px 0 rgba(122, 15, 12, 0.85))
        drop-shadow(0 4px 12px rgba(204, 31, 26, 0.4))
        drop-shadow(0 8px 24px rgba(122, 15, 12, 0.5));
    margin: 0;
}

.cruises-rule[b-avot90gs2a] {
    width: 96px;
    height: 2px;
    margin: 24px auto 20px;
    background: linear-gradient(to right, transparent, #cc1f1a 30%, #cc1f1a 70%, transparent);
}

.cruises-sub[b-avot90gs2a] {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.6vw, 18px);
    color: #cdc6b3;
    max-width: 56ch;
    margin: 0 auto;
}

.cruises-tick[b-avot90gs2a] {
    color: #cc1f1a;
}

/* ---------- Grid ---------- */
.cruises-grid-wrap[b-avot90gs2a] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 24px 96px;
}

.cruises-grid[b-avot90gs2a] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .cruises-grid[b-avot90gs2a] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cruises-grid[b-avot90gs2a] {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.cruises-grid > li[b-avot90gs2a] {
    list-style: none;
}

/* ---------- Card ---------- */
.cruises-card[b-avot90gs2a] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #0e0e10;
    border: 1px solid #f5f0e1;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 220ms cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.cruises-card:hover[b-avot90gs2a],
.cruises-card:focus-within[b-avot90gs2a] {
    transform: translateY(-2px);
    border-color: #e8e8e8;
    box-shadow:
        inset 0 0 0 1px #c0c0c0,
        0 0 0 1px rgba(232, 232, 232, 0.15),
        0 12px 32px -8px rgba(0, 0, 0, 0.7),
        0 0 24px -4px rgba(192, 192, 192, 0.18);
}

.cruises-flyer[b-avot90gs2a] {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    background: #111;
    overflow: hidden;
}

.cruises-flyer img[b-avot90gs2a] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cruises-card:hover .cruises-flyer img[b-avot90gs2a] {
    transform: scale(1.025);
}

.cruises-title-band[b-avot90gs2a] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 18px 12px;
    background: rgba(10, 10, 10, 0.78);
    border-top: 1px solid #c0c0c0;
    backdrop-filter: blur(2px);
}

.cruises-title-band h2[b-avot90gs2a] {
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #cc1f1a;
    text-shadow:
        0 1px 0 rgba(192, 192, 192, 0.45),
        0 0 8px rgba(232, 232, 232, 0.15),
        0 2px 0 rgba(0, 0, 0, 0.6);
    margin: 0;
}

.cruises-meta[b-avot90gs2a] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px 18px;
    background: #1a1a1d;
    border-top: 1px solid #2a2a2e;
}

.cruises-date[b-avot90gs2a] {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #f5f0e1;
    letter-spacing: 0.01em;
}

.cruises-location[b-avot90gs2a] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    color: #cdc6b3;
    line-height: 1.3;
}

.cruises-pin[b-avot90gs2a] {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    color: #cc1f1a;
}

.cruises-no-date[b-avot90gs2a] {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13.5px;
    color: #cdc6b3;
    letter-spacing: 0.01em;
}

.cruises-card--no-meta .cruises-meta[b-avot90gs2a] {
    display: none;
}

/* ---------- Empty state ---------- */
.cruises-empty[b-avot90gs2a] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 24px 120px;
}

.cruises-empty-card[b-avot90gs2a] {
    max-width: 520px;
    margin: 0 auto;
    padding: 56px 36px 52px;
    background: #0e0e10;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
    box-shadow:
        inset 0 0 0 1px rgba(232, 232, 232, 0.06),
        0 0 32px -8px rgba(192, 192, 192, 0.18),
        0 24px 48px -16px rgba(0, 0, 0, 0.65);
    text-align: center;
}

.cruises-empty-card h2[b-avot90gs2a] {
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin: 0 0 14px;
    background: linear-gradient(to bottom, #fff 0%, #e8e8e8 35%, #c0c0c0 60%, #8c8c8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cruises-empty-card p[b-avot90gs2a] {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #cdc6b3;
    margin: 0;
}

.cruises-empty-card a[b-avot90gs2a] {
    color: #cc1f1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 160ms cubic-bezier(0.4, 0, 0.2, 1),
                color 160ms cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 1px;
}

.cruises-empty-card a:hover[b-avot90gs2a] {
    border-bottom-color: #e8e8e8;
    color: #a01515;
}

.cruises-empty-card a:focus-visible[b-avot90gs2a] {
    outline: 2px solid #e8e8e8;
    outline-offset: 4px;
    border-radius: 2px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .cruises-card[b-avot90gs2a],
    .cruises-flyer img[b-avot90gs2a] {
        transition: none;
    }
    .cruises-card:hover[b-avot90gs2a] {
        transform: none;
    }
    .cruises-card:hover .cruises-flyer img[b-avot90gs2a] {
        transform: none;
    }
}

/* =====================================================================
   Plan 11-05 — Weekly Schedule section + Featured Events section wraps
   ===================================================================== */

/* ---------- Weekly Schedule section ---------- */
.weekly-schedule-section[b-avot90gs2a] {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 24px 32px;
}

.weekly-schedule-heading-rail[b-avot90gs2a] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.22);
}

.weekly-schedule-heading[b-avot90gs2a] {
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #f5f0e1;
    margin: 0;
}

/* SVG wordmark replaces the .weekly-schedule-heading H2.
   Natural viewBox is 539x96; rendered at 280x50. */
.section-header-logo[b-avot90gs2a] {
    display: block;
    width: 280px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 640px) {
    .section-header-logo[b-avot90gs2a] {
        width: 220px;
    }
}

.weekly-schedule-submit-chip[b-avot90gs2a] {
    display: inline-block;
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cc1f1a;
    background: transparent;
    border: 1px solid #cc1f1a;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 140ms, color 140ms;
}

.weekly-schedule-submit-chip:hover[b-avot90gs2a] {
    background: #cc1f1a;
    color: #f5f0e1;
}

.weekly-schedule-empty[b-avot90gs2a] {
    padding: 32px 24px;
    text-align: center;
    color: #cdc6b3;
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    background: #0e0e10;
    border: 1px dashed #2a2a2e;
    border-radius: 4px;
}

.weekly-schedule-empty a[b-avot90gs2a] {
    color: #cc1f1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.weekly-schedule-empty a:hover[b-avot90gs2a] {
    border-bottom-color: #cc1f1a;
}

/* Day-group block */
.weekly-schedule-day-group[b-avot90gs2a] {
    margin-bottom: 28px;
}

.weekly-schedule-day-group:last-child[b-avot90gs2a] {
    margin-bottom: 0;
}

.weekly-schedule-day-heading[b-avot90gs2a] {
    display: inline-block;
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f5f0e1;
    background: #1a1a1d;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
    padding: 6px 14px;
    margin: 0 0 14px;
}

.weekly-schedule-list[b-avot90gs2a] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.weekly-schedule-row[b-avot90gs2a] {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 20px;
    padding: 16px 18px;
    background: #0e0e10;
    border: 1px solid #2a2a2e;
    border-radius: 4px;
    margin-bottom: 10px;
    align-items: center;
}

.weekly-schedule-row:last-child[b-avot90gs2a] {
    margin-bottom: 0;
}

.weekly-schedule-time[b-avot90gs2a] {
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: #cc1f1a;
    white-space: nowrap;
}

.weekly-schedule-body[b-avot90gs2a] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weekly-schedule-venue[b-avot90gs2a] {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    line-height: 1.3;
}

.weekly-schedule-venue .venue-name[b-avot90gs2a] {
    font-weight: 700;
    color: #f5f0e1;
    font-size: 15px;
}

.weekly-schedule-venue .venue-location[b-avot90gs2a] {
    color: #cdc6b3;
    font-size: 13.5px;
    margin-left: 8px;
}

.weekly-schedule-description[b-avot90gs2a] {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    color: #cdc6b3;
    margin: 0;
}

.weekly-schedule-notes[b-avot90gs2a] {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 12.5px;
    font-style: italic;
    color: #8a8475;
    margin: 0;
}

.weekly-schedule-meta[b-avot90gs2a] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    text-align: right;
}

.weekly-schedule-pill[b-avot90gs2a] {
    display: inline-block;
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.weekly-schedule-pill--weekly[b-avot90gs2a] {
    background: rgba(192, 192, 192, 0.12);
    color: #e8e8e8;
    border: 1px solid rgba(192, 192, 192, 0.4);
}

.weekly-schedule-pill--monthly[b-avot90gs2a] {
    background: rgba(204, 31, 26, 0.12);
    color: #ffb380;
    border: 1px solid rgba(204, 31, 26, 0.4);
}

.weekly-schedule-season[b-avot90gs2a] {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    color: #8a8475;
}

/* Mobile: stack the 3-column grid */
@media (max-width: 600px) {
    .weekly-schedule-row[b-avot90gs2a] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .weekly-schedule-meta[b-avot90gs2a] {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 10px;
    }
}

/* ---------- Section divider ---------- */
.cruises-section-divider[b-avot90gs2a] {
    max-width: 1080px;
    margin: 16px auto 32px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(192, 192, 192, 0.4) 30%,
        rgba(192, 192, 192, 0.4) 70%,
        transparent);
}

/* ---------- Featured Events section wrap ---------- */
.featured-events-section[b-avot90gs2a] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 96px;
}

.featured-events-heading-rail[b-avot90gs2a] {
    max-width: 1080px;
    margin: 0 auto 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.22);
}

.featured-events-heading[b-avot90gs2a] {
    font-family: "Big Shoulders Display", "Oswald", Impact, "Arial Narrow", sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #f5f0e1;
    margin: 0;
}

.cruises-empty-card--featured[b-avot90gs2a] {
    /* tone down the empty-state when it's a section-level empty, not the whole-page empty */
    padding: 32px 28px;
    max-width: 620px;
}

.cruises-empty-card--featured p[b-avot90gs2a] {
    margin-bottom: 8px;
}
/* /Components/Pages/Gallery.razor.rz.scp.css */
/* Plan 08-05 — CSS isolation for /gallery. Tokens (chrome silver / hot-rod red
   / cream / Big Shoulders + Inter) match the OD artifact at
   .planning/features/v01/08-photos/artifacts/08-05-public-gallery.html.
   All selectors are page-scoped via Blazor CSS isolation; MainLayout chrome
   (header, skip-link, footer, page background) is supplied by the layout. */

/* ---------- Header band ---------- */
.gallery-header[b-g2bil1d8pa] {
    background: #0a0a0a;
    padding: 64px 24px 40px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    position: relative;
}

.gallery-header[b-g2bil1d8pa]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 244, 245, 0.4) 50%, transparent 100%);
    pointer-events: none;
}

.gallery-header-inner[b-g2bil1d8pa] {
    max-width: 1080px;
    margin: 0 auto;
}

.gallery-eyebrow[b-g2bil1d8pa] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4332a;
    margin: 0 0 12px;
}

.gallery-tick[b-g2bil1d8pa] {
    color: #d4332a;
}

.gallery-headline[b-g2bil1d8pa] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 7vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #f3ead6;
    margin: 0;
}

.gallery-apos[b-g2bil1d8pa] {
    color: #d4332a;
}

.gallery-rule[b-g2bil1d8pa] {
    margin: 16px auto 0;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 244, 245, 0.6) 50%, transparent 100%);
}

/* ---------- Empty state ---------- */
.gallery-empty[b-g2bil1d8pa] {
    max-width: 1080px;
    margin: 64px auto;
    padding: 0 24px;
}

.gallery-empty-card[b-g2bil1d8pa] {
    padding: 56px 32px;
    border: 1px dashed #cdbf99;
    border-radius: 12px;
    background: #1a1a1d;
    color: #d4cdb8;
    text-align: center;
}

.gallery-empty-eyebrow[b-g2bil1d8pa] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4332a;
    margin: 0 0 12px;
}

.gallery-empty-card h2[b-g2bil1d8pa] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #f3ead6;
    margin: 0 0 12px;
}

.gallery-empty-card p[b-g2bil1d8pa] {
    max-width: 480px;
    margin: 0 auto 16px;
    font-size: 16px;
}

.gallery-empty-cta[b-g2bil1d8pa] {
    color: #d4332a;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.gallery-empty-cta:hover[b-g2bil1d8pa],
.gallery-empty-cta:focus-visible[b-g2bil1d8pa] {
    color: #e23c30;
}

/* ---------- Grid ---------- */
.gallery-grid-wrap[b-g2bil1d8pa] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 96px;
}

.gallery-grid[b-g2bil1d8pa] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .gallery-grid[b-g2bil1d8pa] {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .gallery-grid[b-g2bil1d8pa] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .gallery-grid[b-g2bil1d8pa] {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------- Tile (button) ---------- */
.gallery-tile[b-g2bil1d8pa] {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    background: #1a1a1d;
    border: 1px solid #3a3a3f;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    color: inherit;
    text-align: left;
    transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 240ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 2px 12px rgba(0, 0, 0, 0.35);
}

.gallery-tile:hover[b-g2bil1d8pa],
.gallery-tile:focus-visible[b-g2bil1d8pa] {
    transform: translateY(-2px);
    border-color: #9a9a9d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 8px 28px rgba(0, 0, 0, 0.55);
}

.gallery-tile:focus-visible[b-g2bil1d8pa] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 8px 28px rgba(0, 0, 0, 0.55),
                0 0 0 2px #0e0e10,
                0 0 0 4px rgba(244, 244, 245, 0.85);
}

.gallery-tile img[b-g2bil1d8pa] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-tile-caption[b-g2bil1d8pa] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 65%, transparent 100%);
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f3ead6;
    line-height: 1.25;
}

/* ---------- Featured badge ---------- */
.gallery-badge-featured[b-g2bil1d8pa] {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #0e0e10;
    border: 1px solid #ffb830;
    border-radius: 4px;
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #ffb830;
    box-shadow: 0 0 12px rgba(255, 184, 48, 0.35);
    z-index: 2;
    pointer-events: none;
}

.gallery-badge-star[b-g2bil1d8pa] {
    width: 10px;
    height: 10px;
    fill: #ffb830;
}

/* ---------- Lightbox ---------- */
.gallery-lightbox[b-g2bil1d8pa] {
    max-width: min(96vw, 1200px);
    max-height: 92vh;
    padding: 0;
    border: 1px solid #9a9a9d;
    border-radius: 8px;
    background: #1a1a1d;
    color: #f3ead6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
                0 24px 64px rgba(0, 0, 0, 0.7);
}

.gallery-lightbox[b-g2bil1d8pa]::backdrop {
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
}

.gallery-lightbox-inner[b-g2bil1d8pa] {
    display: grid;
    grid-template-rows: 1fr auto;
    max-height: 92vh;
}

.gallery-lightbox-stage[b-g2bil1d8pa] {
    background: #0e0e10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-height: calc(92vh - 140px);
    overflow: hidden;
    position: relative;
}

.gallery-lightbox-stage img[b-g2bil1d8pa] {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-lightbox-footer[b-g2bil1d8pa] {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #1a1a1d;
    border-top: 1px solid #3a3a3f;
}

.gallery-lightbox-eyebrow[b-g2bil1d8pa] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #d4332a;
    margin: 0 0 4px;
}

.gallery-lightbox-title[b-g2bil1d8pa] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.4vw, 24px);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #f3ead6;
    margin: 0;
    line-height: 1.1;
}

.gallery-lightbox-close[b-g2bil1d8pa] {
    background: linear-gradient(135deg, #f4f4f5 0%, #e6e6e8 45%, #c8c8cb 100%);
    color: #d4332a;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px 18px;
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.4);
    transition: background 200ms, box-shadow 200ms, color 120ms;
}

.gallery-lightbox-close:hover[b-g2bil1d8pa] {
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e8 45%, #b8b8bb 100%);
    color: #7a120e;
}

.gallery-lightbox-close:focus-visible[b-g2bil1d8pa] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15),
                0 0 0 2px #0e0e10,
                0 0 0 4px rgba(244, 244, 245, 0.85);
}

@media (max-width: 640px) {
    .gallery-lightbox-footer[b-g2bil1d8pa] {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox-close[b-g2bil1d8pa] {
        justify-self: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    *[b-g2bil1d8pa], *[b-g2bil1d8pa]::before, *[b-g2bil1d8pa]::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* =====================================================================
   Home page — three-section composition (Plan 03-03)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/03-public-site-foundation/artifacts/
           03-03-home.html (Open Design run 88cd063e, 2026-05-15)

   Scoped CSS — selectors are auto-scoped by Blazor's [b-xxxxxxxx]
   attribute, so .hero / .welcome / .featured here do NOT collide with
   any other component's classes. Tokens come from design-tokens.css
   (Plan 03-02); we reference var(--color-*), var(--space-*), and
   var(--radius-*) by name and never re-declare them here.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  HERO PANEL — lacquer-black + grain
   ────────────────────────────────────────── */
.hero[b-ocx3aaz723] {
    position: relative;
    background-color: var(--color-lacquer-black);
    border-radius: var(--radius-none);
    padding: var(--space-20) var(--space-6);
    text-align: center;
    overflow: hidden;
}

/* Period photo-emulsion grain: a 300x300 fractal-noise SVG tile at 2%
   opacity, blended over the lacquer black. The data URL is verbatim
   from the OD artifact — no preprocessing, no separate asset file. */
.hero[b-ocx3aaz723]::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
    opacity: 0.02;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.hero-inner[b-ocx3aaz723] {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline[b-ocx3aaz723] {
    font-family: var(--font-display);
    font-size: clamp(48px, 9vw, 96px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 0.95;
    color: var(--color-cream-pearl);
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
    margin: 0;
}

/* 4 x 80px hot-rod-red bar — chrome-trim visual stop under the headline. */
.hero-rule[b-ocx3aaz723] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    border-radius: 0;
    margin: var(--space-6) auto var(--space-5);
}

.hero-sub[b-ocx3aaz723] {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-body-on-dark);
    margin: 0;
}

/* ──────────────────────────────────────────
   ②  WELCOME CARD — cream-pearl reading surface
   ────────────────────────────────────────── */
.welcome[b-ocx3aaz723] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-16) var(--space-6);
    display: flex;
    justify-content: center;
}

.welcome-card[b-ocx3aaz723] {
    background-color: var(--color-cream-pearl);
    max-width: 720px;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    border: 1px solid var(--color-patina-cream);
    /* Top-down lighting (DESIGN.md): sky reflected in the top edge of the
       cream card, asphalt contact shadow on the bottom. NOT a drop shadow. */
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.60),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.welcome-card h2[b-ocx3aaz723] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.10;
    color: var(--color-lacquer-black);
    margin: 0 0 var(--space-5) 0;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
}

.welcome-card p[b-ocx3aaz723] {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-body-on-light);
    margin: 0;
}

/* ──────────────────────────────────────────
   ③  FEATURED CRUISE STUB — chrome-bordered card
   ────────────────────────────────────────── */
.featured[b-ocx3aaz723] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-16) var(--space-6);
    display: flex;
    justify-content: center;
}

.featured-card[b-ocx3aaz723] {
    max-width: 720px;
    width: 100%;
    background-color: var(--color-lacquer-black);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    border: 1px solid var(--color-chrome-shadow);
    /* Same top-down lighting model, calibrated for the dark card:
       a faint sky highlight on the top edge, deeper asphalt below. */
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.40);
}

.featured-headline[b-ocx3aaz723] {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--color-cream-pearl);
    margin: 0 0 var(--space-5) 0;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
}

.featured-card p[b-ocx3aaz723] {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-body-on-dark);
    margin: 0 0 var(--space-8) 0;
}

.featured-card a[b-ocx3aaz723] {
    color: var(--color-link-on-dark);
    text-decoration: underline;
}

/* Disabled CTA — Chrome Dim gradient, opacity 0.5, semantically a button
   (not a fake anchor) so :disabled + native browser non-focusable behavior
   covers the accessibility case without JS. */
.cta-disabled[b-ocx3aaz723] {
    display: inline-block;
    background: var(--gradient-chrome-dim);
    color: var(--color-lacquer-black);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.20);
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.40),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    opacity: 0.5;
    cursor: not-allowed;
    user-select: none;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
}

.cta-disabled:disabled[b-ocx3aaz723] {
    pointer-events: none;
}
/* /Components/Pages/SisterClubs.razor.rz.scp.css */
/* ─── Sister Clubs public page — Plan 09-05 ──────────────────────────────────
   Scoped CSS for /sister-clubs. Sourced from the OD artifact
   09-05-public-sister-clubs.html. Chrome / hot-rod red / matte black.
   ───────────────────────────────────────────────────────────────────────── */

/* ─── Page header ─────────────────────────────────────────────────────────── */

.sc-header[b-uryq6gxbvu] {
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border-bottom: 3px solid #c8231b;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.sc-header-inner[b-uryq6gxbvu] {
    max-width: 680px;
    margin: 0 auto;
}

.sc-eyebrow[b-uryq6gxbvu] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8231b;
    margin-bottom: 0.5rem;
}

.sc-tick[b-uryq6gxbvu] {
    /* keeps the apostrophe attached to the word without awkward kerning */
}

.sc-headline[b-uryq6gxbvu] {
    font-family: 'Big Shoulders Display', 'Bebas Neue', condensed, sans-serif;
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #f5f0e8;
    margin-bottom: 0.75rem;
}

.sc-rule[b-uryq6gxbvu] {
    display: block;
    width: 60px;
    height: 3px;
    background: #c8231b;
    margin: 1rem auto 0.75rem;
}

.sc-tagline[b-uryq6gxbvu] {
    font-size: 1rem;
    color: #d8d8d8;
    line-height: 1.5;
}

/* SVG wordmark replaces the .sc-headline H1.
   Natural viewBox is 548x90; render at ~58% width to keep proportion. */
.page-header-logo[b-uryq6gxbvu] {
    display: block;
    margin: 0 auto 0.75rem;
    width: 320px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 640px) {
    .page-header-logo[b-uryq6gxbvu] {
        width: 260px;
    }
}

/* ─── Grid section ────────────────────────────────────────────────────────── */

.sc-grid-section[b-uryq6gxbvu] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
}

.sc-grid[b-uryq6gxbvu] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .sc-grid[b-uryq6gxbvu] { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .sc-grid[b-uryq6gxbvu] { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Card (the entire card is the <a>) ─────────────────────────────────── */

.sc-card[b-uryq6gxbvu] {
    display: flex;
    flex-direction: column;
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .45);
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sc-card:hover[b-uryq6gxbvu],
.sc-card:focus-visible[b-uryq6gxbvu] {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(200, 35, 27, 0.35);
    border-color: #c8231b;
    outline: none;
}

.sc-card:focus-visible[b-uryq6gxbvu] {
    outline: 2px solid #c8231b;
    outline-offset: 2px;
}

/* Logo area */
.sc-card-logo[b-uryq6gxbvu] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    background: #222222;
    border-bottom: 1px solid #2a2a2a;
    padding: 1rem;
    overflow: hidden;
}

.sc-card-logo img[b-uryq6gxbvu] {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Logo placeholder SVG container */
.sc-card-logo-placeholder[b-uryq6gxbvu] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.sc-card-logo-placeholder svg[b-uryq6gxbvu] {
    width: 64px;
    height: 64px;
}

/* Card body */
.sc-card-body[b-uryq6gxbvu] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.125rem 1.25rem 1.25rem;
    gap: 0.625rem;
}

.sc-card-name[b-uryq6gxbvu] {
    font-family: 'Big Shoulders Display', 'Bebas Neue', condensed, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #f5f0e8;
}

.sc-card-blurb[b-uryq6gxbvu] {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #d8d8d8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* "Visit site →" affordance — floats to card bottom */
.sc-card-cta[b-uryq6gxbvu] {
    margin-top: auto;
    padding-top: 0.875rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c8231b;
}

/* ─── Empty state ─────────────────────────────────────────────────────────── */

.sc-empty[b-uryq6gxbvu] {
    text-align: center;
    padding: 5rem 1.5rem;
    max-width: 560px;
    margin: 0 auto;
}

.sc-empty-card[b-uryq6gxbvu] {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 3rem 2rem;
}

.sc-empty-eyebrow[b-uryq6gxbvu] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.75rem;
}

.sc-empty .h2[b-uryq6gxbvu],
.sc-empty h2[b-uryq6gxbvu] {
    font-family: 'Big Shoulders Display', 'Bebas Neue', condensed, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.sc-empty p[b-uryq6gxbvu] {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.sc-empty-cta[b-uryq6gxbvu] {
    color: #c8231b;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sc-empty-cta:hover[b-uryq6gxbvu] {
    color: #a01a14;
}
/* /Components/Pages/SubmitCruise.razor.rz.scp.css */
/* =====================================================================
   Submit Cruise page — title-band + text-only form card (Plan 11-02)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/11-weekly-cruises/artifacts/
           11-02-submit-cruise.html (Open Design prototype, 2026-05-16)

   Scoped CSS (Blazor's [b-xxxxxxxx] suffix isolates these selectors).
   Tokens come from design-tokens.css (Plan 03-02). Layout mirrors the
   F09 SubmitSisterClub page; this form has more fields (12 vs 6) but
   the same visual rhythm. Net-new patterns over F09:
     - .field-row — side-by-side fields for time / season-month pairs
     - select   — same chrome border treatment as text inputs
     - .radio-group — recurrence radio choice (Every week / First of each month)
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  TITLE BAND
   ────────────────────────────────────────── */
.submit-header[b-gglycz7zzb] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.submit-header-inner[b-gglycz7zzb] {
    max-width: 900px;
    margin: 0 auto;
}

.submit-header-inner h1[b-gglycz7zzb] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    margin: 0;
}

.submit-rule[b-gglycz7zzb] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    margin: var(--space-6) auto 0;
}

.submit-tagline[b-gglycz7zzb] {
    margin-top: var(--space-6);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-dark);
}

/* ──────────────────────────────────────────
   ②  BODY — single-column form card
   ────────────────────────────────────────── */
.submit-body[b-gglycz7zzb] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-10) var(--space-6) var(--space-16);
}

.submit-card[b-gglycz7zzb] {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--color-onyx-lacquer);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
}

.submit-success[b-gglycz7zzb] {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-cream-pearl);
    text-align: center;
    padding: var(--space-8) 0;
}

.submit-errors[b-gglycz7zzb] {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background-color: rgba(200, 35, 27, 0.08);
    border: 1px solid var(--color-hot-rod-red);
    border-radius: var(--radius-sm);
    color: var(--color-cream-pearl);
    font-size: 14px;
    line-height: 1.5;
}

.submit-errors li[b-gglycz7zzb] {
    margin: 0;
}

.submit-errors li + li[b-gglycz7zzb] {
    margin-top: var(--space-2);
}

/* ──────────────────────────────────────────
   ③  FIELDSET + LEGEND — section dividers
   ────────────────────────────────────────── */
.submit-fieldset[b-gglycz7zzb] {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.submit-fieldset:last-of-type[b-gglycz7zzb] {
    margin-bottom: var(--space-6);
}

.submit-fieldset legend[b-gglycz7zzb] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--color-hot-rod-red);
}

.submit-fieldset legend[b-gglycz7zzb]::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--color-asphalt);
}

/* ──────────────────────────────────────────
   ④  FIELDS — labels, inputs, hints
   ────────────────────────────────────────── */
.field[b-gglycz7zzb] {
    margin-bottom: var(--space-5);
}

.field:last-child[b-gglycz7zzb] {
    margin-bottom: 0;
}

.field label[b-gglycz7zzb] {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
}

.req[b-gglycz7zzb] {
    margin-left: 4px;
    color: var(--color-hot-rod-red);
    font-size: 14px;
}

.opt[b-gglycz7zzb] {
    margin-left: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    color: var(--color-muted-on-dark);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.field input[type="text"][b-gglycz7zzb],
.field input[type="email"][b-gglycz7zzb],
.field input[type="tel"][b-gglycz7zzb],
.field input[type="time"][b-gglycz7zzb],
.field textarea[b-gglycz7zzb],
.field select[b-gglycz7zzb] {
    display: block;
    width: 100%;
    background-color: var(--color-lacquer-black);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-cream-pearl);
    line-height: 1.5;
    transition: border-color var(--duration-fast) var(--easing-standard),
                box-shadow var(--duration-medium) var(--easing-standard);
}

.field input:focus-visible[b-gglycz7zzb],
.field textarea:focus-visible[b-gglycz7zzb],
.field select:focus-visible[b-gglycz7zzb] {
    outline: none;
    border-color: var(--color-chrome-mid);
    box-shadow: 0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

.field textarea[b-gglycz7zzb] {
    resize: vertical;
    min-height: 88px;
}

.field-hint[b-gglycz7zzb] {
    margin-top: var(--space-2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-muted-on-dark);
}

/* ──────────────────────────────────────────
   ⑤  FIELD-ROW — side-by-side fields (time + season pairs)
   ────────────────────────────────────────── */
.field-row[b-gglycz7zzb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.field-row .field[b-gglycz7zzb] {
    margin-bottom: 0;
}

/* ──────────────────────────────────────────
   ⑥  RADIO GROUP — recurrence choice
   ────────────────────────────────────────── */
.radio-group[b-gglycz7zzb] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.radio-option[b-gglycz7zzb] {
    display: flex !important;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: 0 !important;
    padding: 10px 14px;
    background-color: var(--color-lacquer-black);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--color-cream-pearl);
    transition: border-color var(--duration-fast) var(--easing-standard),
                background-color var(--duration-fast) var(--easing-standard);
}

.radio-option:hover[b-gglycz7zzb] {
    border-color: var(--color-chrome-mid);
}

.radio-option input[type="radio"][b-gglycz7zzb] {
    accent-color: var(--color-hot-rod-red);
    margin: 0;
}

.radio-option span[b-gglycz7zzb] {
    user-select: none;
}

/* ──────────────────────────────────────────
   ⑦  HONEYPOT — offscreen, NOT display:none
   ────────────────────────────────────────── */
.honeypot[b-gglycz7zzb] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────
   ⑧  SUBMIT BUTTON — hot-rod red primary CTA
   ────────────────────────────────────────── */
.submit-actions[b-gglycz7zzb] {
    margin-top: var(--space-8);
    text-align: center;
}

.btn-submit[b-gglycz7zzb] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
    background-color: var(--color-hot-rod-red);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.btn-submit:hover[b-gglycz7zzb] {
    background-color: var(--color-hot-rod-red-hover);
    transform: translateY(-1px);
}

.btn-submit:active[b-gglycz7zzb] {
    background-color: var(--color-hot-rod-red-deep);
    transform: translateY(0);
}

.btn-submit:focus-visible[b-gglycz7zzb] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

/* ──────────────────────────────────────────
   ⑨  RESPONSIVE — stack field-row on narrow viewports
   ────────────────────────────────────────── */
@media (max-width: 520px) {
    .field-row[b-gglycz7zzb] {
        grid-template-columns: 1fr;
    }

    .submit-card[b-gglycz7zzb] {
        padding: var(--space-6) var(--space-5) var(--space-6);
    }
}
/* /Components/Pages/SubmitCruiseConfirmation.razor.rz.scp.css */
/* =====================================================================
   Submit Cruise Confirmation page — title-band + cream-pearl card
   (Plan 11-02)
   ---------------------------------------------------------------------
   Mirrors SubmitSisterClubConfirmation.razor.css verbatim — visual
   cohesion across all moderated-submission confirmation flows (events,
   photos, sister clubs, weekly cruises).
   Tokens from design-tokens.css.
   ===================================================================== */

.confirm-header[b-ruwqihlykj] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.confirm-header-inner[b-ruwqihlykj] {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-header-inner h1[b-ruwqihlykj] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    margin: 0;
}

.confirm-rule[b-ruwqihlykj] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    margin: var(--space-6) auto 0;
}

.confirm-body[b-ruwqihlykj] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6) var(--space-20);
}

.confirm-card[b-ruwqihlykj] {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-patina-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.confirm-card h2[b-ruwqihlykj] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--color-hot-rod-red);
    margin: 0 0 var(--space-4);
}

.confirm-card p[b-ruwqihlykj] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-light);
    margin: 0 0 var(--space-8);
}

.confirm-back-link[b-ruwqihlykj] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-hot-rod-red);
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-hot-rod-red);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.confirm-back-link:hover[b-ruwqihlykj] {
    background-color: var(--color-hot-rod-red);
    color: var(--color-cream-pearl);
}

.confirm-back-link:focus-visible[b-ruwqihlykj] {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

@media (max-width: 768px) {
    .confirm-card[b-ruwqihlykj] {
        padding: var(--space-8) var(--space-5);
    }
}
/* /Components/Pages/SubmitEvent.razor.rz.scp.css */
/* =====================================================================
   Submit Event page — title-band + flyer-led form card (Plan 06-02)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/06-moderation-queue/artifacts/
           06-02-submit-event.html (Open Design prototype, 2026-05-15)

   Scoped CSS (Blazor's [b-xxxxxxxx] suffix isolates these selectors).
   Tokens come from design-tokens.css (Plan 03-02). Layout mirrors the
   Contact page title-band pattern (h1 + chrome rule) for site cohesion.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  TITLE BAND — mirrors Contact / About
   ────────────────────────────────────────── */
.submit-header[b-v4bznlv0q1] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.submit-header-inner[b-v4bznlv0q1] {
    max-width: 900px;
    margin: 0 auto;
}

.submit-header-inner h1[b-v4bznlv0q1] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    margin: 0;
}

.submit-rule[b-v4bznlv0q1] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    margin: var(--space-6) auto 0;
}

.submit-tagline[b-v4bznlv0q1] {
    margin-top: var(--space-6);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-dark);
}

/* ──────────────────────────────────────────
   ②  BODY — single-column form card
   ────────────────────────────────────────── */
.submit-body[b-v4bznlv0q1] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-10) var(--space-6) var(--space-16);
}

.submit-card[b-v4bznlv0q1] {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--color-onyx-lacquer);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
}

.submit-success[b-v4bznlv0q1] {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-cream-pearl);
    text-align: center;
    padding: var(--space-8) 0;
}

.submit-errors[b-v4bznlv0q1] {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background-color: rgba(200, 35, 27, 0.08);
    border: 1px solid var(--color-hot-rod-red);
    border-radius: var(--radius-sm);
    color: var(--color-cream-pearl);
    font-size: 14px;
    line-height: 1.5;
}

.submit-errors li[b-v4bznlv0q1] {
    margin: 0;
}

.submit-errors li + li[b-v4bznlv0q1] {
    margin-top: var(--space-2);
}

/* ──────────────────────────────────────────
   ③  FIELDSET + LEGEND — section dividers
   ────────────────────────────────────────── */
.submit-fieldset[b-v4bznlv0q1] {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.submit-fieldset:last-of-type[b-v4bznlv0q1] {
    margin-bottom: var(--space-6);
}

.submit-fieldset legend[b-v4bznlv0q1] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--color-hot-rod-red);
}

.submit-fieldset legend[b-v4bznlv0q1]::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--color-asphalt);
}

/* ──────────────────────────────────────────
   ④  FIELDS — labels, inputs, hints
   ────────────────────────────────────────── */
.field[b-v4bznlv0q1] {
    margin-bottom: var(--space-5);
}

.field:last-child[b-v4bznlv0q1] {
    margin-bottom: 0;
}

.field label[b-v4bznlv0q1] {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
}

.req[b-v4bznlv0q1] {
    margin-left: 4px;
    color: var(--color-hot-rod-red);
    font-size: 14px;
}

.opt[b-v4bznlv0q1] {
    margin-left: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    color: var(--color-muted-on-dark);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.field input[type="text"][b-v4bznlv0q1],
.field input[type="email"][b-v4bznlv0q1],
.field input[type="tel"][b-v4bznlv0q1],
.field input[type="date"][b-v4bznlv0q1],
.field textarea[b-v4bznlv0q1] {
    display: block;
    width: 100%;
    background-color: var(--color-lacquer-black);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-cream-pearl);
    line-height: 1.5;
    transition: border-color var(--duration-fast) var(--easing-standard),
                box-shadow var(--duration-medium) var(--easing-standard);
}

.field input[type="date"][b-v4bznlv0q1] {
    font-family: var(--font-mono);
    font-size: 14px;
    color-scheme: dark;
}

.field input:focus-visible[b-v4bznlv0q1],
.field textarea:focus-visible[b-v4bznlv0q1] {
    outline: none;
    border-color: var(--color-chrome-mid);
    box-shadow: 0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

.field textarea[b-v4bznlv0q1] {
    resize: vertical;
    min-height: 100px;
}

.field-hint[b-v4bznlv0q1] {
    margin-top: var(--space-2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-muted-on-dark);
}

/* ──────────────────────────────────────────
   ⑤  UPLOAD ZONE — the visual centerpiece
   ────────────────────────────────────────── */
.upload-zone[b-v4bznlv0q1] {
    position: relative;
    border: 2px dashed var(--color-chrome-shadow);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    cursor: pointer;
    transition: border-color var(--duration-medium) var(--easing-standard),
                background-color var(--duration-medium) var(--easing-standard);
}

.upload-zone:hover[b-v4bznlv0q1] {
    border-color: var(--color-hot-rod-red);
    background-color: rgba(200, 35, 27, 0.04);
}

.upload-zone input[type="file"][b-v4bznlv0q1] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-v4bznlv0q1] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
    margin: 0 0 var(--space-2);
}

.upload-cta span[b-v4bznlv0q1] {
    color: var(--color-candy-apple);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.upload-hint[b-v4bznlv0q1] {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-muted-on-dark);
}

/* ──────────────────────────────────────────
   ⑥  HONEYPOT — offscreen, NOT display:none
   (display:none excludes from form submission;
    we need it submitted-but-empty by humans).
   ────────────────────────────────────────── */
.honeypot[b-v4bznlv0q1] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────
   ⑦  SUBMIT BUTTON — hot-rod red primary CTA
   ────────────────────────────────────────── */
.submit-actions[b-v4bznlv0q1] {
    margin-top: var(--space-8);
    text-align: center;
}

.btn-submit[b-v4bznlv0q1] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
    background-color: var(--color-hot-rod-red);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.btn-submit:hover[b-v4bznlv0q1] {
    background-color: var(--color-hot-rod-red-hover);
    transform: translateY(-1px);
}

.btn-submit:active[b-v4bznlv0q1] {
    background-color: var(--color-hot-rod-red-deep);
    transform: translateY(0);
}

.btn-submit:focus-visible[b-v4bznlv0q1] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

/* ──────────────────────────────────────────
   ⑧  RESPONSIVE — stack on narrow viewports
   ────────────────────────────────────────── */
@media (max-width: 768px) {
    .submit-card[b-v4bznlv0q1] {
        padding: var(--space-6) var(--space-5) var(--space-6);
    }

    .upload-zone[b-v4bznlv0q1] {
        padding: var(--space-8) var(--space-4);
    }
}
/* /Components/Pages/SubmitEventConfirmation.razor.rz.scp.css */
/* =====================================================================
   Submit Event Confirmation page — title-band + cream-pearl card (Plan 06-02)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/06-moderation-queue/artifacts/
           06-02-submit-event-confirmation.html (Open Design prototype, 2026-05-15)
   ===================================================================== */

.confirm-header[b-t7xvk9o38f] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.confirm-header-inner[b-t7xvk9o38f] {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-header-inner h1[b-t7xvk9o38f] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    margin: 0;
}

.confirm-rule[b-t7xvk9o38f] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    margin: var(--space-6) auto 0;
}

.confirm-body[b-t7xvk9o38f] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6) var(--space-20);
}

.confirm-card[b-t7xvk9o38f] {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-patina-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.confirm-card h2[b-t7xvk9o38f] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--color-hot-rod-red);
    margin: 0 0 var(--space-4);
}

.confirm-card p[b-t7xvk9o38f] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-light);
    margin: 0 0 var(--space-8);
}

.confirm-back-link[b-t7xvk9o38f] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-hot-rod-red);
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-hot-rod-red);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.confirm-back-link:hover[b-t7xvk9o38f] {
    background-color: var(--color-hot-rod-red);
    color: var(--color-cream-pearl);
}

.confirm-back-link:focus-visible[b-t7xvk9o38f] {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

@media (max-width: 768px) {
    .confirm-card[b-t7xvk9o38f] {
        padding: var(--space-8) var(--space-5);
    }
}
/* /Components/Pages/SubmitPhoto.razor.rz.scp.css */
/* =====================================================================
   Submit Photo page — title-band + image-led form card (Plan 08-02)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/08-photos/artifacts/
           08-02-submit-photo.html (Open Design prototype, 2026-05-15)

   Scoped CSS (Blazor's [b-xxxxxxxx] suffix isolates these selectors).
   Tokens come from design-tokens.css (Plan 03-02). Layout mirrors the
   F06 SubmitEvent page for site cohesion — the photo form is the second
   public submission surface and inherits the proven visual shape.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  TITLE BAND — mirrors Contact / About / SubmitEvent
   ────────────────────────────────────────── */
.submit-header[b-p3elxm7nq5] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.submit-header-inner[b-p3elxm7nq5] {
    max-width: 900px;
    margin: 0 auto;
}

.submit-header-inner h1[b-p3elxm7nq5] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    margin: 0;
}

.submit-rule[b-p3elxm7nq5] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    margin: var(--space-6) auto 0;
}

.submit-tagline[b-p3elxm7nq5] {
    margin-top: var(--space-6);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-dark);
}

/* ──────────────────────────────────────────
   ②  BODY — single-column form card
   ────────────────────────────────────────── */
.submit-body[b-p3elxm7nq5] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-10) var(--space-6) var(--space-16);
}

.submit-card[b-p3elxm7nq5] {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--color-onyx-lacquer);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
}

.submit-success[b-p3elxm7nq5] {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-cream-pearl);
    text-align: center;
    padding: var(--space-8) 0;
}

.submit-errors[b-p3elxm7nq5] {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background-color: rgba(200, 35, 27, 0.08);
    border: 1px solid var(--color-hot-rod-red);
    border-radius: var(--radius-sm);
    color: var(--color-cream-pearl);
    font-size: 14px;
    line-height: 1.5;
}

.submit-errors li[b-p3elxm7nq5] {
    margin: 0;
}

.submit-errors li + li[b-p3elxm7nq5] {
    margin-top: var(--space-2);
}

/* ──────────────────────────────────────────
   ③  FIELDSET + LEGEND — section dividers
   ────────────────────────────────────────── */
.submit-fieldset[b-p3elxm7nq5] {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.submit-fieldset:last-of-type[b-p3elxm7nq5] {
    margin-bottom: var(--space-6);
}

.submit-fieldset legend[b-p3elxm7nq5] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--color-hot-rod-red);
}

.submit-fieldset legend[b-p3elxm7nq5]::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--color-asphalt);
}

/* ──────────────────────────────────────────
   ④  FIELDS — labels, inputs, hints
   ────────────────────────────────────────── */
.field[b-p3elxm7nq5] {
    margin-bottom: var(--space-5);
}

.field:last-child[b-p3elxm7nq5] {
    margin-bottom: 0;
}

.field label[b-p3elxm7nq5] {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
}

.req[b-p3elxm7nq5] {
    margin-left: 4px;
    color: var(--color-hot-rod-red);
    font-size: 14px;
}

.opt[b-p3elxm7nq5] {
    margin-left: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    color: var(--color-muted-on-dark);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.field input[type="text"][b-p3elxm7nq5],
.field input[type="email"][b-p3elxm7nq5],
.field input[type="tel"][b-p3elxm7nq5],
.field textarea[b-p3elxm7nq5] {
    display: block;
    width: 100%;
    background-color: var(--color-lacquer-black);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-cream-pearl);
    line-height: 1.5;
    transition: border-color var(--duration-fast) var(--easing-standard),
                box-shadow var(--duration-medium) var(--easing-standard);
}

.field input:focus-visible[b-p3elxm7nq5],
.field textarea:focus-visible[b-p3elxm7nq5] {
    outline: none;
    border-color: var(--color-chrome-mid);
    box-shadow: 0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

.field textarea[b-p3elxm7nq5] {
    resize: vertical;
    min-height: 100px;
}

.field-hint[b-p3elxm7nq5] {
    margin-top: var(--space-2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-muted-on-dark);
}

/* ──────────────────────────────────────────
   ⑤  UPLOAD ZONE — the visual centerpiece
   ────────────────────────────────────────── */
.upload-zone[b-p3elxm7nq5] {
    position: relative;
    border: 2px dashed var(--color-chrome-shadow);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    cursor: pointer;
    transition: border-color var(--duration-medium) var(--easing-standard),
                background-color var(--duration-medium) var(--easing-standard);
}

.upload-zone:hover[b-p3elxm7nq5] {
    border-color: var(--color-hot-rod-red);
    background-color: rgba(200, 35, 27, 0.04);
}

.upload-zone input[type="file"][b-p3elxm7nq5] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-p3elxm7nq5] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
    margin: 0 0 var(--space-2);
}

.upload-cta span[b-p3elxm7nq5] {
    color: var(--color-candy-apple);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.upload-hint[b-p3elxm7nq5] {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-muted-on-dark);
}

/* ──────────────────────────────────────────
   ⑥  HONEYPOT — offscreen, NOT display:none
   (display:none excludes from form submission;
    we need it submitted-but-empty by humans).
   ────────────────────────────────────────── */
.honeypot[b-p3elxm7nq5] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────
   ⑦  SUBMIT BUTTON — hot-rod red primary CTA
   ────────────────────────────────────────── */
.submit-actions[b-p3elxm7nq5] {
    margin-top: var(--space-8);
    text-align: center;
}

.btn-submit[b-p3elxm7nq5] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
    background-color: var(--color-hot-rod-red);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.btn-submit:hover[b-p3elxm7nq5] {
    background-color: var(--color-hot-rod-red-hover);
    transform: translateY(-1px);
}

.btn-submit:active[b-p3elxm7nq5] {
    background-color: var(--color-hot-rod-red-deep);
    transform: translateY(0);
}

.btn-submit:focus-visible[b-p3elxm7nq5] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

/* ──────────────────────────────────────────
   ⑧  RESPONSIVE — stack on narrow viewports
   ────────────────────────────────────────── */
@media (max-width: 768px) {
    .submit-card[b-p3elxm7nq5] {
        padding: var(--space-6) var(--space-5) var(--space-6);
    }

    .upload-zone[b-p3elxm7nq5] {
        padding: var(--space-8) var(--space-4);
    }
}
/* /Components/Pages/SubmitPhotoConfirmation.razor.rz.scp.css */
/* =====================================================================
   Submit Photo Confirmation page — title-band + cream-pearl card (Plan 08-02)
   ---------------------------------------------------------------------
   Mirrors SubmitEventConfirmation.razor.css for visual cohesion across
   all moderated-submission confirmation flows (events, photos, future
   sister-clubs). Tokens from design-tokens.css.
   ===================================================================== */

.confirm-header[b-7zhrqezzww] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.confirm-header-inner[b-7zhrqezzww] {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-header-inner h1[b-7zhrqezzww] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    margin: 0;
}

.confirm-rule[b-7zhrqezzww] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    margin: var(--space-6) auto 0;
}

.confirm-body[b-7zhrqezzww] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6) var(--space-20);
}

.confirm-card[b-7zhrqezzww] {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-patina-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.confirm-card h2[b-7zhrqezzww] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--color-hot-rod-red);
    margin: 0 0 var(--space-4);
}

.confirm-card p[b-7zhrqezzww] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-light);
    margin: 0 0 var(--space-8);
}

.confirm-back-link[b-7zhrqezzww] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-hot-rod-red);
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-hot-rod-red);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.confirm-back-link:hover[b-7zhrqezzww] {
    background-color: var(--color-hot-rod-red);
    color: var(--color-cream-pearl);
}

.confirm-back-link:focus-visible[b-7zhrqezzww] {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

@media (max-width: 768px) {
    .confirm-card[b-7zhrqezzww] {
        padding: var(--space-8) var(--space-5);
    }
}
/* /Components/Pages/SubmitSisterClub.razor.rz.scp.css */
/* =====================================================================
   Submit Sister Club page — title-band + URL-led form card (Plan 09-02)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/09-sister-clubs/artifacts/
           09-02-submit-sister-club.html (Open Design prototype, 2026-05-16)

   Scoped CSS (Blazor's [b-xxxxxxxx] suffix isolates these selectors).
   Tokens come from design-tokens.css (Plan 03-02). Layout mirrors the
   F08 SubmitPhoto page for site cohesion — sister-club form is the third
   public submission surface and inherits the proven visual shape.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  TITLE BAND — mirrors Contact / About / SubmitPhoto
   ────────────────────────────────────────── */
.submit-header[b-unysbcvqec] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.submit-header-inner[b-unysbcvqec] {
    max-width: 900px;
    margin: 0 auto;
}

.submit-header-inner h1[b-unysbcvqec] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    margin: 0;
}

.submit-rule[b-unysbcvqec] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    margin: var(--space-6) auto 0;
}

.submit-tagline[b-unysbcvqec] {
    margin-top: var(--space-6);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-dark);
}

/* ──────────────────────────────────────────
   ②  BODY — single-column form card
   ────────────────────────────────────────── */
.submit-body[b-unysbcvqec] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-10) var(--space-6) var(--space-16);
}

.submit-card[b-unysbcvqec] {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--color-onyx-lacquer);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
}

.submit-success[b-unysbcvqec] {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-cream-pearl);
    text-align: center;
    padding: var(--space-8) 0;
}

.submit-errors[b-unysbcvqec] {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background-color: rgba(200, 35, 27, 0.08);
    border: 1px solid var(--color-hot-rod-red);
    border-radius: var(--radius-sm);
    color: var(--color-cream-pearl);
    font-size: 14px;
    line-height: 1.5;
}

.submit-errors li[b-unysbcvqec] {
    margin: 0;
}

.submit-errors li + li[b-unysbcvqec] {
    margin-top: var(--space-2);
}

/* ──────────────────────────────────────────
   ③  FIELDSET + LEGEND — section dividers
   ────────────────────────────────────────── */
.submit-fieldset[b-unysbcvqec] {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.submit-fieldset:last-of-type[b-unysbcvqec] {
    margin-bottom: var(--space-6);
}

.submit-fieldset legend[b-unysbcvqec] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--color-hot-rod-red);
}

.submit-fieldset legend[b-unysbcvqec]::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--color-asphalt);
}

/* ──────────────────────────────────────────
   ④  FIELDS — labels, inputs, hints
   ────────────────────────────────────────── */
.field[b-unysbcvqec] {
    margin-bottom: var(--space-5);
}

.field:last-child[b-unysbcvqec] {
    margin-bottom: 0;
}

.field label[b-unysbcvqec] {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
}

.req[b-unysbcvqec] {
    margin-left: 4px;
    color: var(--color-hot-rod-red);
    font-size: 14px;
}

.opt[b-unysbcvqec] {
    margin-left: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    color: var(--color-muted-on-dark);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.field input[type="text"][b-unysbcvqec],
.field input[type="email"][b-unysbcvqec],
.field input[type="tel"][b-unysbcvqec],
.field input[type="url"][b-unysbcvqec],
.field textarea[b-unysbcvqec] {
    display: block;
    width: 100%;
    background-color: var(--color-lacquer-black);
    border: 1px solid var(--color-asphalt);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-cream-pearl);
    line-height: 1.5;
    transition: border-color var(--duration-fast) var(--easing-standard),
                box-shadow var(--duration-medium) var(--easing-standard);
}

/* URL field gets mono treatment so it reads as an actual address */
.field input[type="url"][b-unysbcvqec] {
    font-family: var(--font-mono, monospace);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.field input:focus-visible[b-unysbcvqec],
.field textarea:focus-visible[b-unysbcvqec] {
    outline: none;
    border-color: var(--color-chrome-mid);
    box-shadow: 0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

.field textarea[b-unysbcvqec] {
    resize: vertical;
    min-height: 100px;
}

.field-hint[b-unysbcvqec] {
    margin-top: var(--space-2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-muted-on-dark);
}

/* ──────────────────────────────────────────
   ⑤  LOGO UPLOAD ZONE — compact (secondary to URL)
   ────────────────────────────────────────── */
.upload-zone[b-unysbcvqec] {
    position: relative;
    border: 2px dashed var(--color-chrome-shadow);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-5);
    text-align: center;
    cursor: pointer;
    transition: border-color var(--duration-medium) var(--easing-standard),
                background-color var(--duration-medium) var(--easing-standard);
}

.upload-zone:hover[b-unysbcvqec] {
    border-color: var(--color-hot-rod-red);
    background-color: rgba(200, 35, 27, 0.04);
}

.upload-zone input[type="file"][b-unysbcvqec] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-unysbcvqec] {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
    margin: 0 0 var(--space-2);
}

.upload-cta span[b-unysbcvqec] {
    color: var(--color-candy-apple);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.upload-hint[b-unysbcvqec] {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-muted-on-dark);
}

/* ──────────────────────────────────────────
   ⑥  HONEYPOT — offscreen, NOT display:none
   (display:none excludes from form submission;
    we need it submitted-but-empty by humans).
   ────────────────────────────────────────── */
.honeypot[b-unysbcvqec] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────
   ⑦  SUBMIT BUTTON — hot-rod red primary CTA
   ────────────────────────────────────────── */
.submit-actions[b-unysbcvqec] {
    margin-top: var(--space-8);
    text-align: center;
}

.btn-submit[b-unysbcvqec] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-cream-pearl);
    background-color: var(--color-hot-rod-red);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.btn-submit:hover[b-unysbcvqec] {
    background-color: var(--color-hot-rod-red-hover);
    transform: translateY(-1px);
}

.btn-submit:active[b-unysbcvqec] {
    background-color: var(--color-hot-rod-red-deep);
    transform: translateY(0);
}

.btn-submit:focus-visible[b-unysbcvqec] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

/* ──────────────────────────────────────────
   ⑧  RESPONSIVE — stack on narrow viewports
   ────────────────────────────────────────── */
@media (max-width: 768px) {
    .submit-card[b-unysbcvqec] {
        padding: var(--space-6) var(--space-5) var(--space-6);
    }

    .upload-zone[b-unysbcvqec] {
        padding: var(--space-5) var(--space-4);
    }
}
/* /Components/Pages/SubmitSisterClubConfirmation.razor.rz.scp.css */
/* =====================================================================
   Submit Sister Club Confirmation page — title-band + cream-pearl card
   (Plan 09-02)
   ---------------------------------------------------------------------
   Mirrors SubmitPhotoConfirmation.razor.css and SubmitEventConfirmation
   .razor.css for visual cohesion across all moderated-submission
   confirmation flows (events, photos, sister clubs).
   Tokens from design-tokens.css.
   ===================================================================== */

.confirm-header[b-8twymm4zdl] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.confirm-header-inner[b-8twymm4zdl] {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-header-inner h1[b-8twymm4zdl] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--color-hot-rod-red);
    margin: 0;
}

.confirm-rule[b-8twymm4zdl] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-hot-rod-red);
    border: none;
    margin: var(--space-6) auto 0;
}

.confirm-body[b-8twymm4zdl] {
    background-color: var(--color-lacquer-black);
    padding: var(--space-12) var(--space-6) var(--space-20);
}

.confirm-card[b-8twymm4zdl] {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-patina-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.confirm-card h2[b-8twymm4zdl] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--color-hot-rod-red);
    margin: 0 0 var(--space-4);
}

.confirm-card p[b-8twymm4zdl] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-body-on-light);
    margin: 0 0 var(--space-8);
}

.confirm-back-link[b-8twymm4zdl] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-hot-rod-red);
    background-color: var(--color-cream-pearl);
    border: 1px solid var(--color-hot-rod-red);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.confirm-back-link:hover[b-8twymm4zdl] {
    background-color: var(--color-hot-rod-red);
    color: var(--color-cream-pearl);
}

.confirm-back-link:focus-visible[b-8twymm4zdl] {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-lacquer-black),
                0 0 0 4px var(--color-focus-ring);
}

@media (max-width: 768px) {
    .confirm-card[b-8twymm4zdl] {
        padding: var(--space-8) var(--space-5);
    }
}
