:root {
    --bg-color: #0A0A0A;
    --accent-main: #C9A961;
    --accent-subtle: #A58B68;
    --text-color: #E8E8E8;
    --text-muted: rgba(232, 232, 232, 0.72);
    --dark-accent: #1A1A1A;
    --line: rgba(201, 169, 97, 0.15);
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --nav-height: 88px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-text-size-adjust: 100%;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    height: auto;
}

[hidden] {
    display: none !important;
}

h1, h2, .nav-logo-text {
    font-family: var(--font-serif);
    font-weight: 400;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: 0.25rem;
    line-height: 1.25;
}

a {
    color: var(--accent-main);
}

/* DOSTĘPNOŚĆ */
:focus-visible {
    outline: 1px solid var(--accent-main);
    outline-offset: 4px;
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: 0.8rem 1.2rem;
    background: var(--accent-main);
    color: var(--bg-color);
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.skip-link:focus {
    top: 1rem;
}

.gate-open body {
    overflow: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0));
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 169, 97, 0.35);
    background: rgba(10, 10, 10, 0.7);
    cursor: pointer;
    padding: 10px 9px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.nav-toggle span {
    display: block;
    height: 1px;
    background-color: var(--accent-main);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    color: rgba(255, 255, 255, 0.55);
}

.lang-btn {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    padding: 0.4rem 0.2rem;
    transition: color 0.3s ease;
}

.lang-btn.active {
    color: var(--accent-main);
}

.lang-btn:hover:not(.active) {
    color: var(--text-color);
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.nav-min-logo {
    height: 40px;
    width: auto;
}

.nav-logo-group {
    display: flex;
    flex-direction: column;
}

.nav-logo-text {
    color: var(--accent-main);
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    line-height: 1.2;
}

.nav-logo-feat {
    color: var(--accent-subtle);
    font-size: 0.5rem;
    letter-spacing: 0.2rem;
    font-weight: 300;
    margin-top: -0.1rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-main);
}

/* HERO */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 7rem 1.5rem 5rem;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
}

.hero-content {
    text-align: center;
    max-width: 760px;
    animation: fadeIn 2s ease-out both;
}

.hero-logo {
    width: 300px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 15px rgba(201, 169, 97, 0.2));
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.hero-subtitle {
    color: var(--accent-main);
    font-size: 1.4rem;
    letter-spacing: 0.7rem;
    font-weight: 400;
}

.hero-lead {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-actions .cta-button {
    margin-top: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    padding: 0.5rem;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.arrow {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--accent-main);
    border-bottom: 1px solid var(--accent-main);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* SPLIT SECTION */
.split-section {
    display: flex;
    min-height: 80vh;
    background-color: var(--bg-color);
}

.split-left, .split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.split-left {
    background-color: var(--dark-accent);
}

.content-wrapper {
    max-width: 500px;
}

.content-wrapper h2 {
    margin-bottom: 1.5rem;
}

.content-wrapper p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 2;
}

.split-right {
    background-color: var(--bg-color);
}

.mask-graphic {
    width: 100%;
    max-width: 400px;
    opacity: 0.7;
}

.wireframe-mask {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.3));
}

/* SEKCJE */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container.centered {
    text-align: center;
}

.content-section {
    padding: 8rem 0;
}

.alternate {
    background-color: var(--dark-accent);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.decorator {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--accent-main);
    margin-bottom: 1rem;
}

.decorator.centered {
    margin: 0 auto 1rem;
}

.lead {
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1.7;
    max-width: 720px;
}

.centered-lead {
    text-align: center;
    margin: 0 auto 4rem;
}

.lead-note {
    margin-top: 2rem;
    max-width: 720px;
    padding-left: 1.2rem;
    border-left: 1px solid var(--accent-main);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* KARTY */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.experience-card {
    text-align: center;
    padding: 3rem 2.4rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: border-color 0.4s ease, transform 0.4s ease, background-color 0.4s ease;
}

.experience-card:hover {
    border-color: var(--accent-main);
    transform: translateY(-5px);
    background-color: rgba(201, 169, 97, 0.03);
}

.experience-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 2rem;
}

.experience-card h3 {
    color: var(--accent-main);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.25rem;
    margin-bottom: 1.5rem;
}

.experience-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* PAKIETY */
.single-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.event-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, transform 0.4s ease, background-color 0.4s ease;
}

.event-card:hover {
    border-color: var(--accent-main);
    background-color: rgba(201, 169, 97, 0.03);
    transform: translateY(-5px);
}

.event-number {
    display: block;
    font-family: var(--font-serif);
    color: var(--accent-subtle);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.event-card h3 {
    color: var(--accent-main);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
    margin-bottom: 0.8rem;
    min-height: 2.2rem;
}

.event-tagline {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    line-height: 1.7;
    color: var(--accent-subtle);
    margin-bottom: 2rem;
    min-height: 2.5rem;
}

.package-fit {
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-muted);
    padding-left: 1rem;
    border-left: 1px solid rgba(201, 169, 97, 0.4);
    margin-bottom: 2rem;
}

