/* ===== АЛЁНА МАССАЖ — Premium Design ===== */
/* ===== CSS VARIABLES ===== */

:root {
    /* Deep dark palette with warm undertone */
    --bg-primary: #0a0a0f;
    --bg-secondary: #0e0e16;
    --bg-card: rgba(18, 16, 24, 0.7);
    --bg-card-solid: #12101c;
    --bg-card-hover: rgba(26, 22, 38, 0.85);

    /* Rose-gold palette */
    --gold: #d4a574;
    --gold-light: #e8c9a8;
    --gold-dark: #b8885a;
    --gradient-gold: linear-gradient(135deg, #d4a574 0%, #c49066 50%, #e8c9a8 100%);
    --gradient-gold-text: linear-gradient(135deg, #d4a574, #e8c9a8, #d4a574);

    /* Glass */
    --glass-bg: rgba(18, 16, 24, 0.8);
    --glass-border: rgba(212, 165, 116, 0.12);

    /* Text */
    --text-white: #f0ebe4;
    --text-gray: #9a9098;
    --text-muted: #6b6570;

    /* Gradients */
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #0e0e16 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(180, 130, 90, 0.05) 0%, transparent 50%);

    /* Shadows */
    --shadow-gold: 0 0 40px rgba(212, 165, 116, 0.1), 0 0 80px rgba(212, 165, 116, 0.05);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 165, 116, 0.08);

    /* Sizing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Fonts */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cormorant Garamond', 'Outfit', Georgia, serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    transition: var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #0a0a0a;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.25);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border-color: rgba(212, 165, 116, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 165, 116, 0.08);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.7rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.85rem;
}

/* ===== AGE MODAL ===== */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(8, 8, 16, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow-gold);
}

.age-modal-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-white);
}

