:root {
    --bg: #070708;
    --night: #111015;
    --panel: rgba(17, 16, 21, .88);
    --paper: #f5efe2;
    --paper-2: #fff8ea;
    --text: #fff8ea;
    --muted: #c8bfae;
    --ink: #17130f;
    --gold: #d9aa55;
    --gold-2: #f1d28a;
    --rose: #c73f58;
    --line: rgba(241, 210, 138, .28);
    --shadow: rgba(0, 0, 0, .48);
    --container: 1080px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(rgba(7, 7, 8, .9), rgba(7, 7, 8, .96)),
        #070708;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 72px 72px;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px max(18px, calc((100vw - var(--container)) / 2));
    background: rgba(7, 7, 8, .82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: clamp(108px, 12vw, 156px);
    min-width: 108px;
    text-decoration: none;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 800;
    text-transform: uppercase;
}

nav a {
    text-decoration: none;
}

nav a:hover,
.nav-highlight {
    color: var(--gold-2);
}

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(50%);
}

.menu-button {
    display: none;
}

.notice {
    max-width: var(--container);
    margin: 18px auto 0;
    padding: 14px 18px;
    border: 1px solid var(--line);
    background: rgba(217, 170, 85, .12);
    color: var(--gold-2);
}

.hero {
    min-height: 0;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    padding: clamp(34px, 6vw, 72px) 20px;
    border-bottom: 1px solid var(--line);
}

.hero-copy {
    max-width: 1040px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 620px;
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.2vw, 3.9rem);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 26px 70px var(--shadow);
}

h2 {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3.5vw, 3.2rem);
    line-height: .95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow),
.section-copy {
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(.98rem, 1.2vw, 1.05rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.button.primary {
    background: var(--gold);
    color: #140f09;
    border-color: var(--gold);
}

.button.secondary {
    background: rgba(255, 248, 234, .06);
    color: var(--text);
}

.request-modal-box .button.secondary,
.auth-card .button.secondary {
    background: #fffdf7;
    color: var(--ink);
    border-color: rgba(61, 43, 20, .32);
}

.request-modal-box .button.secondary:hover,
.auth-card .button.secondary:hover {
    border-color: var(--gold);
    color: #140f09;
}

.feature-event {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .52);
    box-shadow: 0 18px 50px var(--shadow);
}

.hero-slider {
    position: relative;
    display: grid;
    min-width: 0;
}

.hero-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(16px);
    transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-slide > a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.feature-event img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.feature-event div {
    padding: 16px;
    border-top: 1px solid var(--line);
}

.feature-event h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.hero-slider-dots {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    gap: 7px;
}

.hero-slider-dots span {
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(241, 210, 138, .72);
    background: rgba(7, 7, 8, .72);
}

.hero-slider-dots span.is-active {
    background: var(--gold);
    border-color: var(--gold);
}

.feature-event span,
.pill {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--gold-2);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(42px, 6vw, 76px) 20px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 32px;
}

.section-kicker {
    margin: 0;
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.event-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(17, 16, 21, .78);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.event-card img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.event-image-link,
.gallery-link {
    display: block;
    cursor: zoom-in;
}

.event-image-link {
    display: grid;
    min-height: 100%;
    place-items: center;
    background: #050505;
}

.event-image-link img,
.gallery-link img {
    display: block;
}

.event-image-link img {
    object-fit: contain;
}

.event-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 18px;
}

.event-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.event-body h3,
.form-card h3,
.news-list h3,
.package-grid h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.12;
    text-transform: uppercase;
}

.event-title-row h3 {
    margin-bottom: 0;
}

.event-title-text {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.event-title-date {
    width: fit-content;
    color: var(--gold-2);
    border-bottom: 1px solid rgba(241, 210, 138, .55);
    font-size: .95rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.event-body p,
.event-body dd,
.news-list p,
.package-grid p {
    color: var(--muted);
    line-height: 1.58;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.badges .pill {
    max-width: 100%;
    margin-bottom: 0;
}

.muted-pill {
    color: var(--text);
    border: 1px solid var(--line);
    padding: 5px 9px;
    background: rgba(255, 248, 234, .05);
    line-height: 1.2;
    white-space: normal;
}

dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 18px 0;
}

dt {
    color: var(--gold-2);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
}

dd {
    margin: 4px 0 0;
}

.text-link {
    color: var(--gold-2);
    font-weight: 900;
    text-transform: uppercase;
}

.quiet-text {
    color: var(--muted);
    font-weight: 800;
}

.event-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.public-occupancy {
    --occupancy: 0%;
    display: inline-grid;
    justify-items: center;
    gap: 6px;
    min-width: 96px;
}

.occupancy-ring {
    position: relative;
    display: grid;
    width: clamp(72px, 8vw, 92px);
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(17, 16, 21, .95) 0 58%, transparent 59%),
        conic-gradient(var(--gold-2) var(--occupancy), rgba(255, 248, 234, .12) 0);
    box-shadow:
        0 0 0 1px var(--line),
        0 12px 32px rgba(217, 170, 85, .24);
}

.occupancy-ring::after {
    content: "";
    position: absolute;
    inset: -35%;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, .26) 50%, transparent 66%);
    transform: translateX(-60%) rotate(12deg);
    animation: occupancy-sheen 3.8s ease-in-out infinite;
}

