/* ==========================================================================
   FIT CLINIC — Minimalist Clinical Design System
   Inspired by Korean & Scandinavian aesthetic clinics
   ========================================================================== */

:root {
    /* Colors — ONLY #D4C4E0 + white */
    --c-bg: #D4C4E0;
    --c-bg-alt: #D4C4E0;
    --c-bg-lilac: #D4C4E0;
    --c-cream: #D4C4E0;
    --c-rose: #D4C4E0;
    --c-rose-light: #D4C4E0;
    --c-lilac: #D4C4E0;
    --c-cta: #6B4F7A;
    --c-cta-hover: #5A3F68;
    --c-text: #2E1F3A;
    --c-text-secondary: #4A3658;
    --c-text-muted: #6E5A7E;
    --c-border: rgba(46, 31, 58, 0.15);
    --c-border-light: rgba(46, 31, 58, 0.08);
    --c-white: #FFFFFF;

    /* Typography — Cormorant Garamond: elegant serif with full Polish support */
    --f-display: 'Cormorant Garamond', Georgia, serif;
    --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing — generous breathing room (Olimed-inspired) */
    --s-xs: 0.25rem;
    --s-sm: 0.5rem;
    --s-md: 1rem;
    --s-lg: 1.75rem;
    --s-xl: 3rem;
    --s-2xl: 5rem;
    --s-3xl: 7rem;
    --s-section: 7rem;

    /* Layout */
    --max-w: 1280px;
    --max-w-narrow: 800px;
    --gutter: 2rem;

    /* Misc */
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-subtle: 0 1px 3px rgba(46, 31, 58, 0.04);
    --shadow-card: 0 4px 20px rgba(46, 31, 58, 0.06);
    --shadow-lift: 0 12px 40px rgba(46, 31, 58, 0.10);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --header-h: 80px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-text);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container--narrow {
    max-width: var(--max-w-narrow);
}
.section {
    padding: var(--s-section) 0;
}
.section--alt {
    background: var(--c-bg);
}
.section--white {
    background: var(--c-white);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.eyebrow {
    display: block;
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-cta);
    margin-bottom: var(--s-md);
}
.display-hero {
    font-family: var(--f-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--c-white);
}
.display-section {
    font-family: var(--f-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--c-text);
}
h3, .h3 {
    font-family: var(--f-display);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.3;
}
h4 {
    font-family: var(--f-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.text-center { text-align: center; }
.text-small { font-size: 0.8125rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 100px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, letter-spacing 0.4s ease;
    white-space: nowrap;
}
.btn:hover {
    letter-spacing: 0.06em;
}
.btn:active {
    transform: translateY(0) scale(0.97);
    transition-duration: 0.1s;
}
.btn--primary {
    background: var(--c-cta);
    color: var(--c-white);
}
.btn--primary:hover {
    background: var(--c-cta-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lift);
}
.btn--outline {
    border: 1px solid var(--c-border);
    color: var(--c-text);
    background: transparent;
}
.btn--outline:hover {
    border-color: var(--c-cta);
    color: var(--c-cta);
}
.btn--outline-light {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--c-white);
    background: transparent;
}
.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}
.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}
.btn--ghost {
    color: var(--c-cta);
    padding: 0.5rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--c-cta);
}
.btn--ghost:hover {
    opacity: 0.7;
}

/* ==========================================================================
   PREVIEW POPUP
   ========================================================================== */
.preview-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 31, 58, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.preview-popup.visible {
    opacity: 1;
    pointer-events: all;
}
.preview-popup__card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: var(--s-2xl);
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(46, 31, 58, 0.2);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.preview-popup.visible .preview-popup__card {
    transform: scale(1) translateY(0);
}
.preview-popup__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #D4C4E0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s-lg);
    color: var(--c-cta);
}
.preview-popup__title {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--s-sm);
}
.preview-popup__text {
    font-size: 0.875rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--s-xl);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
