@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS VARIABLES (HYBRID STYLE) */
:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Colors */
    --color-bg: #0C090A;             /* Warm obsidian */
    --color-card: #151113;           /* Velvet charcoal */
    --color-gold: #D5B277;           /* Champagne Gold */
    --color-gold-hover: #E1C48D;     /* Bright Champagne Gold */
    --color-pink: #FAF0F1;           /* Keep light pink for subtle details */
    --color-pink-dark: #3A2E30;      /* Dark rose tone */
    --color-pink-accent: #E8C1C5;    /* Powdery pink accent */
    --color-white: #FFFFFF;
    --color-text: #E5E5E5;           /* Light text on dark bg */
    --color-text-dark: #222222;      /* Dark text */
    --color-muted: #9E9E9E;          /* Muted gray */
    --color-border: rgba(213, 178, 119, 0.16);

    /* Layout */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.18s ease;
    --border-radius: 14px;
    --container-width: 1200px;
    --container-padding: 24px;
    --shadow-soft: 0 22px 54px rgba(0, 0, 0, 0.34);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(213, 178, 119, 0.06), transparent 29%),
        radial-gradient(circle at 100% 30%, rgba(232, 193, 197, 0.035), transparent 28%),
        var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

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

/* SHARED LAYOUT STYLES */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: clamp(70px, 8vw, 110px) 0;
}

.section-alt {
    background: linear-gradient(180deg, #141012 0%, #100d0f 100%);
    border-top: 1px solid rgba(213, 178, 119, 0.05);
    border-bottom: 1px solid rgba(213, 178, 119, 0.05);
}

/* Elegant Powdery Pink Hybrid Section */
.section-hybrid {
    background: linear-gradient(180deg, var(--color-bg) 0%, #150F10 50%, var(--color-bg) 100%);
    color: var(--color-text);
    border-top: 1px solid rgba(232, 193, 197, 0.04);
    border-bottom: 1px solid rgba(232, 193, 197, 0.04);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.4px;
}

.section-title span {
    color: var(--color-gold);
    font-style: italic;
}

.section-subtitle {
    display: block;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-hybrid .section-subtitle {
    color: var(--color-gold);
}

/* BUTTONS */
.btn-cta,
.btn-secondary,
.btn-pink-dark {
    min-height: 48px;
    line-height: 1.2;
}

.btn-cta {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: var(--color-gold);
    color: var(--color-bg);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-pink-dark {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: var(--color-pink-dark);
    color: var(--color-pink);
    border: 2px solid var(--color-pink-dark);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-pink-dark:hover {
    background-color: transparent;
    color: var(--color-pink-dark);
    transform: translateY(-2px);
}

/* FIXED HEADER (HYBRID LOGO GLASSMORPHISM) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 0;
    background-color: rgba(12, 9, 10, 0.84);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(213, 178, 119, 0.12);
}

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

/* Wordmark and monogram */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--color-white);
}

.logo-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 49px;
    height: 49px;
    border: 1px solid rgba(213, 178, 119, 0.72);
    border-radius: 50%;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    line-height: 1;
    letter-spacing: -1px;
}

.logo-mark::after {
    content: '';
    position: absolute;
    right: -3px;
    bottom: 10px;
    width: 7px;
    height: 7px;
    border: 2px solid var(--color-bg);
    border-radius: 50%;
    background: var(--color-gold);
}

.logo-wording {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.logo-wording strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-wording small {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
    background-color: rgba(213, 178, 119, 0.08);
    box-shadow: 0 0 24px rgba(213, 178, 119, 0.13);
}

/* NAV MENU */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: relative;
    margin: 0 10px;
}

.nav-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text);
    padding: 10px 0;
    white-space: nowrap;
}

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

/* DROPDOWN MENU */
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    min-width: 240px;
    background-color: rgba(18, 18, 20, 0.94);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(232, 193, 197, 0.03);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -6px;
    width: 12px;
    height: 12px;
    background-color: rgba(18, 18, 20, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(-50%) rotate(45deg);
}

