/* ============================================
   DOTYK PIEKNA - Joanna Stosio-Szelag
   Luxury Editorial | Czern + Szampan + Zloto
   Aesthetic: Vogue meets haute beauty
   ============================================ */

/* --- VARIABLES --- */
:root {
    --black: #141214;
    --black-soft: #1C1A1D;
    --champagne: #D4C4A8;
    --warm-white: #F9F6F1;
    --white: #FFFFFF;
    --gold: #C9A96B;
    --gold-light: #DBC08A;
    --gold-deep: #A6854A;
    --chocolate: #5C3D2E;
    --warm-gray: #8E8680;
    --light-beige: #EDE6DC;
    --cream: #F3EDE5;
    --overlay: rgba(20, 18, 20, 0.55);

    --font-display: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
    --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

    --header-h: 80px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--black);
    background: var(--warm-white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .4s var(--ease-out-expo); }
ul { list-style: none; }

/* --- GLOBAL GRAIN TEXTURE --- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- UTILITIES --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--black); }
.text--light { color: rgba(255,255,255,0.8); }

.section__header { text-align: center; margin-bottom: 72px; }
.section__tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}
.section__tag--light { color: var(--gold-light); }
.section__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -0.5px;
}
.section__title--light { color: var(--white); }
.section__desc {
    font-size: 15px;
    color: var(--warm-gray);
    margin-top: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.section__cta { text-align: center; margin-top: 56px; }

/* Gold decorative line — animated draw */
.gold-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 24px 0;
    position: relative;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1s var(--ease-out-expo) 0.3s;
}
.gold-line--center { margin-left: auto; margin-right: auto; transform-origin: center center; }
.gold-line::after {
    content: '';
    position: absolute;
    top: -2px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .5s var(--ease-out-expo) 1s;
}
/* Draw when parent is visible */
.visible .gold-line,
.reveal.visible .gold-line,
.hero__content .gold-line {
    transform: scaleX(1);
}
.visible .gold-line::after,
.reveal.visible .gold-line::after,
.hero__content .gold-line::after {
    opacity: 1;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 42px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 100%; bottom: 0;
    background: var(--gold-light);
    transition: left .5s var(--ease-out-expo), right .5s var(--ease-out-expo);
    z-index: -1;
}
.btn:hover::before { left: 0; right: 0; }
.btn { position: relative; z-index: 0; }

.btn--gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn--gold:hover { border-color: var(--gold-light); color: var(--white); }

