/* ====== RESET & BASE ====== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #e8e0d0;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* ====== TYPOGRAPHY ====== */
.font-display {
    font-family: 'Playfair Display', serif;
}

.font-elegant {
    font-family: 'Cormorant Garamond', serif;
}

.font-script {
    font-family: 'Great Vibes', cursive;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ====== GOLD PALETTE ====== */
:root {
    --gold-light: #fef5d4; /* Niemal bialy refleks */
    --gold: #dfb146; /* Baza amber */
    --gold-dark: #8c6819; /* Ciemny cien */
    --gold-deep: #4a3610; /* Krawedz / głębia */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-elevated: #222222;
    --text-primary: #f0e6d3;
    --text-secondary: #b8a88a;
    --text-muted: #8a7d6b;
    --border-gold: rgba(212, 168, 50, 0.35);
    --border-subtle: rgba(255, 255, 255, 0.06);
}

/* ====== GOLDEN DECORATIONS ====== */
.gold-gradient {
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-dark) 20%, var(--gold) 45%, var(--gold-light) 55%, var(--gold) 70%, var(--gold-dark) 85%, var(--gold-deep) 100%);
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-border {
    border-image: linear-gradient(135deg, var(--gold-deep), var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark), var(--gold-deep)) 1;
}

.gold-glow {
    box-shadow: 0 0 30px rgba(212, 168, 50, 0.2), 0 0 60px rgba(212, 168, 50, 0.08);
}

.gold-text-glow {
    text-shadow: 0 0 20px rgba(212, 168, 50, 0.35);
}

/* ====== ANIMATIONS ====== */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 50, 0.12); }
    50% { box-shadow: 0 0 40px rgba(212, 168, 50, 0.3); }
}

.shimmer-text {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 20%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-dark) 80%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ====== NAVIGATION ====== */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 8px 0;
}

.nav-glass {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 0 !important;
}

.nav-transparent {
    background: transparent;
    border-bottom: 1px solid transparent;
}

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

.nav-logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 28px;
    font-size: 0.65rem;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

#menu-toggle .material-symbols-outlined {
    color: var(--gold);
    font-size: 28px;
}

/* ====== MOBILE MENU ====== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    border-left: 1px solid var(--border-gold);
    z-index: 100;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 40px 40px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close .material-symbols-outlined {
    color: var(--gold);
    font-size: 28px;
}

.mobile-menu-link {
    display: block;
    padding: 16px 0;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.3s, padding-left 0.3s;
}

.mobile-menu-link:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 35%,
            rgba(0, 0, 0, 0.1) 65%,
            rgba(0, 0, 0, 0.3) 100%);
}


.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-gold-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-gold-particles::before,
.hero-gold-particles::after {
    content: '✦';
    position: absolute;
    color: rgba(212, 168, 50, 0.3);
    font-size: 12px;
    animation: sparkle 3s ease-in-out infinite;
}

.hero-gold-particles::before {
    top: 20%;
    right: 15%;
}

.hero-gold-particles::after {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}


.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 5%;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero-script {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 8px;
}

.hero-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 32px;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll .material-symbols-outlined {
    color: var(--gold);
    opacity: 0.5;
    font-size: 28px;
}

/* ====== SUBPAGE HERO ====== */
.subpage-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-gold);
    text-align: center;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 50, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.subpage-hero .section-title,
.subpage-hero .section-heading {
    position: relative;
}

/* ====== GOLDEN DIVIDER ====== */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    width: fit-content;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider-icon {
    color: var(--gold);
    font-size: 14px;
}

/* ====== SECTION STYLING ====== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--bg-primary);
}

.section-darker {
    background-color: var(--bg-secondary);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-desc {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ====== CARDS ====== */
.glamour-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px 30px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.glamour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}


.glamour-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 50, 0.08);
}

.glamour-card:hover::before {
    opacity: 1;
}

.glamour-card .card-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.glamour-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.glamour-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.glamour-card .card-link {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.glamour-card .card-link .material-symbols-outlined {
    font-size: 14px;
}

/* Clickable card (whole card is a link) */
a.glamour-card {
    display: block;
    color: inherit;
    cursor: pointer;
}

a.glamour-card:hover {
    color: inherit;
}

/* ====== PRICE TABLE ====== */
.price-table {
    border: 1px solid var(--border-gold);
    overflow: hidden;
}

.price-table-header {
    background: linear-gradient(135deg, rgba(212, 168, 50, 0.15), rgba(176, 138, 36, 0.1));
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-gold);
}

.price-table-header h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.price-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-table-row:last-child {
    border-bottom: none;
}

.price-table-row:hover {
    background: rgba(212, 168, 50, 0.05);
}

.price-table-row .price {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

/* ====== BUTTONS ====== */
.btn-gold {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-dark) 20%, var(--gold) 45%, var(--gold-light) 65%, var(--gold) 85%, var(--gold-dark) 100%);
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 50, 0.3);
}

