/* ========================================
   NEW BODY PIASECZNO
   Premium warm palette · Navy + Caramel
   ======================================== */

:root {
    --navy-dark: #092962;
    --navy: #0D3B7A;
    --navy-light: #1A5296;
    --slate: #2E6BA8;
    --gray: #7A8594;
    --gray-light: #A0A8B2;
    --caramel: #B8860B;
    --copper: #9A6C1E;
    --tan: #DAA520;
    --tan-light: #E8C44A;
    --chocolate: #3A1F08;
    --cream: #F7F2E8;
    --cream-light: #FBF8F2;
    --white: #FFFFFF;

    /* semantic */
    --bg-light: var(--cream-light);
    --bg-light-alt: var(--cream);
    --bg-dark: var(--navy-dark);
    --bg-dark-alt: var(--navy);
    --bg-card-light: var(--white);
    --bg-card-dark: rgba(255,255,255,0.05);
    --accent: var(--tan);
    --accent-hover: var(--caramel);
    --text-on-light: var(--chocolate);
    --text-on-light-2: #6B5744;
    --text-on-light-muted: var(--gray);
    --text-on-dark: #F0EAE0;
    --text-on-dark-2: rgba(255,255,255,0.6);
    --text-on-dark-muted: rgba(255,255,255,0.35);
    --border-light: rgba(74,42,24,0.08);
    --border-light-2: rgba(74,42,24,0.14);
    --border-dark: rgba(255,255,255,0.07);
    --border-dark-2: rgba(255,255,255,0.12);

    --shadow-sm: 0 2px 12px rgba(27,36,56,0.06);
    --shadow-md: 0 8px 32px rgba(27,36,56,0.1);
    --shadow-lg: 0 24px 64px rgba(27,36,56,0.14);
    --shadow-glow: 0 0 40px rgba(212,168,104,0.15);

    --font-heading: 'Josefin Sans', sans-serif;
    --font-body: 'Epilogue', sans-serif;
    --container: 1200px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-pill: 100px;

    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-on-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition: all 0.3s ease; }
ul,ol { list-style:none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgb(9, 41, 98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.navbar .container { display:flex; align-items:center; justify-content:space-between; }

.navbar-logo img { height: 150px; transition: height 0.3s ease; }
.navbar.scrolled .navbar-logo img { height: 80px; filter: brightness(0) invert(1); }

.navbar-links { display:flex; align-items:center; gap:36px; }

.navbar-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgb(9, 41, 98);
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease;
}
.navbar.scrolled .navbar-links a {
    color: rgba(255,255,255,0.7);
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--tan);
    transition: width 0.3s ease;
}
.navbar-links a:hover { color: #fff; }
.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
    padding: 10px 28px !important;
    background: var(--tan) !important;
    color: var(--navy-dark) !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.5px;
}
.navbar-cta::after { display: none !important; }
.navbar-cta:hover {
    background: var(--tan-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.navbar-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; z-index:1001; }
.navbar-toggle span { width:22px; height:2px; background:#fff; transition:all 0.3s ease; border-radius:2px; }

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transition: transform 20s ease;
}
.hero:hover .hero-bg-img { transform: scale(1.03); }

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(9,41,98,0.3) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 30px;
    background: #0d3b7ae0;
    border-radius: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212,168,104,0.1);
    border: 1px solid rgba(212,168,104,0.25);
    border-radius: var(--radius-pill);
    color: var(--tan);
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--tan-light) 0%, var(--tan) 40%, var(--caramel) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.4rem);
    color: rgba(255,255,255,0.6);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.4;
    font-weight: 300;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--tan);
    color: var(--navy-dark);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background: var(--tan-light);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(212,168,104,0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

.hero-info-bar {
    position: absolute;
    bottom: 48px;
    left: 50%; transform: translateX(-50%);
    z-index: 3;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 32px;
    background: rgb(113, 115, 118);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}
.hero-info-bar strong { color: var(--tan-light); }
.hero-info-bar span { color: rgba(255,255,255,0.15); }

/* ========================================
   SECTIONS - COMMON
   ======================================== */
section { padding: 90px 0; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }

.section-tag {
    display: inline-block;
    padding: 14px 28px 10px;
    border-radius: var(--radius-pill);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 42px;
    line-height: 1;
}

/* Light section tags */
.section-tag {
    background: rgba(160,120,64,0.08);
    border: 1px solid rgba(160,120,64,0.15);
    color: var(--caramel);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.4rem;
    line-height: 1.4;
}

/* ========================================
   WHY US — Light section
   ======================================== */
.why-us {
    background: url('../images/tlo_golden.jpg') center/cover no-repeat fixed;
    position: relative;
}
.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
}
.why-us .container { position: relative; z-index: 1; }
.why-us .section-header h2 { color: var(--text-on-light); }
.why-us .section-header p { color: var(--text-on-light-2); }

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