body { padding-top: var(--header-h); }
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 900;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--c-border-light);
}
.header.is-scrolled {
    box-shadow: 0 2px 20px rgba(46, 31, 58, 0.06);
}
.header.is-hidden {
    transform: translateY(-100%);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--s-xl);
}
.header__cta {
    padding: 0.625rem 1.75rem;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}
.logo__main {
    font-family: var(--f-display);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--c-text);
}
.logo__tagline {
    font-family: var(--f-body);
    font-size: 0.5625rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-top: 2px;
}

/* Desktop Nav */
.nav__desktop {
    display: flex;
    align-items: center;
}
.nav__list {
    display: flex;
    gap: 2.25rem;
}
.nav__link {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--c-text-secondary);
    transition: var(--transition);
    letter-spacing: 0.01em;
    position: relative;
    padding: 6px 0;
}
.nav__link:hover,
.nav__link.active {
    color: var(--c-text);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--c-cta);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
    z-index: 1002;
}
.menu-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--c-text);
    transition: var(--transition);
    border-radius: 2px;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   MOBILE NAV (separate from desktop)
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(46, 31, 58, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    background: var(--c-white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 48px rgba(46, 31, 58, 0.15);
    overflow-y: auto;
}
.mobile-nav.open {
    transform: translateX(0);
}
.mobile-nav__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--s-xl) var(--s-xl) var(--s-lg);
    border-bottom: 1px solid var(--c-border-light);
}
.mobile-nav__brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.mobile-nav__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--c-text);
    transition: var(--transition);
    flex-shrink: 0;
    margin: -8px -8px 0 0;
}
.mobile-nav__close:hover {
    background: #D4C4E0;
}
.mobile-nav__list {
    flex: 1;
    padding: var(--s-md) 0;
}
.mobile-nav__list li {
    border-bottom: 1px solid var(--c-border-light);
}
.mobile-nav__list li:last-child {
    border-bottom: none;
}
.mobile-nav__link {
    display: block;
    padding: var(--s-md) var(--s-xl);
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--c-text);
    transition: var(--transition);
}
.mobile-nav__link:hover,
.mobile-nav__link:active {
    background: #D4C4E0;
    color: var(--c-text);
    padding-left: calc(var(--s-xl) + 4px);
}
.mobile-nav__link.active {
    background: rgba(212, 196, 224, 0.35);
    color: var(--c-text);
    font-weight: 500;
    border-left: 3px solid var(--c-cta);
    padding-left: calc(var(--s-xl) - 3px);
}
.mobile-nav__footer {
    padding: var(--s-lg) var(--s-xl) var(--s-xl);
    border-top: 1px solid var(--c-border-light);
    margin-top: auto;
}
.mobile-nav__cta {
    width: 100%;
    justify-content: center;
    display: flex;
    margin-bottom: var(--s-lg);
}
.mobile-nav__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--c-text-secondary);
}
.mobile-nav__contact a:hover {
    color: var(--c-text);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--s-3xl);
    overflow: hidden;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
}
.hero__background {
    position: absolute;
    inset: 0;
}
.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}
.hero__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 20, 40, 0.78) 0%,
        rgba(30, 20, 40, 0.4) 35%,
        rgba(30, 20, 40, 0.15) 70%,
        rgba(30, 20, 40, 0.05) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.hero__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-rose-light);
    margin-bottom: var(--s-lg);
}
.hero__desc {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: var(--s-lg);
    max-width: 420px;
}
.hero__cta-group {
    display: flex;
    gap: var(--s-md);
    margin-top: var(--s-xl);
    flex-wrap: wrap;
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section__header {
    margin-bottom: var(--s-2xl);
}
.section__header--centered {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section__subtitle {
    color: var(--c-text-secondary);
    margin-top: var(--s-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3xl);
    align-items: center;
}
.about-teaser__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about-teaser__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-teaser__content .eyebrow { color: var(--c-cta); }
.about-teaser__content h2 {
    font-family: var(--f-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--s-lg);
}
.about-teaser__content p {
    color: var(--c-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--s-xl);
}

/* Utility spacing */
.mb-sm { margin-bottom: var(--s-sm); }
.mb-md { margin-bottom: var(--s-md); }
.mb-lg { margin-bottom: var(--s-lg); }
.mb-xl { margin-bottom: var(--s-xl); }
.mt-xl { margin-top: var(--s-xl); }
.text-uppercase { text-transform: uppercase; }

/* ==========================================================================
   SERVICES — Tabbed
   ========================================================================== */
.section--services { background: var(--c-white); }

.services-tabs {
    display: flex;
    justify-content: center;
    gap: var(--s-sm);
    margin-bottom: var(--s-2xl);
    flex-wrap: wrap;
}
.services-tab {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--c-text-secondary);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    transition: var(--transition);
    background: transparent;
}
.services-tab:hover {
    border-color: var(--c-cta);
    color: var(--c-cta);
}
.services-tab.active {
    background: var(--c-cta);
    color: var(--c-white);
    border-color: var(--c-cta);
}
.services-tab-content {
    display: none;
}
.services-tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--c-border);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.service-card {
    background: var(--c-white);
    padding: var(--s-xl) var(--s-lg);
    transition: var(--transition);
}
.service-card:hover {
    background: #D4C4E0;
}
.service-card__title {
    font-family: var(--f-display);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: var(--s-sm);
    color: var(--c-text);
}
.service-card__desc {
    font-size: 0.8125rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--s-md);
}
.service-card__price {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--c-cta);
}
.services-note {
    font-size: 0.8125rem;
    color: var(--c-text-muted);
    text-align: center;
    margin-top: var(--s-lg);
    padding-top: var(--s-lg);
    border-top: 1px solid var(--c-border-light);
}

