:root {
    --color-bg: #ebebeb;
    --color-surface: rgba(255, 255, 255, 0.9);
    --color-surface-strong: #ffffff;
    --color-muted: #dfe3e8;
    --color-text: #07070a;
    --color-text-soft: #24272b;
    --color-line: rgba(7, 7, 10, 0.1);
    --color-accent: #3e8abc;
    --color-accent-dark: #2e6f99;
    --color-cta: #ffbf00;
    --color-cta-dark: #e0a700;
    --color-success: #1f7a4c;
    --shadow-soft: 0 20px 50px rgba(7, 7, 10, 0.08);
    --shadow-card: 0 16px 40px rgba(7, 7, 10, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
    --header-height: 88px;
    --transition: 220ms ease;
}

/* Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(62, 138, 188, 0.1), transparent 28%),
        linear-gradient(180deg, #f1f1f1 0%, var(--color-bg) 100%);
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(62, 138, 188, 0.35);
    outline-offset: 3px;
}

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

.section {
    padding: 6.5rem 0;
}

section[id],
footer[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-light {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(8px);
}

.section-muted {
    background: linear-gradient(180deg, rgba(223, 227, 232, 0.8), rgba(255, 255, 255, 0.82));
}

.eyebrow {
    margin: 0 0 0.9rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-cta);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-heading h2 {
    margin: 0 0 1rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
}

.section-heading p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

.section-heading p + p {
    margin-top: 3rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition);
}

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

.button-primary {
    background: var(--color-cta);
    color: var(--color-text);
    box-shadow: 0 14px 30px rgba(255, 191, 0, 0.28);
}

.button-primary:hover {
    background: var(--color-cta-dark);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 50;
    padding: 1rem 0;
    transition:
        background-color var(--transition),
        box-shadow var(--transition),
        backdrop-filter var(--transition),
        padding var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 35px rgba(7, 7, 10, 0.08);
    backdrop-filter: blur(16px);
    padding: 0.65rem 0;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo img {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
}

.footer-logo img {
    height: 54px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a:not(.nav-cta) {
    position: relative;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    transition: color var(--transition);
}

.site-header.is-scrolled .site-nav a:not(.nav-cta),
.site-header.is-scrolled .logo {
    color: var(--color-text);
}

.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.site-header.is-scrolled .menu-toggle {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(7, 7, 10, 0.1);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.site-header.is-scrolled .menu-toggle span {
    background: var(--color-text);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: clip;
    margin-top: 0;
}

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

.hero-media {
    background: url("images/TreningTorKrzywaMain.jpg") center center / cover no-repeat;
    transform: scale(1.04);
    will-change: transform;
}

.hero-overlay {
    background: rgba(7, 7, 10, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: center;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 0.5rem);
    padding-bottom: 3.5rem;
}

.hero-copy {
    max-width: 680px;
    margin: auto;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero-text {
    margin: 1.5rem 0 0;
    max-width: 610px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-schedule {
    align-self: center;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

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

.schedule-head h2 {
    margin: 0;
    font-size: 1.45rem;
}

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

.term-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 78px;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-align: left;
    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

.term-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.term-card:hover,
.term-card.is-active {
    transform: translateY(-3px);
    background: rgba(62, 138, 188, 0.26);
    border-color: rgba(255, 255, 255, 0.28);
}

.term-card strong {
    font-size: 0.96rem;
    white-space: nowrap;
}

.term-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.term-meta {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.84);
}

.term-card-sold-out {
    cursor: not-allowed;
    opacity: 0.62;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.term-card-sold-out:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

/* About */
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.35fr) minmax(420px, 0.65fr);
    gap: 3rem;
    align-items: start;
}

.about-heading-full {
    max-width: none;
    margin-bottom: 2rem;
}

.about-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    gap: 2rem;
}

.about-main .section-heading {
    margin-bottom: 0;
}

.about-copy-block p:first-child {
    margin-top: 0;
}

.about-copy-block p,
.about-side-copy p,
.about-copy p {
    line-height: 1.78;
}

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