.btn--dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn--dark::before { background: var(--gold); }
.btn--dark:hover { border-color: var(--gold); color: var(--white); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline::before { background: var(--white); }
.btn--outline:hover { color: var(--black); border-color: var(--white); }

.btn--outline-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn--outline-dark::before { background: var(--black); }
.btn--outline-dark:hover { color: var(--white); border-color: var(--black); }

/* ================================
   HEADER / NAWIGACJA
   ================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background .5s var(--ease-out-expo), box-shadow .5s;
}
.header.scrolled {
    background: rgba(249,246,241,0.96);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    backdrop-filter: blur(12px);
}
.header.scrolled .header__nav a,
.header.scrolled .header__social a,
.header.scrolled .logo-text,
.header.scrolled .logo-sub {
    color: var(--black);
}
.header.scrolled .header__burger span { background: var(--black); }

.header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo { display: flex; align-items: center; position: relative; z-index: 2; }
.header__logo img {
    height: 170px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height .5s var(--ease-out-expo), filter .5s;
}
.header.scrolled .header__logo img {
    height: 56px;
    filter: none;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: color .5s;
}
.logo-sub {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.6;
    transition: color .5s;
    margin-top: 2px;
}

.header__nav { display: flex; gap: 36px; }
.header__nav a {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    transition: color .5s;
}
.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .5s var(--ease-out-expo);
}
.header__nav a:hover::after { width: 100%; }
.header__nav a:hover { color: var(--gold); }
.header.scrolled .header__nav a:hover { color: var(--gold); }

.header__social { display: flex; gap: 18px; }
.header__social a {
    color: var(--white);
    transition: color .4s, transform .4s;
}
.header__social a:hover { color: var(--gold); transform: translateY(-2px); }

/* Subpage header */
.header--subpage { background: rgba(20, 18, 20, 0.92); backdrop-filter: blur(8px); }
.header--subpage .header__nav a,
.header--subpage .header__social a,
.header--subpage .logo-text,
.header--subpage .logo-sub { color: var(--white); }
.header--subpage .header__logo img { filter: brightness(0) invert(1); }
.header--subpage.scrolled .header__logo img { filter: none; }
.header--subpage.scrolled { background: rgba(249,246,241,0.96); }

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none; border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.header__burger span {
    display: block;
    width: 26px; height: 1px;
    background: var(--white);
    transition: all .4s var(--ease-out-expo);
    transform-origin: center;
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================
   HERO
   ================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
}
.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(20,18,20,0.15) 0%,
            rgba(20,18,20,0.35) 40%,
            rgba(20,18,20,0.65) 80%,
            rgba(20,18,20,0.8) 100%
        );
}
/* Vignette */
.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(20,18,20,0.3) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}
.hero__pre {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .9s .4s var(--ease-out-expo) forwards;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(46px, 9vw, 96px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeUp 1s .6s var(--ease-out-expo) forwards;
}
.hero__subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-top: 8px;
    color: rgba(255,255,255,0.7);
    opacity: 0;
    animation: fadeUp 1s .8s var(--ease-out-expo) forwards;
}
.hero__line {
    width: 48px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 32px auto;
    opacity: 0;
    animation: lineGrow 1.2s 1s var(--ease-out-expo) forwards;
}
@keyframes lineGrow {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: 48px; }
}
.hero__motto {
    font-family: var(--font-display);
    font-size: clamp(17px, 2.5vw, 24px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
    opacity: 0;
    animation: fadeUp 1s 1.2s var(--ease-out-expo) forwards;
}
.hero__cta {
    margin-top: 48px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1.5s var(--ease-out-expo) forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s 2s var(--ease-out-expo) forwards;
}
.hero__scroll span {
    color: rgba(255,255,255,0.35);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}
.hero__scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollDrift 2.5s ease-in-out infinite;
}
@keyframes scrollDrift {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.6; transform: scaleY(1.1); }
}

/* ================================
   O MNIE (about)
   ================================ */
.about__grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 96px;
    align-items: center;
}
.about__grid--reverse {
    grid-template-columns: 6fr 5fr;
}
.about__image {
    position: relative;
}
.about__image::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: -1;
    transition: all .6s var(--ease-out-expo);
}
.about__image:hover::before {
    top: -8px; left: -8px;
    opacity: 0.5;
}
.about__image img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3/4;
    filter: saturate(0.9);
    transition: filter .6s;
}
.about__image:hover img { filter: saturate(1); }

.about__content p {
    font-size: 15px;
    margin-bottom: 18px;
    color: #605A55;
    line-height: 1.8;
}
.about__quote {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: var(--gold) !important;
    margin: 32px 0;
    line-height: 1.55;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
}
.about__content .btn { margin-top: 16px; }

