:root {
    --background: #080808;
    --background-soft: #101010;
    --surface: #151515;
    --surface-light: #1c1c1c;
    --orange: #ff7a00;
    --orange-light: #ff9d3c;
    --white: #ffffff;
    --text: #f4f4f4;
    --muted: #b7b7b7;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.07);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 36px;
    --header-height: 86px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

ul {
    list-style: none;
}

section {
    position: relative;
    padding: 120px 0;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-heading h2,
.camping-content h2,
.kids-content h2,
.location-content h2,
.contact-content h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.section-heading > p:last-child {
    max-width: 640px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.lead {
    color: var(--muted);
    font-size: 1.12rem;
}

.btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px 30px;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.btn::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    content: "";
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.btn:hover {
    background: var(--orange-light);
    box-shadow: 0 18px 40px rgba(255, 122, 0, 0.3);
    transform: translateY(-3px);
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--background);
    box-shadow: none;
}

.btn-small {
    min-height: 48px;
    padding: 12px 24px;
}

.loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--background);
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: grid;
    justify-items: center;
    gap: 18px;
}

.loader-logo {
    font-family: "Oswald", sans-serif;
    color: var(--orange);
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.loader-line {
    position: relative;
    width: 160px;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.loader-line::after {
    position: absolute;
    inset: 0;
    width: 45%;
    border-radius: inherit;
    background: var(--orange);
    content: "";
    animation: loading-line 1.1s ease-in-out infinite;
}

@keyframes loading-line {
    from { transform: translateX(-110%); }
    to { transform: translateX(330%); }
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: rgba(8, 8, 8, 0.25);
    backdrop-filter: blur(10px);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.scrolled {
    border-color: var(--border);
    background: rgba(8, 8, 8, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
}

.nav {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    font-family: "Oswald", sans-serif;
    color: var(--orange);
    font-size: 2rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.08em;
}

.logo span {
    margin-top: 7px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 0.57rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    position: relative;
    display: block;
    padding: 10px 0;
    color: #e7e7e7;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--orange);
}

nav a:hover::after,
nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav .nav-cta {
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
}

nav .nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--glass);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--white);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    display: grid;
    min-height: 100svh;
    place-items: center;
    overflow: hidden;
    padding: calc(var(--header-height) + 70px) 0 100px;
    text-align: center;
}

.hero-media,
.hero-overlay,
.hero-glow {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -4;
    background: url("../images/hero.jpg") center / cover no-repeat;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    z-index: -3;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(8, 8, 8, 0.95)),
        linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent, rgba(0, 0, 0, 0.25));
}

.hero-glow {
    z-index: -2;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--orange);
    filter: blur(180px);
    opacity: 0.18;
}

.hero-glow-one {
    top: -120px;
    right: -140px;
    left: auto;
}

.hero-glow-two {
    top: auto;
    right: auto;
    bottom: -160px;
    left: -160px;
}

.hero-content {
    max-width: 980px;
}

.hero h1 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(4.5rem, 9.5vw, 9rem);
    font-weight: 700;
    line-height: 0.84;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.hero h1 span {
    display: block;
    margin-top: 18px;
    color: var(--orange);
    font-size: 0.72em;
}

.hero-date {
    margin-top: 35px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 500;
}

.hero-location {
    margin-top: 8px;
    color: #dedede;
    font-weight: 600;
}

