/* ============================================================
   ЭКЗОВЕТ — CSS Design System
   Frosted Glass · Rose Gold · Premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --pink-50: #FDF4F7;
    --pink-100: #FAE8EF;
    --pink-200: #F2C4D4;
    --pink-300: #E8A0B8;
    --pink-400: #D97090;

    --grey-50: #F8F8F9;
    --grey-100: #F0F0F2;
    --grey-200: #DCDCE0;
    --grey-300: #AEAEB8;
    --grey-500: #6E6E78;
    --grey-700: #3A3A3F;
    --grey-900: #1A1A1E;

    --gold: #5570ca;
    --gold-light: #5570ca;
    --gold-dark: #5570ca;
    --silver: #C0C0C8;
    --white: #FFFFFF;

    --gradient-hero: linear-gradient(135deg, #FDF4F7 0%, #FAE8EF 40%, #F5F5F7 100%);
    --gradient-gold: linear-gradient(135deg, #6095db 0%, #6eacc9 50%, #1332bd 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 100%);

    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px rgba(201, 169, 110, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    --glass-blur: blur(20px);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-num: 'SSF Breakthrough', serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--pink-50);
    color: var(--grey-700);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ─── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--grey-900);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
}

h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grey-700);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--grey-500);
    max-width: 560px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

/* ─── Glass Card ─────────────────────────────────────────── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--grey-700);
    box-shadow: var(--glass-shadow);
}

.btn-glass:hover {
    transform: translateY(-2px);
}

/* ─── Container & Layout ─────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ─── Gold Divider ───────────────────────────────────────── */
.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1.5rem 0;
    border-radius: var(--radius-full);
}

.text-center .gold-divider {
    margin: 1.5rem auto;
}

/* ════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ════════════════════════════════════════════════════════════ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    transition: box-shadow var(--transition), background var(--transition);
}

#header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--grey-900);
    line-height: 1;
}

.nav-logo-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--grey-500);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--grey-900);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--grey-700);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 244, 247, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    pointer-events: none;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--grey-900);
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #F2C4D4 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #E8D5A0 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-900);
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '✦';
    font-size: 0.6rem;
    color: var(--gold);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--grey-500);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
}

.hero-stat-num {
    font-family: var(--font-num);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--grey-900);
    line-height: 1;
}

.hero-stat-num span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--grey-900);
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
}

/* Floating card */
.hero-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    padding: 1.5rem;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(-52%);
    }

    50% {
        transform: translateY(-48%);
    }
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.hero-card-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #5EC97A;
    box-shadow: 0 0 0 3px rgba(94, 201, 122, 0.25);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(94, 201, 122, 0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(94, 201, 122, 0.1);
    }
}

.hero-card-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
}

.hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.38rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--grey-700);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 169, 110, 0.2);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.hero-tag:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-1px);
}

.hero-card-sub {
    font-size: 0.72rem;
    color: var(--grey-300);
    font-style: italic;
    text-align: right;
}

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1.25rem 1.5rem;
}

.about-badge-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--grey-900);
    line-height: 1.4;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
}

.about-feature-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--gold-dark);
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.about-feature:hover .about-feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.about-feature-text {
    font-size: 0.82rem;
    color: var(--grey-500);
    line-height: 1.5;
}

.about-feature-title {
    font-weight: 600;
    color: var(--grey-700);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

/* ════════════════════════════════════════════════════════════
   WHO WE ACCEPT
   ════════════════════════════════════════════════════════════ */
#accepts {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

#accepts::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    opacity: 0.08;
}

.accepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    position: relative;
}

.accept-card {
    padding: 1.75rem 1rem;
    text-align: center;
    cursor: default;
}

.accept-icon {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    display: block;
}

.accept-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--grey-900);
    margin-bottom: 0.25rem;
}

.accept-desc {
    font-size: 0.75rem;
    color: var(--grey-300);
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2rem 1.75rem;
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover::before {
    opacity: 0.04;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
}

.service-icon {
    margin-bottom: 1rem;
    display: block;
    color: var(--gold-dark);
    width: 36px;
    height: 36px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.15) translateY(-5px);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--grey-900);
}

.service-desc {
    font-size: 0.85rem;
    color: var(--grey-500);
    line-height: 1.7;
}

.service-price {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
}