/* ================================
   USLUGI (services)
   ================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 44px 28px 36px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all .5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .5s var(--ease-out-expo);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: rgba(201,169,107,0.15);
    box-shadow: 0 20px 60px rgba(20,18,20,0.06);
    transform: translateY(-6px);
}
.service-card__icon {
    color: var(--gold);
    margin-bottom: 24px;
    transition: transform .5s var(--ease-out-expo);
}
.service-card:hover .service-card__icon { transform: scale(1.1); }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.3;
}
.service-card p {
    font-size: 13px;
    color: var(--warm-gray);
    margin-bottom: 24px;
    line-height: 1.75;
}
.service-card__link {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: color .4s, letter-spacing .4s;
}
.service-card__link:hover { color: var(--chocolate); letter-spacing: 3px; }

/* ================================
   GALERIA METAMORFOZ
   ================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gallery__item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform .7s var(--ease-out-expo), filter .5s;
    filter: saturate(0.85);
}
.gallery__item:hover img {
    transform: scale(1.06);
    filter: saturate(1);
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20,18,20,0.25) 100%);
    opacity: 0;
    transition: opacity .5s;
}
.gallery__item:hover::after { opacity: 1; }
/* Subtle gold border on hover */
.gallery__item::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid var(--gold);
    opacity: 0;
    z-index: 2;
    transition: opacity .5s, inset .5s var(--ease-out-expo);
}
.gallery__item:hover::before {
    opacity: 0.5;
    inset: 12px;
}

/* ================================
   SZKOLENIA (training)
   ================================ */
.training__grid {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 96px;
    align-items: center;
}
.training__content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
}
.training__list {
    margin: 28px 0 36px;
}
.training__list li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
    line-height: 1.6;
}
.training__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 10px; height: 10px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transition: background .3s;
}
.training__list li:hover::before {
    background: var(--gold);
}
.training__image {
    position: relative;
}
.training__image::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 100%; height: 100%;
    border: 1px solid rgba(201,169,107,0.2);
    z-index: -1;
}
.training__image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    filter: saturate(0.9);
}

/* ================================
   OPINIE (reviews)
   ================================ */
.reviews--bg,
.section--bg-photo {
    position: relative;
    overflow: hidden;
}
.reviews__bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.reviews__bg-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.12;
    filter: saturate(0) brightness(0.6);
}
.reviews--bg .container,
.section--bg-photo .container {
    position: relative;
    z-index: 1;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.review-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 44px 36px;
    transition: all .5s var(--ease-out-expo);
    position: relative;
}
.review-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.12;
    position: absolute;
    top: 16px; left: 24px;
    line-height: 1;
}
.review-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.review-card__stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 24px;
}
.review-card__text {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.75;
    color: #605A55;
    margin-bottom: 28px;
}
.review-card__name {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gray);
}

/* ================================
   PHOTO BREAK - fullwidth cinematic
   ================================ */
.photo-break {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.photo-break img {
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(0.85);
    transition: transform 8s linear;
}
.photo-break.visible img {
    transform: scale(1.03);
}

/* ================================
   TRIPTYCH - Editorial Photo Reveal
   ================================ */
.triptych__header { text-align: center; margin-bottom: 48px; }

.triptych__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 16px;
    align-items: end;
}
.triptych__item {
    position: relative;
    overflow: hidden;
}
.triptych__item--1 { padding-top: 24px; }
.triptych__item--3 { padding-top: 48px; }

.triptych__item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.9);
    display: block;
    transform: scale(1.08);
    transition: transform 1.4s var(--ease-out-expo), filter .6s;
}

.triptych__curtain {
    position: absolute;
    inset: 0;
    background: var(--warm-white);
    z-index: 2;
    transform: scaleX(1);
    transition: transform 1.2s var(--ease-out-expo);
}
.triptych__item--1 .triptych__curtain { transform-origin: right center; }
.triptych__item--2 .triptych__curtain { transform-origin: center top; }
.triptych__item--3 .triptych__curtain { transform-origin: left center; }

.triptych__item.revealed .triptych__curtain { transform: scaleX(0); }
.triptych__item--2.revealed .triptych__curtain { transform: scaleY(0); }
.triptych__item.revealed img { transform: scale(1); }

.triptych__item:hover img {
    filter: saturate(1);
    transform: scale(1.03);
}

.triptych__item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 1s var(--ease-out-expo) 0.8s;
    z-index: 3;
}
.triptych__item.revealed::after { width: 100%; }