.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-gold:hover::after {
    transform: translateX(100%);
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-dark) 20%, var(--gold) 45%, var(--gold-light) 65%, var(--gold) 85%, var(--gold-dark) 100%);
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(212, 168, 50, 0.2);
}

/* ====== TEAM ====== */
.team-card {
    position: relative;
    overflow: hidden;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 2px solid var(--border-gold);
    max-width: 320px;
    margin: 0 auto 24px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
}

.team-name {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ====== REVIEW ====== */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 35px;
    position: relative;
}

.review-card::before {
    content: '❝';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: rgba(212, 168, 50, 0.15);
    font-family: serif;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars .material-symbols-outlined {
    color: var(--gold);
    font-size: 18px;
    font-variation-settings: 'FILL' 1;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-author {
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ====== FAQ ====== */
.faq-item {
    border: 1px solid var(--border-subtle);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: var(--border-gold);
}

.faq-item summary {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: color 0.3s;
}

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

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

.faq-item summary .material-symbols-outlined {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 30px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ====== FACILITIES BAR ====== */
.facilities-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.facility-item .material-symbols-outlined {
    color: var(--gold);
    font-size: 20px;
}

/* ====== ABOUT ====== */
.about-img-frame {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--border-gold);
    z-index: 0;
}

.about-img-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* ====== TABS ====== */
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 50, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* ====== EXTENSION TABLE ====== */
.ext-table {
    width: 100%;
    border-collapse: collapse;
}

.ext-table th {
    background: rgba(212, 168, 50, 0.1);
    padding: 12px 16px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-align: center;
    border: 1px solid var(--border-gold);
}

.ext-table td {
    padding: 10px 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.ext-table tr:hover td {
    background: rgba(212, 168, 50, 0.03);
}

/* ====== TRAINING CARD ====== */
.training-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    transition: all 0.4s ease;
}

.training-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 30px rgba(212, 168, 50, 0.08);
}

.training-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    margin-bottom: 24px;
}

.training-icon .material-symbols-outlined {
    color: var(--gold);
    font-size: 28px;
}

/* ====== REGULATION ====== */
.regulation-box {
    background: linear-gradient(135deg, rgba(232, 204, 106, 0.03), rgba(212, 168, 50, 0.02));
    border: 1px solid var(--border-gold);
    padding: 50px;
    position: relative;
}

.regulation-box::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 168, 50, 0.15);
    pointer-events: none;
}

.regulation-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

.regulation-list li::before {
    content: '⟡';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ====== STEP NUMBERS ====== */
.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ====== CORNER FRAME ====== */
.corner-frame {
    position: relative;
    padding: 40px;
}

.corner-frame::before,
.corner-frame::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--gold);
    border-style: solid;
}

.corner-frame::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.corner-frame::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

/* ====== FOOTER ====== */
.footer {
    background: #050505;
    border-top: 1px solid var(--border-gold);
    padding: 60px 0;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0.9);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.footer-heading {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-copyright {
    border-top: 1px solid var(--border-subtle);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ====== SCROLL TOP ====== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 50, 0.3);
}

/* ====== LAYOUT ====== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

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

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

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

.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

/* ====== SOCIAL ICON ====== */
.social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
    border-radius: 50%;
}

.social-icon:hover {
    background: var(--gold);
    color: #0a0a0a;
}

.social-icon .material-symbols-outlined {
    font-size: 18px;
}

/* ====== INFO BOXES ====== */
.info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 30px;
}

.info-box-gold {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 30px;
}

/* ====== CTA BAND ====== */
.cta-band {
    background: linear-gradient(135deg, rgba(176, 138, 36, 0.15), rgba(212, 168, 50, 0.08));
    padding: 80px 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

/* ====== MAP ====== */
.map-wrapper {
    height: 450px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.6) brightness(0.7) contrast(1.1);
}

/* ====== CONTACT ====== */
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item .material-symbols-outlined {
    color: var(--gold);
    font-size: 22px;
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ====== HOURS TABLE ====== */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-subtle);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--gold);
}

