/* ============================================================
   Narrenzunft Burgrieden - Design Tokens (aus Prototyp)
   Pergament + Espresso + Fasnet-Rot + Brass-Gold
   Schriften: Zilla Slab (Headlines) + Mulish (Body)
   ============================================================ */

:root {
    --paper: #F2E9D6;
    --paper-2: #F8F1E2;
    --card: #FFFFFF;
    --ink: #2A2018;
    --ink-2: #6A5746;
    --ink-3: #9C8B74;
    --red: #B23A2E;
    --red-deep: #8C2C22;
    --green: #33503C;
    --gold: #BE8A2C;
    --gold-soft: #E7C879;
    --line: rgba(42, 32, 24, 0.13);
    --dark: #22190F;
    --dark-2: #2E2317;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Mulish', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

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

@keyframes nzFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nzFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============== HEADER ============== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(242, 233, 214, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.brand__seal {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: none;
    box-shadow: 0 2px 8px rgba(34, 25, 15, 0.25);
}

.brand__seal-nz {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 0.9;
    color: var(--gold-soft);
    letter-spacing: 0.5px;
}

.brand__seal-yr {
    font-size: 6px;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
}

.brand__name {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand__name-1 {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.brand__name-2 {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 700;
}

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

.nav a {
    position: relative;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
    text-decoration: none;
    padding: 9px 15px;
    border-radius: 9999px;
    transition: background .15s ease;
}

.nav a:hover {
    background: rgba(42, 32, 24, 0.06);
}

.nav a.is-active::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--red);
}

/* ============== BUTTONS ============== */
.btn {
    font-family: 'Zilla Slab', serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    padding: 15px 28px;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform .2s ease, filter .2s ease;
}

.btn--red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 6px 20px rgba(178, 58, 46, 0.35);
}

.btn--red:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: #F2E9D6;
    border: 1.5px solid rgba(242, 233, 214, 0.3);
}

.btn--ghost:hover {
    background: rgba(242, 233, 214, 0.08);
}

.btn--dark {
    background: var(--dark);
    color: #F2E9D6;
    font-size: 15px;
    padding: 13px 24px;
}

.btn--dark:hover {
    filter: brightness(1.2);
}

.btn--white {
    background: #fff;
    color: var(--red);
}

.btn--white:hover {
    transform: translateY(-2px);
}

/* ============== HERO ============== */
.hero {
    background: var(--dark);
    color: #F2E9D6;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 30%, rgba(190, 138, 44, 0.16), transparent 55%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 104px) 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    position: relative;
}

.hero__copy {
    flex: 1 1 440px;
    animation: nzFadeUp 0.6s ease-out;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-soft);
    margin-bottom: 24px;
}

.eyebrow__bar {
    width: 26px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.eyebrow--red {
    color: var(--red);
}

.hero h1 {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6.2vw, 4.6rem);
    line-height: 1.02;
    margin: 0 0 22px;
    letter-spacing: -0.5px;
}

.hero__lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: rgba(242, 233, 214, 0.78);
    max-width: 30em;
    margin: 0 0 14px;
}

.hero__quote {
    font-family: 'Zilla Slab', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    color: var(--gold-soft);
    margin: 0 0 34px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__media {
    flex: 0 1 380px;
    position: relative;
    min-width: 280px;
    animation: nzFadeUp 0.7s ease-out 0.1s both;
}

.hero__photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(242, 233, 214, 0.18);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.hero__photo img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.hero__photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    background: linear-gradient(to top, rgba(34, 25, 15, 0.9), transparent);
}

.hero__photo-caption-1 {
    font-family: 'Zilla Slab', serif;
    font-weight: 600;
    font-size: 20px;
    color: #F2E9D6;
}

.hero__photo-caption-2 {
    display: block;
    font-size: 13px;
    color: rgba(242, 233, 214, 0.7);
}

.hero__seal {
    position: absolute;
    top: -22px;
    right: -14px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    border: 2px solid var(--gold-soft);
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
}

.hero__seal span:first-child {
    font-size: 13px;
    line-height: 1;
}

.hero__seal span:last-child {
    font-size: 26px;
    line-height: 1;
}

/* Sub-hero (smaller hero on inner pages) */
.subhero {
    background: var(--dark);
    color: #F2E9D6;
    position: relative;
    overflow: hidden;
}

.subhero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 24%, rgba(190, 138, 44, 0.16), transparent 55%);
    pointer-events: none;
}

.subhero__inner {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(52px, 8vw, 92px) 24px;
    text-align: center;
    position: relative;
    animation: nzFadeUp 0.6s ease-out;
}

.subhero__inner.left {
    text-align: left;
}

.subhero h1 {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5.4vw, 4rem);
    line-height: 1.03;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.subhero p {
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    color: rgba(242, 233, 214, 0.78);
    max-width: 34em;
    margin: 0 auto;
}

.subhero__inner.left p {
    margin-left: 0;
    margin-right: 0;
}

/* ============== SECTIONS / TYPOGRAPHY ============== */
section {
    position: relative;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 96px) 24px;
}

.section--narrow {
    max-width: 900px;
    text-align: center;
}