.nav-item-dropdown:nth-child(2) .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 4px;
    min-width: 360px;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text);
    border-radius: 6px;
    white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link[aria-current="page"] {
    background-color: rgba(212, 178, 111, 0.12);
    color: var(--color-gold);
}

.dropdown-green {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge-new {
    background-color: var(--color-gold);
    color: var(--color-white);
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 20px;
    letter-spacing: 1px;
    font-weight: bold;
}

/* BURGER MENU MOBILE */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.burger-line {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: var(--transition);
}

/* HERO SECTION (HYBRID LUXURY DESIGN) */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(8, 7, 8, 0.98) 0%, rgba(8, 7, 8, 0.9) 32%, rgba(8, 7, 8, 0.34) 62%, rgba(8, 7, 8, 0.18) 100%),
        linear-gradient(0deg, rgba(8, 7, 8, 0.66), transparent 42%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-monogram {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 300;
    color: rgba(213, 178, 119, 0.07);
    position: absolute;
    top: -80px;
    left: -20px;
    user-select: none;
    line-height: 1;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-style: italic;
}

.hero p {
    font-size: clamp(16px, 1.35vw, 19px);
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 40px;
    max-width: 720px;
    letter-spacing: 0.3px;
    line-height: 1.85;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
    background: linear-gradient(90deg, rgba(10, 9, 10, 0.5), transparent);
    border-left: 3px solid rgba(212, 178, 111, 0.9);
    padding: 18px 22px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    backdrop-filter: blur(3px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* FEATURES GRID (3 ADVANTAGES) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(150deg, rgba(28, 23, 25, 0.94), rgba(16, 13, 15, 0.98));
    padding: 50px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(213, 178, 119, 0.12);
    transition: var(--transition);
}

/* Hybrid hover: turns into soft dark rose card with light text & soft gold/pink glow */
.feature-card:hover {
    background-color: #171011;
    color: var(--color-white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.25);
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(213, 178, 119, 0.08);
    border: 1px solid rgba(213, 178, 119, 0.18);
    font-size: 29px;
    color: var(--color-gold);
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: var(--color-gold-hover);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-muted);
    transition: var(--transition);
}

.feature-card:hover p {
    color: var(--color-text);
}

/* SERVICES GRID (6 HERO SERVICES) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(160deg, #181315, #100d0f);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(213, 178, 119, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

.service-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(10, 8, 9, 0.48) 100%);
    pointer-events: none;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    margin-top: auto;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
}

.service-link {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.service-card:hover .service-link {
    color: var(--color-gold);
}

/* CAROUSEL REVIEWS (HYBRID PINK SECTION) */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-disclaimer {
    max-width: 720px;
    margin: -26px auto 42px;
    padding: 13px 18px;
    border: 1px solid rgba(213, 178, 119, 0.14);
    border-radius: 40px;
    background: rgba(213, 178, 119, 0.05);
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
}

.reviews-carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide {
    min-width: 100%;
    padding: 15px 58px 20px;
    text-align: center;
}

.review-stars {
    color: var(--color-gold);
    font-size: 16px;
    margin-bottom: 20px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 400;
}

.review-author {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--color-white);
}

.review-date {
    font-size: 11px;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-placeholder {
    max-width: 760px;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-gold-hover);
    transition: var(--transition);
    padding: 10px;
    z-index: 10;
}

.carousel-btn:hover {
    color: var(--color-white);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    margin-top: 35px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--color-gold);
    width: 20px;
    border-radius: 10px;
}

/* RESERVATION FORM MODULE */
.booking-section {
    position: relative;
    background-color: var(--color-bg);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
}

.booking-text p {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 30px;
}

.booking-points {
    list-style: none;
}

.booking-points li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.booking-points i {
    color: var(--color-gold);
    margin-right: 15px;
    font-size: 18px;
}

.reservation-form-wrapper {
    background: linear-gradient(145deg, rgba(25, 20, 22, 0.96), rgba(14, 12, 13, 0.98));
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(213, 178, 119, 0.16);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--color-muted);
}

.form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control::placeholder {
    color: #555555;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 178, 111, 0.12);
}

