/*@import url("font.css");*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /*--red: #e8291c;*/
    --red: #CD0039;
    --red-dark: #c0180d;
    --black: #0d0d0d;
    --white: #ffffff;
    --gray: #f5f5f5;
    --text: #2a2a2a;
    --muted: #888;
    --bg: #f5f4f2;
    --card: #ffffff;
    --border: #e5e3df;
    --error: #dc2626;
    --success: #16a34a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}
body.anmeldung {
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

/* ── NAV ── */
.nav-logo-text span { color:var(--red); }
.nav-cta { background:var(--red); color:#fff; text-decoration:none; font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:15px; letter-spacing:1px; text-transform:uppercase; padding:10px 24px; border-radius:6px; transition:background .2s; }
.nav-cta:hover { background:var(--red-dark); }
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    height: 70px;
    background: rgba(13,13,13,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.nav-logo-badge {
    width: 36px; height: 36px;
    background: var(--red);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 14px;
    color: #fff;
    letter-spacing: -0.5px;
}
.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 20px;
    color: #fff; letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-logo-text span { color: var(--red); }
.nav-cta {
    background: var(--red);
    color: #fff; text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 15px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 10px 24px; border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
            linear-gradient(to bottom, rgba(128, 119, 119, 0.3) 0%, rgba(53,53,53,0.7) 40%, rgba(229, 224, 224, 0.33) 100%), url('../images/hero1.jpeg') center/cover no-repeat
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(232,41,28,0.15), transparent 60%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 50px 20px 80px;
   /* max-width: 900px;*/
}
.hero-eyebrow {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 6px 18px; border-radius: 4px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}
.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 7vw;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: fadeUp 0.8s ease 0.15s both;
}
.hero-title .line-red { color: var(--red); display: block; }
.hero-subtitle {
    font-size: 18px; font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.6; max-width: 560px; margin: 24px auto 0;
    animation: fadeUp 0.8s ease 0.3s both;
}
.hero-meta {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    margin: 40px 0;
    animation: fadeUp 0.8s ease 0.45s both;
}
.hero-meta-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-meta-item .label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.hero-meta-item .value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700; color: #fff;
}
.hero-meta-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--red);
    color: #fff; text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 20px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 18px 48px; border-radius: 8px;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(232,41,28,0.4);
    animation: fadeUp 0.8s ease 0.6s both;
}
.hero-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(232,41,28,0.5);
}
.hero-btn svg { width: 20px; height: 20px; }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; animation: pulse 2s infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.7) 60%, rgba(13,13,13,1) 100%);
    z-index: 1;
}
.hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
}

/* ── HEADER ── */

.page-header {
    background: var(--red);
    padding: 80px 40px 60px;
    text-align: center;
    position: relative; overflow: hidden;
}
.page-header.indexpage { padding:120px 40px 60px;}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(232,41,28,0.2), transparent 60%);
}
.page-header.indexpage::before { background:radial-gradient(ellipse at 80% 50%, rgba(232,41,28,0.1), transparent 60%) }
.page-header-inner { max-width:800px; margin:0 auto; position:relative; }
.page-header-back {
    position: absolute; top: 24px; left: 40px;
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
}
.page-header-back:hover { color: var(--gray); }
.page-header-label {
    font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--black); font-weight: 700; margin-bottom: 12px;
    position: relative;
}
.page-header.indexpage .page-header-label {color:var(--red);}
.page-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 6vw, 72px); font-weight: 900;
    text-transform: uppercase; letter-spacing: -1px;
    color: #fff; line-height: 1; position: relative;
}
.page-header.indexpage .page-header h1 {  font-size:clamp(48px,7vw,80px); }
.page-header p { margin-top:16px; font-size:15px; color:rgba(255,255,255,0.5); line-height:1.7; }

/* ── TOC ── */
.toc-bar { background:rgba(255,255,255,0.04); border-top:1px solid rgba(255,255,255,0.06); padding:20px 40px; }
.toc-inner { max-width:800px; margin:0 auto; }
.toc-inner p { font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:12px; font-weight:700; }
.toc-links { display:flex; flex-wrap:wrap; gap:8px; }
.toc-links a { font-size:13px; color:rgba(255,255,255,0.5); text-decoration:none; padding:5px 12px; border:1px solid rgba(255,255,255,0.1); border-radius:100px; transition:all .2s; }
.toc-links a:hover { border-color:var(--red); color:var(--red); }

/* ── CONTENT ── */
.content-area { background:var(--bg); padding:60px 40px 100px; }
.content-inner { max-width:800px; margin:0 auto; }