.feature-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.feature-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.feature-card:hover .feature-card-photo img {
    transform: scale(1.08);
}

.feature-card-text {
    padding: 24px;
    flex: 1;
}
.feature-card-text h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feature-card-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* kolory kafelków */
.feature-card--navy .feature-card-text { background: var(--navy); }
.feature-card--caramel .feature-card-text { background: var(--caramel); }
.feature-card--slate .feature-card-text { background: var(--slate); }
.feature-card--tan .feature-card-text { background: var(--copper); }

/* ========================================
   TREATMENTS — Dark section with photo bg
   ======================================== */
.treatments {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.treatments::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(74,98,117,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(212,168,104,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.treatments .section-header h2 { color: var(--text-on-dark); }
.treatments .section-header p { color: var(--text-on-dark-2); }
.treatments .section-tag {
    background: rgba(212,168,104,0.12);
    border-color: rgba(212,168,104,0.2);
    color: var(--tan);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.treatment-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: all var(--transition);
}
.treatment-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,168,104,0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3), var(--shadow-glow);
}

.treatment-card-image { width:100%; height:220px; overflow:hidden; }
.treatment-card-image img {
    width:100%; height:100%;
    object-fit:cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.6s ease;
    filter: brightness(0.85) saturate(0.9);
}
.treatment-card:hover .treatment-card-image img {
    transform:scale(1.08);
    filter: brightness(1) saturate(1.1);
}

.treatment-card-header { padding: 24px 24px 0; }

.treatment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-on-dark);
    text-align: center;
}

.treatment-duration {
    font-size: 1.1rem;
    color: var(--tan);
    font-weight: 600;
    display: block;
    padding: 4px 12px;
    background: rgba(212,168,104,0.1);
    border: 1px solid rgba(212,168,104,0.2);
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center;
}

.treatment-card-body { padding: 0 24px 24px; }
.treatment-card p { font-size: 0.88rem; color: var(--text-on-dark-2); line-height: 1.65; }

.treatment-benefits {
    list-style: none;
    padding: 12px 0 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.treatment-benefits li {
    font-size: 0.76rem;
    color: var(--text-on-dark-2);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}
.treatment-card:hover .treatment-benefits li {
    border-color: rgba(212,168,104,0.2);
    background: rgba(212,168,104,0.06);
}

.treatment-combo {
    margin-top: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.treatment-combo-inner {
    background: linear-gradient(135deg, rgba(212,168,104,0.08), rgba(74,98,117,0.08));
    border: 1px solid rgba(212,168,104,0.15);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    backdrop-filter: blur(8px);
}
.treatment-combo h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--text-on-dark);
}
.treatment-combo p {
    font-size: 0.95rem;
    color: var(--text-on-dark-2);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.treatment-cta {
    text-align: center;
    padding: 48px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    position: relative;
    z-index: 1;
    margin-top: 32px;
}
.treatment-cta p { font-size: 1rem; color: var(--text-on-dark-2); margin-bottom: 24px; }

/* ========================================
   PROCESS — Light section
   ======================================== */
.process {
    background: url('../images/kroki.jpg') center/cover no-repeat;
    position: relative;
}
.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(245, 240, 232, 0.72);
}
.process .container { position: relative; z-index: 1; }
.process .section-header h2 { color: var(--text-on-light); }
.process .section-header p { color: var(--text-on-light-2); }

.steps-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    position: relative;
}

.step {
    text-align: center;
    padding: 0;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    background: #fffefcb0;
}
.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: block;
    padding: 28px 32px 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.step:nth-child(1) .step-number { background: linear-gradient(135deg, var(--caramel), var(--tan)); }
.step:nth-child(2) .step-number { background: linear-gradient(135deg, var(--slate), var(--navy-light)); }
.step:nth-child(3) .step-number { background: linear-gradient(135deg, var(--copper), var(--caramel)); }

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-on-light);
    padding: 24px 28px 0;
}
.step p {
    font-size: 0.88rem;
    color: var(--text-on-light-2);
    line-height: 1.65;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 28px 32px;
}

