/* Font imports - these specific weights matter */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
    /* ===================================
     COLOR SYSTEM
     =================================== */
    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FDFBF7;
    /* Warm off-white for sections */
    --bg-accent: #F8F5F0;
    /* Cream for cards */
    --bg-dark: #1A1A1A;
    /* Footer/contrast sections */

    /* Gold spectrum (use strategically) */
    --gold-light: #E8D5B0;
    /* Subtle accents, borders */
    --gold-main: #C4A052;
    /* Primary buttons, highlights */
    --gold-dark: #A8873A;
    /* Hover states */
    --gold-muted: #D4C4A8;
    /* Disabled/subtle elements */

    /* Text hierarchy */
    --text-primary: #1A1A1A;
    /* Headlines only */
    --text-secondary: #3D3D3D;
    /* Body text */
    --text-tertiary: #6B6B6B;
    /* Captions, meta */
    --text-muted: #9A9A9A;
    /* Placeholders */
    --text-inverse: #FFFFFF;
    /* On dark backgrounds */

    /* Functional */
    --border-light: #E8E4DD;
    /* Subtle dividers */
    --border-medium: #D4CFC5;
    /* Card borders */
    --shadow-color: rgba(26, 26, 26, 0.06);

    /* Overlay */
    --overlay-light: rgba(253, 251, 247, 0.95);
    --overlay-dark: rgba(26, 26, 26, 0.4);

    /* ===================================
     TYPOGRAPHY SYSTEM
     =================================== */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', -apple-system, sans-serif;

    /* Desktop type scale (1.25 ratio) */
    --text-xs: 0.75rem;
    /* 12px - labels */
    --text-sm: 0.875rem;
    /* 14px - small text */
    --text-base: 1rem;
    /* 16px - body */
    --text-lg: 1.125rem;
    /* 18px - lead text */
    --text-xl: 1.25rem;
    /* 20px - card titles */
    --text-2xl: 1.5rem;
    /* 24px - section subtitles */
    --text-3xl: 2rem;
    /* 32px - section titles */
    --text-4xl: 2.5rem;
    /* 40px - page titles */
    --text-5xl: 3.5rem;
    /* 56px - hero headline */
    --text-6xl: 4.5rem;
    /* 72px - dramatic hero */

    /* Line heights */
    --leading-none: 1;
    --leading-tight: 1.15;
    --leading-snug: 1.35;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    /* Letter spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --tracking-wider: 0.1em;
    --tracking-widest: 0.2em;

    /* ===================================
     SPACING SYSTEM
     =================================== */
    /* 8px base unit system */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.5rem;
    /* 24px */
    --space-6: 2rem;
    /* 32px */
    --space-7: 2.5rem;
    /* 40px */
    --space-8: 3rem;
    /* 48px */
    --space-10: 4rem;
    /* 64px */
    --space-12: 5rem;
    /* 80px */
    --space-16: 7rem;
    /* 112px */
    --space-20: 9rem;
    /* 144px */

    /* Container */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-2xl: 1400px;

    /* Section padding */
    --section-py: var(--space-20);
    --section-py-mobile: var(--space-12);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body.loaded {
    overflow-y: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===================================
   TYPOGRAPHY CLASSES
   =================================== */
.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 400;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-normal);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--gold-main);
    margin-bottom: var(--space-4);
    display: block;
}

.body-text,
.section-subtitle,
.service-card__text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 300;
    line-height: var(--leading-normal);
    color: var(--text-secondary);
}