/* ==========================================================================
   PREMIUM SECTION
   ========================================================================== */
.premium-section {
    background: #D4C4E0;
}
.premium-section .services-grid {
    background: var(--c-border);
    border-color: var(--c-border);
}
.premium-section .service-card {
    background: var(--c-white);
}
.premium-section .service-card:hover {
    background: var(--c-white);
    box-shadow: var(--shadow-card);
}

/* ==========================================================================
   PRICING ACCORDION
   ========================================================================== */
.pricing-section { background: var(--c-white); }

.pricing-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.pricing-item {
    border-bottom: 1px solid var(--c-border);
}
.pricing-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s-lg) 0;
    font-family: var(--f-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--c-text);
    transition: var(--transition);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}
.pricing-item__header:hover {
    color: var(--c-cta);
}
.pricing-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.pricing-item.active .pricing-item__body {
    max-height: 600px;
}

/* FAQ Icon (plus/minus) */
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--c-text-secondary);
    transition: var(--transition);
}
.faq-icon::before {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    width: 1px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pricing-item.active .faq-icon::after,
.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--s-lg);
}
.pricing-table td {
    padding: 0.625rem 0;
    font-size: 0.875rem;
    color: var(--c-text-secondary);
    border-bottom: 1px solid var(--c-border-light);
}
.pricing-table__price {
    text-align: right;
    font-weight: 500;
    color: var(--c-text);
    white-space: nowrap;
}
.pricing-note {
    font-size: 0.8125rem;
    color: var(--c-text-muted);
    margin-bottom: var(--s-md);
    font-style: italic;
}

/* ==========================================================================
   SKIN ANALYSIS
   ========================================================================== */
.skin-analysis {
    background: #D4C4E0;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-section { background: var(--c-white); overflow: hidden; }

.reviews-scroll {
    display: flex;
    gap: var(--s-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--s-sm) var(--gutter) var(--s-xl);
    margin: 0 calc(-1 * var(--gutter));
    scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: #D4C4E0;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--s-xl);
    transition: var(--transition);
}
.review-card:hover {
    box-shadow: var(--shadow-card);
}
.review-card__header {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    margin-bottom: var(--s-lg);
}
.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-cta);
    flex-shrink: 0;
}
.review-card__info {
    flex: 1;
    min-width: 0;
}
.review-card__name {
    font-size: 0.875rem;
    font-weight: 500;
}
.review-card__source {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.review-card__stars {
    color: var(--c-cta);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: var(--s-md);
}
.review-card__text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--c-text-secondary);
}
.review-card__date {
    display: block;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-top: var(--s-md);
}