/* ════════════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════════════ */
#team {
    background: var(--grey-50);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(201, 169, 110, 0.2);
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.team-info {
    padding: 1.25rem 1.25rem 1.5rem;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--grey-900);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.team-desc {
    font-size: 0.8rem;
    color: var(--grey-500);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════ */
#gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 30, 0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 14, 0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ════════════════════════════════════════════════════════════
   PRICES
   ════════════════════════════════════════════════════════════ */
#prices {
    background: var(--gradient-hero);
}

.prices-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.price-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-category {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--pink-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.price-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    transition: background var(--transition);
    user-select: none;
}

.price-category-header:hover {
    background: var(--pink-50);
}

.price-category-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--grey-900);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-category-icon {
    color: var(--gold-dark);
    width: 22px;
    height: 22px;
}

.price-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pink-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform var(--transition), background var(--transition);
    flex-shrink: 0;
    color: var(--grey-700);
}

.price-category.open .price-toggle {
    transform: rotate(45deg);
    background: var(--gold-light);
}

.price-category-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.price-category.open .price-category-body {
    max-height: 1000px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table tr {
    border-top: 1px solid var(--grey-100);
    transition: background var(--transition);
}

.price-table tr:hover {
    background: var(--pink-50);
}

.price-table td {
    padding: 0.9rem 1.75rem;
    font-size: 0.875rem;
    color: var(--grey-700);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--grey-900);
    white-space: nowrap;
}

.price-note {
    font-size: 0.75rem;
    color: var(--grey-300);
    margin-top: 1.5rem;
    text-align: center;
}

/* ════════════════════════════════════════════════════════════
   APPOINTMENT FORM
   ════════════════════════════════════════════════════════════ */
#appointment {
    background: var(--white);
}

.appointment-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.appointment-info h2 {
    margin-bottom: 0.5rem;
}

.tg-btn-wrap {
    margin-top: 2rem;
}

.tg-icon {
    font-size: 1.1rem;
}

.form-card {
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--grey-900);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.82rem;
    color: var(--grey-300);
    margin-bottom: 1.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey-500);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--grey-700);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-submit {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   CONTACTS & MAP
   ════════════════════════════════════════════════════════════ */
#contacts {
    background: var(--grey-50);
    padding-bottom: 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding-bottom: 4rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-item:hover .contact-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.contact-icon-wrap svg {
    color: var(--white);
    width: 20px;
    height: 20px;
}

.contact-item-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-300);
    margin-bottom: 0.2rem;
}

.contact-item-value {
    font-size: 0.95rem;
    color: var(--grey-700);
    line-height: 1.5;
}

.contact-item-value a {
    color: var(--gold-dark);
}

.contact-item-value a:hover {
    color: var(--gold);
}

.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    height: 380px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ─── How to Get There ─────────────────────────────────── */
.how-to-get {
    background: var(--white);
    border-top: 1px solid var(--pink-100);
    padding: 3rem 0;
}

.route-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.route-card {
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
}

.route-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.route-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.route-desc {
    font-size: 0.82rem;
    color: var(--grey-500);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer {
    background: var(--grey-900);
    color: var(--grey-300);
    padding: 3.5rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.footer-logo-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--grey-500);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--grey-300);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--grey-500);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--grey-500);
}

.footer-offer {
    font-size: 0.78rem;
    color: var(--gold);
    cursor: pointer;
    transition: color var(--transition);
}

.footer-offer:hover {
    color: var(--gold-light);
}

/* ════════════════════════════════════════════════════════════
   OFFER MODAL
   ════════════════════════════════════════════════════════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(10, 10, 14, 0.75);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 760px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--grey-100);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--grey-900);
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--grey-500);
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--grey-200);
    color: var(--grey-900);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    font-size: 0.85rem;
    color: var(--grey-700);
    line-height: 1.9;
}

.modal-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--grey-900);
}

.modal-body p {
    margin-bottom: 0.75rem;
}

.modal-body ol,
.modal-body ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.modal-body li {
    margin-bottom: 0.35rem;
}

/* ════════════════════════════════════════════════════════════
   SCROLL TO TOP
   ════════════════════════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
    cursor: pointer;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
    z-index: 500;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.5);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        aspect-ratio: 16/9;
    }

    .hero-card {
        display: none;
    }

    .appointment-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .route-options {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .prices-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .accepts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .accepts-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .accept-card {
        padding: 1.5rem 1.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── Demo Banner ─────────────────────────────────────────── */
#demo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 26, 30, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

#demo-banner button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

#demo-banner button:hover {
    background: rgba(255, 255, 255, 0.2);
}