:root {
    --bg: #f8f5ef;
    --bg-strong: #efe6d6;
    --surface: #fffdf8;
    --surface-alt: #ffffff;
    --ink: #1b1b18;
    --muted: #5f5d56;
    --line: #d8d1c3;
    --accent: #d95d39;
    --accent-dark: #8f2d16;
    --success: #1f7a4c;
    --warning: #b26a00;
    --danger: #a12d2f;
    --shadow: 0 16px 40px rgba(27, 27, 24, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(217, 93, 57, 0.16), transparent 34%),
        linear-gradient(180deg, #fbf7ef 0%, #f5efe3 100%);
    color: var(--ink);
    font-family: "Trebuchet MS", "Avenir Next", sans-serif;
}

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

.page-shell {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(540px, calc(100% - 2rem));
}

.narrow-wide {
    width: min(880px, calc(100% - 2rem));
    margin: 0 auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(248, 245, 239, 0.84);
    border-bottom: 1px solid rgba(216, 209, 195, 0.7);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 0;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 4.6rem;
    height: 4.6rem;
    flex: 0 0 4.6rem;
    border-radius: 1.35rem;
    background: transparent;
    overflow: hidden;
}

.brand-logo-wrap {
    padding: 0.1rem;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.05;
}

.brand small {
    display: block;
    color: var(--muted);
    margin-top: 0.2rem;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-nav a,
.link-button {
    color: var(--muted);
    font-weight: 600;
}

.link-button {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.page-content {
    flex: 1 0 auto;
    padding-bottom: 3rem;
}

.site-footer {
    border-top: 1px solid rgba(216, 209, 195, 0.75);
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 244, 233, 0.98));
    padding: 2.2rem 0 2.8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.footer-brand strong,
.site-footer h2 {
    display: block;
    margin: 0 0 0.7rem;
    font-size: 1rem;
    line-height: 1.2;
}

.footer-brand p {
    margin: 0.25rem 0;
    color: var(--muted);
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.footer-brand a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover,
.footer-brand a:hover {
    color: var(--ink);
}

.hero,
.section {
    padding: 3.5rem 0;
}

.hero-grid,
.section-grid,
.inquiry-grid,
.stats-grid,
.card-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid,
.section-grid.admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inquiry-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.hero h1,
.section-heading h1,
.section-heading h2,
.auth-card h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    margin: 0.25rem 0 1rem;
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    color: var(--accent-dark);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.hero-panel,
.panel,
.info-card,
.auth-card,
.stat-card,
.package-card {
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(216, 209, 195, 0.85);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    padding: 1.4rem;
}

.info-card.accent,
.hero-panel {
    background: linear-gradient(180deg, rgba(217, 93, 57, 0.12), rgba(255, 253, 248, 0.96));
}

.feature-list,
.error-list {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.7;
}

.feature-list.compact li {
    margin-bottom: 0.25rem;
}

.hero-actions,
.button-row,
.row-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.85rem 1.3rem;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:focus-visible {
    outline: 3px solid rgba(87, 126, 255, 0.22);
    outline-offset: 3px;
}

.button.primary {
    background: var(--ink);
    color: #fff;
}

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

.button.ghost {
    padding-inline: 0.6rem;
    border-color: transparent;
    background: transparent;
    color: var(--muted);
}

.button.danger {
    background: var(--danger);
    color: #fff;
}

.badge.danger-soft {
    background: rgba(161, 45, 47, 0.1);
    color: var(--danger);
}

.section-heading {
    margin-bottom: 1.5rem;
}

.mini-stats,
.detail-list {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.mini-stats dt,
.detail-list dt {
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-stats dd,
.detail-list dd {
    margin: 0.35rem 0 0;
    font-weight: 600;
}

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

.form-grid .full,
.checkbox.full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
}

.field-help {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.field-error {
    color: var(--danger);
    font-size: 0.85rem;
    font-weight: 600;
}

.input-error {
    border-color: rgba(161, 45, 47, 0.55);
    background: rgba(161, 45, 47, 0.04);
}

.input-error:focus {
    outline: 2px solid rgba(161, 45, 47, 0.16);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--surface-alt);
    padding: 0.9rem 1rem;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

.date-picker {
    position: relative;
    display: grid;
    gap: 0.65rem;
}

.date-picker-control {
    position: relative;
}

.date-picker-toggle {
    position: absolute;
    top: 50%;
    right: 0.45rem;
    min-width: 0;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    border-radius: 0.95rem;
    transform: translateY(-50%);
    box-shadow: none;
    z-index: 1;
}

.date-picker-control [data-date-picker-input] {
    padding-right: 4.2rem;
}

.date-picker-toggle svg {
    width: 1.15rem;
    height: 1.15rem;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.date-picker-toggle:hover {
    box-shadow: none;
}

.password-input-wrap {
    position: relative;
}

.password-input-wrap input {
    padding-right: 7.6rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0.45rem;
    min-width: 0;
    height: 2.85rem;
    padding: 0 0.85rem 0 0.7rem;
    gap: 0.45rem;
    border-radius: 0.95rem;
    transform: translateY(-50%);
    box-shadow: none;
    z-index: 1;
}

.password-toggle:hover {
    box-shadow: none;
}

.password-toggle-icons {
    display: inline-grid;
    place-items: center;
    width: 1rem;
    height: 1rem;
}

.password-toggle svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.password-toggle-label {
    font-size: 0.82rem;
    font-weight: 700;
}

.auth-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.auth-form .button {
    width: 100%;
    min-height: 3.35rem;
}

.auth-login-section {
    padding-top: clamp(3rem, 9vw, 6rem);
}

.auth-login-card {
    padding: 1.8rem;
    border-radius: 1.75rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 235, 0.98)),
        linear-gradient(135deg, rgba(217, 93, 57, 0.08), rgba(87, 126, 255, 0.06));
}

.auth-login-intro {
    display: grid;
    gap: 0.65rem;
}

.auth-login-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.auth-inline-alert {
    margin-top: 1.15rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(161, 45, 47, 0.22);
    background: rgba(161, 45, 47, 0.08);
}

.auth-inline-alert strong {
    display: block;
}

.auth-inline-alert p {
    margin: 0.35rem 0 0;
    color: rgba(72, 32, 34, 0.86);
    line-height: 1.55;
}

.auth-remember {
    margin-top: 0.1rem;
}

.auth-login-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-top: 1.15rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.auth-login-meta a {
    font-weight: 700;
    color: var(--accent-dark);
}

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

.date-picker-panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    z-index: 35;
    width: min(24rem, calc(100vw - 3rem));
    padding: 1rem;
    border: 1px solid rgba(216, 209, 195, 0.92);
    border-radius: 1.2rem;
    background: rgba(255, 253, 248, 0.99);
    box-shadow: 0 20px 42px rgba(27, 27, 24, 0.14);
}

.date-picker-toolbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
}

.date-picker-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--ink);
    font: inherit;
    font-size: 1.25rem;
    cursor: pointer;
}