.form-notice {
    margin: 18px 0;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.7;
}

.form-notice a {
    color: var(--color-gold);
    text-decoration: underline;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--color-muted);
    font-size: 13px;
}

.form-consent input {
    margin-top: 4px;
    accent-color: var(--color-gold);
}

select.form-control,
.form-control option {
    background-color: var(--color-card);
    color: var(--color-white);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.demo-calendar {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.02);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;
    border-bottom: 1px solid var(--color-border);
}

.calendar-month {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 19px;
    text-transform: capitalize;
}

.calendar-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: transparent;
    color: var(--color-gold);
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-nav:hover:not(:disabled),
.calendar-nav:focus-visible {
    border-color: var(--color-gold);
    background-color: rgba(212, 178, 111, 0.12);
}

.calendar-nav:disabled {
    color: var(--color-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
    padding: 10px 12px 0;
}

.calendar-weekdays span {
    padding: 5px 0;
    color: var(--color-muted);
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.calendar-days {
    padding-bottom: 13px;
}

.calendar-day,
.calendar-empty {
    min-height: 38px;
}

.calendar-day {
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-day:hover:not(:disabled),
.calendar-day:focus-visible {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.calendar-day.today {
    border-color: rgba(212, 178, 111, 0.45);
}

.calendar-day.selected,
.slot-button.selected {
    background-color: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.calendar-day:disabled {
    color: #595557;
    cursor: not-allowed;
}

.calendar-slots {
    border-top: 1px solid var(--color-border);
    padding: 14px 15px 16px;
}

.calendar-slots p {
    margin-bottom: 12px;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.5;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.slot-button {
    padding: 10px 5px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slot-button:hover,
.slot-button:focus-visible {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ACCORDION FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
}

.faq-icon {
    font-size: 12px;
    color: var(--color-gold);
    transition: var(--transition);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 30px 25px 30px;
    font-size: 14px;
    color: var(--color-muted);
}

.faq-item.active .faq-body {
    max-height: 500px; /* arbitrary large value for transition */
}

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

.faq-item.active {
    border-color: rgba(201, 168, 76, 0.3);
}

/* PRICING STYLES */
.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.pricing-layout.pricing-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
}

.pricing-column h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.pricing-list {
    list-style: none;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}

.pricing-info {
    flex-grow: 1;
    padding-right: 15px;
}

.pricing-title-row {
    display: flex;
    align-items: baseline;
}

.pricing-name {
    font-size: 15px;
    font-weight: 600;
}

.pricing-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin: 0 10px;
}

.pricing-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
}

.pricing-desc {
    font-size: 12px;
    color: var(--color-muted);
    margin-top: 5px;
}

.pricing-note {
    max-width: 760px;
    margin: 45px auto 0;
    padding: 24px 28px;
    border: 1px solid rgba(212, 178, 111, 0.22);
    border-radius: var(--border-radius);
    background: rgba(212, 178, 111, 0.06);
    text-align: center;
    color: var(--color-text);
}

.pricing-note strong {
    color: var(--color-gold);
}

/* TREATMENT DETAIL PAGES */
.treatment-overview {
    position: relative;
}

.treatment-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.72fr);
    gap: clamp(36px, 7vw, 86px);
    align-items: center;
}

.treatment-copy .section-subtitle {
    text-align: left;
}

.treatment-copy h2 {
    margin-bottom: 20px;
    max-width: 690px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 500;
    line-height: 1.12;
}

.treatment-copy p {
    max-width: 650px;
    margin-bottom: 28px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.85;
}

.treatment-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.treatment-chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 15px;
    border: 1px solid rgba(213, 178, 119, 0.17);
    border-radius: 40px;
    background: rgba(213, 178, 119, 0.055);
    color: var(--color-text);
    font-size: 12px;
}

.treatment-chips i {
    color: var(--color-gold);
}

.treatment-keypoints {
    padding: clamp(26px, 4vw, 36px);
    border: 1px solid rgba(213, 178, 119, 0.2);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(213, 178, 119, 0.09), transparent 34%),
        linear-gradient(145deg, #191416, #110d0f);
    box-shadow: var(--shadow-soft);
}

.treatment-keypoints h3 {
    margin-bottom: 24px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
}

.treatment-keypoints ul {
    list-style: none;
}

.treatment-keypoints li {
    position: relative;
    padding: 15px 0 15px 24px;
    border-top: 1px solid rgba(213, 178, 119, 0.1);
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.65;
}

.treatment-keypoints li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card {
    padding: clamp(25px, 4vw, 34px);
    border: 1px solid rgba(213, 178, 119, 0.12);
    border-radius: 18px;
    background: rgba(18, 14, 16, 0.55);
}

.process-card span {
    display: block;
    margin-bottom: 22px;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1;
}

.process-card h3 {
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 29px;
    font-weight: 500;
}

.process-card p {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* CERCLE LUMIERE LOYALTY PROGRAM */
.loyalty-header {
    position: relative;
    overflow: hidden;
}

.loyalty-header::after {
    content: '';
    position: absolute;
    inset: auto 50% -130px;
    width: 360px;
    height: 240px;
    transform: translateX(50%);
    border: 1px solid rgba(212, 178, 111, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 70px rgba(212, 178, 111, 0.08);
}

.loyalty-header .section-subtitle {
    margin-bottom: 18px;
}

.loyalty-header p {
    max-width: 580px;
    margin: 15px auto 0;
}

.loyalty-intro-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: clamp(42px, 7vw, 88px);
}

.loyalty-copy .section-subtitle {
    text-align: left;
}

.loyalty-copy h2,
.referral-panel h2,
.member-area h2 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 24px;
}

.loyalty-copy h2 span {
    color: var(--color-gold);
    font-style: italic;
}

.loyalty-copy p {
    color: var(--color-muted);
    margin-bottom: 18px;
}

.loyalty-copy .btn-cta {
    margin-top: 18px;
}

.constellation-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 46px);
    border-radius: 22px;
    border: 1px solid rgba(212, 178, 111, 0.3);
    background:
        radial-gradient(circle at 78% 18%, rgba(212, 178, 111, 0.17), transparent 30%),
        linear-gradient(135deg, #17161a 0%, #0e0e11 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.constellation-card::after {
    content: 'IS';
    position: absolute;
    right: -6px;
    bottom: -66px;
    color: rgba(212, 178, 111, 0.045);
    font-family: var(--font-heading);
    font-size: 190px;
    font-weight: 700;
}