@media (max-width: 768px) {
    .triptych__grid { grid-template-columns: 1fr; gap: 12px; }
    .triptych__item--1, .triptych__item--3 { padding-top: 0; }
}

/* ================================
   MARQUEE - Elegant scrolling text
   ================================ */
.marquee {
    overflow: hidden;
    padding: 48px 0;
    background: var(--black);
    position: relative;
}
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}
.marquee__text {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 0.5px rgba(201,169,107,0.35);
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ================================
   COUNTER STAT
   ================================ */
.counter-stat {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 28px;
}
.counter-stat__number {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 80px);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -2px;
}
.counter-stat__suffix {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
}
.counter-stat__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-left: 12px;
    align-self: center;
}

/* ================================
   INSTAGRAM
   ================================ */
.instagram__split {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 80px;
    align-items: center;
}
.instagram__photo {
    position: relative;
}
.instagram__photo::before {
    content: '';
    position: absolute;
    bottom: -14px; right: -14px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.25;
    z-index: -1;
}
.instagram__photo img {
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
    aspect-ratio: 3/4;
    filter: saturate(0.9);
}
.instagram__inner {
    padding: 48px 0;
}
.instagram__handle {
    font-family: var(--font-display);
    font-size: 28px;
    font-style: italic;
    color: var(--gold);
    margin: 24px 0 36px;
}

.instagram__reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}
.instagram__reel {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform .4s var(--ease-out-expo), box-shadow .4s var(--ease-out-expo);
}
.instagram__reel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.instagram__reel iframe {
    width: 100%;
    min-height: 540px;
    display: block;
}
@media (max-width: 1024px) {
    .instagram__reels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .instagram__reels { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
    .instagram__reel iframe { min-height: 480px; }
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 96px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 56px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__brand .logo-text {
    font-size: 28px;
    color: var(--white);
}
.footer__brand .logo-sub {
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
    display: block;
}
.footer__desc {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 20px;
}
.footer h4 {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
    font-size: 14px;
    opacity: 0.55;
    transition: opacity .4s, color .4s, transform .4s;
}
.footer__nav a:hover { opacity: 1; color: var(--gold); transform: translateX(4px); }

.footer__contact p { font-size: 14px; margin-bottom: 10px; }
.footer__contact a:hover { color: var(--gold); }

.footer__social { display: flex; gap: 18px; margin-top: 20px; }
.footer__social a {
    color: rgba(255,255,255,0.4);
    transition: color .4s, transform .4s;
}
.footer__social a:hover { color: var(--gold); transform: translateY(-3px); }

.footer__bottom {
    text-align: center;
    padding: 28px 0;
    font-size: 11px;
    opacity: 0.3;
    letter-spacing: 0.5px;
}

/* ================================
   LIGHTBOX
   ================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10,8,10,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease-out-expo), visibility .4s;
    backdrop-filter: blur(20px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    animation: lightboxIn .5s var(--ease-out-expo);
}
@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.lightbox__close {
    position: absolute;
    top: 28px; right: 36px;
    background: none; border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity .3s, transform .3s;
    line-height: 1;
    font-weight: 300;
}
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered children */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }

/* --- Directional Reveal Variants --- */
.reveal--left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal--left.visible { opacity: 1; transform: translateX(0); }

.reveal--right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal--right.visible { opacity: 1; transform: translateX(0); }

.reveal--scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal--scale.visible { opacity: 1; transform: scale(1); }

.reveal--clip {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
    transform: none;
    transition: clip-path 1.1s var(--ease-out-expo);
}
.reveal--clip.visible { clip-path: inset(0 0 0 0); }

/* Staggered grid children */
[data-stagger] > .reveal {
    transition-delay: calc(var(--stagger-index, 0) * var(--stagger-step, 0.1s));
}

/* ================================
   PODSTRONY - hero wewnetrzny
   ================================ */
.page-hero {
    position: relative;
    height: 80vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--black);
}
.page-hero__bg {
    position: absolute;
    inset: 0;
}
.page-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.55;
    filter: saturate(0.7);
}
.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: clamp(32px, 8vw, 120px);
    color: var(--white);
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.5px;
    animation: fadeUp .9s .2s var(--ease-out-expo) both;
}
.page-hero__sub {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 16px;
    font-weight: 400;
    animation: fadeUp .9s .4s var(--ease-out-expo) both;
}