.event-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.package-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--accent-main);
    margin-bottom: 1rem;
}

.package-points {
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.package-points li {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(232, 232, 232, 0.85);
}

.package-points li::marker {
    color: var(--accent-main);
}

.event-info {
    font-size: 0.8rem;
    color: var(--accent-main);
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.event-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    text-align: center;
}

/* PRZYCISKI */
.cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 3rem;
    border: 1px solid var(--accent-main);
    background: transparent;
    color: var(--accent-main);
    font-family: var(--font-sans);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-main);
    color: var(--bg-color);
}

.gold-btn {
    padding: 1.2rem 3.5rem;
}

.ghost-btn {
    border-color: rgba(201, 169, 97, 0.35);
    color: var(--text-color);
}

.ghost-btn:hover {
    border-color: var(--accent-main);
    background-color: transparent;
    color: var(--accent-main);
}

.cta-button.small {
    padding: 0.9rem 2rem;
    font-size: 0.72rem;
    margin-top: 0;
}

/* CTA BANNER */
.cta-banner {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.cta-banner h2 {
    color: var(--accent-main);
    font-size: 2.5rem;
    letter-spacing: 0.4rem;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* OŚ CZASU */
.timeline {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    border-left: 1px solid rgba(201, 169, 97, 0.25);
    padding-left: 2rem;
}

.timeline-time {
    color: var(--accent-main);
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    padding-top: 0.15rem;
}

.timeline-title {
    color: var(--accent-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    margin-bottom: 0.4rem;
}

.timeline-body p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* TERMINY */
.dates-container {
    max-width: 1240px;
}

/* Karuzela: 3 kafelki na desktopie, 2 na tablecie, 1 na telefonie */
.dates-carousel,
.testimonials-carousel,
.past-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "prev track next"
        ".    dots  .";
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 2rem;
}

.dates-grid,

.testimonials-grid,

.past-grid {
    --dates-gap: 1.5rem;
    --dates-visible: 3;
    grid-area: track;
    display: flex;
    gap: var(--dates-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.dates-grid::-webkit-scrollbar,
.testimonials-grid::-webkit-scrollbar,
.past-grid::-webkit-scrollbar {
    display: none;
}

.dates-grid:focus-visible,
.testimonials-grid:focus-visible,
.past-grid:focus-visible {
    outline-offset: 6px;
}

.carousel-btn {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 97, 0.45);
    background: rgba(10, 10, 10, 0.6);
    color: var(--accent-main);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.js .carousel-btn {
    display: flex;
}

.carousel-prev {
    grid-area: prev;
}

.carousel-next {
    grid-area: next;
}

.carousel-btn span {
    width: 12px;
    height: 12px;
    border-left: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
}

.carousel-prev span {
    transform: translateX(2px) rotate(45deg);
}

.carousel-next span {
    transform: translateX(-2px) rotate(-135deg);
}

.carousel-btn:hover:not(:disabled) {
    background-color: var(--accent-main);
    border-color: var(--accent-main);
    color: var(--bg-color);
}

.carousel-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.dates-carousel.is-static .carousel-btn,
.dates-carousel.is-static .carousel-dots,
.testimonials-carousel.is-static .carousel-btn,
.testimonials-carousel.is-static .carousel-dots,
.past-carousel.is-static .carousel-btn,
.past-carousel.is-static .carousel-dots {
    display: none;
}

.carousel-dots {
    grid-area: dots;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.carousel-dots button {
    width: 28px;
    height: 20px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    position: relative;
}

.carousel-dots button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background-color: rgba(232, 232, 232, 0.2);
    transition: background-color 0.3s ease;
}

.carousel-dots button[aria-current="true"]::after {
    background-color: var(--accent-main);
}

.date-card,
.testimonial,
.past-card {
    flex: 0 0 calc((100% - (var(--dates-visible) - 1) * var(--dates-gap)) / var(--dates-visible));
    scroll-snap-align: start;
    position: relative;
    min-width: 0;
    border: 1px solid var(--line);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, transform 0.4s ease, background-color 0.4s ease;
}

.date-card:hover {
    border-color: var(--accent-main);
    background-color: rgba(201, 169, 97, 0.03);
}

/* Zdjęcie miasta – pion 9:16, z tłem zastępczym, dopóki pliku nie ma */
.date-media {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.14) 0%, rgba(201, 169, 97, 0) 60%),
        linear-gradient(180deg, #1c1a16 0%, #0d0d0d 100%);
}

.date-media::before {
    content: "";
    position: absolute;
    inset: 0.8rem;
    border: 1px solid rgba(201, 169, 97, 0.18);
    pointer-events: none;
    z-index: 1;
}

/* Filtr w charakterze marki: ciepłe złoto, przygaszona saturacja, mocniejszy kontrast */
.date-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.28) saturate(0.8) contrast(1.12) brightness(0.88);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.date-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 50% 35%, rgba(10, 10, 10, 0) 45%, rgba(10, 10, 10, 0.65) 100%),
        linear-gradient(180deg, rgba(201, 169, 97, 0.10) 0%, rgba(201, 169, 97, 0) 45%);
}