/* ==========================================================================
   GALLERY (Before/After)
   ========================================================================== */
.metamorphosis-gallery {
    padding: var(--s-section) 0;
    background: #D4C4E0;
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--s-sm);
    margin-bottom: var(--s-2xl);
    flex-wrap: wrap;
}
.gallery-filter {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--c-text-secondary);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    transition: var(--transition);
    background: transparent;
}
.gallery-filter:hover {
    border-color: var(--c-cta);
    color: var(--c-cta);
}
.gallery-filter.active {
    background: var(--c-cta);
    color: var(--c-white);
    border-color: var(--c-cta);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg);
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.gallery-item__category {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-top: var(--s-md);
}
.gallery-item__title {
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 4px;
}

/* Before/After Slider */
.before-after {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: col-resize;
    user-select: none;
}
.before-after__image {
    position: absolute;
    inset: 0;
}
.before-after__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.before-after__before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}
.before-after__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--c-white);
    z-index: 3;
    transform: translateX(-50%);
}
.before-after__handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--c-white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.before-after__handle-circle::before {
    content: '◂ ▸';
    font-size: 10px;
    color: var(--c-text);
    letter-spacing: 2px;
}
.before-after__label {
    position: absolute;
    bottom: 12px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-white);
    z-index: 4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.before-after__label--before { left: 12px; }
.before-after__label--after { right: 12px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: var(--s-section) 0;
    background: var(--c-white);
}
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--s-3xl);
    align-items: start;
}
.faq-header {
    position: sticky;
    top: calc(var(--header-h) + var(--s-xl));
}
.faq-item {
    border-bottom: 1px solid var(--c-border);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s-lg) 0;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--c-text);
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border: none;
}
.faq-question:hover { color: var(--c-cta); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer-content {
    padding-bottom: var(--s-lg);
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--c-text-secondary);
}

/* ==========================================================================
   INSTAGRAM MARQUEE
   ========================================================================== */
.instagram-marquee {
    padding: var(--s-section) 0 var(--s-xl);
    overflow: hidden;
    background: var(--c-white);
}
.instagram-marquee__track {
    display: flex;
    gap: var(--s-md);
    animation: marquee 40s linear infinite;
    width: max-content;
}
.instagram-marquee__item {
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.instagram-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.instagram-marquee__item:hover img {
    filter: grayscale(0%);
    transform: scale(1.04);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   COSMETICS & VOUCHERS
   ========================================================================== */
.cosmetics-section {
    background: var(--c-white);
}
.vouchers-section {
    background: #D4C4E0;
}

/* ==========================================================================
   BOOKING SYSTEM
   ========================================================================== */
.booking-section {
    background: var(--c-white);
    padding: var(--s-section) 0;
}
.booking-system {
    max-width: 700px;
    margin: 0 auto;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: var(--s-2xl);
    box-shadow: var(--shadow-card);
}

/* Progress */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--s-2xl);
}
.booking-progress__step {
    display: flex;
    align-items: center;
    gap: var(--s-sm);
}
.booking-progress__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: var(--transition);
}
.booking-progress__step.active .booking-progress__num,
.booking-progress__step.completed .booking-progress__num {
    background: var(--c-cta);
    color: var(--c-white);
    border-color: var(--c-cta);
}
.booking-progress__label {
    font-size: 0.8125rem;
    color: var(--c-text-muted);
}
.booking-progress__step.active .booking-progress__label {
    color: var(--c-text);
    font-weight: 500;
}
.booking-progress__line {
    width: 60px;
    height: 1px;
    background: var(--c-border);
    margin: 0 var(--s-md);
}