.occupancy-ring strong {
    position: relative;
    z-index: 1;
    color: var(--gold-2);
    font-size: clamp(1.2rem, 2.1vw, 1.55rem);
    line-height: 1;
    text-shadow: 0 0 20px rgba(241, 210, 138, .38);
}

.occupancy-label {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.event-request-button,
.event-calendar-link,
.event-sponsor-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
}

.event-request-button {
    flex: 1 1 190px;
    padding: 0 18px;
    background: var(--gold);
    color: #140f09;
    border: 1px solid var(--gold);
    box-shadow: 0 14px 30px rgba(217, 170, 85, .22);
}

.event-request-button:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
}

.event-sponsor-link {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid var(--line);
    background: rgba(255, 248, 234, .05);
    color: var(--gold-2);
    font-size: .72rem;
}

.event-calendar-link {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(241, 210, 138, .42);
    background: rgba(255, 248, 234, .08);
    color: var(--text);
    font-size: .72rem;
}

.event-calendar-link:hover {
    border-color: var(--gold-2);
    color: var(--gold-2);
}

.event-sponsor-link:hover {
    background: rgba(217, 170, 85, .14);
}

@keyframes occupancy-sheen {
    0%,
    46% {
        transform: translateX(-70%) rotate(12deg);
    }

    72%,
    100% {
        transform: translateX(70%) rotate(12deg);
    }
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.event-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--line);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .88);
}

.lightbox:target {
    display: flex;
}

.lightbox img {
    max-width: min(92vw, 980px);
    max-height: 86vh;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

.lightbox-close {
    position: fixed;
    inset: 0;
    cursor: zoom-out;
}

.lightbox-close span {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .6);
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 900;
}

.request-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    padding: 24px;
}

.request-modal:target {
    display: grid;
    place-items: center;
}

.request-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .76);
}

.request-modal-box {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    width: min(920px, 94vw);
    max-height: 88vh;
    overflow: auto;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid rgba(61, 43, 20, .24);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

.request-modal-box header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(61, 43, 20, .18);
    padding-bottom: 14px;
}

.request-modal-box h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.sponsor-modal-box {
    width: min(1040px, 94vw);
    background:
        linear-gradient(rgba(9, 7, 6, .92), rgba(9, 7, 6, .97)),
        #130f0b;
    color: var(--text);
    border-color: var(--line);
}

.sponsor-modal-box header {
    border-bottom-color: var(--line);
}

.sponsor-modal-box .modal-close-button {
    background: var(--gold);
    color: #140f09;
}

.sponsor-modal-box .sponsor-section {
    border: 0;
    background: transparent;
}

.modal-close-button {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    min-height: 38px;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    font-weight: 900;
}

.modal-auth-card {
    display: grid;
    gap: 12px;
    max-width: 520px;
}

.modal-auth-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.modal-auth-card p {
    margin: 0;
    color: #5e5143;
    line-height: 1.55;
}

.modal-forms {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.split {
    display: grid;
    grid-template-columns: minmax(260px, .62fr) minmax(300px, 1fr);
    gap: clamp(22px, 4vw, 44px);
    background: var(--paper);
    color: var(--ink);
}

.split .eyebrow {
    color: var(--rose);
}

.split .section-copy {
    color: #5e5143;
}

.forms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.form-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(61, 43, 20, .22);
    background: var(--paper-2);
    color: var(--ink);
    box-shadow: 0 20px 60px rgba(24, 18, 10, .12);
}

.reservation-event-card > p {
    margin: 0;
    color: #5e5143;
    line-height: 1.45;
}

.reservation-event-list {
    display: grid;
    gap: 12px;
}

.reservation-event-option {
    border: 1px solid rgba(61, 43, 20, .22);
    background: #fffdf7;
}

.reservation-event-option summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    list-style: none;
}

.reservation-event-option summary::-webkit-details-marker {
    display: none;
}

.reservation-event-option summary strong,
.reservation-event-option summary em {
    display: block;
}

.reservation-event-option summary em {
    margin-top: 4px;
    color: #6f6254;
    font-style: normal;
    line-height: 1.35;
}

.reservation-event-option summary b {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 8px 10px;
    background: var(--gold);
    color: var(--ink);
    font-size: .78rem;
    text-transform: uppercase;
}

.reservation-inline-form {
    display: grid;
    gap: 12px;
    padding: 12px;
    border-top: 1px solid rgba(61, 43, 20, .18);
}

.reservation-calendar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 12px 12px;
}

.reservation-calendar-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(61, 43, 20, .22);
    background: rgba(217, 170, 85, .12);
    color: var(--ink);
    font-size: .75rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.reservation-calendar-actions a:hover {
    border-color: var(--gold);
    background: rgba(217, 170, 85, .22);
}

.form-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    display: grid;
    gap: 7px;
    font-size: .88rem;
    font-weight: 900;
    text-transform: uppercase;
}

label.menu-button {
    display: none;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(61, 43, 20, .24);
    padding: 10px 12px;
    background: #fffdf7;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

.sponsor-section {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(320px, .5fr);
    gap: clamp(22px, 4vw, 44px);
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(9, 7, 6, .9), rgba(9, 7, 6, .96)),
        #130f0b;
}

.sponsor-copy h2 {
    max-width: 900px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.package-grid article {
    min-height: 0;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .44);
}

.package-grid h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.package-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-2);
    font-weight: 900;
}

.sponsor-form {
    color: var(--ink);
}

.partner-section {
    background: rgba(17, 16, 21, .72);
}