.date-media.no-image img {
    display: none;
}

.date-card:hover .date-media img {
    transform: scale(1.04);
    filter: sepia(0.2) saturate(0.9) contrast(1.1) brightness(0.98);
}

.date-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 4rem 1rem 1.8rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.85) 55%, rgba(10, 10, 10, 0.95) 100%);
}

.date-city {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
    color: var(--accent-main);
}

.date-number {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    color: var(--text-color);
    line-height: 1;
    font-weight: 300;
}

.date-month {
    font-size: 0.7rem;
    letter-spacing: 0.22rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.date-weekday {
    font-size: 0.62rem;
    letter-spacing: 0.18rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.date-meta {
    padding: 1.2rem 1.2rem 1rem;
    text-align: center;
}

.date-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.6em;
    margin-bottom: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
    font-size: 0.8rem;
    letter-spacing: 0.06rem;
    line-height: 1.3;
    color: var(--text-color);
}

.date-venue-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--accent-main);
}

.date-card.is-full .date-venue {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .date-venue {
        font-size: 0.72rem;
        letter-spacing: 0.02rem;
    }
}

.date-spots {
    font-size: 0.68rem;
    letter-spacing: 0.15rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.date-spots strong {
    color: var(--accent-main);
    font-weight: 500;
    letter-spacing: 0.05rem;
}

.spots-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.spots-dots span {
    width: 18px;
    height: 3px;
    background-color: rgba(232, 232, 232, 0.15);
}

.spots-dots .is-free {
    background-color: var(--accent-main);
}

.date-footer {
    padding: 0 1.2rem 1.4rem;
    text-align: center;
    margin-top: auto;
}

.date-footer .cta-button.small {
    display: block;
    padding: 0.85rem 0.5rem;
}

/* Termin bez wolnych miejsc */
.date-badge {
    position: absolute;
    top: 1.6rem;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    padding: 0.35rem 0.9rem;
    border: 1px solid var(--accent-main);
    background-color: rgba(10, 10, 10, 0.85);
    color: var(--accent-main);
    font-size: 0.62rem;
    letter-spacing: 0.25rem;
    white-space: nowrap;
}

.date-card.is-full .date-media img,
.date-card.is-full:hover .date-media img {
    filter: grayscale(0.7) sepia(0.15) contrast(1.05) brightness(0.55);
}

.date-card.is-full .date-number,
.date-card.is-full .date-month {
    color: var(--text-muted);
}

.date-card.is-full .date-spots strong {
    color: var(--text-muted);
}

.date-card.is-full:hover {
    border-color: rgba(201, 169, 97, 0.4);
}

.dates-empty {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    border: 1px solid var(--line);
    background-color: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.dates-empty-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-main);
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.dates-empty p:not(.dates-empty-title) {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.date-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    color: rgba(232, 232, 232, 0.6);
    text-transform: uppercase;
}

.date-note-sep {
    margin: 0 0.8rem;
    color: var(--accent-main);
}

.date-note-link {
    color: var(--accent-main);
    text-decoration: none;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.35);
    transition: border-color 0.3s ease;
}

.date-note-link:hover {
    border-color: var(--accent-main);
}

@media (max-width: 768px) {
    .date-note span:first-child {
        display: block;
        margin-bottom: 0.8rem;
    }

    .date-note-sep {
        display: none;
    }
}

/* POPRZEDNIE EDYCJE */
.past-container {
    max-width: 1240px;
}

.past-grid {
    list-style: none;
}

.past-card {
    border: 1px solid var(--line);
    background-color: rgba(255, 255, 255, 0.02);
    transition: border-color 0.4s ease, background-color 0.4s ease;
}

.past-card:hover {
    border-color: rgba(201, 169, 97, 0.5);
    background-color: rgba(201, 169, 97, 0.03);
}

.past-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.12) 0%, rgba(201, 169, 97, 0) 60%),
        linear-gradient(180deg, #1c1a16 0%, #0d0d0d 100%);
}

/* Wspomnienie: wyciszona tonacja; po najechaniu wraca ciepłe złoto marki */
.past-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(0.85) sepia(0.2) contrast(1.05) brightness(0.72);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.past-card:hover .past-media img {
    filter: sepia(0.28) saturate(0.8) contrast(1.12) brightness(0.9);
    transform: scale(1.04);
}

.past-media.no-image img {
    display: none;
}

.past-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 55%, rgba(10, 10, 10, 0.75) 100%);
}

.past-body {
    padding: 1.3rem 1.4rem 1.5rem;
}

.past-city {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
    color: var(--accent-main);
    margin-bottom: 0.5rem;
}

.past-status {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.66rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.past-status svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--accent-main);
}

.past-date {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
}

.past-date:empty {
    display: none;
}

.past-cta {
    margin-top: 3.5rem;
    text-align: center;
}