/* ================================
   CENNIK (pricing) — Apple-style cards
   ================================ */
.pricing-page { padding-bottom: 40px; }
.pricing-page__header { text-align: center; margin-bottom: 64px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.pricing-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

/* --- Card --- */
.price-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease-out-expo), box-shadow .4s var(--ease-out-expo);
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.price-card--featured {
    border: 1.5px solid var(--gold);
    position: relative;
}
.price-card--featured::before {
    content: 'Najpopularniejsze';
    position: absolute;
    top: -12px;
    left: 36px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    font-family: var(--font-body);
}

.price-card--dark {
    background: var(--black);
    border-color: transparent;
}
.price-card--dark .price-card__num { color: var(--gold); opacity: 1; }
.price-card--dark .price-card__title { color: var(--white); }
.price-card--dark .price-card__desc { color: rgba(255,255,255,0.7); }
.price-card--dark .price-card__row { border-color: rgba(255,255,255,0.08); }
.price-card--dark .price-card__row span:first-child { color: rgba(255,255,255,0.6); }
.price-card--dark .price-card__price { color: var(--white); }

.price-card__head {
    margin-bottom: 28px;
}
.price-card__num {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.3;
    display: block;
    margin-bottom: 8px;
}
.price-card__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
}

.price-card__body {
    flex: 1;
}

.price-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 16px;
}
.price-card__row:last-child { border-bottom: none; }
.price-card__row span:first-child {
    font-size: 14px;
    color: #605A55;
    line-height: 1.4;
}

.price-card__price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
    flex-shrink: 0;
}
.price-card__price--ask {
    font-size: 12px;
    font-family: var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.price-card__note {
    font-size: 12px;
    color: var(--warm-gray);
    font-style: italic;
    margin-top: 20px;
    line-height: 1.7;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.price-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #605A55;
    margin-bottom: 16px;
}

.price-card__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}
.price-card__actions .btn { text-align: center; }

.btn--outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn--outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

/* Pricing responsive */
@media (max-width: 1024px) {
    .pricing-grid--three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .pricing-grid,
    .pricing-grid--three { grid-template-columns: 1fr; }
    .price-card { padding: 32px 24px 28px; }
}

/* ================================
   GALERIA PELNA (metamorfozy page)
   ================================ */
.gallery-full__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-full__item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-full__item img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform .7s var(--ease-out-expo), filter .5s;
    filter: saturate(0.85);
}
.gallery-full__item:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

/* ================================
   SZKOLENIA PAGE
   ================================ */
.makeup-types__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin: 48px 0;
}
.makeup-type-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 32px 20px;
    text-align: center;
    transition: all .5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.makeup-type-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .5s var(--ease-out-expo);
}
.makeup-type-card:hover::after { transform: scaleX(1); }
.makeup-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.05);
}
.makeup-type-card__num {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1;
}
.makeup-type-card__name {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Training offer cards */
.training-offer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.training-offer-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 40px 28px 36px;
    text-align: center;
    position: relative;
    transition: all .5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.training-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}
.training-offer-card--featured {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, rgba(201,169,107,0.04) 0%, var(--white) 100%);
}
.training-offer-card__badge {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}
.training-offer-card__num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.5;
}
.training-offer-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--black);
}
.training-offer-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 28px;
    flex: 1;
}
.btn--sm {
    padding: 10px 28px;
    font-size: 10px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    margin: 48px 0;
}
.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.benefit-item__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    transition: all .4s;
}
.benefit-item:hover .benefit-item__icon {
    background: var(--gold);
    color: var(--white);
}
.benefit-item__text h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 6px;
}
.benefit-item__text p {
    font-size: 14px;
    color: #605A55;
    line-height: 1.7;
}