.benefits-grid-column {
    grid-template-columns: 1fr;
}

.about-benefits {
    align-content: start;
}

.about-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: -0.5rem 0 1.8rem;
}

.about-highlight span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(62, 138, 188, 0.16);
    border-radius: 999px;
    background: rgba(62, 138, 188, 0.08);
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 700;
}

.benefit-card {
    padding: 1.8rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(7, 7, 10, 0.1);
    border-color: rgba(62, 138, 188, 0.28);
}

.benefit-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-weight: 800;
    letter-spacing: 0.1em;
    min-width: 52px;
    min-height: 52px;
    padding: 0.35rem;
    border: 1px solid rgba(62, 138, 188, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(62, 138, 188, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 12px 24px rgba(7, 7, 10, 0.06);
    font-size: 0.95rem;
}

.benefit-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.25rem;
}

.about-intro-secondary {
    max-width: 720px;
}

.about-side-copy {
    max-width: 720px;
    padding-top: 0.25rem;
}

.about-side-copy p {
    margin: 0;
    color: var(--color-text-soft);
}

.text-highlight {
    font-weight: 700;
}

.text-highlight-main {
    color: var(--color-accent-dark);
}

.text-highlight-cta {
    color: #9a7400;
}

.benefit-card p,
.about-copy p {
    margin: 0;
    color: var(--color-text-soft);
}

.about-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-copy-full {
    grid-template-columns: 1fr;
}

/* Partners */
.partners-strip {
    position: relative;
    padding: 1.25rem 0;
    background: rgb(7, 7, 10);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.partners-strip__inner {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.partners-group {
    display: flex;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    padding-right: clamp(2.5rem, 5vw, 5rem);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(220px, 22vw, 340px);
    height: 92px;
    padding: 0;
    flex: 0 0 auto;
}

.partner-logo img {
    width: auto;
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}

.partner-logo-scale-up {
    transform: scale(1);
    transform-origin: center;
}

/* Tracks */
.tracks-heading-full {
    max-width: none;
    margin-bottom: 3.4rem;
}

.track-list {
    display: grid;
    gap: 4.25rem;
}

.track-entry {
    display: grid;
    gap: 1.25rem;
    padding: 1.4rem 0;
}

.track-entry + .track-entry {
    position: relative;
}

.track-entry + .track-entry::before {
    content: "";
    position: absolute;
    top: -2.25rem;
    left: 2%;
    width: 96%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(62, 138, 188, 0),
        rgba(62, 138, 188, 0.22),
        rgba(62, 138, 188, 0)
    );
}

.track-block {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.8rem;
    align-items: center;
}

.track-entry-alt .track-block-primary,
.track-entry-alt .track-block-secondary {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.track-entry-alt .track-block > :first-child {
    order: 2;
}

.track-entry-alt .track-block > :last-child {
    order: 1;
}

.track-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-card);
}

.track-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(var(--parallax-offset, 0px)) scale(1.08);
    transition: transform 120ms linear;
}

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

.track-location-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(62, 138, 188, 0.2);
    background: rgba(62, 138, 188, 0.08);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.track-copy h3 {
    margin: 0;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    font-family: "Space Grotesk", sans-serif;
}

.track-copy p {
    margin: 0;
    color: var(--color-text-soft);
    line-height: 1.75;
}

.track-lead {
    padding-left: 0.85rem;
    border-left: 3px solid rgba(255, 191, 0, 0.75);
    color: var(--color-text);
    font-weight: 600;
}

.track-features {
    display: grid;
    gap: 1rem;
    padding: 0;
}

.track-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.track-feature-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-soft);
    line-height: 1.5;
}

.track-feature-list li::before {
    content: "–";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-accent);
    font-weight: 800;
}

.track-map-wrap {
    display: grid;
    place-items: center;
    margin: 0;
    min-height: 280px;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(62, 138, 188, 0.3), transparent 55%),
        linear-gradient(180deg, rgba(21, 24, 29, 0.96), rgba(11, 13, 17, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 38px rgba(7, 7, 10, 0.24);
}

.track-map-wrap img {
    max-width: min(100%, 420px);
    max-height: 240px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(var(--parallax-offset, 0px)) scale(1.04);
    transition: transform 120ms linear;
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 1.2rem 1.35rem;
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 700;
    color: var(--color-text);
    position: relative;
}

.faq-trigger::after {
    content: "+";
    position: absolute;
    right: 1.35rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--color-accent);
}