/* OPINIE – karuzela zawsze widoczna; nota o weryfikacji dopiero przy pierwszej opinii */
.testimonials {
    margin-top: 5rem;
}

.testimonials:not(:has(.testimonial)) {
    display: none;
}

.testimonials-carousel.is-static .testimonials-grid {
    justify-content: center;
}

.testimonials-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3rem;
    color: var(--accent-main);
    margin-bottom: 2.5rem;
}

.testimonial {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.8rem;
    padding: 2.6rem 2rem 1.8rem;
    border: 1px solid var(--line);
    background-color: rgba(255, 255, 255, 0.02);
}

.testimonial::before {
    content: "\201D";
    position: absolute;
    top: 0.4rem;
    left: 1.4rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: rgba(201, 169, 97, 0.45);
}

.testimonial blockquote p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial figcaption {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.12);
}

.testimonial-author {
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    color: var(--text-color);
}

.testimonial-meta {
    font-size: 0.66rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--accent-subtle);
}

.testimonials-note {
    max-width: 640px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .past-body {
        padding: 1rem 1rem 1.2rem;
    }

    .past-city {
        font-size: 1.2rem;
        letter-spacing: 0.12rem;
    }

    .past-status {
        font-size: 0.58rem;
        letter-spacing: 0.08rem;
    }

    .testimonials {
        margin-top: 3.5rem;
    }

    .testimonial blockquote p {
        font-size: 1.1rem;
    }
}

/* ETYKA */
.ethics-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.ethics-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.8;
}

.ethics-check {
    color: var(--accent-main);
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* FAQ */
.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    padding: 1.5rem 3rem 1.5rem 0;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.03rem;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-main);
    font-size: 1.4rem;
    font-weight: 200;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
    color: var(--accent-main);
}

.faq-item p {
    padding: 0 3rem 1.8rem 0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

/* STOPKA */
.site-footer {
    padding: 8rem 0 4rem;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin: 0 auto 2rem;
    opacity: 0.85;
}

.footer-title {
    color: var(--accent-main);
    font-size: 2rem;
    letter-spacing: 0.4rem;
    margin-bottom: 1rem;
}

.footer-lead {
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
}

.footer-email {
    display: inline-block;
    color: var(--accent-main);
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 0.15rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.35);
    transition: border-color 0.3s ease;
}

.footer-email:hover {
    border-color: var(--accent-main);
}

.footer-cities {
    font-size: 0.72rem;
    letter-spacing: 0.3rem;
    color: rgba(232, 232, 232, 0.6);
    margin-top: 3rem;
    text-transform: uppercase;
}

.footer-motto {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: var(--accent-main);
    margin-top: 2.5rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-main);
}

.footer-bottom p {
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    color: rgba(232, 232, 232, 0.55);
}

/* WERYFIKACJA WIEKU */
.age-gate {
    position: fixed;
    inset: 0;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    overflow-y: auto;
    transition: opacity 0.6s ease-out;
}

.js.gate-open .age-gate[hidden] {
    display: flex !important;
}

.age-gate.is-closing {
    opacity: 0;
    pointer-events: none;
}

.age-gate-content {
    max-width: 500px;
    animation: fadeIn 1.2s ease-out;
}

.age-gate-logo {
    width: 200px;
    margin: 0 auto 3rem;
}

.age-gate h2 {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    color: var(--accent-main);
    margin-bottom: 1rem;
}

.age-gate p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-gate-buttons .cta-button {
    margin-top: 0;
}

.age-gate .age-denied {
    color: var(--text-color);
    margin-bottom: 0;
}

/* REGULAMIN */
.regulations-content {
    padding: 11rem 2rem 6rem;
    max-width: 820px;
}

.regulations-text {
    font-weight: 300;
    line-height: 1.8;
    color: rgba(232, 232, 232, 0.9);
}

.regulations-text h1 {
    color: var(--accent-main);
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
    line-height: 1.25;
}

.regulations-meta {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.regulations-toc {
    margin-bottom: 3rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--line);
    background-color: rgba(255, 255, 255, 0.02);
}

.regulations-toc h2 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    color: var(--accent-subtle);
    margin: 0 0 1rem;
}

.regulations-toc ol {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
}

.regulations-toc li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    break-inside: avoid;
}

.regulations-toc a {
    color: var(--text-color);
    text-decoration: none;
}

.regulations-toc a:hover {
    color: var(--accent-main);
}

.regulations-text section > h2 {
    color: var(--accent-main);
    margin: 2.5rem 0 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
}

.regulations-text ol.clauses {
    padding-left: 1.6rem;
}

.regulations-text ol.clauses li {
    margin-bottom: 0.8rem;
    padding-left: 0.3rem;
}

.regulations-text ol.clauses li::marker {
    color: var(--accent-main);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent-main);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.7;
}