.partner-category-grid,
.partner-category {
    display: grid;
    gap: 18px;
}

.partner-category h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.partner-grid article {
    display: grid;
    gap: 9px;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 248, 234, .04);
}

.partner-logo {
    width: 100%;
    height: 92px;
    padding: 10px;
    border: 1px solid rgba(241, 210, 138, .18);
    background: rgba(255, 248, 234, .92);
    object-fit: contain;
}

.partner-grid strong {
    font-size: 1.05rem;
}

.partner-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.partner-category-supporter h3 {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.partner-category-supporter .partner-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.partner-category-supporter .partner-grid article {
    gap: 6px;
    padding: 10px;
}

.partner-category-supporter .partner-logo {
    height: 66px;
    padding: 8px;
}

.partner-category-supporter .partner-grid strong {
    font-size: .9rem;
    line-height: 1.2;
}

.partner-category-supporter .partner-grid p {
    font-size: .82rem;
    line-height: 1.35;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-list article {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(17, 16, 21, .78);
}

.news-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 190px;
    margin: 0 0 18px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid rgba(241, 210, 138, .18);
}

.news-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 230px;
    margin: 0 0 18px;
    object-fit: cover;
    background: #000000;
    border-bottom: 1px solid rgba(241, 210, 138, .18);
}

.news-category {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 20px 10px;
    border: 1px solid rgba(212, 175, 55, .42);
    color: var(--gold-2);
    padding: 5px 8px;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.news-list time,
.news-list h3,
.news-list p,
.news-list .news-text {
    margin-left: 20px;
    margin-right: 20px;
}

.news-list p,
.news-list .news-text {
    margin-bottom: 20px;
}

.news-text {
    color: var(--muted);
    line-height: 1.45;
}

.news-action {
    align-self: flex-start;
    margin: auto 20px 20px;
}

.news-popup-modal[hidden] {
    display: none;
}

.news-popup-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.news-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(6px);
}

.news-popup-box {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(86vh, 820px);
    overflow: auto;
    border: 1px solid rgba(241, 210, 138, .28);
    background: #111015;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .45);
}

.news-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(0, 0, 0, .64);
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.news-popup-media,
.news-popup-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 360px;
    object-fit: cover;
    background: #000000;
}

.news-popup-content {
    padding: clamp(22px, 4vw, 34px);
}

.news-popup-content h2 {
    margin: 8px 0 14px;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1;
}

.news-popup-content p,
.news-popup-content .news-text {
    color: var(--muted);
}

.news-popup-content .news-text {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.45;
}

.news-popup-content .button {
    margin-top: 8px;
}

@media (max-width: 620px) {
    .news-popup-modal {
        align-items: flex-start;
        padding: 10px;
        overflow: auto;
    }

    .news-popup-box {
        width: 100%;
        max-height: none;
        margin: 10px 0;
    }

    .news-popup-media,
    .news-popup-video {
        max-height: 260px;
    }

    .news-popup-content {
        padding: 18px;
    }

    .news-popup-content h2 {
        font-size: clamp(1.55rem, 9vw, 2.25rem);
    }

    .news-popup-content .button {
        width: 100%;
        justify-content: center;
    }
}

time {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-2);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(32px, 4vw, 52px) 20px;
    background: var(--paper);
    color: var(--ink);
}

.contact-band h2 {
    margin-bottom: 0;
}

.contact-band .eyebrow {
    color: var(--rose);
}

address {
    display: grid;
    gap: 10px;
    font-style: normal;
    font-weight: 900;
}

.legal-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 10px 16px;
    color: rgba(23, 19, 15, .78);
    font-size: .78rem;
}

.legal-links a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-page {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(34px, 6vw, 72px) 20px;
}

.legal-nav,
.legal-content {
    border: 1px solid var(--line);
    background: var(--panel);
}

.legal-nav {
    display: grid;
    align-self: start;
    padding: 12px;
}

.legal-nav a {
    padding: 10px 12px;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.legal-nav a.active,
.legal-nav a:hover {
    color: var(--gold-2);
    background: rgba(241, 210, 138, .08);
}

.legal-content {
    padding: clamp(22px, 4vw, 42px);
}

.legal-content h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: .98;
    text-transform: uppercase;
}

.legal-content h2 {
    margin: 30px 0 10px;
    color: var(--gold-2);
    font-size: 1rem;
    text-transform: uppercase;
}

.legal-content p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.7;
}

.legal-content a {
    color: var(--gold-2);
    font-weight: 900;
}

.legal-note {
    padding: 12px 14px;
    border: 1px solid rgba(241, 210, 138, .24);
    background: rgba(241, 210, 138, .08);
}

.legal-footer {
    max-width: var(--container);
    margin: 0 auto clamp(34px, 6vw, 72px);
    padding: 0 20px;
}

.legal-footer .contact-band {
    margin: 0;
}

.cookie-consent {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    width: min(760px, calc(100vw - 36px));
    padding: 16px;
    color: var(--text);
    border: 1px solid rgba(241, 210, 138, .34);
    background: rgba(17, 16, 21, .96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .42);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-2);
    text-transform: uppercase;
}

.cookie-consent p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.cookie-consent-actions a {
    padding: 10px 8px;
    color: var(--gold-2);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    text-underline-offset: 4px;
}

.cookie-consent-actions button {
    min-height: 40px;
    padding: 10px 14px;
}