.age-modal-content p {
    color: var(--text-gray);
    margin-bottom: 36px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.age-modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-top {
    background: rgba(212, 165, 116, 0.06);
    border-bottom: 1px solid rgba(212, 165, 116, 0.08);
    padding: 8px 0;
    font-size: 0.8rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-address {
    color: var(--text-gray);
}

.header-phone {
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header-phone:hover {
    color: var(--gold);
}

.header-main {
    padding: 16px 0;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
}

.logo-sub {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: 7px;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tg-link {
    color: var(--text-gray);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.tg-link:hover {
    color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    margin: 5px 0;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-menu-contacts {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    background-image: url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 15, 0.55) 0%,
            rgba(10, 10, 15, 0.65) 40%,
            rgba(10, 10, 15, 0.80) 70%,
            rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(180, 130, 90, 0.04) 0%, transparent 40%);
}

@keyframes heroGradient {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 80%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-white);
    text-shadow: 0 0 80px rgba(212, 165, 116, 0.15);
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-gray);
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    background: rgba(212, 165, 116, 0.04);
    backdrop-filter: blur(10px);
}

.hero-feature-icon {
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
    z-index: 3;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.4;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
}

.section-about {
    background: var(--bg-secondary);
}

.section-programs {
    background: var(--bg-primary);
}

.section-additions {
    background: var(--bg-secondary);
}

.section-why {
    background: var(--bg-primary);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-photo-main img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.about-photo-main img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.about-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.about-photo-grid img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.about-photo-grid img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.about-info {
    padding-top: 20px;
}

.about-name {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.about-tagline {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-bio {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 300;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.about-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-detail-icon {
    font-size: 1.2rem;
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== PROGRAM CARDS ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 165, 116, 0.2);
}

.program-card-video {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.program-card-video video,
.program-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 28px 0;
    gap: 16px;
}

.program-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.program-card-duration {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.program-card-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.program-card-body {
    padding: 20px 28px;
}

.program-card-desc {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.program-card-includes {
    margin-top: 16px;
}

.program-card-includes-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 12px;
}

.program-card-includes ul {
    list-style: none;
    columns: 1;
}

.program-card-includes li {
    font-size: 0.82rem;
    color: var(--text-gray);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.program-card-includes li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 7px;
}

.program-card-level {
    margin-top: 16px;
    padding: 10px 16px;
    background: rgba(212, 165, 116, 0.06);
    border: 1px solid rgba(212, 165, 116, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--gold-light);
    font-style: italic;
}

.program-card-footer {
    display: flex;
    gap: 10px;
    padding: 20px 28px 28px;
    flex-wrap: wrap;
}

/* ===== ADDITION CARDS ===== */
.additions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.addition-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition-fast);
    text-align: center;
}

.addition-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 165, 116, 0.2);
}

.addition-card-emoji {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.addition-card-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.addition-card-price {
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.addition-card-desc {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 165, 116, 0.2);
}

.why-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.section-cta {
    background: var(--bg-secondary);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-logo span {
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 4px;
}

.footer-address {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-phone {
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 500;
}

.footer-phone:hover {
    color: var(--gold);
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-note {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.admin-link {
    font-size: 1rem;
    opacity: 0.3;
    transition: var(--transition-fast);
}

.admin-link:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.8;
}

/* ===== MODALS ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-card-solid);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: var(--shadow-gold);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    color: var(--text-gray);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BOOKING FORM ===== */
.form-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: var(--font-main);
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 165, 116, 0.04);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-note {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 16px;
}

.form-note a {
    color: var(--gold-light);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== FIXED PHONE BUTTON ===== */
.fixed-phone {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.35);
    z-index: 900;
    transition: var(--transition-fast);
    animation: phonePulse 2s infinite;
}

.fixed-phone:hover {
    transform: scale(1.1);
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 165, 116, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0);
    }
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .additions-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-photo-main img {
        aspect-ratio: 3 / 4;
    }

    .about-photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-photo-grid img {
        aspect-ratio: 3 / 4;
    }

    .about-name {
        font-size: 2.2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 8px 20px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .header-top {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-photo-grid img {
        aspect-ratio: 3 / 4;
    }

    .program-card-header {
        padding: 20px 20px 0;
    }

    .program-card-body {
        padding: 16px 20px;
    }

    .program-card-footer {
        padding: 16px 20px 20px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 165, 116, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 165, 116, 0.35);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(212, 165, 116, 0.3);
    color: var(--text-white);
}

/* ===== REVIEWS SECTION ===== */
.section-reviews {
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(212, 165, 116, 0.06);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 165, 116, 0.2);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-star {
    color: var(--gold);
    font-size: 1rem;
}

.review-star.empty {
    color: var(--text-muted);
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.review-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-author-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

.review-author-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.section-faq {
    background: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(212, 165, 116, 0.2);
}

.faq-item.active {
    border-color: rgba(212, 165, 116, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-item.active .faq-question {
    color: var(--gold-light);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(212, 165, 116, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.9;
}

/* ===== GALLERY TEASER ===== */
.section-gallery-teaser {
    background: var(--bg-secondary);
}

.gallery-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-teaser-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
}

.gallery-teaser-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.7) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-teaser-item:hover::after {
    opacity: 1;
}

.gallery-teaser-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-teaser-item:hover img {
    transform: scale(1.08);
}

.gallery-teaser-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
    background: var(--bg-card);
}

.gallery-teaser-cta {
    text-align: center;
}

/* ===== BLOG CARDS (for blog.html) ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 165, 116, 0.2);
}

.blog-card-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card-cover-placeholder {
    width: 100%;
    height: 220px;
    background: rgba(212, 165, 116, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-body {
    padding: 28px;
}

.blog-card-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: var(--gold-light);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.blog-card-link:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

/* ===== ARTICLE PAGE (blog-post.html) ===== */
.article-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--bg-secondary);
}

.article-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.article-breadcrumb a {
    color: var(--gold);
    transition: var(--transition-fast);
}

.article-breadcrumb a:hover {
    color: var(--gold-light);
}

.article-breadcrumb span {
    color: var(--text-muted);
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.article-cover {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    border: 1px solid var(--glass-border);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.article-body {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-white);
    margin: 36px 0 16px;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin: 28px 0 12px;
}

.article-body p {
    margin-bottom: 16px;
}

.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.article-body li {
    padding: 4px 0;
}

.article-body strong {
    color: var(--text-white);
    font-weight: 600;
}

.article-body em {
    color: var(--gold-light);
    font-style: italic;
}

.article-body a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(212,165,116,0.3);
}

/* Gallery teaser responsive */
@media (max-width: 768px) {
    .gallery-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 160px);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-teaser-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 130px);
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.88rem;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
    }
}