/* ===================================
   LAYOUT & CONTAINERS
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

section {
    padding: var(--section-py) 0;
}

@media (max-width: 768px) {
    :root {
        --section-py: var(--space-12);
        --text-5xl: 2.5rem;
        --text-3xl: 2rem;
    }
}

/* ===================================
   LOADER ANIMATION
   =================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-line {
    width: 120px;
    height: 1px;
    background: var(--border-light);
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-main);
    animation: loadingLine 1.2s ease-in-out infinite;
}

@keyframes loadingLine {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* ===================================
   REVEAL ANIMATIONS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: calc(var(--delay-index, 0) * 0.1s);
}

.reveal-stagger.visible>*:nth-child(1) {
    --delay-index: 0;
}

.reveal-stagger.visible>*:nth-child(2) {
    --delay-index: 1;
}

.reveal-stagger.visible>*:nth-child(3) {
    --delay-index: 2;
}

.reveal-stagger.visible>*:nth-child(4) {
    --delay-index: 3;
}

.line-draw {
    width: 0;
    height: 1px;
    background: var(--gold-main);
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-draw.visible {
    width: 60px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--gold-main);
    color: var(--text-inverse);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 160, 82, 0.25);
    cursor: pointer;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border-medium);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover {
    border-color: var(--gold-main);
    color: var(--gold-main);
    cursor: pointer;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: transparent;
    z-index: 1000;
    transition: background 0.4s ease,
        height 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-light);
}

.header.hidden {
    transform: translateY(-100%);
}

.header__container {
    max-width: var(--container-xl);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo__salon {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.logo__name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.nav__list {
    display: flex;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-main);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

.header__phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    line-height: 1.3;
}

.header__phone-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-main);
}

.header__phone-number {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle__line {
    width: 24px;
    height: 1px;
    background: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active .mobile-toggle__line:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-toggle.active .mobile-toggle__line:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-toggle.active .mobile-toggle__line:nth-child(2) {
    opacity: 0;
}

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

    .mobile-toggle {
        display: flex;
    }

    .header__phone {
        display: none;
    }
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

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

.mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav__link {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    padding: var(--space-4) 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.active .mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger transition delays for menu items */
.mobile-menu.active .mobile-nav__list li:nth-child(1) .mobile-nav__link {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav__list li:nth-child(2) .mobile-nav__link {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-nav__list li:nth-child(3) .mobile-nav__link {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav__list li:nth-child(4) .mobile-nav__link {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-nav__list li:nth-child(5) .mobile-nav__link {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav__list li:nth-child(6) .mobile-nav__link {
    transition-delay: 0.35s;
}

.mobile-nav__link:hover {
    color: var(--gold-main);
}

.mobile-menu__footer {
    margin-top: var(--space-12);
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

.mobile-menu.active .mobile-menu__footer {
    opacity: 1;
}

.mobile-menu__phone {
    display: block;
    font-size: var(--text-lg);
    color: var(--gold-main);
    text-decoration: none;
    margin-bottom: var(--space-4);
}

.mobile-menu__social {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.mobile-menu__social a {
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-20) var(--space-6);
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(232, 213, 176, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(248, 245, 240, 0.6) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

.hero__blob--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 213, 176, 0.3) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero__blob--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 160, 82, 0.15) 0%, transparent 70%);
    bottom: 10%;
    left: -10%;
    animation-delay: -7s;
}

.hero__blob--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 245, 240, 0.4) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-10px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-20px, -10px) scale(1.02);
    }
}

.hero__content {
    max-width: 800px;
    text-align: center;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 0 var(--space-6);
    letter-spacing: -0.02em;
}

.hero__title-accent {
    font-style: italic;
    color: var(--gold-main);
}

.hero__line {
    width: 60px;
    height: 1px;
    background: var(--gold-main);
    margin: 0 auto var(--space-6);
    opacity: 0;
    transform: scaleX(0);
    animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* ===================================
   HERO ENTRANCE ANIMATIONS
   =================================== */
.hero .eyebrow {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero .eyebrow.visible,
.hero .eyebrow.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero__title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.hero__title.visible,
.hero__title.animated,
.loaded .hero__title {
    opacity: 1;
    transform: translateY(0);
}

.hero__line.visible,
.hero__line.animated,
.loaded .hero__line {
    width: 60px;
}

.hero .body-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.hero .body-text.visible,
.loaded .hero .body-text {
    opacity: 1;
    transform: translateY(0);
}

.hero__actions {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero__actions.visible,
.hero__actions.animated,
.loaded .hero__actions {
    opacity: 1;
    transform: translateY(0);
}

.hero__scroll {
    opacity: 0;
    transition: opacity 0.6s ease 0.8s;
}

.loaded .hero__scroll {
    opacity: 1;
}

.hero__text {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto var(--space-8);
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.hero__scroll span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-main), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.section-subtitle {
    margin-top: var(--space-4);
    color: var(--text-tertiary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--bg-primary);
    padding: var(--space-10);
    border: 1px solid transparent;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s ease,
        border-color 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-main) 0%, var(--gold-light) 100%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.06);
    border-color: var(--gold-light);
}

.service-card:hover::before {
    width: 100%;
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold-main);
    margin-bottom: var(--space-6);
    letter-spacing: 0.05em;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.service-card__text {
    margin-bottom: var(--space-6);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-card__link svg {
    transition: transform 0.3s ease;
}

.service-card__link:hover {
    color: var(--gold-main);
    gap: var(--space-3);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===================================
   FOOTER
   =================================== */

/* ===================================
   TRUST INDICATORS SECTION
   =================================== */
.trust-section {
    padding: var(--space-12) 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.trust-section--accent {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: none;
    border-top: 1px solid var(--border-light);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-16);
    text-align: center;
}

.trust-item {
    padding: var(--space-6) var(--space-4);
}

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    color: var(--gold-main);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.trust-label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .trust-grid {
        flex-direction: column;
        gap: var(--space-6);
    }
}

/* ===================================
   ACCORDION STYLES FOR CENNIK
   =================================== */
.accordion-item {
    border: 1px solid var(--border-light);
    margin-bottom: var(--space-4);
    background: var(--bg-primary);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-header__left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.accordion-number {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold-main);
    letter-spacing: 0.05em;
}

.accordion-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.accordion-header__right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.accordion-price-range {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--gold-main);
    font-weight: 500;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.3s ease;
}

.accordion-content__inner {
    padding: 0 var(--space-6) 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
    border-top: 1px solid var(--border-light);
}

.accordion-item.active .accordion-content__inner {
    padding: var(--space-4) var(--space-6) var(--space-6);
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.accordion-link {
    display: inline-flex;
    align-items: center;
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-light);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gold-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 0.3s ease;
}

.accordion-link:hover {
    gap: var(--space-2);
}

/* Pricing row styles inside accordion */
.accordion-content .pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-light);
}