@media (max-width: 1100px) {
    .package-grid,
    .forms,
    dl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .hero,
    .split,
    .sponsor-section,
    .event-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .event-card img {
        min-height: 0;
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 760px) {
    .legal-page {
        grid-template-columns: 1fr;
    }

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

    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        grid-template-columns: 1fr;
        width: auto;
    }

    .cookie-consent-actions {
        justify-content: flex-start;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-card img {
        aspect-ratio: 16 / 10;
    }

    .event-image-link img {
        aspect-ratio: 3 / 4;
    }

    .site-header {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: start;
        gap: 14px;
    }

    label.menu-button {
        display: inline-grid;
        width: 46px;
        height: 42px;
        place-items: center;
        gap: 5px;
        padding: 9px;
        border: 1px solid var(--line);
        background: rgba(255, 248, 234, .06);
        cursor: pointer;
    }

    .menu-button span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--gold-2);
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        align-items: stretch;
        gap: 0;
        padding-top: 8px;
        border-top: 1px solid var(--line);
    }

    .nav-toggle:checked ~ .site-nav {
        display: grid;
    }

    .site-nav a {
        min-height: 42px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(241, 210, 138, .14);
    }
}

.account-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    gap: 22px;
    padding: 32px 18px;
}

.auth-logo {
    display: block;
    width: min(220px, 52vw);
}

.auth-logo img {
    display: block;
    width: 100%;
}

.auth-card {
    width: min(94vw, 440px);
}

.auth-card h1 {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 3rem);
    text-shadow: none;
}

.auth-card p {
    color: #5e5143;
    line-height: 1.5;
}

.form-error {
    padding: 12px 14px;
    border: 1px solid #b42318;
    background: #fff1f0;
    color: #8a1f14;
    font-weight: 800;
}

.consent-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    text-transform: none;
    line-height: 1.4;
}

.consent-check input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.dark-link {
    color: var(--ink);
}

.account-page {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px) 20px;
}

.account-hero {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 340px);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 24px;
}

.account-hero h1 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 5vw, 5rem);
}

.account-hero p {
    color: var(--muted);
}
/* Konto-Seite: Überschriften kleiner machen */
.account-hero h1 {
    font-size: clamp(1.8rem, 3.2vw, 3.4rem);
    line-height: 1.05;
}

.account-panel h2,
.account-modal-box h2 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.1;
}

.account-item h3 {
    font-size: 1.05rem;
    line-height: 1.2;
}

.wallet-card strong {
    font-size: 1.45rem;
}

@media (max-width: 620px) {
    .account-hero h1 {
        font-size: 1.9rem;
    }

    .account-panel h2,
    .account-modal-box h2 {
        font-size: 1.35rem;
    }
}
.wallet-card,
.account-panel,
.account-item {
    border: 1px solid var(--line);
    background: rgba(17, 16, 21, .82);
}

.wallet-card {
    padding: 22px;
}

.wallet-card span,
.status {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.wallet-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 2rem;
}

.wallet-card .wallet-code {
    margin-top: 10px;
    font-size: 1rem;
    letter-spacing: 0;
}

.wallet-card p {
    margin-bottom: 0;
}

.wallet-history-button {
    width: 100%;
    margin-top: 14px;
}

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

.account-panel {
    padding: 22px;
}

.account-panel h2 {
    margin-bottom: 18px;
}

.account-item {
    display: grid;
    grid-template-columns: 1fr minmax(160px, 220px);
    gap: 18px;
    align-items: center;
    padding: 16px;
    margin-top: 12px;
}

.account-item.simple {
    display: block;
}

.account-item h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.account-item p {
    color: var(--muted);
    line-height: 1.45;
}

.reservation-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.reservation-counts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    background: rgba(255, 248, 234, .06);
    color: var(--text);
    font-size: .9rem;
    font-weight: 800;
}

.reservation-counts strong {
    color: var(--gold-2);
    font-size: 1.15rem;
}

.reservation-counts .pending {
    border-color: rgba(217, 170, 85, .55);
    background: rgba(217, 170, 85, .12);
}

.reservation-cancel-form {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto;
    gap: 10px;
    align-items: end;
    margin: 14px 0 8px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 248, 234, .04);
}

.reservation-cancel-form .button.secondary {
    min-height: 44px;
}

.barcode {
    width: 100%;
    background: #fff;
}

.wallet-barcode {
    margin-top: 14px;
    padding: 8px;
}

.compact-notice {
    margin: 12px 0;
}

.wallet-pin-form {
    display: grid;
    gap: 12px;
    margin: 16px 0;
}

.account-modal {
    position: fixed;
    inset: 0;
    z-index: 125;
    display: none;
    padding: 22px;
}

.account-modal:target {
    display: grid;
    place-items: center;
}

.account-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .78);
}

.account-modal-box {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    width: min(760px, 94vw);
    max-height: 86vh;
    overflow: auto;
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(241, 210, 138, .28);
    background: var(--night);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

.account-modal-box header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}

.account-modal-box h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.wallet-history-groups {
    display: grid;
    gap: 14px;
}

.wallet-history-group {
    display: grid;
    gap: 8px;
}

.wallet-history-group h3 {
    margin: 0;
    font-size: 1.15rem;
}

.wallet-history-row {
    display: grid;
    grid-template-columns: minmax(110px, 150px) 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 248, 234, .04);
}

.wallet-history-row strong {
    display: block;
    font-size: 1.1rem;
}