.signature-section {
    display: none;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .content-section {
        padding: 6rem 0;
    }

    .split-left, .split-right {
        padding: 3rem;
    }

    .experience-grid {
        gap: 1.5rem;
    }

    .experience-card {
        padding: 2.4rem 1.6rem;
    }

    .event-card h3,
    .event-tagline {
        min-height: 0;
    }

    .dates-grid,

    .testimonials-grid,

    .past-grid {
        --dates-visible: 2;
    }

    .dates-carousel,

    .testimonials-carousel,

    .past-carousel {
        column-gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 76px;
    }

    h2 {
        font-size: 1.8rem;
        letter-spacing: 0.14rem;
    }

    .navbar {
        padding: 0.8rem 1rem;
        background: rgba(10, 10, 10, 0.94);
    }

    .nav-container {
        position: relative;
    }

    .nav-min-logo {
        height: 44px;
    }

    .nav-logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.2rem;
    }

    .nav-logo-feat {
        font-size: 0.45rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-right {
        position: absolute;
        top: calc(100% + 0.8rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.2rem;
        border: 1px solid rgba(201, 169, 97, 0.22);
        background-color: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(6px);
    }

    .nav-right.nav-open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        display: block;
        margin-left: 0;
        padding: 0.7rem 0;
        font-size: 0.8rem;
    }

    .lang-switcher {
        width: 100%;
        font-size: 0.8rem;
    }

    .lang-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .container {
        padding: 0 1.2rem;
    }

    .hero {
        padding: 6rem 1.2rem 4rem;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.3rem;
        line-height: 1.5;
    }

    .hero-lead {
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .split-section {
        flex-direction: column;
        min-height: 0;
    }

    .split-left, .split-right {
        padding: 3.5rem 1.2rem;
    }

    .content-wrapper p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .experience-grid,
    .single-card-wrap {
        grid-template-columns: 1fr;
    }

    .dates-grid,

    .testimonials-grid,

    .past-grid {
        --dates-gap: 1rem;
    }

    .content-section {
        padding: 4.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .lead {
        font-size: 1.05rem;
        line-height: 1.75;
    }

    .centered-lead {
        margin-bottom: 2.5rem;
    }

    .experience-card {
        padding: 2rem 1.4rem;
    }

    .experience-card h3 {
        font-size: 1rem;
        letter-spacing: 0.2rem;
        margin-bottom: 1rem;
    }

    .experience-card:hover,
    .event-card:hover,
    .date-card:hover {
        transform: none;
    }

    .cta-banner {
        padding: 4.5rem 0;
    }

    .cta-banner h2 {
        font-size: 1.7rem;
        letter-spacing: 0.2rem;
    }

    .event-card {
        padding: 2rem 1.3rem;
    }

    .event-card h3 {
        font-size: 1.15rem;
        letter-spacing: 0.12rem;
    }

    .event-tagline {
        margin-bottom: 1.2rem;
    }

    .cta-button {
        padding: 0.95rem 1.6rem;
        letter-spacing: 0.14rem;
    }

    .timeline {
        gap: 1.4rem;
        margin-top: 2rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding-left: 1rem;
    }

    .dates-empty {
        padding: 2.2rem 1.3rem;
    }

    .dates-empty-title {
        font-size: 1.5rem;
    }

    .date-number {
        font-size: 3.2rem;
    }

    .date-city {
        font-size: 0.7rem;
        letter-spacing: 0.18rem;
    }

    .date-month,
    .date-weekday {
        letter-spacing: 0.1rem;
    }

    .date-overlay {
        padding: 3rem 0.6rem 1.3rem;
    }

    .date-meta {
        padding: 1rem 0.6rem 0.8rem;
    }

    .date-spots {
        letter-spacing: 0.08rem;
    }

    .date-footer {
        padding: 0 0.6rem 1rem;
    }

    .ethics-item {
        gap: 0.9rem;
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .faq-item summary {
        padding-right: 2.5rem;
        font-size: 0.95rem;
    }

    .faq-item p {
        padding-right: 0;
    }

    .site-footer {
        padding: 5rem 0 3rem;
    }

    .footer-email {
        font-size: 0.95rem;
        letter-spacing: 0.08rem;
    }

    .footer-cities {
        letter-spacing: 0.15rem;
        line-height: 1.8;
    }

    .footer-motto {
        font-size: 1.05rem;
        letter-spacing: 0.2rem;
    }

    .age-gate {
        padding: 1.2rem;
    }

    .age-gate-logo {
        width: 160px;
        margin-bottom: 2rem;
    }

    .age-gate h2 {
        font-size: 1.3rem;
        letter-spacing: 0.15rem;
    }

    .age-gate-buttons {
        flex-direction: column;
        gap: 0.9rem;
    }

    .regulations-content {
        padding: 8rem 1.2rem 4rem;
    }

    .regulations-text h1 {
        font-size: 1.7rem;
        letter-spacing: 0.15rem;
    }

    .regulations-toc {
        padding: 1.2rem;
    }

    .regulations-toc ol {
        columns: 1;
    }
}

@media (max-width: 640px) {
    .dates-grid,
    .testimonials-grid,
    .past-grid {
        --dates-visible: 1;
    }

    .dates-carousel,

    .testimonials-carousel,

    .past-carousel {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            "track track track"
            "prev  dots  next";
        row-gap: 1.2rem;
    }

    .carousel-btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .nav-logo-group {
        display: none;
    }

    .hero-logo {
        width: 170px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2rem;
    }

    h2 {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }
}

@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;
    }
}

@media print {
    .navbar,
    .skip-link,
    .age-gate,
    .back-link,
    .site-footer {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .regulations-content {
        padding: 0;
    }

    .regulations-text,
    .regulations-text h1,
    .regulations-text section > h2 {
        color: #000;
    }

    .regulations-toc {
        display: none;
    }

    .signature-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 4rem;
        padding-top: 2rem;
    }

    .sig-box {
        height: 80px;
        border-bottom: 1px solid #000;
        margin-bottom: 0.5rem;
    }

    .sig-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
    }
}