.section--alt {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section--dark {
    background: var(--dark);
    color: #F2E9D6;
}

h2 {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin: 14px 0 20px;
    line-height: 1.1;
    letter-spacing: -0.4px;
}

h2.center {
    text-align: center;
}

h3 {
    font-family: 'Zilla Slab', serif;
    font-weight: 600;
}

.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--ink-2);
    margin: 0 auto;
    max-width: 36em;
    text-wrap: pretty;
}

/* ============== GRIDS ============== */
.grid {
    display: grid;
    gap: 24px;
}

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

.grid--props {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 36px;
}

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

.grid--stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid--two {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 42px;
}

.section-head h2 {
    margin: 12px 0 0;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

.section-head .link {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--red);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.section-head .link:hover {
    text-decoration: underline;
}

/* Mask cards */
.mask-card {
    text-align: left;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 1px 3px rgba(42, 32, 24, 0.06);
    text-decoration: none;
    color: inherit;
    display: block;
}

.mask-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(42, 32, 24, 0.14);
}

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

.mask-card__body {
    padding: 22px 22px 26px;
}

.mask-card__body h3 {
    font-size: 1.4rem;
    margin: 0 0 8px;
}

.mask-card__body p {
    font-size: 14.5px;
    color: var(--ink-2);
    margin: 0;
}

/* Value props */
.prop__num {
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    color: var(--red);
    font-size: 20px;
    margin-bottom: 18px;
}

.prop h3 {
    font-size: 1.35rem;
    margin: 0 0 10px;
}

.prop p {
    font-size: 15px;
    color: var(--ink-2);
    margin: 0;
}

/* Highlights (dark cards) */
.highlight {
    background: var(--dark-2);
    border: 1px solid rgba(242, 233, 214, 0.1);
    border-radius: 16px;
    padding: 24px 24px 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight__when {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    background: var(--gold-soft);
    border-radius: 8px;
    padding: 4px 9px;
    flex: none;
    white-space: nowrap;
}

.highlight h3 {
    font-size: 1.15rem;
    margin: 0 0 5px;
    color: #F2E9D6;
}

.highlight p {
    font-size: 14px;
    color: rgba(242, 233, 214, 0.66);
    margin: 0;
}

.center-head {
    text-align: center;
    margin-bottom: 48px;
}

/* Stats */
.stat {
    padding: 14px;
    text-align: center;
}

.stat__num {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 4.2rem);
    line-height: 1;
    color: var(--red);
}

.stat__num span {
    color: var(--gold);
}

.stat__label {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-top: 8px;
}

.stat--mid {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

/* ANR + Contact split */
.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 56px;
    align-items: start;
}

.anr-card {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 22px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(42, 32, 24, 0.06);
}

.anr-card img {
    height: 64px;
    width: auto;
    border-radius: 6px;
}

.anr-card span:first-child+span {
    display: flex;
    flex-direction: column;
}

/* Forms */
.form-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(26px, 4vw, 42px);
    box-shadow: 0 10px 30px rgba(42, 32, 24, 0.08);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-card--center {
    text-align: center;
    padding: clamp(32px, 5vw, 52px);
}

.form-section h2 {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 0 0 4px;
    letter-spacing: 0;
}

.form-section__hint {
    font-size: 14px;
    color: var(--ink-3);
    margin: 0 0 18px;
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.form-divider {
    height: 1px;
    background: var(--line);
}

label.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-2);
}

label.field input,
label.field select,
label.field textarea {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper-2);
    color: var(--ink);
    outline: none;
    transition: border-color .15s ease, background .15s ease;
}

label.field input:focus,
label.field select:focus,
label.field textarea:focus {
    border-color: var(--red);
    background: #fff;
}

label.field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236A5746' d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

label.field textarea {
    resize: vertical;
}

label.field input.short {
    max-width: 200px;
}

.toggle-group {
    display: inline-flex;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.toggle-group input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-group label {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    padding: 10px 22px;
    border-radius: 9px;
    cursor: pointer;
    background: transparent;
    color: var(--ink-2);
    transition: background .15s ease, color .15s ease;
}

.toggle-group input:checked+label {
    background: var(--red);
    color: #fff;
}

.toggle-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-2);
    margin-bottom: 8px;
}

.bus-detail {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 16px 18px;
    animation: nzFadeUp 0.35s ease-out;
}

.bus-detail .hint {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-3);
    margin-top: 2px;
    display: block;
}

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12.5px;
    color: var(--ink-2);
    line-height: 1.45;
    font-weight: 400;
}

.consent input {
    margin-top: 3px;
    accent-color: var(--red);
    width: 16px;
    height: 16px;
    flex: none;
}

.btn--submit {
    font-family: 'Zilla Slab', serif;
    font-weight: 600;
    font-size: 17px;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(178, 58, 46, 0.32);
    transition: filter .2s ease, transform .2s ease;
}