.constellation-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 44px;
}

.constellation-top strong {
    display: block;
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
    color: var(--color-white);
}

.constellation-brand,
.constellation-place {
    color: var(--color-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.constellation-path {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}

.constellation-path::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 29px;
    border-top: 1px dashed rgba(212, 178, 111, 0.28);
}

.light-point {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.light-point i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(212, 178, 111, 0.22);
    background: var(--color-card);
    color: rgba(212, 178, 111, 0.36);
    font-size: 16px;
}

.light-point.earned i {
    border-color: var(--color-gold);
    background: rgba(212, 178, 111, 0.12);
    color: var(--color-gold);
    box-shadow: 0 0 24px rgba(212, 178, 111, 0.15);
}

.light-point.reward i {
    border-color: var(--color-pink-accent);
    color: var(--color-pink-accent);
    background: rgba(232, 193, 197, 0.08);
}

.constellation-caption {
    position: relative;
    z-index: 1;
    color: var(--color-muted);
    font-size: 13px;
}

.constellation-caption strong {
    color: var(--color-white);
}

.member-preview .constellation-top {
    margin-bottom: 28px;
}

.member-status {
    padding: 7px 12px;
    border: 1px solid rgba(212, 178, 111, 0.3);
    border-radius: 30px;
    background: rgba(212, 178, 111, 0.1);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.member-summary {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.member-summary div {
    padding: 14px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.member-summary span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-muted);
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.member-summary strong {
    color: var(--color-white);
    font-size: 13px;
}

.member-summary b {
    color: var(--color-gold);
    font-size: 20px;
    font-weight: 600;
}

.member-progress {
    position: relative;
    z-index: 1;
    height: 5px;
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.09);
}

.member-progress span {
    display: block;
    width: 58.333%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-gold), var(--color-pink-accent));
    transition: width 0.35s ease;
}