.accordion-content .pricing-row:last-of-type {
    border-bottom: none;
}

/* ===================================
   FOOTER - FIXED
   =================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
    z-index: 10;
    transform: translateZ(0);
    /* Hardware acceleration fix */
    will-change: transform;
}

/* Remove any pseudo-elements that might cause glitches */
.footer::before,
.footer::after {
    display: none;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-8);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 300px;
}

.logo--light .logo__salon {
    color: rgba(255, 255, 255, 0.5);
}

.logo--light .logo__name {
    color: var(--text-inverse);
}

.footer__tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-4);
    line-height: 1.6;
}

.footer__grid {
    display: flex;
    gap: var(--space-16);
    flex-wrap: wrap;
}

.footer__column {
    min-width: 140px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-main);
    margin-bottom: var(--space-5);
}

.footer__links,
.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li,
.footer__contact li {
    margin-bottom: var(--space-3);
}

.footer__links a,
.footer__contact a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--text-inverse);
}

.footer__contact li {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer__social {
    display: flex;
    gap: var(--space-4);
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    background: transparent;
}

.footer__social a:hover {
    border-color: var(--gold-main);
    color: var(--gold-main);
}

.footer__bottom {
    padding-top: var(--space-8);
    text-align: center;
}

.footer__bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .footer__top {
        flex-direction: column;
    }

    .footer__grid {
        flex-direction: column;
        gap: var(--space-8);
    }
}

/* ===================================
   WHATSAPP & COOKIES
   =================================== */


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: var(--space-6);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 1px solid var(--border-light);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    max-width: 800px;
    margin-right: var(--space-4);
}

.cookie-consent a {
    color: var(--gold-main);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .cookie-consent p {
        margin-right: 0;
    }
}

/* ===================================
   PRICING PAGE STYLES (NEW)
   =================================== */
/* Pricing Subheaders */
.pricing-subheader {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-main);
    padding: var(--space-6) 0 var(--space-3);
    margin-top: var(--space-4);
    border-top: 1px solid var(--border-light);
}

/* Service Notes */
.service-note {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 300;
    margin-top: 4px;
}

/* Highlight rows */
.pricing-row--highlight {
    background: var(--bg-secondary);
}

.pricing-row--package {
    background: linear-gradient(90deg, rgba(196, 160, 82, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--gold-main);
}

/* Category badge */
.pricing-category__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-main);
    background: rgba(196, 160, 82, 0.1);
    padding: 6px 12px;
    margin-top: var(--space-3);
}

/* Laser pricing table - special 4-column layout */
.pricing-table--laser {
    display: grid;
    gap: 0;
}

.pricing-table__header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-dark);
    color: var(--text-inverse);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-row--laser {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    transition: background 0.3s ease;
}

.pricing-row--laser:hover {
    background: var(--bg-secondary);
}

.pricing-col--single,
.pricing-col--package,
.pricing-col--savings {
    text-align: center;
    font-weight: 500;
}

.pricing-col--package {
    color: var(--gold-main);
    font-weight: 600;
}

.pricing-col--savings {
    color: var(--text-tertiary);
    font-size: 14px;
}