.step-content {
    background: var(--bg-card-light);
}

/* ========================================
   EFFECTS / STATS — Full photo bg dark
   ======================================== */
.effects {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.effects-bg-img {
    position: absolute;
    inset: 0;
    width:100%; height:100%;
    object-fit:cover;
    opacity: 0.2;
    filter: saturate(0.8);
}

.effects::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--navy-dark) 0%, rgba(27,36,56,0.5) 50%, var(--navy-dark) 100%),
        linear-gradient(90deg, rgba(27,36,56,0.6) 0%, transparent 50%, rgba(27,36,56,0.6) 100%);
    z-index: 1;
}

.effects .container { position: relative; z-index: 2; }
.effects .section-header h2 { color: #fff; }
.effects .section-header p { color: var(--text-on-dark-2); }
.effects .section-tag {
    background: rgba(212,168,104,0.12);
    border-color: rgba(212,168,104,0.2);
    color: var(--tan);
}

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

.stat-card {
    text-align: center;
    padding: 48px 24px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,168,104,0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--tan-light) 0%, var(--tan) 50%, var(--caramel) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label { font-size: 0.88rem; color: var(--text-on-dark-muted); }

/* ========================================
   ABOUT — Light with photo
   ======================================== */
.about { background: var(--bg-light); }
.about .section-tag { margin-bottom: 20px; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-on-light);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.about-text p { font-size: 1rem; color: var(--text-on-light-2); line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-of-type { color: var(--text-on-light); font-weight: 500; font-style: italic; }

.about-image { position: relative; }

.about-image-placeholder {
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-photo {
    width:100%; height:100%;
    object-fit:cover;
    position:relative;
    z-index:1;
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.about-image:hover .about-photo { transform: scale(1.03); }

.about-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(27,36,56,0.5) 100%);
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    z-index: 3;
    box-shadow: var(--shadow-md);
}
.about-badge strong { display:block; font-family:var(--font-heading); font-size:1.2rem; color: var(--caramel); }
.about-badge span { font-size:0.82rem; color: var(--text-on-light-2); }

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    margin-top: 72px;
}
.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-on-light);
    text-align: center;
    margin-bottom: 28px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(27,36,56,0);
    transition: background 0.3s ease;
}
.gallery-item:hover::after {
    background: rgba(27,36,56,0.2);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.lightbox-close:hover {
    opacity: 1;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 20px;
    user-select: none;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ========================================
   REVIEWS — Dark navy section
   ======================================== */
.reviews {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(212,168,104,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(74,98,117,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reviews .section-header h2 { color: var(--text-on-dark); }
.reviews .section-header p { color: var(--text-on-dark-2); }
.reviews .section-tag {
    background: rgba(212,168,104,0.12);
    border-color: rgba(212,168,104,0.2);
    color: var(--tan);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.review-card {
    padding: 36px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    transition: all var(--transition);
}
.review-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,168,104,0.2);
    transform: translateY(-4px);
}

.review-stars { color: var(--tan); font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }

.review-card blockquote {
    font-size: 0.95rem;
    color: var(--text-on-dark-2);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author { font-weight: 600; font-size: 0.88rem; color: var(--tan); }

.reviews-link { text-align: center; position: relative; z-index: 1; }
.reviews-link a { color: var(--text-on-dark-2); font-weight: 500; font-size: 0.9rem; border-bottom: 1px solid var(--border-dark-2); padding-bottom: 2px; }
.reviews-link a:hover { color: var(--tan); border-color: var(--tan); }

/* ========================================
   AKTUALNOŚCI / FACEBOOK
   ======================================== */
.aktualnosci { background: var(--bg-light-alt); }
.aktualnosci .section-header h2 { color: var(--text-on-light); }
.aktualnosci .section-header p { color: var(--text-on-light-2); }

.aktualnosci-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.fb-widget {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 500px;
}

.aktualnosci-cta {
    text-align: center;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    width: 100%;
}
.aktualnosci-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}
.aktualnosci-cta strong {
    color: var(--tan);
}

/* ========================================
   METAMORFOZY
   ======================================== */
.metamorfozy { background: var(--bg-light); }
.metamorfozy .section-header h2 { color: var(--text-on-light); }
.metamorfozy .section-header p { color: var(--text-on-light-2); }

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

.metamorfozy-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}
.metamorfozy-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.metamorfozy-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.metamorfozy-item:hover img {
    transform: scale(1.05);
}

.metamorfozy-cta {
    text-align: center;
    padding: 36px 32px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.metamorfozy-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 24px;
    line-height: 1.5;
}
.metamorfozy-cta strong {
    color: var(--tan);
}

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

/* ========================================
   PRICING — Light
   ======================================== */
.pricing { background: var(--bg-light-alt); }
.pricing .section-header h2 { color: var(--text-on-light); }
.pricing .section-header p { color: var(--text-on-light-2); }

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    border: none;
    background: transparent;
    box-shadow: none;
}

.pricing-table { width:100%; border-collapse:separate; border-spacing: 6px 6px; font-size:0.92rem; }

.pricing-table thead { background: none; }

.pricing-table th {
    padding: 16px 24px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--navy-dark);
}
.pricing-table th { border-radius: 10px; }
.pricing-table th:first-child { text-align: left; }
.pricing-table th:last-child { }

.pricing-table td {
    padding: 16px 24px;
    border-bottom: none;
    color: var(--text-on-light-2);
    background: transparent;
    text-align: center;
    border-radius: 10px;
}
.pricing-table td:first-child { text-align: left; }

.pricing-table tbody tr {
    transition: all 0.3s ease;
}

/* Nazwa zabiegu - pełny kafelek */
.pricing-table .treatment-name {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.05rem;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    background: #e0d7ca !important;
    border-radius: 10px !important;
    padding: 16px 20px;
    vertical-align: middle;
}

/* Czas - pełny kafelek jak zabieg, wycentrowany */
.pricing-table .treatment-time {
    font-size: 0.88rem;
    color: var(--slate);
    font-weight: 500;
    font-style: italic;
    white-space: nowrap;
    background: #eae4db !important;
    border-radius: 10px !important;
    padding: 16px 16px;
    vertical-align: middle;
    text-align: center !important;
}

/* Cena pojedynczego zabiegu */
.pricing-table .price-single {
    color: var(--text-on-light-2);
    font-weight: 400;
    font-size: 0.92rem;
    background: var(--white) !important;
    border-radius: 10px !important;
    vertical-align: middle;
}

/* Ceny karnetów */
.pricing-table .price-karnet {
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 0.95rem;
    background: var(--white) !important;
    border-radius: 10px !important;
    vertical-align: middle;
}

/* Nagłówki karnetów - wyróżnione kolorem */
.pricing-table th:nth-child(4),
.pricing-table th:nth-child(5),
.pricing-table th:nth-child(6) {
    background: var(--caramel);
}

/* Najlepszy karnet (12) - subtelne wyróżnienie */
.pricing-table .price-best {
    font-weight: 700;
    color: var(--copper);
    background: var(--white) !important;
    border-radius: 10px !important;
}

/* Cardio - specjalny wiersz */
.pricing-table .price-cardio {
    text-align: center;
    font-weight: 600;
    color: var(--navy-dark);
    background: var(--white) !important;
    border-radius: 10px !important;
}

.pricing-cards-info {
    text-align: center;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--navy-dark), var(--slate));
    border-radius: var(--radius-lg);
    border: none;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}