.hero-text {
    max-width: 720px;
    margin: 25px auto 0;
    color: #c8c8c8;
    font-size: 1.08rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.countdown {
    display: grid;
    max-width: 620px;
    margin: 48px auto 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.time-box {
    min-width: 0;
    padding: 20px 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.time-box span {
    display: block;
    font-family: "Oswald", sans-serif;
    color: var(--orange);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1;
}

.time-box small {
    display: block;
    margin-top: 10px;
    color: #d2d2d2;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    display: grid;
    width: 34px;
    height: 52px;
    place-items: start center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-indicator span {
    width: 5px;
    height: 10px;
    margin-top: 9px;
    border-radius: 999px;
    background: var(--orange);
}

.event-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 0 50%, rgba(255, 122, 0, 0.12), transparent 28%),
        var(--background);
}

.event-grid,
.visitor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card,
.visitor-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.feature-card {
    min-height: 320px;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(255, 122, 0, 0.65);
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 48px;
    font-size: 2.6rem;
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(255, 255, 255, 0.16);
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
}

.feature-card h3,
.visitor-card h3 {
    margin-bottom: 14px;
    font-family: "Oswald", sans-serif;
    font-size: 1.9rem;
    text-transform: uppercase;
}

.feature-card p:last-child,
.visitor-card p {
    color: var(--muted);
}

.event-banner,
.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding: 38px 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(120deg, rgba(255, 122, 0, 0.16), rgba(255, 255, 255, 0.04));
}

.event-banner h3,
.cta-card h3 {
    margin-bottom: 8px;
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.event-banner p:last-child,
.cta-card p:last-child {
    color: var(--muted);
}

.schedule-section,
.sponsor-section,
.contact-section {
    background: var(--background-soft);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.schedule-day {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.schedule-day-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 38px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(145deg, rgba(255, 122, 0, 0.18), rgba(255, 255, 255, 0.025));
}

.schedule-day-header h3 {
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
}

.schedule-day-header > span {
    color: var(--muted);
    font-weight: 600;
}

.schedule-list {
    padding: 14px 38px 30px;
}

.schedule-entry {
    display: grid;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 22px;
}

.schedule-entry:last-child {
    border-bottom: 0;
}

.schedule-entry time {
    color: var(--orange);
    font-family: "Oswald", sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1;
}

.schedule-entry p {
    color: var(--muted);
    font-size: 0.92rem;
}

.schedule-highlight {
    position: relative;
}

.schedule-highlight::before {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: -38px;
    width: 4px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
}

.camping-layout,
.location-layout,
.contact-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
}

.camping-image {
    position: relative;
}

.camping-image img {
    width: 100%;
    min-height: 580px;
    border-radius: var(--radius-large);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    padding: 22px 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(18px);
}

.image-badge strong {
    color: var(--orange);
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
}

.image-badge span {
    color: var(--muted);
    font-size: 0.78rem;
}

.camping-content .lead {
    margin: 28px 0 36px;
}

.info-list {
    display: grid;
    gap: 18px;
    margin-bottom: 38px;
}

.info-item {
    display: grid;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--glass);
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
}

.info-item > span {
    color: var(--orange);
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
}

.info-item p {
    color: var(--muted);
    font-size: 0.92rem;
}

.kids-section {
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 122, 0, 0.14), transparent 25%),
        var(--background-soft);
}

.kids-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--surface);
    box-shadow: var(--shadow);
    grid-template-columns: 1fr 0.9fr;
}

.kids-content {
    padding: clamp(38px, 6vw, 76px);
}

.kids-content > p:not(.eyebrow) {
    margin: 26px 0 30px;
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 13px;
    margin-bottom: 36px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #dddddd;
}

.check-list li::before {
    position: absolute;
    left: 0;
    color: var(--orange);
    content: "✓";
    font-weight: 800;
}

.kids-image img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.visitor-card > span {
    display: block;
    margin-bottom: 46px;
    color: var(--orange);
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
}