.member-preview .constellation-path {
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 28px;
}

.member-preview .constellation-path::before {
    display: none;
}

.member-preview .light-point i {
    width: 48px;
    height: 48px;
}

.tier-grid,
.milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tier-card {
    position: relative;
    overflow: hidden;
    padding: 30px 23px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-bg);
}

.tier-card.active,
.tier-card.signature {
    border-color: rgba(212, 178, 111, 0.36);
}

.tier-card.active {
    background: rgba(212, 178, 111, 0.07);
    box-shadow: 0 0 26px rgba(212, 178, 111, 0.1);
}

.tier-card.signature {
    background: linear-gradient(145deg, rgba(212, 178, 111, 0.1), var(--color-bg));
}

.tier-threshold {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--color-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.tier-card i {
    display: block;
    margin-bottom: 18px;
    color: var(--color-gold);
    font-size: 24px;
}

.tier-card h3,
.milestone-card h3 {
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 600;
}

.tier-card p,
.milestone-card p {
    color: var(--color-muted);
    font-size: 13px;
}

.milestone-card {
    padding: 28px 23px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--color-card), var(--color-bg));
    border: 1px solid var(--color-border);
}

.milestone-card span {
    display: block;
    margin-bottom: 19px;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 44px;
    line-height: 1;
}

.milestone-card.unlocked {
    border-color: rgba(212, 178, 111, 0.38);
    box-shadow: 0 0 25px rgba(212, 178, 111, 0.08);
}

.milestone-card.premium span {
    color: var(--color-pink-accent);
}

.member-area-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(38px, 7vw, 90px);
    align-items: center;
}

.member-area .section-subtitle {
    text-align: left;
}

.member-area h2 {
    margin-bottom: 22px;
}

.member-area p {
    max-width: 590px;
    margin-bottom: 25px;
    color: var(--color-muted);
}

.member-features {
    list-style: none;
    display: grid;
    gap: 14px;
}

.member-features li {
    display: flex;
    align-items: center;
    color: var(--color-text);
    font-size: 14px;
}

.member-features i {
    width: 28px;
    color: var(--color-gold);
}

.member-demo-panel {
    padding: clamp(28px, 4vw, 40px);
    border: 1px solid rgba(212, 178, 111, 0.24);
    border-radius: 18px;
    background: rgba(10, 10, 12, 0.45);
}

.demo-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 11px;
    border-radius: 40px;
    background: rgba(212, 178, 111, 0.12);
    color: var(--color-gold);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.member-demo-panel h3 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--color-white);
}

.member-demo-panel p {
    margin-bottom: 22px;
    font-size: 13px;
}

.member-demo-form {
    margin-bottom: 26px;
}

.member-demo-form .form-group {
    margin-bottom: 16px;
}

.demo-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 23px;
    margin-bottom: 0;
}

.demo-actions .btn-cta,
.demo-actions .btn-secondary {
    padding: 12px 20px;
}