.date-picker-nav:hover,
.date-picker-day:hover {
    border-color: rgba(217, 93, 57, 0.3);
    background: rgba(217, 93, 57, 0.08);
}

.date-picker-weekdays,
.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.date-picker-weekdays {
    margin-top: 0.85rem;
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
    font-weight: 700;
}

.date-picker-grid {
    margin-top: 0.5rem;
}

.date-picker-day {
    min-height: 2.45rem;
    border: 1px solid transparent;
    border-radius: 0.9rem;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.date-picker-day.is-spacer {
    pointer-events: none;
    opacity: 0;
}

.date-picker-day.is-today {
    border-color: rgba(87, 126, 255, 0.26);
    color: #244781;
}

.date-picker-day.is-selected {
    background: linear-gradient(135deg, rgba(217, 93, 57, 0.18), rgba(255, 214, 122, 0.28));
    border-color: rgba(217, 93, 57, 0.32);
    color: var(--accent-dark);
}

.date-picker-day:disabled {
    opacity: 0.34;
    cursor: not-allowed;
    background: transparent;
    border-color: transparent;
}

.date-picker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.date-picker-inline-error {
    margin-top: -0.2rem;
}

.date-picker.is-invalid-format [data-date-picker-input],
.date-picker.has-server-error [data-date-picker-input] {
    border-color: rgba(161, 45, 47, 0.55);
    background: rgba(161, 45, 47, 0.04);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.checkbox input {
    width: auto;
}

.panel-head,
.package-header,
.list-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.list-row {
    padding: 1rem 0;
    border-top: 1px solid rgba(216, 209, 195, 0.8);
}

.list-row:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.list-row p,
.muted {
    color: var(--muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: rgba(27, 27, 24, 0.08);
    font-size: 0.85rem;
    font-weight: 700;
}

.badge.success {
    background: rgba(31, 122, 76, 0.14);
    color: var(--success);
}

.badge.warning {
    background: rgba(178, 106, 0, 0.15);
    color: var(--warning);
}

.code-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    background: rgba(42, 84, 159, 0.12);
    color: #244781;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 0.86rem;
    text-transform: uppercase;
}

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

.stat-card span,
.stat-card p {
    color: var(--muted);
}

.stat-card strong {
    display: block;
    font-size: 2.4rem;
    margin: 0.35rem 0;
}

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

.package-header span {
    font-weight: 800;
    color: var(--accent-dark);
}

.public-shell {
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 119, 102, 0.26), transparent 24%),
        radial-gradient(circle at 85% 14%, rgba(77, 193, 255, 0.24), transparent 20%),
        radial-gradient(circle at 78% 78%, rgba(255, 212, 92, 0.28), transparent 22%),
        radial-gradient(circle at 18% 82%, rgba(111, 219, 172, 0.18), transparent 20%),
        linear-gradient(180deg, #fff9ef 0%, #fff3fb 48%, #f0fbff 100%);
    font-family: "Avenir Next Rounded", "Trebuchet MS", "Marker Felt", sans-serif;
}

.public-shell .site-header {
    background: rgba(255, 255, 255, 0.76);
    border-bottom-color: rgba(255, 173, 88, 0.28);
}

.public-shell .brand-mark {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(255, 122, 89, 0.22);
}

.public-shell .top-nav a,
.public-shell .link-button {
    color: #5f5173;
}

.public-shell .top-nav a:hover,
.public-shell .link-button:hover {
    color: #d94f70;
}

.public-shell .button.primary {
    border: 0;
    background: linear-gradient(135deg, #ff6f61 0%, #ff9461 45%, #ffd561 100%);
    color: #2a1f14;
    box-shadow:
        0 14px 26px rgba(255, 125, 91, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.public-shell .button.primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 32px rgba(255, 125, 91, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.public-shell .button.secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(87, 126, 255, 0.24);
    color: #4c4572;
}

.admin-auth-shell {
    background:
        radial-gradient(circle at 12% 10%, rgba(217, 93, 57, 0.18), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(87, 126, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #f7f1e8 0%, #f4ede3 52%, #f8f4ee 100%);
}

.admin-auth-shell .site-header {
    position: static;
    backdrop-filter: none;
    background: transparent;
    border-bottom: 0;
}

.admin-auth-shell .brand {
    padding: 1.15rem 0 0.6rem;
}

.admin-auth-shell .brand-mark {
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 26px rgba(27, 27, 24, 0.07);
}

.admin-auth-shell .auth-shell-nav {
    gap: 0.7rem;
}

.admin-auth-shell .auth-shell-nav .button {
    min-height: 2.9rem;
    padding-inline: 1rem;
}

.auth-page-content {
    padding-bottom: 0;
}

.playful-hero {
    padding-top: 4.8rem;
    overflow: hidden;
}

.playful-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.playful-hero-copy h1 {
    max-width: 11ch;
}

.playful-eyebrow {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 173, 88, 0.28);
    box-shadow: 0 12px 22px rgba(80, 69, 116, 0.08);
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(87, 126, 255, 0.18);
    color: #514a74;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(41, 32, 72, 0.06);
}

.playful-outline {
    border-width: 2px;
}

.hero-scene {
    position: relative;
    min-height: 31rem;
    padding-top: 3.4rem;
}

.hero-scene-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(11rem, 0.85fr);
    gap: 1rem;
    align-items: stretch;
    min-height: 100%;
}

.hero-cloud,
.hero-sun {
    position: absolute;
}

.hero-cloud {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    filter: blur(0.2px);
}

.hero-cloud::before,
.hero-cloud::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: inherit;
}

.hero-cloud-one {
    width: 7rem;
    height: 2.6rem;
    top: 1rem;
    left: 1.5rem;
}

.hero-cloud-one::before {
    width: 2.7rem;
    height: 2.7rem;
    left: 0.9rem;
    top: -1rem;
}

.hero-cloud-one::after {
    width: 3rem;
    height: 3rem;
    right: 0.7rem;
    top: -0.9rem;
}

.hero-cloud-two {
    width: 6rem;
    height: 2.3rem;
    top: 3rem;
    right: 2.5rem;
}

.hero-cloud-two::before {
    width: 2.2rem;
    height: 2.2rem;
    left: 0.8rem;
    top: -0.85rem;
}

.hero-cloud-two::after {
    width: 2.4rem;
    height: 2.4rem;
    right: 0.7rem;
    top: -0.7rem;
}

.hero-sun {
    top: 1.4rem;
    right: 0.7rem;
    width: 6.7rem;
    height: 6.7rem;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff5a0 0%, #ffd85e 55%, #ffb21f 100%);
    box-shadow: 0 0 0 10px rgba(255, 216, 94, 0.16);
}

.hero-rainbow-card {
    position: relative;
    display: grid;
    align-content: end;
    gap: 0.8rem;
    padding: 2rem;
    min-height: 22rem;
    border-radius: 2.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
        linear-gradient(135deg, #ff8aa4 0%, #ffcf67 32%, #74d1ff 66%, #7edca4 100%);
    box-shadow: 0 24px 48px rgba(61, 51, 94, 0.18);
}

.hero-scene-stack {
    display: grid;
    gap: 1rem;
    align-content: center;
    padding-top: 2.5rem;
}

.hero-rainbow-card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 1.7rem;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.hero-rainbow-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #523f64;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
}

.hero-rainbow-card p {
    margin: 0;
    max-width: 18rem;
    font-size: 1.08rem;
    line-height: 1.55;
    color: #2f2340;
    font-weight: 700;
}

.hero-scene-card {
    position: relative;
    display: grid;
    gap: 0.4rem;
    padding: 1rem 1.05rem;
    border-radius: 1.5rem;
    color: #31253f;
    box-shadow: 0 18px 32px rgba(59, 47, 91, 0.12);
    animation: float-card 5.6s ease-in-out infinite;
}

.hero-scene-card strong {
    font-size: 1rem;
}

.hero-scene-card span {
    font-size: 0.92rem;
    line-height: 1.45;
}

.card-coral {
    background: linear-gradient(180deg, #fff1ed 0%, #ffd9c8 100%);
}

.card-sky {
    background: linear-gradient(180deg, #edf8ff 0%, #d8eeff 100%);
    animation-delay: 0.8s;
}

.card-yellow {
    background: linear-gradient(180deg, #fff9dc 0%, #ffe7a0 100%);
    animation-delay: 1.4s;
}

.playful-heading {
    max-width: 44rem;
}

.venue-facts {
    padding-top: 0;
}

.venue-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.venue-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    padding: 1.45rem;
    box-shadow: 0 18px 34px rgba(59, 47, 91, 0.08);
}

.venue-card::after {
    content: "";
    position: absolute;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    bottom: -2rem;
    right: -1.5rem;
}

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

.venue-card-kicker {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #574d73;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.venue-card h2 {
    margin: 0 0 0.65rem;
    font-size: 1.45rem;
    line-height: 1.2;
}

.venue-card p,
.venue-card a {
    color: rgba(39, 32, 62, 0.86);
}

.venue-link {
    display: inline-flex;
    margin-top: 0.7rem;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2rem;
}

.venue-hours {
    display: grid;
    gap: 0.6rem;
}

.venue-hours div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.54);
}

.venue-hours-note {
    margin-top: 0.85rem;
    line-height: 1.6;
}

.venue-coral {
    background: linear-gradient(180deg, #fff0ee 0%, #ffd7ca 100%);
}

.venue-sky {
    background: linear-gradient(180deg, #eef8ff 0%, #d8edff 100%);
}

.venue-sun {
    background: linear-gradient(180deg, #fff9e2 0%, #ffe8a9 100%);
}

.play-zones-grid,
.moments-grid,
.birthday-steps {
    display: grid;
    gap: 1.25rem;
}

.play-zones-grid,
.moments-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.zone-card,
.moment-card,
.birthday-step {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    padding: 1.45rem;
    box-shadow: 0 18px 34px rgba(59, 47, 91, 0.08);
}

.zone-card::after,
.moment-card::after,
.birthday-step::after {
    content: "";
    position: absolute;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    top: -2rem;
    right: -1.5rem;
}

.zone-pill {
    display: inline-flex;
    width: fit-content;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #574d73;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.zone-card h3,
.birthday-step h3 {
    margin: 0.9rem 0 0.7rem;
    font-size: 1.38rem;
    line-height: 1.2;
}

.zone-card p,
.moment-card p,
.birthday-step p {
    margin: 0;
    color: rgba(39, 32, 62, 0.82);
    line-height: 1.62;
}

.zone-list {
    margin-top: 1rem;
}

.zone-sky {
    background: linear-gradient(180deg, #ebf8ff 0%, #d9efff 100%);
}

.zone-sun {
    background: linear-gradient(180deg, #fff8de 0%, #ffe6a1 100%);
}

.zone-mint {
    background: linear-gradient(180deg, #e9fff3 0%, #d5f7e5 100%);
}

.moment-card {
    min-height: 13.5rem;
}

.moment-card span {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 1rem;
    color: #5b5377;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    font-weight: 800;
}

.moment-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 0.65rem;
    font-size: 1.28rem;
    line-height: 1.25;
}

.moment-pink {
    background: linear-gradient(180deg, #fff0f7 0%, #ffd9ea 100%);
}

.moment-blue {
    background: linear-gradient(180deg, #eef8ff 0%, #dbefff 100%);
}

.moment-yellow {
    background: linear-gradient(180deg, #fff8e6 0%, #ffe9af 100%);
}

.playful-package {
    position: relative;
    overflow: hidden;
    border-width: 2px;
}

.playful-package::before {
    content: "";
    position: absolute;
    inset: auto auto -1.8rem -1.8rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
}

.playful-package > * {
    position: relative;
    z-index: 1;
}

.tone-sun {
    background: linear-gradient(180deg, rgba(255, 250, 223, 0.96), rgba(255, 234, 168, 0.94));
}

.tone-sky {
    background: linear-gradient(180deg, rgba(237, 248, 255, 0.96), rgba(216, 238, 255, 0.94));
}

.tone-mint {
    background: linear-gradient(180deg, rgba(234, 255, 242, 0.96), rgba(210, 246, 228, 0.94));
}

.step-number {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: #4f466e;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(87, 126, 255, 0.12);
}

.birthday-step:nth-child(1) {
    background: linear-gradient(180deg, #fff0ee 0%, #ffd7ca 100%);
}

.birthday-step:nth-child(2) {
    background: linear-gradient(180deg, #eef8ff 0%, #d8edff 100%);
}

.birthday-step:nth-child(3) {
    background: linear-gradient(180deg, #fff9e2 0%, #ffe8a9 100%);
}

.birthday-step:nth-child(4) {
    background: linear-gradient(180deg, #effef5 0%, #d8f5e4 100%);
}

.playful-inquiry-grid {
    align-items: start;
    gap: 1.6rem;
}

.inquiry-copy {
    display: grid;
    gap: 1rem;
}

.availability-promo {
    padding-top: 0;
}

.availability-promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-width: 2px;
    border-color: rgba(87, 126, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.92)),
        linear-gradient(135deg, rgba(255, 146, 112, 0.16), rgba(116, 209, 255, 0.14));
}

.availability-page {
    padding-top: 2rem;
}

.availability-layout {
    display: grid;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
}

.availability-main {
    display: grid;
    gap: 1.5rem;
}

.availability-intro-card,
.availability-form,
.availability-results-card {
    border-width: 2px;
}

.availability-intro-card {
    background:
        linear-gradient(180deg, rgba(255, 248, 226, 0.96), rgba(255, 237, 179, 0.92));
    border-color: rgba(236, 183, 59, 0.2);
}

.availability-form {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 253, 0.98));
}

.availability-results-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 251, 255, 0.98));
}

.availability-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #574d73;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.availability-intro-card h2 {
    margin: 0.9rem 0 0.65rem;
}

.availability-intro-card p,
.availability-day-card p,
.availability-slot-card p {
    margin: 0;
    color: rgba(39, 32, 62, 0.82);
    line-height: 1.6;
}

.availability-meta {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.availability-meta div,
.availability-note,
.availability-day-card,
.availability-slot-card {
    border-radius: 1.25rem;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(87, 126, 255, 0.14);
}

.availability-meta strong,
.availability-note strong,
.availability-day-card strong,
.availability-slot-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #36284d;
}

.availability-meta span,
.availability-day-card span,
.availability-slot-card span {
    color: #5b5377;
}

.availability-note {
    margin-top: 1.2rem;
}

.availability-suggestions {
    margin-top: 1.5rem;
}

.availability-day-list,
.availability-slot-grid {
    display: grid;
    gap: 1rem;
}

.availability-day-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 1rem;
}

.availability-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.availability-day-card,
.availability-slot-card {
    display: grid;
    gap: 0.7rem;
}

.availability-status {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
}

.availability-status-success {
    background: rgba(31, 122, 76, 0.12);
    color: #1f7a4c;
}

.availability-status-warning {
    background: rgba(178, 106, 0, 0.14);
    color: #8f5600;
}

.availability-status-neutral {
    background: rgba(53, 66, 89, 0.08);
    color: #465166;
}

.inquiry-promise-list {
    display: grid;
    gap: 0.9rem;
}

.inquiry-promise {
    padding: 1rem 1.05rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(124, 151, 255, 0.16);
    box-shadow: 0 14px 24px rgba(59, 47, 91, 0.06);
}

.inquiry-promise strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #372c4f;
}

.inquiry-promise span {
    color: #5e5772;
    line-height: 1.55;
}

.playful-form-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, rgba(255, 146, 112, 0.12), rgba(116, 209, 255, 0.12));
    border: 1px solid rgba(87, 126, 255, 0.18);
}

.playful-form-card input,
.playful-form-card select,
.playful-form-card textarea {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(87, 126, 255, 0.16);
}

@keyframes float-card {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.alert {
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    margin-top: 1rem;
}

.alert.success {
    background: rgba(31, 122, 76, 0.12);
    border: 1px solid rgba(31, 122, 76, 0.2);
}

.alert.error {
    background: rgba(161, 45, 47, 0.1);
    border: 1px solid rgba(161, 45, 47, 0.18);
}

.error-summary {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.filters {
    display: flex;
    align-items: end;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: end;
    margin-bottom: 0.45rem;
}

.search-form-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.search-form.live-ready .search-submit {
    display: none;
}

.search-results-wrap {
    transition: opacity 150ms ease;
}

.search-results-wrap[data-search-state="loading"] {
    opacity: 0.62;
}

.is-hidden {
    display: none;
}

.search-results-head {
    margin-bottom: 0.85rem;
}

.search-results {
    display: grid;
    gap: 0.75rem;
}

.choice-card {
    display: block;
    position: relative;
    cursor: pointer;
}

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

.choice-card-body {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(216, 209, 195, 0.9);
    border-radius: 1rem;
    background: rgba(255, 253, 248, 0.96);
    transition:
        border-color 150ms ease,
        background 150ms ease,
        transform 150ms ease,
        box-shadow 150ms ease;
}

.choice-card:hover .choice-card-body {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(27, 27, 24, 0.08);
}

.choice-card input:checked + .choice-card-body {
    border-color: rgba(217, 93, 57, 0.65);
    background: rgba(217, 93, 57, 0.09);
    box-shadow: 0 12px 30px rgba(217, 93, 57, 0.12);
}

.choice-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.empty-state {
    border: 1px dashed rgba(216, 209, 195, 0.95);
    border-radius: 1rem;
    background: rgba(255, 253, 248, 0.84);
    color: var(--muted);
    padding: 1rem 1.1rem;
}

.filters-actions,
.form-actions {
    justify-content: flex-end;
}

.list-panel {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.compact-panel {
    padding: 1rem 1.2rem;
}

.no-border {
    border-top: 0;
    padding-top: 0;
}

.right {
    justify-content: flex-end;
}

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

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.85rem;
}

.calendar-weekdays {
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-day {
    min-height: 12rem;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(216, 209, 195, 0.85);
    border-radius: 1.25rem;
    padding: 0.9rem;
    box-shadow: var(--shadow);
}

.calendar-day.muted-day {
    opacity: 0.55;
}

.calendar-day.today {
    border-color: rgba(217, 93, 57, 0.7);
}

.calendar-day-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.calendar-day-date {
    display: inline-grid;
    gap: 0.12rem;
}

.calendar-day-date strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1;
}

.calendar-day-date small {
    color: var(--muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.calendar-events {
    display: grid;
    gap: 0.5rem;
}

.calendar-entry {
    display: grid;
    gap: 0.15rem;
    border-radius: 0.9rem;
    padding: 0.65rem 0.75rem;
    background: rgba(27, 27, 24, 0.06);
    font-size: 0.9rem;
}

.calendar-entry.success {
    background: rgba(31, 122, 76, 0.14);
}

.calendar-entry.warning {
    background: rgba(178, 106, 0, 0.12);
}

.calendar-entry.danger-soft {
    background: rgba(161, 45, 47, 0.1);
}

.calendar-entry-block {
    border: 1px dashed rgba(161, 45, 47, 0.28);
}

.calendar-entry small,
.calendar-empty {
    color: var(--muted);
}

.venue-settings-nav {
    margin-bottom: 1.25rem;
}

.venue-settings-grid {
    align-items: start;
}

.venue-room-create-form,
.venue-block-card,
.venue-room-card {
    margin-top: 1rem;
}

.venue-checkbox {
    align-self: end;
    min-height: 3.4rem;
}

.pagination-wrap {
    margin-top: 1.5rem;
}

.reports-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

.report-stat-card {
    min-height: 12rem;
}

.reports-grid {
    align-items: start;
}

.report-row + .report-row {
    margin-top: 1rem;
}

.report-row-main {
    display: grid;
    gap: 0.55rem;
}

.report-row-head,
.report-row-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.report-row-meta {
    color: var(--muted);
    font-size: 0.92rem;
}

.report-bar {
    height: 0.85rem;
    border-radius: 999px;
    background: rgba(27, 27, 24, 0.08);
    overflow: hidden;
}

.report-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #d95d39 0%, #f19f56 100%);
}

.report-bar-sky span {
    background: linear-gradient(90deg, #5ea6ff 0%, #86d9ff 100%);
}

.report-bar-amber span {
    background: linear-gradient(90deg, #e4931a 0%, #f3cf68 100%);
}

.section-divider {
    border: 0;
    border-top: 1px solid rgba(216, 209, 195, 0.8);
    margin: 1.5rem 0;
}

.gallery-link-card {
    display: grid;
    gap: 1rem;
}

.queue-admin-panel,
.queue-ticket-panel,
.queue-help-panel {
    display: grid;
    gap: 1rem;
}

.queue-generator-panel {
    display: grid;
    gap: 1rem;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(216, 209, 195, 0.8);
}

.queue-admin-grid,
.queue-kpis,
.queue-grid {
    display: grid;
    gap: 1rem;
}

.queue-admin-grid,
.queue-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.queue-admin-card,
.queue-kpi,
.queue-ticket-card,
.queue-qr-frame {
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(216, 209, 195, 0.9);
    background: rgba(255, 253, 248, 0.96);
}

.queue-admin-card span,
.queue-kpi span,
.queue-ticket-label {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.queue-admin-card strong,
.queue-kpi strong,
.queue-ticket-number {
    display: block;
    margin-top: 0.45rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}

.queue-current-value {
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.queue-current-value.is-idle {
    max-width: 7ch;
    font-size: clamp(1.45rem, 7vw, 2.5rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.queue-admin-actions,
.queue-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.queue-join-form {
    display: grid;
    grid-template-columns: minmax(0, 12rem) auto;
    gap: 0.75rem;
    align-items: end;
}

.queue-join-form label {
    margin: 0;
}

.queue-join-form .button {
    min-height: 3.5rem;
    padding: 1rem 1.6rem;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.queue-stepper {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) 3rem;
    gap: 0.55rem;
    align-items: center;
}

.queue-stepper-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(216, 209, 195, 0.95);
    border-radius: 1rem;
    background: rgba(255, 253, 248, 0.96);
    color: var(--ink);
    font: inherit;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.queue-stepper-button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(27, 27, 24, 0.08);
    background: rgba(255, 247, 237, 0.98);
}

.queue-stepper-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.queue-stepper [data-stepper-input] {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.queue-kpi-hint,
.queue-ticket-meta {
    margin-top: 0.75rem;
    color: var(--muted);
    line-height: 1.45;
}

.queue-generator-form {
    gap: 0.85rem 1rem;
}

.queue-qr-layout {
    display: grid;
    grid-template-columns: 16rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.queue-qr-frame {
    display: grid;
    place-items: center;
    min-height: 16rem;
}

.queue-qr-frame svg {
    width: 100%;
    height: auto;
    max-width: 14rem;
}

.queue-page .lead {
    max-width: 48rem;
}

.queue-page-note {
    margin: 0;
}

.legal-page .container {
    display: grid;
    gap: 1.35rem;
}

.legal-heading {
    margin-bottom: 0;
}

.legal-updated {
    margin: 0.6rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.legal-review-note {
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(216, 209, 195, 0.9);
    background: rgba(255, 248, 232, 0.95);
}

.legal-review-note strong {
    display: block;
    margin-bottom: 0.35rem;
}

.legal-review-note p {
    margin: 0;
    color: var(--muted);
}

.legal-sections {
    display: grid;
    gap: 1rem;
}

.legal-section h2,
.legal-sources h2 {
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-sources {
    display: grid;
    gap: 0.75rem;
}

.copy-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.gallery-admin-grid,
.gallery-public-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

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

.gallery-admin-card,
.gallery-public-card {
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(216, 209, 195, 0.85);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
}

.gallery-admin-card img,
.gallery-public-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: rgba(27, 27, 24, 0.06);
}

.gallery-admin-card-body {
    display: grid;
    gap: 0.55rem;
    padding: 0.9rem 1rem 1rem;
}

.gallery-admin-card-body span {
    color: var(--muted);
    font-size: 0.88rem;
}

.gallery-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 111, 97, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(77, 193, 255, 0.16), transparent 20%),
        linear-gradient(180deg, #fffaf1 0%, #f7fbff 100%);
    font-family: "Avenir Next Rounded", "Trebuchet MS", sans-serif;
}

.gallery-page-shell {
    min-height: 100vh;
}

.gallery-section {
    padding: 4rem 0 5rem;
}

.gallery-hero {
    margin-bottom: 1.5rem;
}

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

.gallery-public-card {
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.gallery-public-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(27, 27, 24, 0.12);
}

.schedule-grid {
    align-items: start;
}

.schedule-form {
    margin-bottom: 1rem;
}

.shift-card,
.schedule-booking-card {
    display: grid;
    gap: 1rem;
}

.assignment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.assignment-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.7rem 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(216, 209, 195, 0.9);
}

.assignment-chip div,
.simple-chip {
    display: grid;
    gap: 0.15rem;
}

.assignment-chip span,
.simple-chip span {
    color: var(--muted);
    font-size: 0.88rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(216, 209, 195, 0.9);
    background: rgba(255, 253, 248, 0.96);
    font-weight: 700;
}

.checklist-item input {
    width: auto;
    transform: scale(1.15);
}

.checklist-actions {
    margin-top: 1rem;
}

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

.reminder-card {
    border-radius: 1.25rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(87, 126, 255, 0.14);
}

.reminder-card strong {
    display: block;
    margin-bottom: 0.8rem;
}

.warning-state {
    border-style: solid;
    border-color: rgba(178, 106, 0, 0.25);
    background: rgba(178, 106, 0, 0.08);
    color: #7a4b00;
}

.inline-form {
    display: inline-flex;
}

.kiosk-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 111, 97, 0.18), transparent 22%),
        radial-gradient(circle at 90% 12%, rgba(77, 193, 255, 0.18), transparent 20%),
        radial-gradient(circle at 85% 82%, rgba(255, 212, 92, 0.18), transparent 18%),
        linear-gradient(180deg, #fff9ef 0%, #eef8ff 100%);
    font-family: "Avenir Next Rounded", "Trebuchet MS", "Marker Felt", sans-serif;
}

.kiosk-page-shell {
    min-height: 100vh;
}

.kiosk-section {
    padding: 4rem 0 5rem;
}

.kiosk-toolbar {
    align-items: end;
}

.kiosk-grid {
    align-items: start;
}

.kiosk-panel {
    border-radius: 2rem;
    padding: 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.94)),
        linear-gradient(135deg, rgba(255, 146, 112, 0.12), rgba(116, 209, 255, 0.12));
    border-color: rgba(87, 126, 255, 0.16);
}

.kiosk-heading {
    display: grid;
    gap: 0.8rem;
    text-align: center;
}

.kiosk-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.kiosk-pin-form {
    margin-top: 1.5rem;
}

.kiosk-button {
    min-height: 3.5rem;
}

.success-panel {
    display: grid;
    gap: 1.2rem;
    text-align: center;
}

.success-panel .detail-list {
    text-align: left;
}

@media (max-width: 900px) {
    .hero-grid,
    .playful-hero-grid,
    .section-grid,
    .section-grid.admin-grid,
    .inquiry-grid,
    .card-grid,
    .stats-grid,
    .form-grid,
    .play-zones-grid,
    .moments-grid,
    .venue-facts-grid,
    .birthday-steps,
    .calendar-weekdays,
    .calendar-grid {
        grid-template-columns: 1fr;
    }

    .row-between,
    .site-header .row-between,
    .panel-head,
    .package-header,
    .list-row,
    .calendar-toolbar,
    .report-row-head,
    .report-row-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header .row-between {
        gap: 0.7rem;
        align-items: stretch;
    }

    .brand {
        width: 100%;
        padding-bottom: 0.15rem;
    }

    .brand-mark {
        width: 4rem;
        height: 4rem;
        flex-basis: 4rem;
    }

    .top-nav {
        width: 100%;
        flex-wrap: nowrap;
        gap: 0.65rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        padding: 0.1rem 0 0.7rem;
        scrollbar-width: none;
    }

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

    .top-nav a,
    .top-nav .link-button {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.72rem 0.95rem;
        border-radius: 999px;
        border: 1px solid rgba(216, 209, 195, 0.95);
        background: rgba(255, 253, 248, 0.96);
        box-shadow: 0 8px 18px rgba(27, 27, 24, 0.06);
    }

    .top-nav form {
        flex: 0 0 auto;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .copy-field,
    .gallery-admin-grid,
    .gallery-public-grid,
    .checklist-grid,
    .availability-slot-grid,
    .footer-grid,
    .reminder-grid,
    .queue-join-form,
    .queue-admin-grid,
    .queue-kpis,
    .queue-qr-layout {
        grid-template-columns: 1fr;
    }

    .hero-scene {
        min-height: auto;
        margin-top: 0.5rem;
        padding-top: 3rem;
    }

    .hero-scene-layout {
        grid-template-columns: 1fr;
    }

    .hero-scene-stack {
        padding-top: 0;
    }

    .hero-rainbow-card {
        min-height: 18rem;
    }

    .hero-scene-card {
        animation: none;
    }

    .availability-layout,
    .availability-promo-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .queue-grid,
    .section-grid.admin-grid.queue-grid {
        grid-template-columns: 1fr;
    }

    .password-input-wrap input {
        padding-right: 7.2rem;
    }

    .password-toggle {
        padding-inline: 0.75rem;
    }

    .auth-login-section {
        padding-top: 2.25rem;
    }

    .auth-login-card {
        padding: 1.2rem;
        border-radius: 1.3rem;
    }

    .auth-login-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .calendar-weekdays {
        display: none;
    }

    .calendar-grid {
        gap: 0.75rem;
    }

    .calendar-day {
        min-height: 0;
        padding: 0.95rem;
        border-radius: 1rem;
    }

    .calendar-day.muted-day {
        display: none;
    }

    .calendar-day-head {
        margin-bottom: 0.65rem;
    }

    .calendar-day-head > strong:last-child {
        flex: 0 0 auto;
        min-width: 2rem;
        text-align: center;
        padding: 0.32rem 0.5rem;
        border-radius: 999px;
        background: rgba(27, 27, 24, 0.06);
        font-size: 0.86rem;
        line-height: 1;
    }

    .calendar-events {
        gap: 0.45rem;
    }

    .calendar-entry {
        gap: 0.2rem;
        padding: 0.7rem 0.8rem;
        border-radius: 0.85rem;
        font-size: 0.92rem;
    }

    .calendar-empty {
        font-size: 0.94rem;
    }

    .calendar-toolbar {
        gap: 0.85rem;
    }

    .calendar-toolbar .button-row,
    .calendar-toolbar form,
    .calendar-toolbar label,
    .calendar-toolbar input[type="month"] {
        width: 100%;
    }

    .calendar-toolbar .button-row {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .public-shell .hero,
    .public-shell .section {
        padding: 2.6rem 0;
    }

    .public-shell .panel,
    .public-shell .auth-card,
    .public-shell .stat-card,
    .public-shell .package-card {
        padding: 1.15rem;
        border-radius: 1.25rem;
    }

    .brand {
        gap: 0.7rem;
    }

    .brand strong {
        display: block;
        font-size: 1.04rem;
    }

    .brand small {
        font-size: 0.8rem;
    }

    .public-shell .top-nav a,
    .public-shell .top-nav .link-button {
        padding: 0.68rem 0.9rem;
        font-size: 0.92rem;
    }

    .playful-hero {
        padding-top: 3.4rem;
    }

    .playful-hero-copy h1 {
        max-width: none;
    }

    .public-shell .lead {
        font-size: 1rem;
        line-height: 1.62;
    }

    .public-shell .button {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .public-shell .hero-actions,
    .public-shell .button-row,
    .queue-actions,
    .availability-results-card .button-row {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .public-shell .hero-actions > *,
    .public-shell .button-row > *,
    .queue-actions > *,
    .availability-results-card .button-row > * {
        width: 100%;
    }

    .hero-chip-row,
    .choice-card-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-rainbow-card {
        padding: 1.4rem;
        min-height: 15rem;
    }

    .hero-scene-card {
        padding: 0.85rem 0.95rem;
    }

    .queue-ticket-panel,
    .queue-help-panel,
    .availability-intro-card,
    .availability-form,
    .availability-results-card,
    .availability-promo-card {
        gap: 0.9rem;
    }

    .queue-kpi,
    .queue-ticket-card,
    .availability-meta div,
    .availability-note,
    .availability-day-card,
    .availability-slot-card {
        padding: 0.95rem 1rem;
    }

    .queue-kpi strong,
    .queue-ticket-number,
    .availability-slot-card strong {
        font-size: clamp(1.6rem, 9vw, 2.35rem);
    }

    .queue-join-form {
        gap: 1rem;
    }

    .queue-join-form .button {
        min-height: 3.65rem;
        font-size: 1.08rem;
    }

    .queue-stepper {
        grid-template-columns: 2.7rem minmax(0, 1fr) 2.7rem;
        gap: 0.45rem;
    }

    .queue-stepper-button {
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 0.9rem;
        font-size: 1.25rem;
    }

    .queue-page-note,
    .queue-kpi-hint,
    .queue-ticket-meta,
    .availability-intro-card p,
    .availability-day-card p,
    .availability-slot-card p {
        font-size: 0.95rem;
    }

    .availability-day-card .button,
    .availability-slot-card .button,
    .availability-promo-card .button {
        width: 100%;
    }

    .footer-grid {
        gap: 1rem;
    }

    .date-picker-panel {
        width: min(22rem, calc(100vw - 2.25rem));
        left: 50%;
        transform: translateX(-50%);
    }

    .date-picker-toolbar {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .date-picker-toolbar [data-date-picker-year] {
        grid-column: 2 / 3;
    }
}