.pricing-cards-info p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.pricing-cards-info strong { color: var(--tan); }

.pricing-note { text-align: center; font-size: 0.85rem; color: var(--text-on-light-muted); }

/* ========================================
   FAQ — Light
   ======================================== */
.faq {
    position: relative;
    background: url('../images/tlo_golden3.jpg') center/cover no-repeat fixed;
}
.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(160, 120, 64, 0.75);
}
.faq .container { position: relative; z-index: 1; }
.faq .section-header h2 { color: #fff; }
.faq .section-header p { color: rgba(255,255,255,0.85); }
.faq .section-tag { background: rgba(255,255,255,0.2); color: #fff; }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.faq-item.active { border-color: var(--tan); box-shadow: 0 4px 20px rgba(212,168,104,0.12); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-question h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; flex:1; color: var(--text-on-light); }

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-light-alt);
    border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--text-on-light-muted);
}
.faq-item.active .faq-icon { background: var(--tan); color:#fff; border-color: var(--tan); transform:rotate(45deg); }

.faq-answer { max-height:0; overflow:hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-answer-inner { padding:0 24px 20px; font-size:0.9rem; color: var(--text-on-light-2); line-height:1.75; }

/* ========================================
   CONTACT — Dark section with depth
   ======================================== */
.contact {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(74,98,117,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212,168,104,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-header h2 { color: var(--text-on-dark); }
.contact .section-header p { color: var(--text-on-dark-2); }
.contact .section-tag {
    background: rgba(212,168,104,0.12);
    border-color: rgba(212,168,104,0.2);
    color: var(--tan);
}

.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; position: relative; z-index: 1; }

.contact-info-cards { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}
.contact-info-card:hover { background: rgba(255,255,255,0.06); border-color: var(--border-dark-2); }

.contact-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(212,168,104,0.1);
    color: var(--tan);
    border: 1px solid rgba(212,168,104,0.15);
}

.contact-info-card h4 { font-size:0.78rem; color: var(--text-on-dark-muted); font-weight:500; margin-bottom:2px; text-transform:uppercase; letter-spacing:0.5px; }
.contact-info-card p { font-weight:600; font-size:0.92rem; color: var(--text-on-dark); }
.contact-info-card a { color: var(--tan); }
.contact-info-card a:hover { color: var(--tan-light); }

.contact-hours h3 { font-family:var(--font-heading); font-size:1rem; margin-bottom:12px; text-transform:uppercase; letter-spacing:0.5px; color: var(--text-on-dark); }

.hours-list { display:flex; flex-direction:column; gap:0; }
.hours-list li {
    display:flex; justify-content:space-between;
    font-size:0.88rem;
    padding:10px 0;
    border-bottom:1px solid var(--border-dark);
}
.hours-list li span:first-child { color: var(--text-on-dark-muted); }
.hours-list li span:last-child { font-weight:600; color: var(--text-on-dark-2); }
.hours-list li.closed span:last-child { color: #e07060; }

/* Contact form */
.contact-form-wrapper {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-dark);
}

.contact-form-wrapper h3 { font-family:var(--font-heading); font-size:1.2rem; margin-bottom:24px; text-transform:uppercase; letter-spacing:0.5px; color: var(--text-on-dark); }

.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:0.78rem; font-weight:500; color: var(--text-on-dark-muted); margin-bottom:6px; text-transform:uppercase; letter-spacing:0.5px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-dark-2);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-on-dark);
    background: rgba(255,255,255,0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-on-dark-muted); }