.demo-actions button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.member-mini-card {
    margin-bottom: 20px;
    padding: 17px 19px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.member-mini-card p {
    margin-bottom: 7px;
    color: var(--color-muted);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.member-mini-card strong {
    color: var(--color-gold);
    font-size: 14px;
}

.member-demo-panel .demo-disclaimer {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 11px;
}

.loyalty-steps,
.reward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.loyalty-step {
    padding: 32px 28px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-bg);
}

.loyalty-step.featured {
    border-color: rgba(212, 178, 111, 0.36);
    transform: translateY(-8px);
}

.step-number {
    display: block;
    margin-bottom: 22px;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1;
}

.loyalty-step h3,
.reward-card h3 {
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
}

.loyalty-step p,
.reward-card p {
    color: var(--color-muted);
    font-size: 14px;
}

.loyalty-terms {
    max-width: 780px;
    margin: 46px auto 0;
    padding: 15px 18px;
    border-radius: var(--border-radius);
    color: var(--color-muted);
    text-align: center;
    font-size: 12px;
    background: rgba(212, 178, 111, 0.06);
    border: 1px solid rgba(212, 178, 111, 0.14);
}

.reward-card {
    padding: 36px 30px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: linear-gradient(145deg, var(--color-card), var(--color-bg));
    text-align: center;
}

.reward-card i {
    margin-bottom: 22px;
    color: var(--color-gold);
    font-size: 27px;
}

.referral-panel {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(38px, 7vw, 90px);
    align-items: center;
}

.referral-panel .section-subtitle {
    text-align: left;
}

.referral-panel p {
    max-width: 570px;
    margin-bottom: 30px;
    color: var(--color-muted);
}

.invitation-card {
    position: relative;
    padding: clamp(34px, 6vw, 56px);
    background: var(--color-pink);
    color: var(--color-text-dark);
    border-radius: 16px;
    transform: rotate(1.3deg);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
}

.invitation-card::before {
    content: '';
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(201, 168, 76, 0.44);
    border-radius: 10px;
}

.invitation-card > * {
    position: relative;
    z-index: 1;
}

.invitation-card span {
    color: var(--color-gold-hover);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

.invitation-card h3 {
    margin: 35px 0 22px;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-size: clamp(46px, 6vw, 60px);
    font-weight: 600;
    line-height: 0.95;
}

.invitation-card p {
    color: #554d4b;
    font-size: 14px;
    margin-bottom: 46px;
}

.invitation-line {
    color: #665a57;
    font-size: 12px;
}

/* CONTACT & MAP */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.map-container {
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid var(--color-border);
}

.location-preview {
    width: 100%;
    height: 100%;
    background-color: #1A1A1A;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    font-size: 32px;
    color: var(--color-gold);
    animation: bounce 2s infinite;
    z-index: 2;
}

.map-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--color-bg);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 12px;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* GALLERY GRID & LIGHTBOX */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(213, 178, 119, 0.13);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.gallery-item:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin: 38px 0 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 12px;
    color: var(--color-muted);
}

.legal-content ul {
    margin: 0 0 20px 22px;
}

.legal-alert {
    border: 1px solid rgba(212, 178, 111, 0.3);
    border-radius: var(--border-radius);
    padding: 18px 20px;
    color: var(--color-text);
    background: rgba(212, 178, 111, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 9, 10, 0.18), rgba(12, 9, 10, 0.88));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    font-weight: 500;
}

/* LIGHTBOX MODAL */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    margin-top: 15px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 36px;
    cursor: pointer;
    transition: var(--transition);
    padding: 20px;
}

.lightbox-nav:hover {
    color: var(--color-gold);
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

/* TOAST NOTIFICATION */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-card);
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 3000;
    font-size: 13px;
    display: flex;
    align-items: center;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--color-gold);
    margin-right: 12px;
    font-size: 16px;
}