/* =====================================================================
   WARSTWA PREMIUM
   Nadpisuje wygląd bazowy: materiał (ziarno, złoto, hairline), typografia,
   detale i ruch. Własne media queries na końcu bloku.
   ===================================================================== */
:root {
    --ivory: #F1EBDD;
    --gold-light: #E6CF96;
    --gold-deep: #9C7B3E;
    --gold-grad: linear-gradient(135deg, #EAD6A0 0%, #C9A961 42%, #A8864A 70%, #D9BF82 100%);
    --hairline: rgba(201, 169, 97, 0.18);
    --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0.008) 100%);
    --card-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
    --ease-premium: cubic-bezier(0.2, 0.7, 0.2, 1);
}

html {
    scrollbar-color: rgba(201, 169, 97, 0.45) #0A0A0A;
    scrollbar-width: thin;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ziarno filmowe – subtelna faktura całej strony */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
    background: rgba(201, 169, 97, 0.85);
    color: #0A0A0A;
}

/* Typografia */
h2 {
    color: var(--ivory);
    font-weight: 300;
    font-size: clamp(2rem, 3.1vw, 2.8rem);
    letter-spacing: 0.22em;
}

.lead {
    color: rgba(241, 235, 221, 0.86);
}

.decorator {
    width: 56px;
    background: var(--gold-grad);
    margin-bottom: 1.4rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.content-section {
    padding: 9rem 0;
}

/* Nawigacja – matowe szkło po przewinięciu */
.navbar {
    transition: background-color 0.5s var(--ease-premium), padding 0.5s var(--ease-premium), border-color 0.5s var(--ease-premium), backdrop-filter 0.5s var(--ease-premium);
    border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    background: rgba(10, 10, 10, 0.78);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    backdrop-filter: blur(14px) saturate(1.2);
    border-bottom-color: var(--hairline);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--gold-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease-premium);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Hero */
.hero {
    background:
        radial-gradient(ellipse 60% 45% at 50% 38%, rgba(201, 169, 97, 0.10) 0%, rgba(201, 169, 97, 0) 70%),
        radial-gradient(circle at center, #171512 0%, #0a0a0a 72%);
}

.hero-subtitle {
    font-weight: 300;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    letter-spacing: 0.55em;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(241, 235, 221, 0.6);
}

.hero-meta-sep {
    width: 5px;
    height: 5px;
    background: var(--accent-main);
    transform: rotate(45deg);
    opacity: 0.7;
}

/* Przyciski – złoty gradient i połysk */
.cta-button {
    position: relative;
    overflow: hidden;
    letter-spacing: 0.24em;
    transition: color 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium);
}

.cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -60%;
    width: 40%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
}

.gold-btn:hover,
.cta-button:not(.ghost-btn):hover {
    background: var(--gold-grad);
    color: #0A0A0A;
    border-color: transparent;
    box-shadow: 0 14px 34px -14px rgba(201, 169, 97, 0.55);
}

.cta-button:not(.ghost-btn):hover::after {
    opacity: 1;
    animation: premium-shine 0.9s var(--ease-premium);
}

.gold-btn--solid {
    background: var(--gold-grad);
    color: #0A0A0A;
    border-color: transparent;
    font-weight: 500;
    box-shadow: 0 14px 34px -18px rgba(201, 169, 97, 0.5);
}

.gold-btn--solid:hover {
    box-shadow: 0 18px 40px -14px rgba(201, 169, 97, 0.7);
}

.ghost-btn {
    border-color: rgba(241, 235, 221, 0.25);
    color: var(--ivory);
}

.ghost-btn:hover {
    border-color: var(--accent-main);
    color: var(--gold-light);
}

@keyframes premium-shine {
    from { left: -60%; }
    to { left: 130%; }
}

/* Karty – wspólny materiał */
.experience-card,
.event-card,
.date-card,
.past-card,
.testimonial,
.dates-empty,
.regulations-toc {
    background: var(--card-bg);
    border-color: var(--hairline);
    transition: border-color 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium), transform 0.5s var(--ease-premium), background 0.5s var(--ease-premium);
}