/* ====== STATS BAR ====== */
.stats-bar {
    background: var(--bg-secondary);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ====== GALLERY / REALIZACJE ====== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

.gallery-placeholder .material-symbols-outlined {
    font-size: 40px;
    color: var(--text-muted);
}

/* ====== TEASER SECTION ====== */
.teaser-section {
    position: relative;
    overflow: hidden;
}

.teaser-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 50, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* ====== BENEFIT TILE ====== */
.benefit-tile {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-tile:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.benefit-tile .material-symbols-outlined {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.benefit-tile h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-tile p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.7;
}

/* ====== STEP ITEM (horizontal) ====== */
.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-top: 10px;
}

.step-item h4 {
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 6px;
}

/* ====== PREP LIST ====== */
.prep-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prep-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.prep-list li .material-symbols-outlined {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ====== CHECK LIST ====== */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.check-list li span.check {
    color: var(--gold);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .desktop-nav {
        display: none !important;
    }

    #menu-toggle {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Services grid: 2 columns on mobile */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Stats bar: single row on mobile */
    .stats-bar .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    .stat-item {
        padding: 0 4px;
    }

    /* Hero image: shift to show Anna's face */
    .hero-bg {
        background-position: 70% center;
    }

    .section {
        padding: 60px 0;
    }

    .nav-logo-img {
        height: 55px;
    }

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

    .subpage-hero {
        padding: 130px 0 60px;
    }

    .regulation-box {
        padding: 30px 20px;
    }

    .corner-frame {
        padding: 24px;
    }

    .facilities-bar {
        gap: 20px;
    }

    /* Reviews carousel on mobile */
    .reviews-carousel-wrapper {
        overflow: hidden;
        position: relative;
    }

    .reviews-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }

    .reviews-carousel::-webkit-scrollbar {
        display: none;
    }

    .reviews-carousel .review-card {
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .reviews-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .reviews-carousel-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--text-muted);
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        padding: 0;
    }

    .reviews-carousel-dots .dot.active {
        background: var(--gold);
        transform: scale(1.3);
    }

    /* Footer grid: 2 cols on mobile */
    .footer .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Glamour card smaller padding on mobile */
    .glamour-card {
        padding: 24px 18px;
    }

    .glamour-card h3 {
        font-size: 1rem;
    }

    .glamour-card p {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding: 0 24px;
    }

    .footer .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ====== SERVICE ABOUT IMAGE ====== */
.service-about-img {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    aspect-ratio: 1/1;
}

.service-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-about-img:hover img {
    transform: scale(1.03);
}

.service-about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

/* ====== SKUP WLOSOW - PRICE CARDS ====== */
.skup-price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skup-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skup-price-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 168, 50, 0.06);
}

.skup-price-card:hover::before {
    opacity: 1;
}

.skup-price-length {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.skup-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
}

.skup-price-card-highlight {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, rgba(212, 168, 50, 0.08), rgba(176, 138, 36, 0.04));
}

.skup-price-card-highlight::before {
    opacity: 1;
}

/* ====== SKUP WLOSOW - STEP CARDS ====== */
.skup-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.skup-step-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.skup-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 168, 50, 0.15);
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
}

/* ====== SKUP WLOSOW - CONTACT CARDS ====== */
.skup-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px 32px;
    transition: all 0.4s ease;
}

.skup-contact-card:hover {
    border-color: var(--border-gold);
}

.skup-contact-card a:hover {
    color: var(--gold) !important;
}

.skup-contact-card-gold {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, rgba(212, 168, 50, 0.06), rgba(176, 138, 36, 0.02));
}

/* ====== FOOTER SOCIAL SECTION ====== */
.footer-social {
    margin-top: 20px;
}

.footer-social-heading {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-social-group {
    margin-bottom: 16px;
}

.footer-social-group-label {
    color: var(--text-muted);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 6px 12px;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 50, 0.05);
}

.footer-social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ====== REGULAMIN MODAL ====== */
.regulamin-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    font-family: inherit;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.regulamin-trigger:hover {
    color: var(--gold);
}

.regulamin-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.regulamin-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.regulamin-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 50px;
    position: relative;
}

.regulamin-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold);
}

.regulamin-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.regulamin-modal .regulamin-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.regulamin-section {
    margin-bottom: 28px;
}

.regulamin-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.regulamin-section p,
.regulamin-section li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.8;
}

.regulamin-section ul {
    list-style: none;
    padding: 0;
}

.regulamin-section ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.regulamin-section ul li::before {
    content: '⟡';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.regulamin-warning {
    background: linear-gradient(135deg, rgba(212, 168, 50, 0.08), rgba(176, 138, 36, 0.03));
    border: 1px solid var(--border-gold);
    padding: 20px 24px;
    margin-top: 24px;
}

.regulamin-warning p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .regulamin-modal {
        padding: 30px 20px;
    }
}

/* ====== NEW ADDITIONS ====== */

/* Hero Social Links */
.hero-social-links {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.hero-social-link:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 168, 50, 0.3);
}

.hero-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .hero-social-links {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
    }
    
    .hero-vignette {
        background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
    }
}

/* About Badges */
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.about-badge {
    padding: 8px 12px;
    border: 1px solid var(--border-gold);
    background: rgba(212, 168, 50, 0.05);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease;
}

.about-badge:hover {
    background: rgba(212, 168, 50, 0.15);
}

.about-badge .material-symbols-outlined {
    font-size: 14px;
}

/* Rak'n'Roll Info */
.raknroll-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border-gold);
    background: linear-gradient(135deg, rgba(212, 168, 50, 0.05), rgba(176, 138, 36, 0.02));
    border-radius: 8px;
    margin-top: 24px;
    transition: transform 0.3s ease;
}

.raknroll-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.raknroll-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
}

.raknroll-info-icon .material-symbols-outlined {
    color: #e91e63;
    font-size: 28px;
    font-variation-settings: 'FILL' 1;
}

.raknroll-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.raknroll-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Oliwia Team Member Mini Card */
.team-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.team-mini-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.team-mini-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-mini-content p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
}