.faq-item.is-open .faq-trigger::after {
    content: "−";
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
}

.faq-item.is-open .faq-content {
    max-height: 220px;
}

.faq-content p {
    margin: 0;
    padding: 0 1.35rem 1.25rem;
    color: var(--color-text-soft);
}

/* Booking */
.booking-section {
    background:
        radial-gradient(circle at top right, rgba(62, 138, 188, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 235, 235, 0.94));
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 2rem;
    align-items: start;
}

.booking-heading-full {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 0.15rem;
}

.booking-heading-full h2 {
    margin-bottom: 0;
}

.booking-copy {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-self: stretch;
}

.booking-copy p {
    color: var(--color-text-soft);
}

.booking-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.booking-step {
    display: grid;
    gap: 0.45rem;
    padding: 0.68rem 0.82rem;
    border: 1px solid rgba(62, 138, 188, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
}

.booking-step-headline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.booking-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: var(--color-accent);
    font-weight: 800;
    letter-spacing: 0.1em;
    min-width: 52px;
    min-height: 52px;
    padding: 0.35rem;
    border: 1px solid rgba(62, 138, 188, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(62, 138, 188, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 12px 24px rgba(7, 7, 10, 0.06);
    font-size: 0.95rem;
}

.booking-step strong {
    font-size: 0.95rem;
    line-height: 1.2;
}

.booking-step p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.96rem;
    line-height: 1.45;
}

.booking-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.2rem;
    padding: 1.45rem 1.4rem;
    border: 1px solid rgba(62, 138, 188, 0.12);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(62, 138, 188, 0.05));
    box-shadow: var(--shadow-soft);
}

.booking-points {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;
}

.booking-panel-lead {
    margin: 0;
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.45;
}