.form-group select { color: var(--text-on-dark-2); }
.form-group select option { background: var(--navy-dark); color: var(--text-on-dark); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--tan); box-shadow: 0 0 0 3px rgba(212,168,104,0.12); }

.form-group textarea { resize:vertical; min-height:100px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-submit { width:100%; margin-top:8px; justify-content:center; }
.form-note { text-align:center; margin-top:12px; font-size:0.78rem; color: var(--text-on-dark-muted); }

/* Map */
.contact-map {
    margin-top:48px;
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid var(--border-dark);
    height:300px;
    position: relative;
    z-index: 1;
}
.contact-map iframe { width:100%; height:100%; border:none; filter: saturate(0.8) brightness(0.85); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #111825;
    border-top: 1px solid var(--border-dark);
    color: var(--text-on-dark-muted);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img { height:44px; margin-bottom:16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size:0.85rem; line-height:1.6; max-width:280px; color: var(--text-on-dark-muted); }

.footer-cards { display:flex; gap:6px; margin-top:16px; flex-wrap:wrap; }
.footer-cards span {
    padding:4px 10px;
    background:rgba(255,255,255,0.04);
    border:1px solid var(--border-dark);
    border-radius:var(--radius-pill);
    font-size:0.7rem;
    font-weight:500;
    color: var(--text-on-dark-muted);
}

.footer-col h4 {
    color: var(--tan);
    font-family:var(--font-heading);
    font-size:0.78rem;
    font-weight:600;
    margin-bottom:16px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { font-size:0.82rem; color: var(--text-on-dark-muted); }
.footer-col ul li a:hover { color: var(--tan-light); }

.footer-social { display:flex; gap:8px; margin-top:12px; }
.footer-social a {
    width:36px; height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.04);
    border:1px solid var(--border-dark);
    display:flex; align-items:center; justify-content:center;
    font-size:1rem;
    transition:all 0.3s ease;
    color: var(--text-on-dark-muted);
}
.footer-social a:hover { background: var(--tan); color: var(--navy-dark); border-color: var(--tan); }

.footer-bottom {
    padding-top:32px;
    border-top:1px solid var(--border-dark);
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:16px;
}
.footer-bottom p { font-size:0.78rem; }

.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:0.78rem; color: var(--text-on-dark-muted); }
.footer-legal a:hover { color: var(--tan-light); }

/* ========================================
   FLOATING CTA (mobile)
   ======================================== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    padding: 14px 24px;
    background: var(--tan);
    color: var(--navy-dark);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 8px 32px rgba(212,168,104,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-cta:hover { background: var(--tan-light); transform:translateY(-2px); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns:repeat(2,1fr); }
    .treatments-grid { grid-template-columns:repeat(2,1fr); }
    .stats-grid { grid-template-columns:repeat(2,1fr); }
    .about-content { gap:48px; }
    .footer-content { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding:80px 0; }

    .navbar-links {
        display:none;
        position:fixed; top:0; left:0; right:0; bottom:0;
        background:rgba(27,36,56,0.98);
        backdrop-filter:blur(24px);
        flex-direction:column; justify-content:center; align-items:center;
        gap:24px; z-index:1000;
    }
    .navbar-links.active { display:flex; }
    .navbar-links a { font-size:1.2rem; color: rgba(255,255,255,0.7) !important; }
    .navbar-links a:hover { color: var(--tan) !important; }
    .navbar-toggle { display:flex; }
    .navbar-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
    .navbar-toggle.active span:nth-child(2) { opacity:0; }
    .navbar-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

    .hero h1 { font-size:clamp(2.8rem,12vw,4.5rem); letter-spacing:-1.5px; }

    .features-grid { grid-template-columns:1fr; }
    .feature-card { height: 320px; }
    .treatments-grid { grid-template-columns:1fr; }
    .steps-container { grid-template-columns:1fr; gap:12px; }
    .stats-grid { grid-template-columns:1fr 1fr; }
    .about-content { grid-template-columns:1fr; gap:32px; }
    .about-image { order:-1; }
    .reviews-grid { grid-template-columns:1fr; }
    .contact-grid { grid-template-columns:1fr; }
    .contact-form-wrapper { padding:24px; }
    .form-row { grid-template-columns:1fr; }
    .footer-content { grid-template-columns:1fr; gap:32px; }
    .footer-bottom { flex-direction:column; text-align:center; }
    .floating-cta { display:flex; align-items:center; gap:8px; }

    .hero-info-bar { font-size:0.7rem; padding:10px 20px; bottom:20px; }

    .treatment-combo-inner { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction:column; align-items:center; }
    .btn-primary, .btn-secondary { width:100%; justify-content:center; }
    .stats-grid { grid-template-columns:1fr; }
    .pricing-table { font-size:0.78rem; }
    .pricing-table th, .pricing-table td { padding:10px 12px; }
}

/* ==================== LEGAL MODALS ==================== */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.legal-modal.active {
    display: flex;
}
.legal-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    position: relative;
}
.legal-modal-content h2 {
    padding: 28px 32px 16px;
    margin: 0;
    font-size: 1.5rem;
    color: var(--navy-dark);
    border-bottom: 1px solid #eee;
}
.legal-modal-body {
    padding: 24px 32px 32px;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}
.legal-modal-body h3 {
    color: var(--navy);
    margin: 20px 0 8px;
    font-size: 1.05rem;
}
.legal-modal-body h3:first-child {
    margin-top: 0;
}
.legal-modal-body ul {
    margin: 8px 0 8px 24px;
}
.legal-modal-body li {
    margin-bottom: 4px;
}
.legal-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 1;
}
.legal-modal-close:hover {
    color: #333;
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-banner.active {
    display: block;
}
.cookie-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.cookie-banner-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}
.cookie-banner-content a {
    color: var(--tan);
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.cookie-btn-accept {
    background: var(--tan);
    color: var(--navy-dark);
}
.cookie-btn-accept:hover {
    background: var(--caramel);
    color: #fff;
}
.cookie-btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-btn-reject:hover {
    border-color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
    }
    .legal-modal-content h2 {
        padding: 20px 20px 12px;
        font-size: 1.3rem;
    }
    .legal-modal-body {
        padding: 16px 20px 24px;
    }
}