.wallet-history-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.scan-video {
    width: 100%;
    margin-top: 14px;
    border: 1px solid var(--line);
    background: #000;
}

.scan-result-card {
    display: grid;
    gap: 12px;
}

.scan-focus-note {
    margin: -4px 0 2px;
    color: var(--gold-2);
    font-size: .9rem;
    font-weight: 800;
}

.entry-count {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(241, 210, 138, .38);
    background: rgba(217, 170, 85, .12);
}

.entry-count strong {
    display: grid;
    min-height: 76px;
    place-items: center;
    background: var(--gold);
    color: var(--ink);
    font-size: 2.4rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.entry-count span {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.compact-entry-count {
    grid-template-columns: 72px 1fr;
    padding: 10px;
}

.compact-entry-count strong {
    min-height: 58px;
    font-size: 1.9rem;
}

.scan-details {
    display: grid;
    gap: 8px;
    margin: 0;
}

.scan-details div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(241, 210, 138, .14);
}

.scan-details dt {
    color: var(--muted);
    font-weight: 900;
}

.scan-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.entry-button {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
}

.checkin-guests-field {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
}

.checkin-guests-field input {
    width: 100%;
    min-height: 58px;
    border: 2px solid var(--gold);
    background: #ffffff;
    color: #111827;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

.wallet-reservation-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.wallet-reservation-list h3 {
    margin: 0;
    font-size: 1.25rem;
}

.wallet-reservation-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 248, 234, .04);
}

.wallet-reservation-card h4 {
    margin: 0;
    font-size: 1.05rem;
}

.checkin-photo-box {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(241, 210, 138, .28);
    background: rgba(255, 248, 234, .05);
}

.checkin-photo-video,
.checkin-photo-preview,
.checkin-saved-photo {
    width: 100%;
    max-height: 320px;
    border: 1px solid var(--line);
    background: #000;
    object-fit: cover;
}

.checkin-photo-preview,
.checkin-saved-photo {
    background: rgba(255, 248, 234, .08);
}

.checkin-photo-box p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.4;
}

.checkin-saved-photo {
    margin-top: 12px;
}

.staff-login-screen .auth-page {
    width: min(1100px, calc(100% - 40px));
}

.staff-login-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.staff-login-copy {
    border: 1px solid var(--line);
    background: rgba(17, 16, 21, .84);
}

.staff-login-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 380px;
    padding: 32px;
}

.staff-login-copy h1 {
    max-width: 520px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 4rem);
}

.staff-login-copy p {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.55;
}

.staff-login-card h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.staff-login-meta,
.staff-dashboard-grid {
    display: grid;
    gap: 10px;
}

.staff-login-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.staff-login-meta span,
.staff-dashboard-card {
    border: 1px solid var(--line);
    background: rgba(255, 248, 234, .06);
}

.staff-login-meta span {
    padding: 12px;
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.staff-dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin-bottom: 20px;
}

.staff-dashboard-card {
    min-height: 132px;
    padding: 16px;
}

.staff-dashboard-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-2);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.staff-dashboard-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.staff-dashboard-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.staff-reservation-panel {
    margin-top: 20px;
}

.staff-reservation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.staff-reservation-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 248, 234, .04);
}

.staff-reservation-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.staff-reservation-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.inline-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.inline-actions form,
.inline-actions button {
    width: 100%;
}