/* Steps */
.booking-step { display: none; }
.booking-step.active { display: block; }
.booking-step__title {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--s-xl);
}
.booking-step__nav {
    display: flex;
    justify-content: space-between;
    gap: var(--s-md);
    margin-top: var(--s-xl);
}

/* Categories */
.booking-categories {
    display: flex;
    gap: var(--s-sm);
    margin-bottom: var(--s-lg);
    flex-wrap: wrap;
    justify-content: center;
}
.booking-cat {
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    color: var(--c-text-secondary);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    transition: var(--transition);
}
.booking-cat:hover { border-color: var(--c-cta); color: var(--c-cta); }
.booking-cat.active {
    background: var(--c-cta);
    color: var(--c-white);
    border-color: var(--c-cta);
}

/* Service list */
.booking-services-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius);
    overflow: hidden;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.booking-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s-md) var(--s-lg);
    background: var(--c-white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}
.booking-service-item:hover { background: var(--c-cream); }
.booking-service-item.selected {
    background: var(--c-cream);
    font-weight: 500;
}
.booking-service-item__price {
    color: var(--c-cta);
    font-weight: 500;
    font-size: 0.8125rem;
    white-space: nowrap;
    margin-left: var(--s-md);
}

/* Calendar */
.booking-calendar {
    max-width: 350px;
    margin: 0 auto var(--s-xl);
}
.booking-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--s-lg);
}
.booking-calendar__month {
    font-family: var(--f-display);
    font-size: 1.125rem;
    font-weight: 400;
}
.booking-calendar__nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-border);
    color: var(--c-text);
    font-size: 0.875rem;
    transition: var(--transition);
    cursor: pointer;
    background: none;
}
.booking-calendar__nav:hover {
    border-color: var(--c-cta);
    color: var(--c-cta);
}
.booking-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--c-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--s-sm);
}
.booking-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}
.booking-calendar__days span,
.booking-calendar__days button {
    padding: 0.5rem;
    font-size: 0.8125rem;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-calendar__days button {
    cursor: pointer;
    background: none;
    border: none;
    color: var(--c-text);
    transition: var(--transition);
}
.booking-calendar__days button:hover {
    background: var(--c-cream);
}
.booking-calendar__days button.selected {
    background: var(--c-cta);
    color: var(--c-white);
}
.booking-calendar__days button:disabled {
    color: var(--c-text-muted);
    opacity: 0.4;
    cursor: default;
}
.booking-calendar__days button:disabled:hover {
    background: none;
}

/* Time slots */
.booking-times {
    text-align: center;
}
.booking-times__hint {
    font-size: 0.8125rem;
    color: var(--c-text-muted);
}
.booking-times__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-sm);
    justify-content: center;
}
.booking-time-slot {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    cursor: pointer;
    transition: var(--transition);
}
.booking-time-slot:hover {
    border-color: var(--c-cta);
    color: var(--c-cta);
}
.booking-time-slot.selected {
    background: var(--c-cta);
    color: var(--c-white);
    border-color: var(--c-cta);
}

/* Booking form */
.booking-summary {
    background: var(--c-cream);
    border-radius: var(--radius);
    padding: var(--s-lg);
    margin-bottom: var(--s-xl);
    font-size: 0.875rem;
}
.booking-form-inline { }
.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-md);
}
.form-group {
    margin-bottom: var(--s-md);
}
.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--c-text-secondary);
    margin-bottom: 6px;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--c-text);
    background: var(--c-white);
    transition: var(--transition);
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--c-cta);
    box-shadow: 0 0 0 3px rgba(107, 79, 122, 0.10);
}
.form-textarea {
    resize: vertical;
    min-height: 60px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--c-white);
    color: var(--c-text);
    padding: var(--s-3xl) 0 var(--s-xl);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--s-2xl);
    margin-bottom: var(--s-3xl);
}
.footer .logo__main { color: var(--c-text); }
.footer .logo__tagline { color: var(--c-text-muted); }
.footer__description {
    font-size: 0.8125rem;
    line-height: 1.7;
    margin-top: var(--s-lg);
    color: var(--c-text-secondary);
}
.footer__title {
    color: var(--c-text);
    margin-bottom: var(--s-lg);
}
.footer__links { display: flex; flex-direction: column; gap: var(--s-sm); }
.footer__link {
    font-size: 0.8125rem;
    color: var(--c-text-secondary);
    transition: color 0.3s ease, padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: inline-block;
}
.footer__link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-cta);
    transform: translateY(-50%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer__link:hover {
    color: var(--c-text);
    padding-left: 14px;
}
.footer__link:hover::before {
    width: 10px;
}
.footer__contact-item {
    font-size: 0.8125rem;
    margin-bottom: var(--s-sm);
    color: var(--c-text-secondary);
}
.footer__contact-item a:hover { color: var(--c-text); }
.footer__socials {
    display: flex;
    gap: var(--s-md);
    margin-top: var(--s-lg);
}
.footer__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-border);
    color: var(--c-text-secondary);
    transition: var(--transition);
}
.footer__social:hover {
    border-color: var(--c-text);
    color: var(--c-text);
}