.booking-point {
    padding: 0.95rem 1rem;
    border-left: 3px solid var(--color-accent);
    background: rgba(255, 255, 255, 0.76);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.booking-point strong,
.booking-point span {
    display: block;
}

.booking-point strong {
    color: var(--color-text-soft);
}

.booking-note {
    margin: 0;
    margin-top: auto;
    color: var(--color-text-soft);
}

.form-shell {
    padding: 1.25rem;
    border: 1px solid rgba(7, 7, 10, 0.08);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.booking-form {
    display: grid;
    gap: 1.05rem;
}

.form-step-block {
    display: grid;
    gap: 0.4rem;
}

.form-step-head {
    display: flex;
    flex-direction: row;
    gap: 0.35rem;
}

.form-step-head h3 {
    margin: 0;
    font-size: 1.15rem;
}

.form-step-number {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(62, 138, 188, 0.08);
    color: var(--color-accent-dark);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

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

.booking-term-card {
    position: relative;
    display: block;
}

.booking-term-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.booking-term-card span {
    display: grid;
    gap: 0.28rem;
    min-height: 132px;
    padding: 1rem;
    border: 1px solid rgba(7, 7, 10, 0.08);
    border-radius: var(--radius-md);
    background: #fff;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
}

.booking-term-card strong {
    font-size: 1rem;
}

.booking-term-card small,
.booking-term-card em {
    font-style: normal;
    color: var(--color-text-soft);
}

.booking-term-price {
    font-weight: 700;
    color: var(--color-accent-dark);
}

.booking-term-card em {
    margin-top: auto;
    font-weight: 700;
    color: var(--color-accent-dark);
}

.booking-term-card:hover span,
.booking-term-card input:checked + span,
.booking-term-card.is-selected span {
    transform: translateY(-2px);
    border-color: rgba(62, 138, 188, 0.45);
    box-shadow: 0 14px 30px rgba(62, 138, 188, 0.12);
}

.booking-term-card input:checked + span,
.booking-term-card.is-selected span {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(62, 138, 188, 0.08));
}

.booking-term-card-sold-out {
    opacity: 0.58;
}

.booking-term-card-sold-out input {
    cursor: not-allowed;
}

.booking-term-card-sold-out span {
    background: rgba(7, 7, 10, 0.04);
}

.booking-term-card-sold-out em {
    color: #8b3a2d;
}

.booking-term-card-sold-out:hover span {
    transform: none;
    border-color: rgba(7, 7, 10, 0.08);
    box-shadow: none;
}

.form-field-quantity {
    max-width: 186px;
}

.quantity-control {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: center;
    min-height: 42px;
    height: 42px;
    border: 1px solid rgba(62, 138, 188, 0.2);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, rgba(62, 138, 188, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.quantity-button {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(62, 138, 188, 0.1);
    color: var(--color-accent-dark);
    font-size: 1.2rem;
    font-weight: 700;
    transition: background-color var(--transition), color var(--transition);
    cursor: pointer;
}

.quantity-button:hover {
    background: rgba(62, 138, 188, 0.2);
}

.quantity-control input {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.form-row-checks {
    gap: 0.8rem;
}

.form-row {
    display: grid;
    gap: 0.8rem;
}

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

.form-field label,
.form-fieldset legend {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(7, 7, 10, 0.12);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(62, 138, 188, 0.55);
    box-shadow: 0 0 0 4px rgba(62, 138, 188, 0.12);
    outline: none;
}

.form-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    padding-top: 15px;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text-soft);
}

.checkbox-field.has-error span {
    color: #b2362d;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    accent-color: var(--color-accent);
}

.invoice-fields {
    display: grid;
    gap: 0.8rem;
    padding: 0.9rem;
    border: 1px dashed rgba(62, 138, 188, 0.35);
    border-radius: var(--radius-md);
    background: rgba(62, 138, 188, 0.05);
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.invoice-fields[hidden] {
    display: none;
}

.invoice-fields.is-visible {
    animation: invoiceReveal 220ms ease;
}

.error-message {
    min-height: 1.2rem;
    margin: 0.35rem 0 0;
    color: #b2362d;
    font-size: 0.9rem;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-fieldset.has-error .booking-term-grid {
    border-color: rgba(178, 54, 45, 0.45);
}

.form-fieldset.has-error .booking-term-card span {
    border-color: rgba(178, 54, 45, 0.28);
}

.button-submit {
    width: 100%;
    margin-top: 0.8rem;
}

.booking-total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0.6rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(62, 138, 188, 0.18);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(62, 138, 188, 0.08));
}

.booking-total-label,
.booking-total-value {
    margin: 0;
}

.booking-total-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.booking-total-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    line-height: 1;
}

.form-status {
    min-height: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.form-status.is-success {
    color: var(--color-success);
}

.form-status.is-error {
    color: #b2362d;
}

@keyframes invoiceReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* Footer */
.site-footer {
    padding: 3rem 0;
    background: #24272b;
    color: rgba(255, 255, 255, 0.82);
}

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

.footer-logo,
.footer-column h2 {
    color: #fff;
}

.footer-column h2 {
    margin: 0 0 1rem;
    font-size: 1.05rem;
}

.footer-brand p,
.footer-list a,
.footer-list li {
    color: rgba(255, 255, 255, 0.74);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    background: #07070a;
}

.success-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.success-background,
.success-overlay {
    position: absolute;
    inset: 0;
}

.success-background {
    background:
        linear-gradient(180deg, rgba(7, 7, 10, 0.16), rgba(7, 7, 10, 0.34)),
        url("images/TreningTorKrzywaMain.jpg") center center / cover no-repeat;
    transform: scale(1.08);
    filter: blur(5px);
}

.success-overlay {
    background:
        radial-gradient(circle at top, rgba(62, 138, 188, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(7, 7, 10, 0.36), rgba(7, 7, 10, 0.58));
}

.success-logo {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
}

.success-logo img {
    width: auto;
    height: 52px;
    object-fit: contain;
}

.success-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 2rem), 760px);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    background: rgba(10, 12, 16, 0.5);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    text-align: center;
    color: #fff;
}

.success-content h1 {
    margin: 0 0 1rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 0.98;
}

.success-content p {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.success-badge {
    position: relative;
    width: 94px;
    height: 94px;
    margin: 0 auto 1.5rem;
    display: grid;
    place-items: center;
}

.success-badge-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(255, 191, 0, 0.26), rgba(255, 191, 0, 0.1)),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 191, 0, 0.38);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 18px 36px rgba(255, 191, 0, 0.16);
}