.info-card { background:#fff; border-radius:16px; padding:40px; margin-bottom:24px; box-shadow:0 2px 12px rgba(0,0,0,0.06); }
.info-card h2 { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:900; text-transform:uppercase; letter-spacing:1px; color:var(--text); margin-bottom:20px; padding-bottom:14px; border-bottom:2px solid var(--red); display:inline-block; }
.info-card h3 { font-family:'Barlow Condensed',sans-serif; font-size:17px; font-weight:800; text-transform:uppercase; letter-spacing:0.5px; color:var(--text); margin:24px 0 10px; }
.info-card p { font-size:15px; line-height:1.8; color:#555; margin-bottom:12px; }
.info-card p:last-child { margin-bottom:0; }
.info-card a { color:var(--red); text-decoration:none; }
.info-card a:hover { text-decoration:underline; }
.info-card ul { margin:10px 0 12px 20px; }
.info-card ul li { font-size:15px; line-height:1.8; color:#555; margin-bottom:4px; }

.rights-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:16px; }
.right-item { padding:16px 18px; background:#f8f8f8; border-radius:10px; border:1px solid var(--border); }
.right-item strong { display:block; font-size:13px; font-weight:700; color:var(--text); margin-bottom:4px; }
.right-item span { font-size:13px; color:var(--muted); line-height:1.5; }

.highlight-box { background:#fff8f7; border:1px solid rgba(232,41,28,0.2); border-radius:10px; padding:18px 20px; margin:16px 0; }
.highlight-box p { color:#333; font-size:14px; }

/* ── STATS BAND ── */
.stats-band {
    background: var(--red);
    padding: 20px 40px;
    display: flex; justify-content: center; gap: 60px;
    overflow: hidden;
}
.stat-item {
    display: flex; align-items: center; gap: 16px;
}
.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 900; color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,0.8); line-height: 1.4;
}

/* ── SECTION ── */
section { padding: 100px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 60px); font-weight: 900;
    text-transform: uppercase; line-height: 1; letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--red);
}

/* ── EVENT INFO ── */
.event-section { background: var(--white); }
.event-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
}
.event-text p {
    font-size: 16px; line-height: 1.8;
    color: rgba(0,0,0,0.7); margin-bottom: 20px;
}
.event-text ul {
    margin-left:15px;
}
.event-text ul li {
    margin-bottom:10px;
}
.event-details {
    display: flex; flex-direction: column; gap: 16px; margin: 32px 0;
}
.event-detail {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}
.event-detail-icon {
    width: 40px; height: 40px;
    background: rgba(232,41,28,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.event-detail-text strong { display: block; font-size: 15px; color: var(--black); }
.event-detail-text span { font-size: 13px; color: var(--muted); }
.event-visual {
    position: relative;
}
.event-visual-img {
    width: 100%; aspect-ratio: 4/5;
    object-fit: cover; border-radius: 16px;
    filter: brightness(0.9);
}
.event-visual-badge {
    position: absolute; top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: var(--red);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(232,41,28,0.5);
}
.event-visual-badge .b-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 900; color: #fff; line-height: 1;
}
.event-visual-badge .b-label {
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

/* ── GALLERY ── */
.gallery-section { background: #111; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 12px; margin-top: 48px;
}
.gallery-item {
    overflow: hidden; border-radius: 10px; cursor: pointer;
    position: relative;
}
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item video {width:450px;border-radius:10px;}
.g1 { grid-column: 1 / 5; grid-row: 1 / 2; }
.g2 { grid-column: 5 / 9; grid-row: 1 / 2; }
.g3 { grid-column: 9 / 13; grid-row: 1 / 3; }
.g4 { grid-column: 1 / 3; grid-row: 2 / 3; }
.g5 { grid-column: 3 / 6; grid-row: 2 / 3; }
.g6 { grid-column: 6 / 9; grid-row: 2 / 3; }

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-band::before {
    content: 'POWERCAMP';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11rem; font-weight: 900; color: rgba(255,255,255,0.1);
    white-space: nowrap; pointer-events: none;
}
.cta-band h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px; font-weight: 900; text-transform: uppercase;
    letter-spacing: -1px; margin-bottom: 16px; position: relative;
}
.cta-band p {
    font-size: 18px; color: rgba(255,255,255,0.85); max-width: 500px;
    margin: 0 auto 40px; line-height: 1.6; position: relative;
}
.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: var(--red);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 20px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 18px 48px; border-radius: 8px;
    transition: all 0.25s;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* ── FOOTER ── */
footer {
    background: #090909;
    padding: 48px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-brand-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 900; text-transform: uppercase;
    color: rgba(255,255,255,0.3); letter-spacing: 2px;
}
.footer-brand span { color: var(--red); }
.footer-links {
    display: flex; gap: 24px;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--red); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ── LAYOUT ── */
.form-layout {
    max-width: 780px; margin: 0 auto;
    padding: 48px 20px 80px;
}

/* ── SUCCESS ── */
.success-card {
    background: var(--card);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.success-icon {
    width: 72px; height: 72px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}
.success-card h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 900; text-transform: uppercase;
    color: var(--text); margin-bottom: 12px;
}
.success-card p {
    font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 440px; margin: 0 auto;
}

/* ── FORM CARD ── */
.form-card {
    background: var(--card);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}
.form-section {
    padding: 32px 40px;
    border-bottom: 1px solid var(--border);
}
.form-section:last-child { border-bottom: none; }
.form-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--black); margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
}
.form-section-title::before {
    content: '';
    display: block; width: 4px; height: 20px;
    background: var(--red); border-radius: 2px; flex-shrink: 0;
}