.footer__giant-logo {
    font-family: var(--f-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 100;
    color: #D4C4E0;
    text-align: center;
    line-height: 1;
    margin-bottom: var(--s-2xl);
    pointer-events: none;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--s-xl);
    border-top: 1px solid var(--c-border-light);
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: var(--s-xl);
    right: var(--s-xl);
    z-index: 800;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
    pointer-events: none;
}
.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--c-white);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
    padding: var(--s-lg) 0;
    z-index: 950;
}

/* ==========================================================================
   DIVIDER (replaces line-expand)
   ========================================================================== */
.divider {
    height: 1px;
    background: var(--c-border-light);
    max-width: 120px;
    margin: 0 auto;
}
.line-expand {
    height: 1px;
    background: var(--c-border);
}

/* ==========================================================================
   VOUCHER ORDER FORM
   ========================================================================== */
.voucher-form {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: var(--s-2xl);
    box-shadow: var(--shadow-card);
    max-width: 500px;
}
.voucher-form .form-group { margin-bottom: var(--s-md); }
.voucher-options {
    display: flex;
    gap: var(--s-sm);
    flex-wrap: wrap;
    margin-bottom: var(--s-md);
}
.voucher-option {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    border: 1px solid var(--c-border);
    border-radius: 100px;
    transition: var(--transition);
    background: var(--c-white);
    cursor: pointer;
    font-family: var(--f-body);
    color: var(--c-text);
}
.voucher-option:hover { border-color: var(--c-cta); color: var(--c-cta); }
.voucher-option.active {
    background: var(--c-cta);
    color: var(--c-white);
    border-color: var(--c-cta);
}

/* On white sections, gallery filters need lilac bg on active */
.gallery-filter.active,
.services-tab.active {
    background: var(--c-cta);
    color: var(--c-white);
    border-color: var(--c-cta);
}

/* About section white */
#o-nas { background: var(--c-white); }

/* ==========================================================================
   SCROLL ANIMATIONS — Rich editorial transitions
   ========================================================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-animate="scale-reveal"] {
    transform: scale(0.92);
    opacity: 0;
    transition: opacity 0.9s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="scale-reveal"].is-visible {
    transform: scale(1);
    opacity: 1;
}
[data-animate="blur-up"] {
    filter: blur(6px);
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}
[data-animate="blur-up"].is-visible {
    filter: blur(0);
    transform: translateY(0);
    opacity: 1;
}
[data-animate="fade-up"] {
    transform: translateY(20px);
}
[data-animate="fade-up"].is-visible {
    transform: translateY(0);
    opacity: 1;
}
[data-animate="word-reveal"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                letter-spacing 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="word-reveal"].is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Display headings: subtle letter-spacing tighten on reveal */
.display-hero[data-animate="word-reveal"],
.display-section[data-animate="word-reveal"] {
    letter-spacing: 0.08em;
}
.display-hero[data-animate="word-reveal"].is-visible,
.display-section[data-animate="word-reveal"].is-visible {
    letter-spacing: normal;
}