.btn--submit:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.required-hint {
    font-size: 12.5px;
    color: var(--ink-3);
    margin: 0;
    text-align: center;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.alert--err {
    background: #FBE5E2;
    border: 1px solid #E8B7B0;
    color: var(--red-deep);
}

.alert--err ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.success-mark {
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #EAF1E7;
    border: 1px solid #BBD2B0;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--green);
    margin-bottom: 20px;
}

/* Honeypot */
.hp {
    position: absolute;
    left: -9999px;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline__item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 28px;
}

.timeline__date {
    flex: none;
    width: 104px;
    text-align: right;
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--red);
    padding-top: 2px;
}

.timeline__rail {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.timeline__dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--paper-2);
    box-shadow: 0 0 0 1px var(--gold);
    margin-top: 4px;
}

.timeline__line {
    flex: 1;
    width: 2px;
    background: var(--line);
    margin: 4px 0;
}

.timeline__body h3 {
    font-size: 1.2rem;
    margin: 0 0 6px;
}

.timeline__body p {
    font-size: 15px;
    color: var(--ink-2);
    margin: 0;
}

/* Mask detail rows */
.mask-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

.mask-row__media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(42, 32, 24, 0.13);
}

.mask-row__media img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.mask-row h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    margin: 12px 0 16px;
    line-height: 1.08;
}

.mask-row p {
    font-size: 16px;
    color: var(--ink-2);
    margin: 0 0 16px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-2);
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 9999px;
    padding: 6px 14px;
}

.reverse>div:first-child {
    order: 2;
}

.reverse>div:last-child {
    order: 1;
}

/* Narrenruf cards */
.ruf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.ruf-card {
    border-radius: 20px;
    padding: 36px;
}

.ruf-card.dark {
    background: var(--dark);
    color: #F2E9D6;
}

.ruf-card.red {
    background: var(--red);
    color: #fff;
}

.ruf-card__eye {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.ruf-card.dark .ruf-card__eye {
    color: var(--gold-soft);
}

.ruf-card.red .ruf-card__eye {
    color: rgba(255, 255, 255, 0.75);
}

.ruf-card p {
    font-family: 'Zilla Slab', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.3rem, 2.6vw, 1.75rem);
    margin: 16px 0 0;
    line-height: 1.35;
}

.ruf-card.dark p {
    color: var(--gold-soft);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.3;
}

/* Events feature + calendar */
.event-feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(28px, 5vw, 52px);
    align-items: center;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    overflow: hidden;
}

.event-feature__media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 16px 36px rgba(42, 32, 24, 0.16);
}

.pill {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    border-radius: 9999px;
    padding: 5px 14px;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.event-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform .2s ease, box-shadow .2s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(42, 32, 24, 0.1);
}

.event-card__num {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--red);
}

.event-card__when {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
}

.event-card h3 {
    font-size: 1.2rem;
    margin: 4px 0 6px;
}

.event-card p {
    font-size: 14.5px;
    color: var(--ink-2);
    margin: 0;
}

.cta-banner {
    background: var(--red);
    color: #fff;
    border-radius: 24px;
    padding: clamp(32px, 5vw, 52px);
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    margin: 0 0 10px;
    color: #fff;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
}

/* ============== FOOTER ============== */
.site-footer {
    background: var(--dark);
    color: #F2E9D6;
}

.site-footer__main {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 72px) 24px clamp(28px, 4vw, 40px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.site-footer__col h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(242, 233, 214, 0.5);
    margin: 0 0 16px;
    font-weight: 700;
}

.site-footer__col .links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.site-footer__col .links a {
    background: none;
    border: none;
    color: #F2E9D6;
    font-family: 'Mulish';
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.site-footer__col .links a:hover {
    color: var(--gold-soft);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
}

.footer-brand .brand__seal {
    background: var(--dark-2);
}

.footer-bar {
    border-top: 1px solid rgba(242, 233, 214, 0.12);
}

.footer-bar__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
}

.footer-bar__inner a,
.footer-bar__inner span {
    font-size: 13px;
    color: rgba(242, 233, 214, 0.6);
    text-decoration: none;
}

.footer-bar__inner a:hover {
    color: var(--gold-soft);
}

/* Admin table */
.admin-wrap {
    max-width: 1600px;
    margin: 2rem auto;
    padding: 0 24px;
}

.admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

th,
td {
    padding: .6rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    font-size: 13.5px;
}

th {
    background: var(--paper-2);
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
}

/* ── Dropzone ─────────────────────────────────────────────── */
.dropzone {
    border: 2px dashed var(--line);
    background: var(--paper-2);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.dropzone--over,
.dropzone:hover {
    border-color: var(--red);
    background: #FBEAE8;
}

.dropzone__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--gold-soft);
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dropzone__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
}

.dropzone__hint {
    font-size: 12.5px;
    color: var(--ink-3);
    margin: 0;
}

/* ── PDF badge (after file chosen) ────────────────────────── */
.pdf-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
}

.pdf-badge__label {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--red);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex: none;
}

.pdf-badge__name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdf-badge__remove {
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    background: transparent;
    color: var(--ink-3);
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 9px;
    cursor: pointer;
    flex: none;
    transition: color .15s ease, border-color .15s ease;
}

.pdf-badge__remove:hover {
    color: var(--red);
    border-color: var(--red);
}