        :root{
            --black: #070707;
            --dark: #120d0d;
            --gold: #d6ab5c;
            --gold-soft: #e5c98d;
            --cream: #f6f1ea;
            --text-light: #f3eee8;
            --text-dark: #2b221c;
            --brown-texture-1: #2a1716;
            --brown-texture-2: #3a2523;
            --line: rgba(214, 171, 92, 0.55);
            --shadow: 0 10px 30px rgba(0,0,0,0.25);
            --radius: 18px;
            --container: 1240px;
        }

        *{
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html{
            scroll-behavior: smooth;
        }

        body{
            font-family: 'Inter', sans-serif;
            background: var(--black);
            color: var(--text-light);
            line-height: 1.6;
            font-weight: 300;

        }
        body.page-loaded {
    opacity: 1;
}

        img{
            max-width: 100%;
            display: block;
        }

        a{
            text-decoration: none;
            color: inherit;
        }

        ul{
            list-style: none;
        }

        .container{
            width: min(var(--container), calc(100% - 40px));
            margin: 0 auto;
        }
        .container H3 {
            color: var(--text-light);
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            margin-top: 12px;
        }

        .section-title{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(40px, 5vw, 64px);
            line-height: 1.05;
            font-weight: 600;
            color: var(--gold);
            text-align: center;
            margin-bottom: 40px;
                z-index: 100;
                padding-top: 30px;

        }

        .btn-gold{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 56px;
            padding: 14px 34px;
            background: linear-gradient(180deg, #e6bf73 0%, #d8a851 100%);
            color: #1b140d;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 4px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: .5px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
        }

        .btn-gold:hover{
            transform: translateY(-2px);
            filter: brightness(1.03);
            box-shadow: 0 10px 24px rgba(0,0,0,0.3);
        }

.dark-texture{
    position: relative;
}

.hero.dark-texture::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;

    background-color: rgba(48, 36, 26, 1);

}

        .light-section{
            background: var(--cream);
            color: var(--text-dark);
        }
        .light-section h3{
            color: var(--text-dark);
        }

        /* HEADER */
        .site-header{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(7,7,7,0.96);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(214,171,92,0.18);
        }

        .site-header .inner{
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            gap: 30px;
            min-height: 106px;
        }

        .logo img{
            max-height: 92px;
            width: auto;
            object-fit: contain;
        }

        .main-nav ul{
            display: flex;
            justify-content: center;
            gap: 48px;
        }

        .main-nav a{
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: #f1e8dc;
            transition: color .2s ease;
        }

        .main-nav a:hover{
            color: var(--gold);
        }

 .hero{
    position: relative;
    overflow: hidden;
    min-height: 720px;
}

.hero .container.hero-grid{
    position: relative;
    min-height: 720px;
    display: block;
    width: min(var(--container), calc(100% - 40px));
}

.hero-copy{
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 720px;
    width: 52%;
    padding: 80px 0;
}

.hero-copy::after{
    display: none;
}

.hero-copy-inner{
    max-width: 600px;
}
.hero h1{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(50px, 5vw, 70px);
            line-height: .95;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 28px;
        }
.hero h3{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(30px, 4vw, 40px);
            font-style: italic;
            line-height: .95;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 28px;
        }


        .hero-subtitle{
            font-size: clamp(16px, 2vw, 16px);
            color: var(--text-light);
            margin-bottom: 28px;
            max-width: 600px;
            font-weight: 100;
            line-height: 200%;
        }

        .hero-points{
            margin-bottom: 34px;
        }

        .hero-points li, .hero li{
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 18px;
            color: #f0e7dc;
        }

        .hero-points li::before, .hero li::before {
            content: "•";
            color: var(--gold);
            font-size: 26px;
            line-height: 1;
        }
.hero-image-wrap{
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-slider{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    z-index: 0;
}

.hero-slide.active{
    opacity: 1;
    z-index: 1;
}

.hero-image-wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient( 
            90deg,
            rgba(48, 36, 26,1) 0%,
            rgba(48, 36, 26,0.78) 28%,
            rgba(48, 36, 26,0.42) 48%,
            rgba(48, 36, 26,0.10) 68%,
            rgba(48, 36, 26,0.00) 100%
        );
}

.header-right{
    display: flex;
    align-items: center;
    gap: 18px;
    justify-self: end;
}

.header-social{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social a{
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214,171,92,0.38);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(255,255,255,0.02);
    transition: all .25s ease;
}

.header-social a:hover{
    transform: translateY(-2px);
    border-color: rgba(214,171,92,0.78);
    background: rgba(214,171,92,0.08);
    color: var(--gold-soft);
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

.header-social svg{
    width: 18px;
    height: 18px;
}

        /* ABOUT */
        .about{
            padding: 90px 0;
        }

        .about-grid{
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image{
            border: 2px solid rgba(214,171,92,0.55);
            padding: 10px;
            background: #fff;
            box-shadow: var(--shadow);
        }

        .about-image img{
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }

        .about-text h2{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(42px, 4vw, 60px);
            line-height: 1;
            color: #b8893d;
            margin-bottom: 18px;
            font-weight: 600;
        }

        .about-text p{
            font-size: 20px;
            max-width: 760px;
            margin-bottom: 24px;
            color: #4b3a2f;
        }

        .about-badge{
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: #b8893d;
            font-size: 22px;
            font-weight: 500;
        }

        .about-badge::before{
            content: "✓";
            font-size: 26px;
            font-weight: 700;
        }

        /* SERVICES */

.services{
    padding: 90px 0 100px;
    background: url("../img/thebeautybox-services-bg.webp") center / cover no-repeat;
}

.services-grid{
    display: grid;
    gap: 28px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    justify-content: center;
    justify-items: center;
    max-width: 1000px;
}

.services-grid.cards-4{
    grid-template-columns: repeat(4, minmax(220px, 300px));
    max-width: 1240px;
}

.services-grid.cards-5{
    grid-template-columns: repeat(6, minmax(110px, 150px));
    max-width: 956px;
}

.services-grid > a{
    display: block;
}

.services-grid.cards-5 > a{
    grid-column: span 2;
}

.services-grid.cards-5 > a:nth-child(1){ grid-column: 1 / span 2; }
.services-grid.cards-5 > a:nth-child(2){ grid-column: 3 / span 2; }
.services-grid.cards-5 > a:nth-child(3){ grid-column: 5 / span 2; }
.services-grid.cards-5 > a:nth-child(4){ grid-column: 2 / span 2; }
.services-grid.cards-5 > a:nth-child(5){ grid-column: 4 / span 2; }

/* KÉPES KÁRTYA */
.service-card.image-card{
    width: 100%;
    max-width: 300px;
    height: 400px;
    min-height: 400px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: #120d0d;
    border: 1px solid rgba(214,171,92,0.45);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.service-card.image-card:hover{
    transform: translateY(-6px);
    border-color: rgba(214,171,92,0.85);
    box-shadow: 0 12px 28px rgba(0,0,0,0.30);
}

.service-image{
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.service-image picture,
.service-image img,
.service-image-placeholder{
    width: 100%;
    height: 100%;
    display: block;
}

.service-image img{
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.service-card.image-card:hover .service-image img{
    transform: scale(1.05);
}

.service-image::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.12) 0%,
        rgba(0,0,0,0.22) 32%,
        rgba(0,0,0,0.68) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.service-image-placeholder{
    background:
        linear-gradient(135deg, rgba(214,171,92,0.10), rgba(255,255,255,0.03)),
        #120d0d;
}

.service-content{
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 22px 20px 24px;
    color: #fff;
}

.service-card.image-card h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    line-height: 1.08;
    color: #f6ead8;
    margin: 0 0 10px;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.service-card.image-card p{
    color: #f3eee8;
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 16px;
    max-width: 240px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.service-card.image-card:hover h3{
    color: var(--gold-soft);
}

.service-card.image-card .service-price{
    margin-top: 0;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
        .contact{
            background: var(--text-dark);
            color: var(--cream);
            display: flex;
            padding: 28px;
        }
        .contact ul{
            margin: 8px;
        }
        .contact li{
            line-height: 200%;
        }
        .contact i{
            font-size: 30px;
            line-height: 48px;
            margin-right: 8px;
        }
        .terkep {
            width: 50%;
            float: right;
            height: 400px;
            border-left: 2px solid rgba(214,171,92,0.55);
            padding: 8px;
            box-shadow: var(--shadow);
        }

        /* PRICING */
        .pricing{
            padding: 90px 0 100px;
        }

        .pricing-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 34px;
        }

        .price-box{
            border: 1px solid rgba(214,171,92,0.65);
            padding: 38px 40px 34px;
            background: rgba(255,255,255,0.3);
            position: relative;
        }

        .price-badge{
            position: absolute;
            top: -26px;
            left: 50%;
            transform: translateX(-50%);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(214,171,92,0.65);
            background: var(--cream);
            color: #b8893d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-family: 'Cormorant Garamond', serif;
        }

        .price-box h3{
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px;
            line-height: 1.05;
            font-weight: 500;
            color: #2c221d;
            margin-bottom: 28px;
        }

        .price-list li{
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            font-size: 20px;
            color: #3d3028;
        }

        .price-list .line{
            height: 1px;
            background: rgba(44,34,29,0.15);
        }

        .price-list .value{
            font-weight: 600;
        }

        /* BOOKING CTA */
        .booking-cta{
            padding: 100px 0 110px;
            text-align: center;
        }

        .booking-cta h2{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(42px, 5vw, 68px);
            line-height: 1.08;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 30px;
        }

        /* FOOTER */
        .site-footer{
            padding: 28px 0 36px;
            background: #080808;
            border-top: 1px solid rgba(214,171,92,0.18);
            text-align: center;
            color: rgba(243,238,232,0.7);
            font-size: 14px;
        }

        /* MOBILE NAV */
        .menu-toggle{
            display: none;
        }

  