/* Delay utilities */
[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }

/* Stagger children */
.stagger-children > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* Section headings — elegant line accent animation */
.display-section::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--c-rose);
    margin: var(--s-md) auto 0;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.is-visible .display-section::after,
.display-section.is-visible::after {
    width: 60px;
}

/* Service cards — stagger entrance */
.services-grid .service-card {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}
.services-tab-content.active .service-card,
.is-visible .service-card {
    opacity: 1;
    transform: translateY(0);
}
.services-tab-content.active .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-tab-content.active .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-tab-content.active .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-tab-content.active .service-card:nth-child(4) { transition-delay: 0.2s; }
.services-tab-content.active .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-tab-content.active .service-card:nth-child(6) { transition-delay: 0.3s; }
.services-tab-content.active .service-card:nth-child(7) { transition-delay: 0.35s; }

/* Review cards — slide in from right */
.review-card {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.reviews-section.is-visible .review-card,
.review-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Pricing items — fade in sequentially */
.pricing-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.pricing-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery items — scale up */
.gallery-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Hero entrance animation */
.hero__eyebrow {
    animation: heroFadeUp 0.8s ease 0.2s both;
}
.display-hero {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero__desc {
    animation: heroFadeUp 0.8s ease 0.7s both;
}
.hero__cta-group {
    animation: heroFadeUp 0.8s ease 0.9s both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   HIDDEN UTILITY (gallery filter)
   ========================================================================== */
.gallery-item.hidden {
    display: none;
}

/* ==========================================================================
   BOOKING SERVICE BUTTONS (JS-generated)
   ========================================================================== */
.booking-service-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--s-md) var(--s-lg);
    background: var(--c-white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    border: none;
    border-bottom: 1px solid var(--c-border-light);
    text-align: left;
    font-family: var(--f-body);
    color: var(--c-text);
}
.booking-service-btn:last-child { border-bottom: none; }
.booking-service-btn:hover { background: var(--c-cream); }
.booking-service-btn.selected {
    background: var(--c-cream);
    font-weight: 500;
}
.booking-service-name { flex: 1; }
.booking-service-price {
    color: var(--c-cta);
    font-weight: 500;
    font-size: 0.8125rem;
    white-space: nowrap;
    margin-left: var(--s-md);
}

/* ==========================================================================
   CALENDAR DAY BUTTONS (JS-generated)
   ========================================================================== */
.cal-day {
    padding: 0.5rem;
    font-size: 0.8125rem;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--c-text);
    transition: var(--transition);
    font-family: var(--f-body);
}
.cal-day:hover:not(:disabled):not(.cal-day--empty) {
    background: var(--c-cream);
}
.cal-day.selected {
    background: var(--c-cta);
    color: var(--c-white);
}
.cal-day--today {
    font-weight: 600;
    color: var(--c-cta);
}
.cal-day--disabled {
    color: var(--c-text-muted);
    opacity: 0.4;
    cursor: default;
}
.cal-day--disabled:hover { background: none; }
.cal-day--empty {
    visibility: hidden;
}

/* ==========================================================================
   TIME SLOTS (JS-generated)
   ========================================================================== */
.time-slot {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--f-body);
    color: var(--c-text);
}
.time-slot:hover {
    border-color: var(--c-cta);
    color: var(--c-cta);
}
.time-slot.selected {
    background: var(--c-cta);
    color: var(--c-white);
    border-color: var(--c-cta);
}

/* ==========================================================================
   BOOKING CONFIRMATION (JS-generated)
   ========================================================================== */
.booking-confirmation {
    text-align: center;
    padding: var(--s-xl) 0;
}
.booking-confirmation__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D4C4E0;
    color: var(--c-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--s-lg);
}
.booking-confirmation__title {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--s-md);
}
.booking-confirmation__msg {
    font-size: 0.875rem;
    color: var(--c-text-secondary);
    margin-top: var(--s-lg);
}

/* ==========================================================================
   TOAST NOTIFICATIONS (JS-generated)
   ========================================================================== */