/* FOOTER */
footer {
    background-color: #0D0D0D;
    color: var(--color-text);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col p {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--color-muted);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-col i {
    width: 20px;
    color: var(--color-gold);
    margin-right: 8px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.social-btn i {
    width: auto;
    margin: 0;
    color: inherit;
}

.social-btn:hover,
.social-btn:focus-visible {
    border-color: var(--color-gold);
    background-color: rgba(212, 178, 111, 0.12);
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-muted);
}

.footer-bottom .footer-social-links {
    margin-top: 0;
}

.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.site-credit {
    color: rgba(212, 178, 111, 0.72);
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.site-credit strong {
    color: var(--color-white);
    font-weight: 600;
}

.footer-legal-links a {
    margin-left: 20px;
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

/* PAGE HEADER */
.page-header {
    background:
        linear-gradient(90deg, rgba(12, 9, 10, 0.91), rgba(12, 9, 10, 0.79)),
        url('../assets/clinic-interior.webp') center 48% / cover;
    padding: 160px 0 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(213, 178, 119, 0.13) 0%, transparent 62%),
        linear-gradient(180deg, rgba(12, 9, 10, 0.25), transparent 42%);
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(46px, 6vw, 62px);
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 500;
}

.page-header p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1200px) {
    .nav-menu li {
        margin: 0 8px;
    }
    .nav-link {
        font-size: 11px;
        letter-spacing: 1px;
    }
    .logo-mark {
        width: 45px;
        height: 45px;
        font-size: 26px;
    }

    .logo-wording strong {
        font-size: 27px;
    }
    .btn-cta {
        padding: 10px 20px;
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .features-grid, .services-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loyalty-intro-grid,
    .member-area-grid,
    .treatment-intro {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .tier-grid,
    .milestone-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-card);
        flex-direction: column;
        justify-content: center;
        padding: 50px 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1050;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
        gap: 4px;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        padding: 13px 0;
        width: 100%;
    }

    .nav-link i {
        transition: var(--transition);
    }

    .nav-item-dropdown.active > .nav-link {
        color: var(--color-gold);
    }

    .nav-item-dropdown.active > .nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        display: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin: 0 0 10px 0;
        padding: 8px 0;
        background-color: rgba(10, 10, 12, 0.45);
        border-color: rgba(212, 178, 111, 0.12);
        box-shadow: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown:focus-within .dropdown-menu {
        transform: none;
    }

    .nav-item-dropdown:nth-child(2) .dropdown-menu {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-item-dropdown:nth-child(2).active .dropdown-menu {
        display: grid;
    }

    .dropdown-link {
        min-height: 40px;
        padding: 10px 14px;
        white-space: normal;
        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .features-grid, .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }

    .booking-layout, .pricing-layout, .pricing-layout.pricing-catalog, .contact-layout,
    .loyalty-intro-grid, .referral-panel, .member-area-grid, .treatment-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .loyalty-steps,
    .reward-grid,
    .tier-grid,
    .milestone-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .loyalty-step.featured {
        transform: none;
    }

    .constellation-card {
        padding: 30px 22px;
    }

    .constellation-path {
        gap: 7px;
    }

    .light-point i {
        width: 46px;
        height: 46px;
    }

    .constellation-path::before {
        top: 23px;
    }

    .invitation-card {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal-links a {
        margin: 0 10px;
    }

    .lightbox-nav {
        font-size: 24px;
        padding: 10px;
    }

    .lightbox-nav.prev {
        left: -40px;
    }

    .lightbox-nav.next {
        right: -40px;
    }

    .hero {
        min-height: 680px;
        background-attachment: scroll;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero p {
        max-width: 100%;
        padding: 16px 18px;
        line-height: 1.7;
        background: rgba(10, 10, 12, 0.58);
    }

    .hero-monogram {
        font-size: 84px;
        top: -50px;
        left: 0;
    }

    .review-slide {
        padding: 0 18px;
    }

    .review-text {
        font-size: 22px;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    header {
        padding: 18px 0;
    }

    .logo {
        gap: 10px;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .logo-mark::after {
        bottom: 8px;
        width: 6px;
        height: 6px;
    }

    .logo-wording strong {
        font-size: 24px;
    }

    .logo-wording small {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .service-content,
    .feature-card,
    .reservation-form-wrapper {
        padding: 26px 20px;
    }

    .constellation-top {
        margin-bottom: 30px;
    }

    .constellation-path {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 8px;
    }

    .constellation-path::before {
        display: none;
    }

    .light-point i {
        width: 54px;
        height: 54px;
    }

    .loyalty-copy h2,
    .referral-panel h2,
    .member-area h2 {
        font-size: 40px;
    }

    .member-summary {
        grid-template-columns: 1fr;
    }

    .member-preview .constellation-path {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 8px;
    }

    .pricing-item,
    .pricing-title-row {
        align-items: flex-start;
    }

    .pricing-title-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .pricing-dots {
        display: none;
    }

    .toast {
        left: 18px;
        right: 18px;
        bottom: 18px;
        justify-content: center;
    }

    .page-header h1 {
        font-size: clamp(38px, 11vw, 50px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero,
    .service-card:hover .service-img-wrapper img,
    .gallery-item:hover img {
        background-attachment: scroll;
        transform: none;
    }
}