@media (max-width: 860px) {
    .account-hero,
    .account-grid,
    .account-item,
    .staff-login-wrap,
    .staff-login-meta,
    .entry-count,
    .scan-details div,
    .reservation-event-option summary,
    .reservation-cancel-form,
    .wallet-history-row,
    .inline-actions {
        grid-template-columns: 1fr;
    }

    .modal-forms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1120px) {
    .site-header,
    .hero,
    .section,
    .contact-band,
    .account-page,
    .notice {
        margin-left: 18px;
        margin-right: 18px;
    }

    .site-header {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 620px) {
    .section-heading,
    .contact-band {
        align-items: flex-start;
        flex-direction: column;
    }

    nav {
        gap: 12px;
        font-size: .78rem;
    }

    .event-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions .button {
        flex: 1 1 100%;
    }

    .event-title-row {
        grid-template-columns: 1fr;
    }

    .public-occupancy {
        justify-self: start;
    }

    .event-actions {
        align-items: stretch;
    }

    .event-request-button {
        flex-basis: 100%;
    }

    .event-sponsor-link {
        margin-left: auto;
        max-width: 100%;
        padding: 0 8px;
        font-size: .66rem;
        white-space: normal;
        text-align: center;
    }

    .event-calendar-link {
        flex: 1 1 calc(50% - 6px);
    }

    .reservation-calendar-actions a {
        flex: 1 1 100%;
    }



/* Sichtbare Hinweise / Erfolg / Fehler - besserer Kontrast */
.notice,
.compact-notice,
.success-panel {
    background: #ecfdf3 !important;
    color: #064e3b !important;
    border: 1px solid #10b981 !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

.form-error,
.error-panel,
.error {
    background: #fef2f2 !important;
    color: #7f1d1d !important;
    border: 1px solid #ef4444 !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

.notice a,
.compact-notice a,
.success-panel a {
    color: #064e3b !important;
    text-decoration: underline !important;
    font-weight: 800 !important;
}

.form-error a,
.error-panel a,
.error a {
    color: #7f1d1d !important;
    text-decoration: underline !important;
    font-weight: 800 !important;
}



/* =========================================================
   HYPERUSH PERSONAL / TABLET DESIGN
   URL: /personal
   ========================================================= */

body.staff-login-screen,
body.staff-portal-screen {
    background:
        radial-gradient(circle at top center, rgba(212, 175, 55, .18), transparent 34%),
        linear-gradient(135deg, #050505 0%, #111111 50%, #050505 100%) !important;
    color: #ffffff !important;
}

/* Login-Seite aufräumen */
body.staff-login-screen .auth-page {
    min-height: 100vh !important;
    padding: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body.staff-login-screen .auth-logo {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 26px !important;
}

body.staff-login-screen .auth-logo img {
    width: min(260px, 78vw) !important;
    height: auto !important;
}

body.staff-login-screen .staff-login-wrap {
    width: min(520px, 100%) !important;
    display: block !important;
}

/* Den alten Erklärungstext ausblenden */
body.staff-login-screen .staff-login-copy {
    display: none !important;
}

body.staff-login-screen .staff-login-card,
body.staff-login-screen .auth-card {
    width: 100% !important;
    background: rgba(10, 10, 12, .96) !important;
    border: 1px solid rgba(212, 175, 55, .48) !important;
    border-radius: 28px !important;
    padding: 34px !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .55) !important;
}

body.staff-login-screen .staff-login-card h2,
body.staff-login-screen .auth-card h1,
body.staff-login-screen .auth-card h2 {
    color: #ffffff !important;
    font-size: clamp(34px, 7vw, 56px) !important;
    line-height: .95 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin: 0 0 28px !important;
    letter-spacing: .02em !important;
}

body.staff-login-screen label {
    color: #f5e7c5 !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: .03em !important;
    margin-bottom: 16px !important;
}

body.staff-login-screen input {
    width: 100% !important;
    min-height: 60px !important;
    margin-top: 8px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(212, 175, 55, .45) !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 21px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
}

body.staff-login-screen input:focus {
    outline: 4px solid rgba(212, 175, 55, .28) !important;
    border-color: #d4af37 !important;
}

body.staff-login-screen button,
body.staff-login-screen .button {
    width: 100% !important;
    min-height: 64px !important;
    border-radius: 20px !important;
    border: 0 !important;
    background: linear-gradient(135deg, #d4af37, #fff0a8) !important;
    color: #111111 !important;
    font-size: 21px !important;
    font-weight: 950 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
}

/* Fehler / Hinweise im Personalbereich */
body.staff-login-screen .form-error,
body.staff-portal-screen .form-error {
    background: #fef2f2 !important;
    color: #7f1d1d !important;
    border: 2px solid #ef4444 !important;
    border-left: 7px solid #dc2626 !important;
    border-radius: 16px !important;
    padding: 14px 16px !important;
    font-weight: 900 !important;
    line-height: 1.45 !important;
}

body.staff-portal-screen .notice,
body.staff-portal-screen .compact-notice {
    background: #ecfdf3 !important;
    color: #064e3b !important;
    border: 2px solid #10b981 !important;
    border-left: 7px solid #059669 !important;
    border-radius: 16px !important;
    padding: 14px 16px !important;
    font-weight: 900 !important;
    line-height: 1.45 !important;
}

/* Portal nach Login */
body.staff-portal-screen .site-header,
body.staff-portal-screen header.site-header {
    background: rgba(5, 5, 5, .96) !important;
    border-bottom: 1px solid rgba(212, 175, 55, .28) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
}

body.staff-portal-screen .site-header img {
    max-height: 58px !important;
}

body.staff-portal-screen .site-header nav {
    gap: 10px !important;
}

body.staff-portal-screen .site-header nav a {
    background: rgba(255, 255, 255, .06) !important;
    color: #f5e7c5 !important;
    border: 1px solid rgba(212, 175, 55, .25) !important;
    border-radius: 999px !important;
    padding: 10px 14px !important;
    font-weight: 900 !important;
}

/* Hauptlayout */
body.staff-portal-screen main,
body.staff-portal-screen .account-page {
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, .12), transparent 30%),
        #080808 !important;
    padding: 20px !important;
}

body.staff-portal-screen .account-hero,
body.staff-portal-screen .dashboard-hero {
    background: rgba(10, 10, 12, .94) !important;
    border: 1px solid rgba(212, 175, 55, .34) !important;
    border-radius: 28px !important;
    padding: 26px !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
}

body.staff-portal-screen .account-hero h1,
body.staff-portal-screen .dashboard-hero h1 {
    color: #ffffff !important;
    font-size: clamp(34px, 6vw, 62px) !important;
    line-height: .96 !important;
    margin-bottom: 12px !important;
}

body.staff-portal-screen .account-hero p,
body.staff-portal-screen .dashboard-hero p {
    color: #d6c7a0 !important;
    font-size: 18px !important;
}

/* Dashboard-Karten */
body.staff-portal-screen .staff-dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-bottom: 22px !important;
}

body.staff-portal-screen .staff-dashboard-card {
    background: linear-gradient(145deg, #171717, #0d0d0d) !important;
    border: 1px solid rgba(212, 175, 55, .38) !important;
    border-radius: 26px !important;
    padding: 24px !important;
    min-height: 150px !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35) !important;
}

body.staff-portal-screen .staff-dashboard-card span {
    color: #d4af37 !important;
    text-transform: uppercase !important;
    font-weight: 950 !important;
    letter-spacing: .06em !important;
    font-size: 13px !important;
}

body.staff-portal-screen .staff-dashboard-card strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 26px !important;
    line-height: 1.05 !important;
    margin: 9px 0 !important;
}

body.staff-portal-screen .staff-dashboard-card p {
    color: #d6c7a0 !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
}

/* Panels */
body.staff-portal-screen .account-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
}

body.staff-portal-screen .account-panel {
    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid rgba(212, 175, 55, .28) !important;
    border-radius: 28px !important;
    padding: 24px !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28) !important;
}