.toast-container {
    position: fixed;
    top: calc(var(--header-h) + var(--s-md));
    right: var(--s-md);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--s-sm);
}
.toast {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: var(--s-md) var(--s-lg);
    font-size: 0.8125rem;
    box-shadow: var(--shadow-lift);
    animation: toastIn 0.3s ease;
    max-width: 360px;
}
.toast--success { border-left: 3px solid var(--c-cta); }
.toast--error { border-left: 3px solid var(--c-cta); }
.toast.is-leaving {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}
@keyframes toastIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   PRICE CARDS (cennik)
   ========================================================================== */
.price-category {
    text-align: center;
    margin-bottom: var(--s-xl);
}
.price-category--body {
    margin-top: var(--s-3xl);
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--s-lg);
}
.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-lg);
    padding: var(--s-xl);
    transition: var(--transition);
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    border-color: var(--c-cta);
}
.price-card__badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--c-cta);
    color: var(--c-white);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--s-md);
}
.price-card__badge--free {
    background: transparent;
    color: var(--c-cta);
    border: 1px solid var(--c-cta);
}
.price-card__name {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--c-text);
    margin: 0 0 var(--s-sm);
}
.price-card__desc {
    font-size: 0.9375rem;
    color: var(--c-text-muted);
    margin: 0 0 var(--s-lg);
    line-height: 1.5;
}
.price-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--s-md);
    padding: var(--s-md) 0;
    border-top: 1px solid var(--c-border-light);
    margin-top: auto;
    margin-bottom: var(--s-md);
}
.price-card__duration {
    font-size: 0.875rem;
    color: var(--c-text-muted);
}
.price-card__amount {
    font-family: var(--f-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--c-cta);
    line-height: 1;
}
.price-card--package {
    background: linear-gradient(180deg, var(--c-white) 0%, rgba(212, 196, 224, 0.25) 100%);
    border-color: var(--c-cta);
}
.price-card--free .price-card__amount {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}
.price-card__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --s-section: 4rem;
        --gutter: 1.25rem;
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-container { grid-template-columns: 1fr; gap: var(--s-xl); }
    .faq-header { position: static; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-xl); }
    .about-teaser { gap: var(--s-xl); }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --s-section: 3rem;
        --header-h: 64px;
    }

    .nav__desktop { display: none; }
    .header__cta { display: none; }
    .menu-toggle { display: flex; }

    /* Hero */
    .hero {
        min-height: 500px;
        padding-bottom: var(--s-2xl);
    }
    .display-hero { font-size: clamp(2.5rem, 10vw, 3.5rem); }

    /* About */
    .about-teaser {
        grid-template-columns: 1fr;
        gap: var(--s-xl);
    }
    .about-teaser__image {
        aspect-ratio: 3/2;
    }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--s-xl);
    }

    /* Reviews */
    .review-card { flex: 0 0 280px; }

    /* Booking */
    .booking-system { padding: var(--s-xl) var(--s-lg); }
    .booking-form-row { grid-template-columns: 1fr; }
    .booking-progress__label { display: none; }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--s-xl);
    }
    .footer__bottom {
        flex-direction: column;
        gap: var(--s-sm);
        text-align: center;
    }
    .footer__giant-logo { font-size: 2.5rem; }

    /* Floating CTA */
    .floating-cta {
        right: var(--s-md);
        bottom: var(--s-md);
    }

    /* FAQ */
    .faq-container {
        grid-template-columns: 1fr;
        gap: var(--s-xl);
    }
    .faq-header { position: static; text-align: center; }
}

/* Small mobile */
@media (max-width: 480px) {
    .services-tabs {
        gap: 6px;
    }
    .services-tab {
        padding: 0.375rem 0.875rem;
        font-size: 0.75rem;
    }
    .hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .instagram-marquee__item {
        width: 150px;
        height: 150px;
    }
    .review-card { flex: 0 0 260px; }
    .booking-categories { justify-content: flex-start; }
}