.experience-card:hover,
.event-card:hover,
.date-card:hover,
.past-card:hover {
    border-color: rgba(201, 169, 97, 0.55);
    box-shadow: var(--card-shadow), inset 0 0 0 1px rgba(201, 169, 97, 0.06);
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.experience-card h3,
.event-card h3 {
    letter-spacing: 0.26em;
}

.event-card {
    padding: 3.2rem 2.4rem;
}

.event-number {
    font-size: 1.1rem;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Cena */
.event-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin: 0.5rem 0 2rem;
    padding: 1.6rem 1rem 1.4rem;
    border-top: 1px solid var(--hairline);
    text-align: center;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.04em;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-amount--text {
    font-size: 1.9rem;
}

.price-note {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.event-footer {
    border-top: 0;
    padding-top: 0;
}

/* Oś czasu – szeryfowe godziny i romby */
.timeline-item {
    position: relative;
    border-left-color: var(--hairline);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    background: var(--gold-grad);
    transform: rotate(45deg);
}

.timeline-time {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding-top: 0;
}

.timeline-title {
    color: var(--ivory);
    letter-spacing: 0.12em;
}

/* Terminy i edycje */
.date-number {
    font-weight: 300;
    color: var(--ivory);
}

.date-badge {
    background: rgba(10, 10, 10, 0.75);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.spots-dots .is-free {
    background: var(--gold-grad);
}

.carousel-btn {
    border-color: var(--hairline);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium), color 0.4s var(--ease-premium), opacity 0.4s var(--ease-premium);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--gold-grad);
    border-color: transparent;
}

.carousel-dots button[aria-current="true"]::after {
    background: var(--gold-grad);
}

.past-city {
    font-weight: 300;
}

/* Etyka, FAQ, stopka */
.ethics-check {
    font-size: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.7rem;
    background: var(--gold-grad);
    transform: rotate(45deg);
}

.faq-list,
.faq-item {
    border-color: var(--hairline);
}

.faq-item summary {
    color: var(--ivory);
    transition: color 0.4s var(--ease-premium), padding-left 0.4s var(--ease-premium);
}

.faq-item summary:hover {
    padding-left: 0.4rem;
}

.cta-banner {
    background:
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201, 169, 97, 0.09) 0%, rgba(201, 169, 97, 0) 70%),
        #0c0c0b;
    border-color: var(--hairline);
}

.cta-banner h2 {
    font-weight: 300;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-footer {
    position: relative;
    border-top: 0;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(640px, 80%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(201, 169, 97, 0) 0%, rgba(201, 169, 97, 0.6) 50%, rgba(201, 169, 97, 0) 100%);
}

.footer-title,
.footer-motto {
    font-weight: 300;
}

.age-gate-content {
    padding: 3rem 2.5rem;
    border: 1px solid var(--hairline);
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.07) 0%, rgba(201, 169, 97, 0) 70%);
}

/* Ruch – pojawianie się przy przewijaniu (tylko z JS i bez „ogranicz ruch”) */
.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 1s var(--ease-premium), transform 1s var(--ease-premium);
}

.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.75rem;
        letter-spacing: 0.14em;
    }

    .content-section {
        padding: 5rem 0;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        letter-spacing: 0.3em;
    }

    .hero-meta {
        gap: 0.7rem;
        font-size: 0.6rem;
        letter-spacing: 0.18em;
    }

    .event-card {
        padding: 2.2rem 1.4rem;
    }

    .price-amount {
        font-size: 2.3rem;
    }

    .price-amount--text {
        font-size: 1.6rem;
    }

    .age-gate-content {
        padding: 2.2rem 1.4rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ready .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    body::after {
        display: none;
    }
}

/* ==========================================================================
   TERMINY Z PORTALU: stan ładowania + przycisk karty jako <button>
   ========================================================================== */
.dates-loading {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    padding: 3rem 1rem;
}

button.cta-button {
    font: inherit;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    line-height: 1.6;
}

.date-footer button.cta-button.small {
    width: 100%;
}

/* ==========================================================================
   MODAL ZGŁOSZENIA (rezerwacja, lista rezerwowa, konsultacja 1:1)
   ========================================================================== */
.modal-open,
.modal-open body {
    overflow: hidden;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.booking-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s var(--ease-premium);
}

.booking-panel {
    position: relative;
    width: min(620px, 100%);
    max-height: calc(100dvh - 3rem);
    overflow-y: auto;
    padding: 2.6rem 2.6rem 2.2rem;
    background: linear-gradient(180deg, #151412 0%, #0E0E0D 100%);
    border: 1px solid var(--hairline);
    box-shadow: var(--card-shadow);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
}

.booking-modal.is-open .booking-backdrop,
.booking-modal.is-open .booking-panel {
    opacity: 1;
    transform: none;
}

.booking-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.booking-close:hover {
    color: var(--gold-light);
}

.booking-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-main);
    margin-bottom: 0.6rem;
}