.pricing-row--premium {
    background: linear-gradient(90deg, rgba(196, 160, 82, 0.1) 0%, rgba(196, 160, 82, 0.02) 100%);
}

.pricing-row--premium .pricing-col--package {
    font-size: 18px;
}

.service-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: var(--gold-main);
    padding: 4px 8px;
    margin-left: var(--space-2);
}

/* Mobile responsive for laser table */
@media (max-width: 768px) {
    .pricing-table__header {
        display: none;
    }

    .pricing-row--laser {
        grid-template-columns: 1fr;
        gap: var(--space-2);
        padding: var(--space-4);
    }

    .pricing-col--service {
        font-weight: 500;
        margin-bottom: var(--space-2);
    }

    .pricing-col--single::before {
        content: 'Pojedynczo: ';
        color: var(--text-tertiary);
        font-weight: 400;
    }

    .pricing-col--package::before {
        content: 'Pakiet 8x: ';
        color: var(--text-tertiary);
        font-weight: 400;
    }

    .pricing-col--savings::before {
        content: 'Za zabieg: ';
        color: var(--text-tertiary);
        font-weight: 400;
    }

    .pricing-col--single,
    .pricing-col--package,
    .pricing-col--savings {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }
}

/* ===================================
   LAYOUT FIXES AND UPDATES
   =================================== */

/* Fix Hero spacing */
.hero .body-text {
    margin-bottom: var(--space-8);
}

/* Fix Cennik pricing alignment */
.pricing-col--single,
.pricing-col--package {
    white-space: nowrap;
}

/* Update Trust/Stats Section Background */
.trust-section--accent {
    background: var(--bg-accent);
    background-image: radial-gradient(circle at 100% 0%, rgba(196, 160, 82, 0.05) 0%, transparent 20%);
    border-top: 1px solid var(--border-light);
}

/* Update Services Section Background */
.services {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #F2F0EB 100%);
}

/* Add CTA Section Styles */
.cta-section {
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(196, 160, 82, 0.03) 0%, transparent 60%);
}

.cta-section .btn-primary {
    min-width: 200px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: var(--space-6);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 1px solid var(--border-light);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    max-width: 800px;
    margin-right: var(--space-4);
}

.cookie-consent a {
    color: var(--gold-main);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .cookie-consent p {
        margin-right: 0;
    }
}

/* ===================================
   PRICING PAGE STYLES (NEW)
   =================================== */
/* Pricing Subheaders */
.pricing-subheader {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-main);
    padding: var(--space-6) 0 var(--space-3);
    margin-top: var(--space-4);
    border-top: 1px solid var(--border-light);
}

/* Service Notes */
.service-note {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 300;
    margin-top: 4px;
}

/* Highlight rows */
.pricing-row--highlight {
    background: var(--bg-secondary);
}

.pricing-row--package {
    background: linear-gradient(90deg, rgba(196, 160, 82, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--gold-main);
}

/* Category badge */
.pricing-category__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-main);
    background: rgba(196, 160, 82, 0.1);
    padding: 6px 12px;
    margin-top: var(--space-3);
}

/* ===================================
   LASER PRICING TABLE - PROPER TABLE
   =================================== */
.laser-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-4);
    font-family: var(--font-body);
}