body.staff-portal-screen .account-panel h2 {
    font-size: 30px !important;
    color: #111827 !important;
    margin-bottom: 18px !important;
}

body.staff-portal-screen .account-panel h3 {
    color: #111827 !important;
}

/* Inputs und Buttons tabletfreundlich */
body.staff-portal-screen input,
body.staff-portal-screen select,
body.staff-portal-screen textarea {
    min-height: 58px !important;
    font-size: 20px !important;
    border-radius: 18px !important;
    padding: 0 16px !important;
    border: 1px solid #d1d5db !important;
}

body.staff-portal-screen textarea {
    padding-top: 14px !important;
}

body.staff-portal-screen button,
body.staff-portal-screen .button {
    min-height: 60px !important;
    border-radius: 18px !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    cursor: pointer !important;
}

body.staff-portal-screen .button.primary,
body.staff-portal-screen button.primary,
body.staff-portal-screen .entry-button {
    background: linear-gradient(135deg, #d4af37, #fff0a8) !important;
    color: #111111 !important;
    border: 0 !important;
}

body.staff-portal-screen .button.secondary,
body.staff-portal-screen button.secondary {
    background: #111827 !important;
    color: #ffffff !important;
    border: 0 !important;
}

body.staff-portal-screen button.danger,
body.staff-portal-screen .danger {
    background: #dc2626 !important;
    color: #ffffff !important;
}

/* Code prüfen */
body.staff-portal-screen #scan-code {
    font-size: 24px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
}

/* Kamera / Scanner */
body.staff-portal-screen .scan-video,
body.staff-portal-screen .checkin-photo-video,
body.staff-portal-screen .checkin-photo-preview,
body.staff-portal-screen .checkin-saved-photo {
    width: 100% !important;
    border-radius: 22px !important;
    border: 3px solid #111827 !important;
    background: #000000 !important;
    margin-top: 14px !important;
}

body.staff-portal-screen .checkin-photo-box {
    border: 2px dashed #d4af37 !important;
    border-radius: 24px !important;
    padding: 18px !important;
    background: #fffbeb !important;
    margin-bottom: 16px !important;
}

body.staff-portal-screen .checkin-photo-box p {
    color: #92400e !important;
    font-weight: 800 !important;
}

/* Scan Ergebnis */
body.staff-portal-screen .scan-result-card {
    background: #ffffff !important;
    border: 2px solid #111827 !important;
    border-radius: 26px !important;
    padding: 22px !important;
}

body.staff-portal-screen .scan-result-card .status {
    display: inline-flex !important;
    background: #ecfdf3 !important;
    color: #064e3b !important;
    border-radius: 999px !important;
    padding: 7px 11px !important;
    font-weight: 950 !important;
    margin-bottom: 12px !important;
}

body.staff-portal-screen .scan-result-card h3 {
    font-size: 30px !important;
    color: #111827 !important;
    margin: 0 0 10px !important;
}

body.staff-portal-screen .scan-focus-note {
    color: #6b7280 !important;
    font-weight: 800 !important;
}

body.staff-portal-screen .entry-count {
    background: #111827 !important;
    color: #ffffff !important;
    border-radius: 26px !important;
    padding: 20px !important;
    text-align: center !important;
    margin: 16px 0 !important;
}

body.staff-portal-screen .entry-count strong {
    display: block !important;
    font-size: clamp(56px, 11vw, 96px) !important;
    line-height: .9 !important;
    color: #d4af37 !important;
}