.booking-title {
    font-size: 1.9rem;
    letter-spacing: 0.18rem;
    color: var(--ivory);
    margin-bottom: 0.8rem;
}

.booking-summary {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    padding-bottom: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--hairline);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.booking-optional {
    letter-spacing: 0.08em;
    text-transform: none;
    color: rgba(232, 232, 232, 0.45);
}

.booking-field input,
.booking-field textarea {
    width: 100%;
    padding: 0.75rem 0.1rem;
    border: 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 0;
    background: transparent;
    color: var(--ivory);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: border-color 0.3s ease;
    color-scheme: dark;
}

.booking-field textarea {
    resize: vertical;
    min-height: 6rem;
    line-height: 1.5;
}

.booking-field input:focus,
.booking-field textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-main);
}

.booking-field [aria-invalid="true"] {
    border-bottom-color: #C2665A;
}

.booking-counter {
    align-self: flex-end;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    color: rgba(232, 232, 232, 0.45);
}

/* Pułapka na boty — niewidoczna dla ludzi i czytników ekranu. */
.booking-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.booking-privacy {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.55);
}

.booking-error {
    font-size: 0.82rem;
    color: #E0897D;
}

.booking-submit {
    align-self: flex-start;
    margin-top: 0.4rem;
}

.booking-success {
    text-align: center;
    padding: 1rem 0 0.4rem;
}

.booking-success:focus {
    outline: none;
}

.booking-success-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
}

.booking-success p:not(.booking-success-title) {
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .booking-modal {
        padding: 0;
        align-items: flex-end;
    }

    .booking-panel {
        max-height: 100dvh;
        padding: 2.2rem 1.3rem 1.6rem;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

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

    .booking-title {
        font-size: 1.5rem;
    }

    .booking-submit {
        align-self: stretch;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-backdrop,
    .booking-panel {
        transition: none;
    }
}

/* ==========================================================================
   PORADNIK (uwodzenie.html) + link tekstowy w sekcjach
   ========================================================================== */
.text-link {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 169, 97, 0.4);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.text-link:hover {
    color: var(--accent-main);
    border-bottom-color: var(--accent-main);
}

.breadcrumbs {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.breadcrumbs a {
    color: var(--accent-main);
    text-decoration: none;
}

.breadcrumbs span[aria-hidden] {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.guide-text p {
    margin-bottom: 1.2rem;
}

.guide-text .guide-lead {
    font-size: 1.08rem;
    color: var(--ivory);
    margin-bottom: 2.5rem;
}

.guide-text h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.04rem;
    color: var(--gold-light);
    margin: 1.8rem 0 0.6rem;
}

.guide-text strong {
    font-weight: 500;
    color: var(--ivory);
}

.guide-text a:not(.cta-button) {
    color: var(--gold-light);
}

.guide-list {
    list-style: none;
    margin: 0 0 1.4rem;
}

.guide-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
}

.guide-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 6px;
    background: var(--accent-main);
    transform: rotate(45deg);
}

.guide-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.guide-cta .cta-button {
    margin-top: 0;
}

@media (max-width: 640px) {
    .guide-cta .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Menu z pozycją „Uwodzenie”: na średnich ekranach (tablet poziomo, małe
   laptopy) ciaśniejsze odstępy, żeby przełącznik języka nie wypadał poza ekran. */
@media (min-width: 769px) and (max-width: 1180px) {
    .nav-right {
        gap: 1.4rem;
    }

    .nav-links a {
        margin-left: 1.1rem;
        font-size: 0.7rem;
        letter-spacing: 0.1rem;
    }
}

#uwodzenie .lead + .lead {
    margin-top: 1.2rem;
}

#uwodzenie .lead-note {
    margin-top: 1.6rem;
}

/* ==========================================================================
   POPRZEDNIE EDYCJE: lokal pod nazwą miasta
   ========================================================================== */
.past-venue {
    font-size: 0.78rem;
    letter-spacing: 0.08rem;
    color: var(--ivory);
    opacity: 0.8;
    margin: -0.2rem 0 0.6rem;
}

/* ==========================================================================
   O MNIE: zdjęcie (pion 4:5) + tekst
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 4rem;
    align-items: center;
}

.about-media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--hairline);
    background:
        radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.14) 0%, rgba(10, 10, 10, 0) 60%),
        linear-gradient(180deg, #16140f 0%, #0a0a0a 100%);
    box-shadow: var(--card-shadow);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-media.no-image img {
    display: none;
}

/* Delikatne przyciemnienie dołu i złota linia – spójnie z kartami terminów. */
.about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 60%, rgba(10, 10, 10, 0.55) 100%);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.08);
}

.about-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-main);
    margin: -0.5rem 0 1.4rem;
}

.about-body .lead {
    margin-bottom: 1.4rem;
}

.about-text {
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 62ch;
    margin-bottom: 1.1rem;
}

.about-sign {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 0.06rem;
    color: var(--gold-light);
    margin-top: 1.8rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .about-media {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }
}