.laser-table thead {
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.laser-table th {
    padding: var(--space-4) var(--space-3);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.laser-table th.laser-table__service {
    text-align: left;
    width: 35%;
}

.laser-table th.laser-table__price {
    width: 21.66%;
}

.laser-table td {
    padding: var(--space-4) var(--space-3);
    border-bottom: 1px solid var(--border-light);
    font-size: var(--text-base);
    text-align: center;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.laser-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    white-space: normal;
}

.laser-table td:nth-child(2) {
    color: var(--text-secondary);
}

.laser-table__highlight {
    color: var(--gold-main) !important;
    font-weight: 600 !important;
}

.laser-table td:last-child {
    color: var(--text-tertiary);
    font-size: var(--text-sm);
}

.laser-table tbody tr {
    transition: background 0.2s ease;
}

.laser-table tbody tr:hover {
    background: var(--bg-secondary);
}

/* Featured row */
.laser-table__row--featured {
    background: var(--bg-secondary);
}

/* Premium row (Całe ciało) */
.laser-table__row--premium {
    background: linear-gradient(90deg, rgba(196, 160, 82, 0.08) 0%, transparent 100%);
}

.laser-table__row--premium td {
    font-weight: 600;
}

.laser-table__row--premium .laser-table__highlight {
    font-size: var(--text-lg) !important;
}

/* Badge */
.laser-table__badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    background: var(--gold-main);
    padding: 3px 8px;
    margin-left: var(--space-2);
    vertical-align: middle;
    border-radius: 2px;
}

/* ===================================
   LASER TABLE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .laser-table {
        display: block;
    }

    .laser-table thead {
        display: none;
    }

    .laser-table tbody {
        display: block;
    }

    .laser-table tr {
        display: block;
        padding: var(--space-4);
        border-bottom: 1px solid var(--border-light);
        margin-bottom: var(--space-2);
        background: var(--bg-primary);
    }

    .laser-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-2) 0;
        border-bottom: none;
        text-align: right;
    }

    .laser-table td:first-child {
        font-size: var(--text-lg);
        padding-bottom: var(--space-3);
        margin-bottom: var(--space-2);
        border-bottom: 1px solid var(--border-light);
        display: block;
        text-align: left;
    }

    .laser-table td:nth-child(2)::before {
        content: 'Pojedynczo:';
        color: var(--text-tertiary);
        font-weight: 400;
        font-size: var(--text-sm);
    }

    .laser-table td:nth-child(3)::before {
        content: 'Pakiet 8x:';
        color: var(--text-tertiary);
        font-weight: 400;
        font-size: var(--text-sm);
    }

    .laser-table td:last-child::before {
        content: 'Za 1 zabieg:';
        color: var(--text-tertiary);
        font-weight: 400;
        font-size: var(--text-sm);
    }

    .laser-table__badge {
        display: block;
        margin-left: 0;
        margin-top: var(--space-2);
        width: fit-content;
    }

    .laser-table__row--premium,
    .laser-table__row--featured {
        background: var(--bg-secondary);
        border-radius: 4px;
    }
}


/* ===================================
   SERVICE CARDS WITH BACKGROUND IMAGES (FINAL)
   =================================== */
.service-card--with-image {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid var(--border-light);
    isolation: isolate;
}

.service-card__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.service-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gradient overlay for readability */
.service-card__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.service-card--with-image:hover .service-card__bg img {
    transform: scale(1.08);
}

/* Content Container */
.service-card__content {
    position: relative;
    z-index: 2;
    padding: var(--space-8) var(--space-6);
    width: 100%;
}

/* Text Colors */
.service-card--with-image .service-card__number {
    color: var(--gold-main);
    opacity: 0.9;
    margin-bottom: var(--space-2);
}

.service-card--with-image .service-card__title {
    color: #FFFFFF;
    margin-bottom: var(--space-3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card--with-image .service-card__text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
    font-weight: 300;
}

/* Link Button Fix */
.service-card--with-image .service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gold-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease, gap 0.3s ease;
    white-space: nowrap;
    /* Prevents line break */
}

.service-card--with-image .service-card__link:hover {
    color: #FFFFFF;
    gap: var(--space-3);
}

/* Ensure SVG icon doesn't shrink */
.service-card--with-image .service-card__link svg {
    flex-shrink: 0;
}

/* ===================================
   LAYOUT FIXES AND UPDATES
   =================================== */

/* Fix Hero spacing */
.hero .body-text {
    margin-bottom: var(--space-8);
}

/* Fix Cennik pricing alignment */
.pricing-col--single,
.pricing-col--package {
    white-space: nowrap;
}

/* Update Trust/Stats Section Background */
.trust-section--accent {
    background: var(--bg-accent);
    background-image: radial-gradient(circle at 100% 0%, rgba(196, 160, 82, 0.05) 0%, transparent 20%);
    border-top: 1px solid var(--border-light);
}

/* Update Services Section Background */
.services {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #F2F0EB 100%);
}

/* Add CTA Section Styles */
.cta-section {
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(196, 160, 82, 0.03) 0%, transparent 60%);
}

.cta-section .btn-primary {
    min-width: 200px;
}

/* ===================================
   LIGHTBOX STYLES
   =================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
    padding: 10px;
}

.lightbox__caption {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* ===================================
   POLICY MODAL
   =================================== */
.policy-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2005;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.policy-modal.active {
    opacity: 1;
    pointer-events: all;
}

.policy-content {
    background: var(--bg-primary);
    padding: var(--space-8);
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--gold-light);
    max-height: 80vh;
    overflow-y: auto;
}

.policy-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

.policy-text p {
    margin-bottom: var(--space-4);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.policy-text strong {
    color: var(--gold-main);
}