.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 16px;
}
.form-row.cols-3 { grid-template-columns: 2fr 1fr 2fr; }
.form-row.single { grid-template-columns: 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: #666;
}
.field label .req { color: var(--red); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"] {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px; color: var(--text);
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
}
.field input:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232,41,28,0.08);
}
.field input.error { border-color: var(--error); background: #fff5f5; }
.error-msg {
    font-size: 12px; color: var(--error); font-weight: 500;
}

/* Radio Zimmer */
.zimmer-options {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-bottom: 16px;
}
.zimmer-option {
    position: relative; cursor: pointer;
}
.zimmer-option input[type="radio"] {
    position: absolute; opacity: 0; width: 0;
}
.zimmer-option-inner {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: #fafafa;
    transition: all 0.2s;
    cursor: pointer;
}
.zimmer-option input:checked + .zimmer-option-inner {
    border-color: var(--red);
    background: #fff8f7;
    box-shadow: 0 0 0 3px rgba(232,41,28,0.08);
}
.zimmer-icon {
    font-size: 28px; line-height: 1;
}
.zimmer-text strong {
    display: block; font-size: 15px; font-weight: 700; color: var(--text);
}
.zimmer-text span {
    font-size: 12px; color: var(--muted);
}

/* Partner field (shown/hidden) */
#partner-field {
    display: none;
    animation: fadeIn 0.25s ease;
    margin-bottom: 16px;
}
#partner-field.visible { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Datenschutz */
.datenschutz-box {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px;
    background: #fafafa;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.datenschutz-box.error { border-color: var(--error); background: #fff5f5; }
.datenschutz-box:has(input:checked) { border-color: var(--red); background: #fff8f7; }
.datenschutz-box input[type="checkbox"] {
    width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
    accent-color: var(--red); cursor: pointer;
}
.datenschutz-box label {
    font-size: 14px; color: #555; line-height: 1.6; cursor: pointer;
}
.datenschutz-box label a { color: var(--red); text-decoration: none; }
.datenschutz-box label a:hover { text-decoration: underline; }

/* Submit */
.submit-wrap { padding: 32px 40px; background: #fafafa; }
.submit-btn {
    width: 100%;
    background: var(--red); color: #fff;
    border: none; cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 20px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 18px 40px; border-radius: 10px;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(232,41,28,0.3);
}
.submit-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(232,41,28,0.4);
}
.submit-note {
    text-align: center; margin-top: 14px;
    font-size: 12px; color: var(--muted); line-height: 1.5;
}
.submit-note a { color: var(--red); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 400px) {
    .hero-content {max-width: 350px;}
    .hero-title {font-size:12vw;}
    .nav-logo-text{font-size:16px;}
    .hero-meta {gap: 12px;}
    .hero-meta-item .value {font-size:16px;}
    .gallery-item video {width:200px;}
    .cta-band::before{font-size:50px;}
    .cta-btn{font-size: 16px;}
}
@media (max-width: 600px) {
    .page-header { padding: 70px 20px 40px; }
    .page-header-back { left: 20px; }
    .hero-title {font-size:12vw;}
    .form-section { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-row.cols-3 { grid-template-columns: 1fr; }
    .zimmer-options { grid-template-columns: 1fr; }
    .submit-wrap { padding: 24px 20px; }
}
@media (max-width: 768px) {
    nav { padding: 0 20px; }
    section { padding: 60px 20px; }
    .stats-band { gap: 24px; flex-wrap: wrap; padding: 20px; }
    .hero-title {font-size:12vw;}
    .event-grid { grid-template-columns: 1fr; gap: 40px; }
    .event-visual { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: auto; grid-row: auto; height: 180px; }
    .page-header { padding:100px 20px 40px; }
    .toc-bar { padding:20px; }
    .content-area { padding:40px 20px 60px; }
    .info-card { padding:24px 20px; }
    .rights-grid { grid-template-columns:1fr; }
    .footer-inner { flex-direction:column; gap:20px; text-align:center; }
    .footer-links { flex-wrap:wrap; justify-content:center; }
}