.sponsor-banner {
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.sponsor-banner img {
    width: 100%;
    height: auto;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sponsor-logo {
    display: grid;
    min-height: 150px;
    place-items: center;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
}

.sponsor-name strong {
    font-family: "Oswald", sans-serif;
    font-size: 1.45rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.sponsor-name span {
    margin-top: 9px;
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.partner-callout {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
    color: var(--muted);
    text-align: center;
}

.partner-callout a {
    color: var(--orange);
    font-weight: 700;
}

.location-content .lead {
    margin: 26px 0 30px;
}

.address-card {
    max-width: 460px;
    margin-bottom: 30px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--glass);
}

.address-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.address-card strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.address-card p {
    color: var(--muted);
}

.map-card {
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background:
        linear-gradient(rgba(8, 8, 8, 0.15), rgba(8, 8, 8, 0.55)),
        repeating-linear-gradient(45deg, #202020 0 1px, transparent 1px 60px),
        repeating-linear-gradient(-45deg, #202020 0 1px, transparent 1px 60px),
        #131313;
    box-shadow: var(--shadow);
}

.map-placeholder {
    display: grid;
    min-height: 520px;
    place-content: center;
    padding: 30px;
    text-align: center;
}

.map-pin {
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    border: 15px solid rgba(255, 122, 0, 0.15);
    border-radius: 50%;
    background: var(--orange);
    background-clip: padding-box;
    color: transparent;
    box-shadow: 0 0 60px rgba(255, 122, 0, 0.35);
}

.map-placeholder p {
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.map-placeholder strong {
    margin-top: 6px;
    font-family: "Oswald", sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.map-link-text {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-layout {
    align-items: start;
}

.contact-content > p:not(.eyebrow) {
    max-width: 540px;
    margin-top: 26px;
    color: var(--muted);
}

.contact-details {
    display: grid;
    gap: 14px;
    margin-top: 40px;
}

.contact-details > div {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-details span {
    display: block;
    margin-bottom: 5px;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-details strong {
    overflow-wrap: anywhere;
}

.contact-form {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--surface);
    box-shadow: var(--shadow);
}

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

.form-group {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.84rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 13px;
    outline: none;
    background: #0e0e0e;
    color: var(--white);
}

.form-group input,
.form-group select {
    min-height: 52px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 150px;
    padding: 15px 16px;
    resize: vertical;
}

.privacy-check {
    display: grid;
    align-items: start;
    margin: 4px 0 24px;
    color: var(--muted);
    font-size: 0.8rem;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
}

.privacy-check a {
    color: var(--orange);
    text-decoration: underline;
}

.privacy-check input {
    margin-top: 4px;
    accent-color: var(--orange);
}

.form-submit {
    width: 100%;
}

.form-status {
    min-height: 24px;
    margin-top: 16px;
    color: var(--orange);
    font-size: 0.86rem;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.site-footer {
    padding: 75px 0 25px;
    border-top: 1px solid var(--border);
    background: #050505;
}

.footer-grid {
    display: grid;
    padding-bottom: 55px;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
}

.footer-logo {
    font-family: "Oswald", sans-serif;
    color: var(--orange);
    font-size: 2.8rem;
    font-weight: 700;
}

.footer-grid p,
.footer-grid ul {
    color: var(--muted);
}

.footer-grid h3 {
    margin-bottom: 18px;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-grid ul {
    display: grid;
    gap: 9px;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: #7d7d7d;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: var(--orange);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.legal-page {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 70px);
}

.legal-header {
    padding: 60px 0 35px;
}

.legal-header h1 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    text-transform: uppercase;
}

.legal-content {
    max-width: 900px;
    padding-bottom: 100px;
}

.legal-content h2 {
    margin: 46px 0 14px;
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.legal-content p,
.legal-content li {
    color: #d0d0d0;
}

.legal-content p + p {
    margin-top: 14px;
}

.legal-content ul {
    display: grid;
    gap: 8px;
    margin: 15px 0;
    padding-left: 22px;
    list-style: disc;
}

.legal-content a {
    color: var(--orange);
    text-decoration: underline;
}

.legal-box {
    margin: 28px 0;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--surface);
}

.legal-back {
    margin-top: 35px;
    text-decoration: none !important;
}

@media (max-width: 1100px) {
    .event-grid,
    .visitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .camping-layout,
    .location-layout,
    .contact-layout {
        gap: 48px;
    }

    nav ul {
        gap: 20px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 76px;
    }

    section {
        padding: 90px 0;
    }

    .container {
        width: min(100% - 32px, 720px);
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    nav {
        position: absolute;
        top: calc(var(--header-height) + 8px);
        right: 16px;
        left: 16px;
        max-height: calc(100svh - var(--header-height) - 24px);
        overflow: auto;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(10, 10, 10, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition:
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    nav ul {
        display: grid;
        gap: 0;
        padding: 12px;
    }

    nav li {
        border-bottom: 1px solid var(--border);
    }

    nav li:last-child {
        border-bottom: 0;
    }

    nav a {
        padding: 15px 13px;
        font-size: 1rem;
    }

    nav a::after {
        display: none;
    }

    nav .nav-cta {
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 70px);
        padding-bottom: 90px;
    }

    .event-banner,
    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-grid,
    .camping-layout,
    .location-layout,
    .contact-layout,
    .kids-card {
        grid-template-columns: 1fr;
    }

    .camping-image {
        order: 2;
    }

    .camping-content {
        order: 1;
    }

    .camping-image img {
        min-height: 420px;
    }

    .kids-image img {
        min-height: 380px;
    }

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

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

@media (max-width: 580px) {
    section {
        padding: 68px 0;
    }

    .container {
        width: calc(100% - 24px);
    }

    .nav {
        gap: 12px;
    }

    .logo {
        font-size: 1.65rem;
    }

    .logo span {
        font-size: 0.5rem;
    }

    .legal-nav .btn {
        min-height: 44px;
        padding: 10px 15px;
        font-size: 0.78rem;
    }

    .hero {
        padding-top: calc(var(--header-height) + 42px);
        padding-bottom: 64px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(2.85rem, 15vw, 4.9rem);
        line-height: 0.9;
        white-space: nowrap;
        letter-spacing: -0.035em;
    }

    .hero h1 span {
        margin-top: 10px;
    }

    .hero-date {
        margin-top: 24px;
        font-size: 1.45rem;
    }

    .hero-location {
        font-size: 0.92rem;
    }

    .hero-text {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-top: 32px;
    }

    .time-box {
        min-width: 0;
        padding: 15px 6px;
    }

    .time-box span {
        font-size: 2rem;
    }

    .time-box small {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .scroll-indicator {
        display: none;
    }

    .section-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .section-heading > p:last-child {
        margin-left: 0;
    }

    .section-heading h2,
    .camping-content h2,
    .kids-content h2,
    .location-content h2,
    .contact-content h2 {
        font-size: clamp(2.25rem, 13vw, 3.4rem);
    }

    .event-grid,
    .visitor-grid,
    .sponsor-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 0;
        padding: 26px;
    }

    .feature-icon {
        margin-bottom: 30px;
    }

    .event-banner,
    .cta-card {
        padding: 26px 22px;
    }

    .schedule-day {
        border-radius: 24px;
    }

    .schedule-day-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 22px;
    }

    .schedule-day-header h3 {
        font-size: 2.35rem;
    }

    .schedule-list {
        padding: 8px 22px 22px;
    }

    .schedule-entry {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
        padding: 22px 0;
    }

    .schedule-entry time {
        font-size: 1.3rem;
    }

    .schedule-highlight::before {
        left: -22px;
    }

    .camping-image img {
        min-height: 300px;
    }

    .image-badge {
        right: 12px;
        bottom: 12px;
        left: 12px;
        padding: 16px 18px;
    }

    .info-item {
        padding: 18px;
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .kids-content {
        padding: 30px 22px;
    }

    .kids-image img {
        min-height: 280px;
    }

    .sponsor-banner {
        border-radius: 20px;
    }

    .sponsor-logo {
        min-height: 120px;
        padding: 20px;
    }

    .sponsor-name strong {
        font-size: 1.2rem;
    }

    .partner-callout {
        align-items: flex-start;
        flex-direction: column;
        text-align: left;
    }

    .map-card,
    .map-placeholder {
        min-height: 340px;
    }

    .map-placeholder strong {
        font-size: 1.65rem;
    }

    .contact-form {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select {
        min-height: 54px;
        font-size: 16px;
    }

    .form-group textarea {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-page {
        padding-top: calc(var(--header-height) + 35px);
    }

    .legal-header {
        padding: 35px 0 20px;
    }

    .legal-content {
        padding-bottom: 70px;
    }

    .legal-content h2 {
        font-size: 1.65rem;
    }

    .legal-box {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* =========================
   FAHRERRESERVIERUNG
========================= */


.reservation-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(255, 122, 0, 0.16), transparent 30%),
        var(--background);
}

.reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 64px;
    align-items: start;
}

.reservation-intro {
    position: sticky;
    top: calc(var(--header-height) + 35px);
}

.reservation-intro h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1;
    text-transform: uppercase;
}

.reservation-intro > p:not(.eyebrow) {
    margin-top: 24px;
    color: var(--muted);
    font-size: 1.05rem;
}

.price-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.price-card {
    position: relative;
    display: flex;
    min-height: 174px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.price-card::before {
    position: absolute;
    top: -55px;
    right: -55px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--orange);
    content: "";
    filter: blur(55px);
    opacity: 0.14;
}

.price-day {
    position: relative;
    color: #efefef;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price-card strong {
    position: relative;
    display: block;
    margin: 8px 0 5px;
    color: var(--orange);
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
    white-space: nowrap;
}

.price-card small {
    position: relative;
    color: var(--muted);
    font-size: 0.78rem;
}

.price-card-featured {
    border-color: rgba(255, 122, 0, 0.65);
    background:
        linear-gradient(145deg, rgba(255, 122, 0, 0.18), rgba(255, 255, 255, 0.035));
}

.price-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.price-card-camping strong {
    color: #78e8ad;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.reservation-form {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.choice-group {
    display: grid;
    min-width: 0;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.choice-label {
    font-size: 0.84rem;
    font-weight: 600;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

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

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

.choice-card-content {
    display: flex;
    min-height: 126px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #0e0e0e;
    text-align: center;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.choice-card-content strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 1.18rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.choice-card-content span {
    display: block;
    margin-top: 8px;
    color: var(--orange);
    font-size: 1.15rem;
    font-weight: 800;
}

.choice-card input:checked + .choice-card-content {
    border-color: var(--orange);
    background: rgba(255, 122, 0, 0.13);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.11);
    transform: translateY(-3px);
}

.choice-card input:focus-visible + .choice-card-content {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.camping-option {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    margin: 8px 0 24px;
    padding: 19px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #0e0e0e;
    cursor: pointer;
}

.camping-option:has(input:checked) {
    border-color: rgba(120, 232, 173, 0.65);
    background: rgba(120, 232, 173, 0.07);
}

.camping-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}

.camping-option strong {
    display: block;
}

.camping-option small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
}

.free-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(120, 232, 173, 0.12);
    color: #78e8ad;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.reservation-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 24px 0;
    padding: 24px;
    border: 1px solid rgba(255, 122, 0, 0.44);
    border-radius: 20px;
    background:
        linear-gradient(120deg, rgba(255, 122, 0, 0.18), rgba(255, 255, 255, 0.035));
}

.reservation-summary span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reservation-summary p {
    margin-top: 5px;
    font-weight: 700;
}

.reservation-summary strong {
    display: block;
    color: var(--orange);
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    white-space: nowrap;
}

.reservation-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
}

.main-sponsor {
    margin-bottom: 26px;
    padding: 38px 42px;
    border: 1px solid rgba(255, 122, 0, 0.55);
    border-radius: var(--radius-large);
    background: linear-gradient(120deg, rgba(255, 122, 0, 0.22), rgba(255, 255, 255, 0.04));
    box-shadow: 0 25px 70px rgba(255, 122, 0, 0.12);
}

.main-sponsor-label {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.main-sponsor-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
    align-items: end;
}

.main-sponsor-content strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    text-transform: uppercase;
}

.main-sponsor-content span {
    display: block;
    margin-top: 9px;
    color: var(--orange);
    font-weight: 700;
}

.main-sponsor-content p {
    color: var(--muted);
}

.visitor-heading {
    white-space: nowrap;
    overflow-wrap: normal !important;
    word-break: normal;
    font-size: clamp(2rem, 5.1vw, 4.1rem) !important;
}

@media (max-width: 860px) {
    .reservation-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .reservation-intro {
        position: static;
    }

    .main-sponsor-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .reservation-form {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .reservation-intro h2 {
        font-size: clamp(2.3rem, 13vw, 3.5rem);
    }

    .price-overview {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: 142px;
    }

    .choice-grid {
        grid-template-columns: 1fr;
    }

    .choice-card-content {
        min-height: 92px;
        align-items: flex-start;
        padding: 18px 20px;
        text-align: left;
    }

    .camping-option {
        grid-template-columns: 24px minmax(0, 1fr);
    }

    .free-badge {
        grid-column: 2;
        justify-self: start;
    }

    .reservation-summary {
        grid-template-columns: 1fr;
    }

    .main-sponsor {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .main-sponsor-content strong {
        font-size: 2.7rem;
    }

    .visitor-heading {
        font-size: clamp(1.65rem, 8.6vw, 2.2rem) !important;
        letter-spacing: -0.025em;
    }
}

/* Sponsorenbereich */
.main-sponsor {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid rgba(255, 122, 0, 0.5);
    border-radius: var(--radius-large);
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 122, 0, 0.16), transparent 52%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.35),
        0 0 55px rgba(255, 122, 0, 0.08);
    text-align: center;
}

.main-sponsor-label {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-sponsor-logo-wrap {
    display: grid;
    min-height: 220px;
    place-items: center;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
}

.main-sponsor-logo {
    width: min(100%, 760px);
    max-height: 240px;
    object-fit: contain;
}

.main-sponsor-thanks {
    max-width: 780px;
    margin: 26px auto 0;
    color: var(--muted);
}

.sponsor-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.sponsor-logo-card {
    display: grid;
    min-height: 210px;
    place-items: center;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.sponsor-logo-card:hover {
    border-color: rgba(255, 122, 0, 0.75);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.28),
        0 0 0 3px rgba(255, 122, 0, 0.08);
    transform: translateY(-6px);
}

.sponsor-logo-card img {
    width: 100%;
    max-width: 320px;
    max-height: 145px;
    object-fit: contain;
}

@media (max-width: 860px) {
    .sponsor-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-sponsor-logo-wrap {
        min-height: 180px;
    }
}

@media (max-width: 580px) {
    .main-sponsor {
        padding: 24px 18px;
    }

    .main-sponsor-logo-wrap {
        min-height: 150px;
        padding: 18px;
        border-radius: 20px;
    }

    .main-sponsor-logo {
        max-height: 170px;
    }

    .sponsor-logo-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-logo-card {
        min-height: 170px;
        padding: 22px;
    }

    .sponsor-logo-card img {
        max-height: 120px;
    }
}

/* Performance-Optimierungen */
.event-section,
.schedule-section,
.reservation-section,
.camping-section,
.kids-section,
.info-section,
.sponsor-section,
.location-section,
.contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.sponsor-logo-card img,
.main-sponsor-logo {
    height: auto;
}