body.staff-portal-screen .entry-count span {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

body.staff-portal-screen .scan-details {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}

body.staff-portal-screen .scan-details div {
    background: #f8fafc !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 18px !important;
    padding: 14px !important;
}

body.staff-portal-screen .scan-details dt {
    color: #667085 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
}

body.staff-portal-screen .scan-details dd {
    margin: 6px 0 0 !important;
    color: #111827 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

/* Reservierungsliste im Personalbereich */
body.staff-portal-screen .reservation-card,
body.staff-portal-screen .request-row {
    border-radius: 22px !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    padding: 18px !important;
    margin-bottom: 14px !important;
}

body.staff-portal-screen .status-chip {
    border-radius: 999px !important;
    padding: 7px 10px !important;
    font-weight: 950 !important;
}

/* Handy / Tablet */
@media (max-width: 980px) {
    body.staff-portal-screen .staff-dashboard-grid {
        grid-template-columns: 1fr !important;
    }

    body.staff-portal-screen .account-grid {
        grid-template-columns: 1fr !important;
    }

    body.staff-portal-screen main,
    body.staff-portal-screen .account-page {
        padding: 14px !important;
    }

    body.staff-portal-screen .account-panel {
        padding: 18px !important;
    }

    body.staff-portal-screen .scan-details {
        grid-template-columns: 1fr !important;
    }

    body.staff-portal-screen .site-header {
        position: static !important;
    }

    body.staff-portal-screen .site-header nav {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.staff-portal-screen .site-header nav a {
        text-align: center !important;
    }
}

@media (max-width: 540px) {
    body.staff-login-screen .auth-page {
        padding: 14px !important;
        align-items: flex-start !important;
        padding-top: 36px !important;
    }

    body.staff-login-screen .staff-login-card,
    body.staff-login-screen .auth-card {
        padding: 24px 18px !important;
        border-radius: 24px !important;
    }

    body.staff-portal-screen .account-panel h2 {
        font-size: 25px !important;
    }

    body.staff-portal-screen input,
    body.staff-portal-screen select,
    body.staff-portal-screen textarea,
    body.staff-portal-screen button,
    body.staff-portal-screen .button {
        font-size: 17px !important;
    }

    body.staff-portal-screen #scan-code {
        font-size: 20px !important;
    }
}


/* =========================================================
   ACCOUNT: weniger Abstand, bessere Handy-Ansicht
   ========================================================= */

/* Desktop / Computer: Layout bleibt breit und sauber */
@media (min-width: 1181px) {
    .account-page {
        max-width: 1240px;
        margin: 0 auto;
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    .account-hero {
        grid-template-columns: minmax(0, 1.4fr) minmax(330px, 360px) !important;
        gap: 28px !important;
    }

    .wallet-card {
        min-height: 560px !important;
    }

    .hero-intro h1 {
        font-size: clamp(38px, 4.4vw, 60px) !important;
        max-width: 720px !important;
    }

    .hero-pin-panel {
        margin-top: 0 !important;
        max-width: 520px !important;
    }

    .account-card-grid {
        gap: 14px !important;
    }
}

/* Tablet / Handy: weniger Rand, Inhalt wird breiter */
@media (max-width: 900px) {
    .account-page {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .account-hero {
        gap: 14px !important;
        margin-bottom: 14px !important;
    }

    .account-grid {
        gap: 14px !important;
    }

    .account-panel {
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .hero-left-stack {
        gap: 14px !important;
    }

    .hero-intro h1 {
        font-size: clamp(32px, 9vw, 46px) !important;
        line-height: .95 !important;
    }

    .hero-intro p {
        margin-top: 10px !important;
    }

    .account-section-nav {
        gap: 8px !important;
        margin-top: 12px !important;
    }

    .account-section-nav a {
        padding: 8px 11px !important;
        font-size: 14px !important;
    }

    .wallet-card {
        min-height: auto !important;
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .wallet-card .wallet-barcode {
        max-width: 100% !important;
        width: 100% !important;
    }

    .account-card-grid,
    .archive-list {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .account-accordion-card summary {
        padding: 11px 12px !important;
        border-radius: 14px !important;
    }

    .account-accordion-body {
        padding: 10px !important;
        border-bottom-left-radius: 14px !important;
        border-bottom-right-radius: 14px !important;
    }

    .account-item {
        padding: 12px !important;
        border-radius: 14px !important;
    }

    .entry-info-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .entry-info-box {
        padding: 8px 9px !important;
        border-radius: 11px !important;
    }

    .entry-info-box span {
        font-size: 10px !important;
    }

    .entry-info-box strong {
        font-size: 13px !important;
        word-break: break-word !important;
    }

    .account-card-grid .barcode,
    .account-card-grid .wallet-barcode,
    .account-item .barcode,
    .account-item .wallet-barcode {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .reservation-cancel-form {
        padding: 10px !important;
        gap: 8px !important;
    }

    .reservation-cancel-form input {
        min-height: 46px !important;
    }

    .reservation-cancel-form button {
        min-height: 46px !important;
    }
}

/* Sehr kleine Handys: noch kompakter, QR bleibt groß */
@media (max-width: 520px) {
    .account-page {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .account-panel {
        padding: 10px !important;
    }

    .account-accordion-body {
        padding: 7px !important;
    }

    .account-item {
        padding: 9px !important;
    }

    .entry-info-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .account-summary-left strong {
        font-size: 15px !important;
    }

    .account-summary-left span {
        font-size: 12px !important;
    }

    .account-summary-chip {
        font-size: 11px !important;
        padding: 5px 8px !important;
    }

    .button,
    button {
        font-size: 13px !important;
    }

    .wallet-card .wallet-barcode,
    .account-item .barcode,
    .account-item .wallet-barcode {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Sponsoren-Pakete: 2 + 2 statt 3 nebeneinander */
#sponsoren .package-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

/* Handy: wieder untereinander */
@media (max-width: 700px) {
    #sponsoren .package-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Sponsor werden: Pakete immer 2 + 2 anzeigen */
#sponsoren .sponsor-packages,
#sponsoren .packages-grid,
#sponsoren .package-grid,
#sponsoren .sponsor-package-grid,
#sponsoren .pricing-grid,
#sponsoren .support-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

/* Falls die Karten direkt in einem Container liegen */
#sponsoren [class*="package"],
#sponsoren [class*="sponsor-card"] {
    max-width: none !important;
}

/* Handy: 1 Spalte */
@media (max-width: 760px) {
    #sponsoren .sponsor-packages,
    #sponsoren .packages-grid,
    #sponsoren .package-grid,
    #sponsoren .sponsor-package-grid,
    #sponsoren .pricing-grid,
    #sponsoren .support-grid {
        grid-template-columns: 1fr !important;
    }
}


}