/* Training gallery */
.training-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.training-gallery__item {
    overflow: hidden;
}
.training-gallery__item img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: transform .7s var(--ease-out-expo), filter .5s;
    filter: saturate(0.85);
}
.training-gallery__item:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

/* ================================
   KONTAKT PAGE
   ================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}
.contact__photo {
    position: relative;
}
.contact__photo img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3/4;
    filter: saturate(0.9);
}
.contact__photo::before {
    content: '';
    position: absolute;
    bottom: -14px; left: -14px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.25;
    z-index: -1;
}
.contact__info h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-style: italic;
    margin-bottom: 28px;
}
.contact__detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
    transition: transform .4s;
}
.contact__detail:hover { transform: translateX(4px); }
.contact__detail-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all .4s;
}
.contact__detail:hover .contact__detail-icon {
    background: var(--gold);
    color: var(--white);
}
.contact__detail h4 {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 6px;
}
.contact__detail p, .contact__detail a {
    font-size: 16px;
    color: var(--black);
}

.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--light-beige);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    transition: border-color .4s, box-shadow .4s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,107,0.08);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ================================
   OPINIE PAGE
   ================================ */
.reviews-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

/* ================================
   REGULAMIN PAGE
   ================================ */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}
.legal-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    margin: 40px 0 14px;
}
.legal-content p, .legal-content li {
    font-size: 15px;
    color: #605A55;
    margin-bottom: 14px;
    line-height: 1.8;
}
.legal-content ol, .legal-content ul {
    padding-left: 24px;
    list-style: decimal;
}

/* ================================
   SECTION DECORATIVE ELEMENTS
   ================================ */
.section--cream::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-beige), transparent);
}
.section--dark::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,107,0.3), transparent);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .about__grid,
    .training__grid,
    .contact__grid,
    .instagram__split {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about__grid { gap: 48px; }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .instagram__photo { max-width: 400px; }
    .instagram__inner { text-align: center; }
    .instagram__inner .gold-line { margin-left: auto; margin-right: auto; }
}

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

    /* Mobile logo */
    .header__logo img { height: 90px; }
    .header.scrolled .header__logo img { height: 44px; }

    /* Mobile nav */
    .header__burger { display: flex; }
    .header__social { display: none; }
    .header__nav {
        position: fixed;
        top: 0; right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform .5s var(--ease-out-expo);
    }
    .header__nav.open { transform: translateX(0); }
    .header__nav a {
        font-size: 13px;
        letter-spacing: 4px;
        color: var(--white) !important;
    }

    .photo-break { height: 40vh; min-height: 250px; }
    .photo-break img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
    .reveal--left { transform: translateX(-30px); }
    .reveal--right { transform: translateX(30px); }
    .reveal--left.visible, .reveal--right.visible { transform: translateX(0); }
    .instagram__photo::before { display: none; }
    .contact__photo::before { display: none; }
    .contact__photo img { aspect-ratio: 3/4; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .services__grid { grid-template-columns: 1fr 1fr; }
    .about__grid--reverse { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .reviews__grid { grid-template-columns: 1fr; }
    .training__image { order: -1; }
    .about__image::before { display: none; }
    .training__image::after { display: none; }

    .about__image img,
    .training__image img {
        aspect-ratio: 3/4;
        object-position: center top;
    }
}

@media (max-width: 480px) {
    .services__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; }
    .hero__cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; text-align: center; }
    .makeup-types__grid { grid-template-columns: 1fr 1fr; }
    .training-offer__grid { grid-template-columns: 1fr 1fr; }
    .hero__title { font-size: clamp(38px, 12vw, 52px); }
    .reviews-page__grid { grid-template-columns: 1fr; }
}