.success-badge-mark {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 191, 0, 0.92);
    color: #111;
    font-size: 1.8rem;
    font-weight: 800;
}

.success-button {
    margin-top: 2rem;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 520ms ease,
        transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-34px);
}

.reveal-right {
    transform: translateX(34px);
}

.reveal-up {
    transform: translateY(28px);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-layout,
    .hero-content,
    .faq-layout,
    .footer-grid,
    .benefits-grid,
    .about-copy {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
        padding-top: calc(var(--header-height) + 2.5rem);
        padding-bottom: 2.5rem;
    }

    .track-entry {
        padding: 1.2rem 0;
    }

    .track-block,
    .track-entry-alt .track-block-primary,
    .track-entry-alt .track-block-secondary {
        grid-template-columns: 1fr;
    }

    .track-entry-alt .track-block > :first-child,
    .track-entry-alt .track-block > :last-child {
        order: initial;
    }

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

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        left: 0;
        right: 0;
        overflow-x: clip;
    }

    .header-inner {
        min-width: 0;
    }

    .success-logo {
        top: 1rem;
        left: 1rem;
    }

    .success-logo img {
        height: 44px;
    }

    .success-content {
        width: min(calc(100% - 1.5rem), 760px);
        padding: 2rem 1.4rem;
        border-radius: 24px;
    }

    .success-content h1 {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    .success-content p {
        font-size: 1rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: none;
        display: grid;
        gap: 0.2rem;
        padding: 1rem;
        border: 1px solid rgba(7, 7, 10, 0.08);
        border-radius: 22px;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 20px 40px rgba(7, 7, 10, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity var(--transition),
            transform var(--transition);
    }

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

    .site-nav a:not(.nav-cta),
    .site-header .logo,
    .site-header .site-nav a:not(.nav-cta) {
        color: var(--color-text);
    }

    .nav-cta {
        margin-top: 0.4rem;
    }

    .logo img {
        height: 42px;
    }
}

@media (max-width: 640px) {
    .success-hero {
        padding: 5.5rem 0 1.25rem;
    }

    .success-content {
        width: calc(100% - 1rem);
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .success-content h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1.04;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .success-content p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .success-badge {
        width: 78px;
        height: 78px;
        margin-bottom: 1.2rem;
    }

    .success-badge-mark {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .success-button {
        width: 100%;
    }

    .section {
        padding: 5rem 0;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

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

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

    .booking-term-card span {
        min-height: 160px;
        height: 160px;
        padding: 0.95rem;
    }

    .booking-term-card em {
        display: flex;
        align-items: flex-end;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button,
    .button-submit {
        width: 100%;
    }

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

    .term-card {
        padding: 0.95rem;
    }

    .track-entry {
        padding: 0.9rem 0;
        gap: 0.85rem;
    }

    .track-list {
        gap: 3rem;
    }

    .track-entry + .track-entry::before {
        top: -1.6rem;
        left: 0;
        width: 100%;
    }

    .track-photo {
        aspect-ratio: 16 / 10;
    }

    .track-map-wrap {
        min-height: 220px;
        padding: 1.05rem;
    }

    .form-shell,
    .hero-schedule,
    .benefit-card {
        padding: 1.2rem;
    }

    .partners-strip {
        padding: 1rem 0;
    }

    .partner-logo {
        min-width: 180px;
        height: 76px;
    }

    .partner-logo img {
        max-height: 42px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

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

    .track-photo img,
    .track-map-wrap img,
    .hero-media {
        transform: none !important;
    }
}
