* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --color-bg: #0a0f0d;
    --color-bg-light: #111916;
    --color-cream: #f5f2eb;
    --color-gold: #c9a962;
    --color-gold-light: #e0c87a;
    --color-green: #1a2e23;
    --color-green-light: #2a4435;
    --color-text: #e8e5de;
    --color-text-muted: #8a8a85;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 100px; 
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body { 
    font-family: var(--font-body); 
    background: var(--color-bg); 
    color: var(--color-text); 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Улучшенная поддержка touch устройств */
@media (hover: none) and (pointer: coarse) {
    a, button, .image-modal-trigger {
        -webkit-tap-highlight-color: rgba(201, 169, 98, 0.2);
    }
}

.cursor { width: 20px; height: 20px; border: 1px solid var(--color-gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transition: transform 0.15s ease; transform: translate(-50%, -50%); }
.cursor-dot { width: 4px; height: 4px; background: var(--color-gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }
.cursor.hover { transform: translate(-50%, -50%) scale(2); background: rgba(201, 169, 98, 0.1); }

.scroll-top { 
    position: fixed; 
    bottom: 3rem; 
    bottom: max(3rem, calc(env(safe-area-inset-bottom) + 1.5rem));
    right: 3rem; 
    right: max(3rem, calc(env(safe-area-inset-right) + 1rem));
    width: 50px; 
    height: 50px; 
    border: 1px solid var(--color-gold); 
    background: rgba(10, 15, 13, 0.9); 
    backdrop-filter: blur(10px); 
    color: var(--color-gold); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--color-gold); color: var(--color-bg); transform: translateY(-4px); }
.scroll-top svg { transition: transform 0.3s ease; }
.scroll-top:hover svg { transform: translateY(-2px); }

.preloader { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    height: 100dvh; /* Dynamic viewport height для мобильных */
    background: var(--color-bg); 
    z-index: 10000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
    transition: opacity 0.5s ease;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.preloader-text { 
    font-family: var(--font-display); 
    font-size: clamp(1.2rem, 4vw, 2.5rem); 
    color: var(--color-gold); 
    letter-spacing: 0.3em; 
    text-transform: uppercase; 
    opacity: 0; 
    animation: fadeInUp 1s ease forwards;
    text-align: center;
    padding: 0 1rem;
}
.preloader-line { 
    width: 0; 
    height: 1px; 
    background: var(--color-gold); 
    margin-top: 2rem; 
    animation: expandLine 2s ease forwards 0.5s;
    max-width: min(200px, 80vw);
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes expandLine { from { width: 0; } to { width: 200px; } }

.nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    padding: 2rem 4rem; 
    padding-top: max(2rem, env(safe-area-inset-top));
    padding-left: max(4rem, env(safe-area-inset-left));
    padding-right: max(4rem, env(safe-area-inset-right));
    display: grid; 
    grid-template-columns: 1fr auto 1fr; 
    align-items: center; 
    z-index: 1000; 
    mix-blend-mode: difference;
    transition: all 0.3s ease;
}
.nav-logo { display: flex; align-items: center; gap: 0.1rem; }
.logo-letter { font-family: var(--font-display); font-size: 2rem; font-weight: 300; letter-spacing: 0.05em; color: var(--color-cream); line-height: 1; }
.logo-letter.accent { font-size: 2.2rem; font-weight: 500; color: var(--color-gold); }
.nav-menu { display: flex; gap: 2.5rem; align-items: center; justify-content: center; }
.nav-link { color: var(--color-cream) !important; text-decoration: none; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.3s ease; position: relative; opacity: 0.4; }
.nav.scrolled .nav-link { opacity: 1; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--color-gold); transition: width 0.3s ease; }
.nav-link:hover { color: var(--color-gold) !important; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--color-gold) !important; opacity: 1; }
.nav-link.active::after { width: 100%; }
.nav-cta { 
    padding: 0.8rem 2rem; 
    border: 1px solid var(--color-gold); 
    background: transparent !important;
    color: var(--color-gold) !important; 
    text-decoration: none; 
    font-size: 0.75rem; 
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    justify-self: end;
    cursor: pointer;
}
.nav-cta:hover { 
    background: var(--color-gold) !important; 
    color: var(--color-bg) !important; 
}
.nav.scrolled .nav-cta {
    border-color: var(--color-gold) !important;
    color: var(--color-gold) !important;
}

.hero { 
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height для мобильных */
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
    padding: 2rem; 
    padding-top: max(2rem, env(safe-area-inset-top));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
    overflow: hidden;
}
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg-image { width: 100%; height: 100%; background-image: url('https://lh3.googleusercontent.com/d/1HuL9zTgaM1zyTN-R4IvaqyJS5XVRMP7Q=w1920-h1080-no'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(10, 15, 13, 0.65) 0%, rgba(10, 15, 13, 0.85) 50%, rgba(10, 15, 13, 0.98) 100%); }
.hero-date { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 2rem; opacity: 0; transform: translateY(30px); text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 0 20px rgba(10, 15, 13, 0.5); font-weight: 500; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 6rem); font-weight: 300; text-align: center; line-height: 0.9; letter-spacing: -0.02em; margin-bottom: 0.5rem; color: var(--color-cream); text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; transform: translateY(100%); }
.hero-title .line.accent { font-style: italic; }
.hero-title .line.accent span { color: var(--color-gold); }
.hero-subtitle { font-size: clamp(0.85rem, 1.2vw, 1rem); font-weight: 300; text-align: center; max-width: 550px; line-height: 1.7; color: var(--color-text); margin-top: 1.5rem; opacity: 0; transform: translateY(30px); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4); }
.hero-stats { display: flex; gap: 3rem; margin-top: 2.5rem; opacity: 0; transform: translateY(30px); }
.hero-stat { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-stat-number { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--color-gold); line-height: 1; margin-bottom: 0.4rem; }
.hero-stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text); line-height: 1.4; white-space: nowrap; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3); }
.hero-spots { margin-top: 2rem; text-align: center; opacity: 0; transform: translateY(30px); visibility: hidden; }
.hero-spots-text { display: inline-block; padding: 0.6rem 1.5rem; border: 1px solid rgba(201, 169, 98, 0.4); background: rgba(201, 169, 98, 0.05); color: rgba(201, 169, 98, 0.8); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.8rem; opacity: 0; }
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-text-muted); }
.hero-scroll-line { width: 1px; height: 60px; background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.5; } }

.marquee-section { padding: 3rem 0; background: var(--color-green); overflow: hidden; }
.marquee { display: flex; animation: marquee 30s linear infinite; }
.marquee-content { display: flex; align-items: center; gap: 4rem; padding-right: 4rem; white-space: nowrap; }
.marquee-item { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 300; letter-spacing: 0.1em; color: var(--color-cream); opacity: 0.7; }
.marquee-dot { width: 6px; height: 6px; background: var(--color-gold); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.about { padding: clamp(6rem, 15vw, 12rem) clamp(2rem, 8vw, 10rem); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; }
.about-content { max-width: 600px; }
.section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--color-gold); }
.about-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.2; margin-bottom: 2rem; }
.about-title em { font-style: italic; color: var(--color-gold); }
.about-text { font-size: 1rem; line-height: 1.9; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.about-text em { font-style: italic; color: var(--color-gold); }
.about-what-awaits { margin: 3rem 0; }
.about-what-awaits-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--color-cream); margin-bottom: 2rem; }
.about-what-awaits-item { margin-bottom: 2.5rem; }
.about-what-awaits-item-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--color-gold); margin-bottom: 0.8rem; font-style: italic; }
.about-images { position: relative; width: 100%; height: 900px; }
.about-image-main { position: absolute; top: 0; left: 0; width: 80%; height: 85%; overflow: hidden; }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-overlay { position: absolute; bottom: 0; right: 0; width: 45%; height: 45%; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); z-index: 2; overflow: hidden; }
.about-image-overlay img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder { width: 100%; height: 100%; background: var(--color-green); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--color-text-muted); letter-spacing: 0.1em; position: relative; overflow: hidden; }
.about-image-placeholder::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-green) 100%); }
.about-image-placeholder span { position: relative; z-index: 1; border: 1px dashed var(--color-text-muted); padding: 1.5rem 2rem; text-align: center; }

.section-label-centered { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.section-label-centered::before, .section-label-centered::after { content: ''; flex: 1; max-width: 150px; height: 1px; background: var(--color-gold); }
.section-label-centered span { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-gold); white-space: nowrap; }

.features { padding: clamp(6rem, 12vw, 10rem) clamp(2rem, 8vw, 10rem); background: var(--color-bg-light); }
.features-header { text-align: center; max-width: 900px; margin: 0 auto 5rem; }
.features-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2; }
.features-title em { font-style: italic; color: var(--color-gold); }
.features-subtitle { font-size: 1.1rem; color: var(--color-text-muted); line-height: 1.7; max-width: 600px; margin: 0 auto; }

.features-focus { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-bottom: 5rem; border: 1px solid rgba(201, 169, 98, 0.2); position: relative; }
.focus-item { display: flex; flex-direction: column; gap: 1rem; padding: 2rem; border: 1px solid rgba(201, 169, 98, 0.2); transition: all 0.4s ease; position: relative; overflow: hidden; }
.focus-item-reveal { opacity: 0; transform: translateY(80px) scale(0.9); will-change: transform, opacity, filter; }
.focus-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--color-gold); transition: height 0.4s ease; }
.focus-item:hover { background: rgba(201, 169, 98, 0.03); }
.focus-item:hover::before { height: 100%; }
.focus-icon { color: var(--color-gold); opacity: 0.8; transition: all 0.4s ease; width: 56px; height: 56px; }
.focus-item:hover .focus-icon { opacity: 1; transform: translateY(-4px); }
.focus-number { position: absolute; top: 2rem; right: 2rem; font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: var(--color-gold); opacity: 0.08; line-height: 1; }
.focus-content h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--color-cream); }
.focus-content h3 span { color: var(--color-gold); font-style: italic; }
.focus-content p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.8; }

.features-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 5rem; }
.highlight-card { padding: 2.5rem 2rem; background: var(--color-bg); border: 1px solid rgba(201, 169, 98, 0.2); text-align: center; transition: all 0.4s ease; }
.highlight-card:hover { border-color: var(--color-gold); transform: translateY(-8px); }
.highlight-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; border: 1px solid var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-gold); }
.highlight-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.5rem; }
.highlight-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 1rem; color: var(--color-cream); }
.highlight-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }

.features-quote { padding: 2rem 0 0; margin-top: 2rem; border-top: 1px solid rgba(201, 169, 98, 0.1); text-align: center; }
.features-quote blockquote { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 300; color: var(--color-text-muted); max-width: 800px; margin: 0 auto; line-height: 1.6; position: relative; padding-left: 1.5rem; }
.features-quote blockquote::before { content: '"'; position: absolute; left: 0; top: -0.1em; font-family: var(--font-display); font-size: 2em; color: var(--color-gold); opacity: 0.3; line-height: 1; }
.features-quote blockquote em { font-style: italic; color: var(--color-gold); }

.program { padding: clamp(6rem, 15vw, 12rem) clamp(2rem, 8vw, 10rem); position: relative; overflow: visible; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: start; }
.program-header { grid-column: 1; display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.program-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; }
.program-title em { font-style: italic; color: var(--color-gold); }
.program-days-wrapper { position: sticky; top: 100px; z-index: 100; grid-column: 2; grid-row: 2 / 4; align-self: start; padding: 0 0 1.5rem 0; margin: 0; border-bottom: 1px solid rgba(201, 169, 98, 0.3); }
.program-day-title { grid-column: 1; grid-row: 2; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; color: var(--color-cream); margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(201, 169, 98, 0.3); }
.program-day-title em { font-style: italic; color: var(--color-gold); }
.program-content { grid-column: 1; grid-row: 3; }
.program-days { display: flex; gap: 1.5rem; }
.program-day-btn { padding: 1.2rem 2.5rem; background: transparent; border: 1px solid var(--color-text-muted); color: var(--color-text-muted); font-family: var(--font-body); cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.program-day-btn .day-number { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }
.program-day-btn .day-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; }
.program-day-btn.active, .program-day-btn:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-bg); }
.program-day-btn.active .day-number, .program-day-btn:hover .day-number { opacity: 1; }
.program-content { display: none; }
.program-content.active { display: block; }
.program-duration { display: inline-block; margin-top: 1rem; padding: 0.4rem 1rem; background: rgba(201, 169, 98, 0.1); border: 1px solid rgba(201, 169, 98, 0.3); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--color-gold); }
.program-item { display: grid; grid-template-columns: 150px 1fr; gap: 4rem; padding: 3rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; }
.program-item:hover { padding-left: 2rem; background: rgba(201, 169, 98, 0.03); }
.program-item.highlight { background: rgba(201, 169, 98, 0.05); border-left: 3px solid var(--color-gold); padding-left: 2rem; }
.program-item.highlight:hover { padding-left: 2.5rem; }
.program-time { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-gold); }
.program-info h4 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; }
.program-info p { color: var(--color-text-muted); line-height: 1.7; font-size: 0.95rem; }

.gallery { padding: clamp(4rem, 10vw, 8rem) 0; background: var(--color-green); overflow: hidden; }
.gallery-header { padding: 0 clamp(2rem, 8vw, 10rem); margin-bottom: 4rem; }
.gallery-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 300; }
.gallery-content { overflow: hidden; width: 100%; }
.gallery-grid { display: flex; gap: 1.5rem; animation: galleryScroll 40s linear infinite; will-change: transform; transform: translateZ(0); backface-visibility: hidden; }
.gallery-item { flex-shrink: 0; width: 400px; height: 500px; background: var(--color-bg); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; transform: translateZ(0); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.gallery-item span { font-size: 0.8rem; color: var(--color-text-muted); letter-spacing: 0.1em; border: 1px dashed var(--color-text-muted); padding: 2rem 3rem; }
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(calc(-400px * 9 - 1.5rem * 9)); } }

.speakers { padding: clamp(6rem, 15vw, 12rem) clamp(2rem, 8vw, 10rem); }
.speakers-header { text-align: center; margin-bottom: 5rem; }
.speakers-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 300; margin-bottom: 1rem; }
.speakers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; }
.speaker-card { display: grid; grid-template-columns: 250px 1fr; gap: 3rem; padding: 3rem; background: var(--color-bg-light); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.speaker-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); }
.speaker-image { aspect-ratio: 3/4; background: var(--color-green); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.speaker-image img { width: 100%; height: 100%; object-fit: cover; }
.speaker-image span { font-size: 0.75rem; color: var(--color-text-muted); letter-spacing: 0.1em; border: 1px dashed var(--color-text-muted); padding: 1.5rem 2rem; }
.speaker-info { display: flex; flex-direction: column; justify-content: center; }
.speaker-name { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 0.5rem; }
.speaker-role { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 1.5rem; }
.speaker-bio { color: var(--color-text-muted); line-height: 1.8; font-size: 0.9rem; }
.speaker-achievements { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.speaker-achievement { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.speaker-achievement::before { content: '✦'; color: var(--color-gold); font-size: 0.6rem; }

.location { padding: clamp(6rem, 15vw, 12rem) clamp(2rem, 8vw, 10rem); background: var(--color-bg-light); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.location-content { max-width: 550px; }
.location-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 300; margin-bottom: 2rem; }
.location-title em { font-style: italic; color: var(--color-gold); }
.location-text { color: var(--color-text-muted); line-height: 1.9; margin-bottom: 2rem; }
.location-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.location-feature { display: flex; align-items: center; gap: 1rem; }
.location-feature-icon { width: 70px; height: 70px; border: 1px solid var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: all 0.4s ease; }
.location-feature-icon svg { color: var(--color-gold); transition: all 0.4s ease; }
.location-feature:hover .location-feature-icon { background: var(--color-gold); transform: translateY(-4px); }
.location-feature:hover .location-feature-icon svg { color: var(--color-bg); }
.location-feature span { font-size: 0.9rem; }
.location-coordinates { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(201, 169, 98, 0.2); }
.location-coordinates-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.location-coordinates-item svg { color: var(--color-gold); flex-shrink: 0; }
.location-coordinates-info { display: flex; flex-direction: column; gap: 0.3rem; }
.location-coordinates-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); }
.location-coordinates-value { font-size: 1rem; color: var(--color-cream); text-decoration: none; transition: color 0.3s ease; font-family: var(--font-display); }
.location-coordinates-value:hover { color: var(--color-gold); text-decoration: underline; }
.location-coordinates-description { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.7; margin-top: 1rem; }
.location-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.location-image { aspect-ratio: 4/5; background: var(--color-green); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.location-image:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.location-image img { width: 100%; height: 100%; object-fit: cover; }
.location-image span { font-size: 0.75rem; color: var(--color-text-muted); letter-spacing: 0.1em; border: 1px dashed var(--color-text-muted); padding: 1.5rem 2rem; }

.pricing { padding: clamp(6rem, 15vw, 12rem) clamp(2rem, 8vw, 10rem); text-align: center; position: relative; overflow: hidden; }
.pricing::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%); pointer-events: none; }
.pricing-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 2rem; }
.pricing-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; margin-bottom: 3rem; }
.pricing-card { max-width: 700px; margin: 0 auto; padding: 4rem; background: var(--color-bg-light); border: 1px solid rgba(201, 169, 98, 0.3); position: relative; }
.pricing-card::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 100px; height: 2px; background: var(--color-gold); }
.pricing-amount { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5rem); font-weight: 300; color: var(--color-gold); margin-bottom: 0.5rem; }
.pricing-currency { font-size: 0.5em; vertical-align: super; margin-left: 0.25em; }
.pricing-period { color: var(--color-text-muted); margin-bottom: 3rem; }
.pricing-includes { text-align: left; margin-bottom: 3rem; }
.pricing-includes-title { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 1.5rem; }
.pricing-includes-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.pricing-includes-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--color-text-muted); }
.pricing-includes-item::before { content: '✓'; color: var(--color-gold); font-size: 0.8rem; }
.pricing-cta { display: inline-block; padding: 1.5rem 4rem; background: var(--color-gold) !important; color: var(--color-bg) !important; text-decoration: none; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; border: none; cursor: pointer; font-family: var(--font-body); }
.pricing-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); transition: left 0.5s ease; }
.pricing-cta:hover::before { left: 100%; }
.pricing-cta:hover { transform: scale(1.05); box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3); background: var(--color-gold) !important; color: var(--color-bg) !important; }
.pricing-note { margin-top: 2rem; font-size: 0.85rem; color: var(--color-text-muted); }

.cta-section { padding: clamp(8rem, 15vw, 12rem) clamp(2rem, 8vw, 10rem); background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-green) 50%, var(--color-bg) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%); transform: translate(-50%, -50%); pointer-events: none; }
.cta-section::after { content: '✦'; position: absolute; top: 3rem; left: 50%; transform: translateX(-50%); font-size: 1.5rem; color: var(--color-gold); opacity: 0.3; }
.cta-text { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 300; font-style: italic; max-width: 800px; margin: 0 auto 2rem; line-height: 1.6; position: relative; color: var(--color-cream); }
.cta-author { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 3rem; }
.cta-decoration { display: flex; justify-content: center; margin-top: 2rem; }
.cta-decoration span { width: 100px; height: 1px; background: linear-gradient(90deg, transparent, var(--color-gold), transparent); }

.faq { padding: clamp(6rem, 15vw, 12rem) clamp(2rem, 8vw, 10rem); background: var(--color-bg-light); }
.faq-header { text-align: center; max-width: 900px; margin: 0 auto 5rem; }
.faq-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2; }
.faq-title em { font-style: italic; color: var(--color-gold); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201, 169, 98, 0.2); }
.faq-question { width: 100%; padding: 2rem 0; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; transition: all 0.3s ease; }
.faq-question:hover { padding-left: 1rem; }
.faq-question-text { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 400; color: var(--color-cream); }
.faq-icon { width: 24px; height: 24px; color: var(--color-gold); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1.5rem; transform: rotate(180deg); }
.faq-item.closed .faq-icon { transform: rotate(0deg); }
.faq-answer { padding-bottom: 2rem; }
.faq-answer p { font-size: 1rem; line-height: 1.8; color: var(--color-text-muted); }
.faq-item.closed .faq-answer { display: none; }

.footer { padding: 4rem clamp(2rem, 8vw, 10rem); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.1); flex-wrap: wrap; gap: 2rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-info { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-link { color: var(--color-text-muted) !important; text-decoration: none; font-size: 0.85rem; transition: color 0.3s ease; }
.footer-link:hover { color: var(--color-gold) !important; }
.footer-copy { color: var(--color-text-muted); font-size: 0.8rem; }

.reveal { opacity: 0; transform: translateY(60px); transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================ */
/* АДАПТИВНАЯ ВЕРСТКА ДЛЯ ВСЕХ УСТРОЙСТВ       */
/* Десктоп (>1200px) не изменяется             */
/* ============================================ */

@media (max-width: 1200px) {
    /* Секция спикеров */
    .speakers-grid { grid-template-columns: 1fr; }
    .speaker-card { grid-template-columns: 200px 1fr; gap: 2.5rem; }
    
    /* Оптимизация отступов */
    .about, .features, .program, .speakers, .location, .pricing { 
        padding-left: clamp(2rem, 5vw, 6rem); 
        padding-right: clamp(2rem, 5vw, 6rem); 
    }
}

@media (max-width: 1024px) {
    /* Навигация */
    .nav { 
        padding: 1.5rem 2rem;
        padding-top: max(1.5rem, calc(env(safe-area-inset-top) + 0.5rem));
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right)); 
        display: flex; 
        justify-content: space-between; 
    }
    .nav-menu { display: none; }
    .nav-cta { font-size: 0.7rem; padding: 0.7rem 1.5rem; }
    
    /* Секция О ретрите */
    .about { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
        padding-top: clamp(4rem, 10vw, 8rem);
        padding-bottom: clamp(4rem, 10vw, 8rem);
    }
    .about-images { height: 500px; }
    .about-image-main { width: 85%; height: 80%; }
    .about-image-overlay { width: 55%; height: 55%; }
    
    /* Фокус секции */
    .features-focus { grid-template-columns: 1fr; }
    .features-highlights { grid-template-columns: repeat(2, 1fr); }
    
    /* Программа */
    .program { 
        grid-template-columns: 1fr; 
        padding-top: clamp(4rem, 10vw, 8rem);
        padding-bottom: clamp(4rem, 10vw, 8rem);
    }
    .program-header { grid-column: 1; grid-row: auto; margin-bottom: 2rem; }
    .program-days-wrapper { 
        position: sticky; 
        top: 80px; 
        z-index: 100;
        background: var(--color-bg);
        grid-column: 1; 
        grid-row: auto; 
        margin: 0 0 2rem 0; 
        padding: 1.5rem 0; 
    }
    .program-day-title { grid-column: 1; grid-row: auto; margin-bottom: 2rem; }
    .program-content { grid-column: 1; grid-row: auto; }
    .program-item { gap: 3rem; }
    
    /* Локация */
    .location { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
        padding-top: clamp(4rem, 10vw, 8rem);
        padding-bottom: clamp(4rem, 10vw, 8rem);
    }
    .location-content { 
        max-width: 100%;
    }
    .location-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Общие отступы - УВЕЛИЧЕНЫ для мобильной версии */
    .about, .features, .program, .speakers, .location, .pricing, .cta-section { 
        padding-left: 1.5rem; 
        padding-right: 1.5rem;
        padding-top: clamp(5rem, 15vw, 10rem);
        padding-bottom: clamp(5rem, 15vw, 10rem);
    }
    
    /* Дополнительные отступы для секций */
    .marquee-section { margin: 3rem 0; }
    .gallery { margin-bottom: 4rem; }
    
    /* Навигация */
    .nav { 
        padding: 1rem 1.5rem;
        padding-top: max(1rem, calc(env(safe-area-inset-top) + 0.5rem));
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    .nav-logo { gap: 0.05rem; }
    .logo-letter { font-size: 1.6rem; }
    .logo-letter.accent { font-size: 1.8rem; }
    .nav-cta { padding: 0.6rem 1.2rem; font-size: 0.65rem; letter-spacing: 0.1em; }
    
    /* Hero секция */
    .hero { 
        padding: 1.5rem; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-date { font-size: 0.65rem; margin-bottom: 2rem; order: 1; }
    .hero-title { 
        font-size: clamp(2.2rem, 12vw, 4.5rem); 
        margin-bottom: 1.5rem;
        line-height: 1;
        order: 2;
    }
    .hero-subtitle { 
        font-size: 0.9rem; 
        line-height: 1.6; 
        margin-top: 1.5rem;
        max-width: 90%;
        order: 3;
    }
    .hero-stats { 
        gap: 2.5rem; 
        margin-top: 2.5rem;
        flex-wrap: wrap;
        justify-content: center;
        order: 4;
    }
    .hero-spots { 
        margin-top: 2rem; 
        order: 5; 
    }
    .hero-spots-text { padding: 0.6rem 1.5rem; font-size: 0.7rem; }
    .hero-stat-number { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .hero-stat-label { font-size: 0.6rem; }
    .hero-scroll { bottom: 1.5rem; order: 6; }
    
    /* Marquee */
    .marquee-section { padding: 2rem 0; }
    .marquee-item { font-size: clamp(1rem, 4vw, 1.5rem); }
    
    /* О ретрите */
    .about {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "title"
            "text1"
            "images"
            "text2";
        gap: 0;
    }
    .about-content {
        display: contents;
    }
    .about-content .section-label { grid-area: label; }
    .about-content .about-title { grid-area: title; margin-bottom: 1.5rem; }
    .about-content .about-text-first { grid-area: text1; }
    .about-content .about-text-second { grid-area: text2; }
    .about-images { 
        grid-area: images;
        height: 400px; 
        margin: 2rem 0;
    }
    .about-image-main { width: 90%; height: 90%; }
    .about-image-overlay { width: 35%; height: 35%; }
    .about-text { font-size: 0.95rem; margin-bottom: 1.2rem; }
    .about-what-awaits { margin: 2rem 0; }
    .about-what-awaits-title { font-size: 1.3rem; margin-bottom: 1.5rem; }
    .about-what-awaits-item { margin-bottom: 2rem; }
    .about-what-awaits-item-title { font-size: 1.2rem; margin-bottom: 0.6rem; }
    
    /* Секция фокуса */
    .section-label-centered { gap: 1rem; }
    .section-label-centered::before, 
    .section-label-centered::after { max-width: 50px; }
    .features-title { margin-bottom: 1.2rem; }
    .features-subtitle { font-size: 1rem; }
    .features-focus { margin-bottom: 3rem; }
    .focus-item { 
        gap: 1rem; 
        padding: 1.5rem; 
        border: none;
        border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    }
    .focus-item:last-child { border-bottom: none; }
    .focus-icon { width: 44px; height: 44px; }
    .focus-number { top: 1.5rem; right: 1.5rem; font-size: 2.5rem; }
    .focus-content h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
    .focus-content p { font-size: 0.85rem; line-height: 1.7; }
    
    /* Карточки-хайлайты */
    .features-highlights { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
        margin-bottom: 3rem; 
    }
    .highlight-card { padding: 2rem 1.5rem; }
    .highlight-icon { width: 60px; height: 60px; margin-bottom: 1.2rem; }
    .highlight-title { font-size: 1.2rem; margin-bottom: 0.8rem; }
    .highlight-card p { font-size: 0.85rem; }
    
    /* Цитата */
    .features-quote { padding: 1.5rem 0 0; margin-top: 1.5rem; }
    .features-quote blockquote { 
        font-size: clamp(1rem, 3.5vw, 1.3rem); 
        padding-left: 1.2rem; 
        line-height: 1.5;
    }
    .features-quote blockquote::before { font-size: 1.6em; }
    
    /* Галерея */
    .gallery { padding: clamp(3rem, 8vw, 6rem) 0; }
    .gallery-header { padding: 0 1.5rem; margin-bottom: 2.5rem; }
    .gallery-item { width: 280px; height: 350px; }
    @keyframes galleryScroll { 
        from { transform: translateX(0); } 
        to { transform: translateX(calc(-280px * 9 - 1.5rem * 9)); } 
    }
    
    /* Программа */
    .program-days-wrapper { 
        position: sticky; 
        top: 70px; 
        z-index: 100;
        background: var(--color-bg);
        padding: 1rem 0 1.5rem 0;
        margin: 0 0 2rem 0;
    }
    .program-days { flex-direction: column; width: 100%; gap: 1rem; }
    .program-day-btn { 
        width: 100%; 
        flex-direction: row; 
        justify-content: center; 
        gap: 1rem; 
        padding: 1rem 2rem;
    }
    .program-day-title { 
        font-size: clamp(1.3rem, 5vw, 1.8rem); 
        margin-bottom: 2rem; 
        padding-bottom: 1rem; 
    }
    .program-item { 
        grid-template-columns: 1fr; 
        gap: 1rem; 
        padding: 2rem 0;
        padding-left: 0;
    }
    .program-item:hover { padding-left: 1rem; }
    .program-item.highlight { padding-left: 1rem; border-left-width: 2px; }
    .program-item.highlight:hover { padding-left: 1.2rem; }
    .program-time { font-size: 1.5rem; }
    .program-info h4 { font-size: 1.3rem; margin-bottom: 0.8rem; }
    .program-info p { font-size: 0.9rem; line-height: 1.6; }
    .program-duration { margin-top: 0.8rem; padding: 0.3rem 0.8rem; font-size: 0.65rem; }
    
    /* Спикеры */
    .speakers-header { margin-bottom: 3rem; }
    .speakers-grid { gap: 3rem; }
    .speaker-card { 
        grid-template-columns: 1fr; 
        text-align: center; 
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    .speaker-image { 
        max-width: 220px; 
        margin: 0 auto; 
        aspect-ratio: 3/4;
    }
    .speaker-name { font-size: 1.8rem; margin-bottom: 0.4rem; }
    .speaker-role { font-size: 0.75rem; margin-bottom: 1.2rem; }
    .speaker-bio { font-size: 0.85rem; line-height: 1.7; }
    .speaker-achievements { margin-top: 1.2rem; padding-top: 1.2rem; }
    .speaker-achievement { font-size: 0.8rem; justify-content: center; }
    
    /* Локация - УЛУЧШЕННАЯ АДАПТАЦИЯ */
    .location { 
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "label"
            "title"
            "images"
            "text"
            "coordinates"
            "features";
        gap: 2rem;
    }
    .location-content { 
        max-width: 100%; 
        display: contents;
    }
    .location-content .section-label { grid-area: label; }
    .location-content .location-title { grid-area: title; margin-bottom: 1.5rem; }
    .location-images { 
        grid-area: images;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .location-image:first-child { 
        grid-column: 1 / -1;
        aspect-ratio: 16/9;
    }
    .location-images > .location-image:nth-child(2),
    .location-images > .location-image:nth-child(3) {
        aspect-ratio: 4/5;
    }
    .location-content .location-text { 
        grid-area: text;
        font-size: 0.95rem; 
        line-height: 1.8; 
        margin-bottom: 1.5rem; 
    }
    .location-content .location-coordinates { grid-area: coordinates; }
    .location-content .location-features { 
        grid-area: features;
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem; 
        margin-top: 2rem; 
    }
    .location-feature { 
        gap: 0.8rem; 
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .location-feature-icon { width: 60px; height: 60px; margin-bottom: 0.5rem; }
    .location-feature span { font-size: 0.85rem; }
    
    /* Стоимость */
    .pricing-title { margin-bottom: 2.5rem; }
    .pricing-card { padding: 2.5rem 1.5rem; }
    .pricing-amount { margin-bottom: 0.4rem; }
    .pricing-period { font-size: 0.9rem; margin-bottom: 2.5rem; }
    .pricing-includes { margin-bottom: 2.5rem; }
    .pricing-includes-title { font-size: 0.7rem; margin-bottom: 1.2rem; }
    .pricing-includes-list { 
        grid-template-columns: 1fr; 
        gap: 0.8rem; 
    }
    .pricing-includes-item { font-size: 0.85rem; }
    .pricing-cta { padding: 1.2rem 3rem; font-size: 0.75rem; }
    .pricing-note { margin-top: 1.5rem; font-size: 0.8rem; }
    
    /* CTA секция */
    .cta-section::after { top: 2rem; font-size: 1.2rem; }
    .cta-text { margin-bottom: 1.5rem; }
    .cta-author { font-size: 0.7rem; margin-bottom: 2rem; }
    
    /* FAQ */
    .faq { padding: clamp(4rem, 10vw, 8rem) 1.5rem; }
    .faq-header { margin-bottom: 3rem; }
    .faq-title { margin-bottom: 1.2rem; }
    .faq-question { padding: 1.5rem 0; }
    .faq-question:hover { padding-left: 0.8rem; }
    .faq-question-text { font-size: 1.1rem; }
    .faq-icon { width: 20px; height: 20px; margin-left: 1rem; }
    .faq-item.active .faq-answer { padding-bottom: 1.5rem; }
    .faq-answer p { font-size: 0.95rem; line-height: 1.7; }
    
    /* Футер */
    .footer { 
        padding: 3rem 1.5rem; 
        flex-direction: column; 
        text-align: center; 
        gap: 1.5rem; 
    }
    .footer-logo { font-size: 1.1rem; }
    .footer-info { 
        flex-direction: column; 
        gap: 1rem; 
        align-items: center; 
    }
    .footer-link { font-size: 0.8rem; }
    .footer-copy { font-size: 0.75rem; }
    
    /* Кнопка наверх */
    .scroll-top { 
        bottom: 1.5rem; 
        bottom: max(1.5rem, calc(env(safe-area-inset-bottom) + 1rem));
        right: 1.5rem; 
        right: max(1.5rem, calc(env(safe-area-inset-right) + 0.5rem));
        width: 45px; 
        height: 45px; 
    }
    
    /* Скрыть кастомный курсор */
    .cursor, .cursor-dot { display: none !important; }
}

@media (max-width: 480px) {
    /* Еще более компактная версия для маленьких телефонов */
    .about, .features, .program, .speakers, .location, .pricing, .cta-section { 
        padding-left: 1rem; 
        padding-right: 1rem;
        padding-top: clamp(3rem, 8vw, 5rem);
        padding-bottom: clamp(3rem, 8vw, 5rem);
    }
    
    .nav { 
        padding: 0.8rem 1rem;
        padding-top: max(0.8rem, calc(env(safe-area-inset-top) + 0.3rem));
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    .nav-logo { gap: 0; }
    .logo-letter { font-size: 1.4rem; }
    .logo-letter.accent { font-size: 1.6rem; }
    .nav-cta { padding: 0.5rem 1rem; font-size: 0.6rem; }
    
    .hero { padding: 1rem; }
    .hero-date { font-size: 0.6rem; letter-spacing: 0.2em; }
    .hero-title { font-size: clamp(2rem, 11vw, 3.5rem); }
    .hero-subtitle { font-size: 0.85rem; }
    .hero-stats { gap: 1.5rem; margin-top: 1.5rem; }
    .hero-spots { margin-top: 1.2rem; }
    .hero-spots-text { padding: 0.45rem 1rem; font-size: 0.6rem; border-color: rgba(201, 169, 98, 0.3); background: rgba(201, 169, 98, 0.04); color: rgba(201, 169, 98, 0.7); }
    
    .marquee-section { padding: 1.5rem 0; }
    .marquee-content { gap: 3rem; padding-right: 3rem; }
    
    .about-images { height: 350px; }
    .about-image-main { width: 92%; height: 92%; }
    .about-image-overlay { width: 40%; height: 40%; }
    .section-label { font-size: 0.65rem; margin-bottom: 1.5rem; }
    .section-label::before { width: 30px; }
    
    .section-label-centered span { font-size: 0.65rem; }
    .section-label-centered::before, 
    .section-label-centered::after { max-width: 40px; }
    
    .focus-item { padding: 1.2rem; }
    .focus-icon { width: 40px; height: 40px; }
    .focus-icon svg { width: 32px; height: 32px; }
    .focus-number { font-size: 2rem; top: 1.2rem; right: 1.2rem; }
    .focus-content h3 { font-size: 1.2rem; }
    .focus-content p { font-size: 0.8rem; }
    
    .highlight-card { padding: 1.5rem 1.2rem; }
    .highlight-icon { width: 56px; height: 56px; }
    .highlight-icon svg { width: 28px; height: 28px; }
    
    .features-quote { padding: 1.2rem 0 0; margin-top: 1.2rem; }
    .features-quote blockquote { padding-left: 1rem; font-size: clamp(0.95rem, 3vw, 1.2rem); }
    .features-quote blockquote::before { font-size: 1.4em; }
    
    .gallery-item { width: 240px; height: 300px; }
    @keyframes galleryScroll { 
        from { transform: translateX(0); } 
        to { transform: translateX(calc(-240px * 9 - 1.5rem * 9)); } 
    }
    
    .location-images { gap: 0.8rem; }
    .location-image:first-child { 
        aspect-ratio: 16/11;
    }
    
    .program-days-wrapper { padding: 1rem 0; }
    .program-day-btn { padding: 0.8rem 1.5rem; }
    .program-day-btn .day-number { font-size: 0.6rem; }
    .program-day-btn .day-name { font-size: 1.1rem; }
    
    .speaker-card { padding: 1.5rem 1rem; }
    .speaker-image { max-width: 200px; }
    
    .location-features { 
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .location-feature { 
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    .location-feature-icon { width: 56px; height: 56px; flex-shrink: 0; }
    .location-feature span { font-size: 0.8rem; }
    
    .pricing-card { padding: 2rem 1.2rem; }
    .pricing-cta { padding: 1rem 2.5rem; font-size: 0.7rem; }
    
    .footer { padding: 2.5rem 1rem; }
    
    .scroll-top { 
        bottom: 1rem; 
        bottom: max(1rem, calc(env(safe-area-inset-bottom) + 0.5rem));
        right: 1rem; 
        right: max(1rem, calc(env(safe-area-inset-right) + 0.5rem));
        width: 42px; 
        height: 42px; 
    }
    .scroll-top svg { width: 20px; height: 20px; }
}

/* Image Modal */
.image-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.image-modal.active { display: flex; opacity: 1; }
.image-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px); }
.image-modal-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.image-modal-content img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.image-modal-close { position: absolute; top: 2rem; right: 2rem; z-index: 2; width: 48px; height: 48px; border: none; background: rgba(255, 255, 255, 0.1); border-radius: 50%; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.image-modal-close:hover { background: rgba(255, 255, 255, 0.2); transform: rotate(90deg); }
.image-modal-prev, .image-modal-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 56px; height: 56px; border: none; background: rgba(255, 255, 255, 0.1); border-radius: 50%; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.image-modal-prev:hover, .image-modal-next:hover { background: rgba(255, 255, 255, 0.2); }
.image-modal-prev { left: 2rem; }
.image-modal-next { right: 2rem; }
.image-modal-counter { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; color: white; font-size: 0.9rem; letter-spacing: 0.1em; padding: 0.5rem 1.5rem; background: rgba(0, 0, 0, 0.5); border-radius: 20px; backdrop-filter: blur(10px); }
.image-modal-trigger { cursor: pointer; }
.image-modal-trigger img { transition: transform 0.3s ease; }
.image-modal-trigger:hover img { transform: scale(1.02); }

@media (max-width: 768px) {
    .image-modal-close { 
        top: 1rem; 
        right: 1rem; 
        width: 44px; 
        height: 44px; 
    }
    .image-modal-prev, .image-modal-next { 
        width: 44px; 
        height: 44px; 
        bottom: 5rem;
        top: auto;
    }
    .image-modal-prev { left: 1rem; }
    .image-modal-next { right: 1rem; }
    .image-modal-content { 
        max-width: 95vw; 
        max-height: 85vh;
    }
    .image-modal-content img { 
        max-height: 85vh; 
        border-radius: 4px;
    }
    .image-modal-counter { 
        bottom: 1.5rem; 
        font-size: 0.8rem; 
        padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .image-modal-close { 
        top: 0.8rem; 
        right: 0.8rem; 
        width: 40px; 
        height: 40px; 
    }
    .image-modal-close svg { width: 20px; height: 20px; }
    
    .image-modal-prev, .image-modal-next { 
        width: 40px; 
        height: 40px; 
        bottom: 4.5rem;
    }
    .image-modal-prev svg, 
    .image-modal-next svg { 
        width: 20px; 
        height: 20px; 
    }
    .image-modal-prev { left: 0.8rem; }
    .image-modal-next { right: 0.8rem; }
    
    .image-modal-counter { 
        bottom: 1rem; 
        font-size: 0.75rem; 
        padding: 0.3rem 1rem;
    }
}

/* Booking Modal */
.booking-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10001; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.booking-modal.active { display: flex; opacity: 1; }
.booking-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); }
.booking-modal-content { position: relative; z-index: 1; background: var(--color-bg-light); border: 1px solid rgba(201, 169, 98, 0.3); max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto; padding: clamp(2.5rem, 5vw, 4rem); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.booking-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; border: none; background: rgba(255, 255, 255, 0.1); border-radius: 50%; color: var(--color-cream); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 2; }
.booking-modal-close:hover { background: rgba(201, 169, 98, 0.2); transform: rotate(90deg); }
.booking-modal-header { margin-bottom: clamp(2rem, 4vw, 3rem); text-align: center; }
.booking-modal-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 300; color: var(--color-cream); margin-bottom: 1rem; }
.booking-modal-subtitle { font-size: clamp(0.85rem, 1.5vw, 1rem); color: var(--color-text-muted); line-height: 1.6; }
.booking-form { display: flex; flex-direction: column; gap: 1.5rem; }
.booking-form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.booking-form-group label { font-size: clamp(0.7rem, 1.2vw, 0.75rem); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); }
.booking-form-group input, .booking-form-group textarea { padding: 1rem; background: var(--color-bg); border: 1px solid rgba(201, 169, 98, 0.2); color: var(--color-cream); font-family: var(--font-body); font-size: clamp(0.9rem, 1.6vw, 1rem); transition: all 0.3s ease; }
.booking-form-group input:focus, .booking-form-group textarea:focus { outline: none; border-color: var(--color-gold); background: rgba(201, 169, 98, 0.05); }
.booking-form-group input::placeholder, .booking-form-group textarea::placeholder { color: var(--color-text-muted); opacity: 0.6; }
.booking-form-group textarea { resize: vertical; min-height: 120px; }
.booking-form-submit { padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(2.5rem, 5vw, 4rem); background: var(--color-gold) !important; color: var(--color-bg) !important; border: none; font-size: clamp(0.75rem, 1.4vw, 0.8rem); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); font-family: var(--font-body); margin-top: 0.5rem; }
.booking-form-submit:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3); background: var(--color-gold) !important; color: var(--color-bg) !important; }
.booking-form-note { font-size: clamp(0.7rem, 1.2vw, 0.75rem); color: var(--color-text-muted); text-align: center; margin-top: 1rem; line-height: 1.5; }
.booking-form-note:first-of-type { margin-top: 0.5rem; font-size: clamp(0.75rem, 1.3vw, 0.85rem); }

@media (max-width: 768px) {
    .booking-modal-content { padding: 2rem 1.5rem; width: 95%; }
    .booking-modal-close { top: 1rem; right: 1rem; width: 36px; height: 36px; }
    .booking-modal-title { font-size: 1.8rem; }
    .booking-form { gap: 1.2rem; }
    .location-coordinates { margin-top: 2rem; padding-top: 2rem; }
}

/* Privacy Policy Modal */
.privacy-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10002; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.privacy-modal.active { display: flex; opacity: 1; }
.privacy-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); }
.privacy-modal-content { position: relative; z-index: 1; background: var(--color-bg-light); border: 1px solid rgba(201, 169, 98, 0.3); max-width: 800px; width: 90%; max-height: 90vh; overflow-y: auto; padding: clamp(2.5rem, 5vw, 4rem); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.privacy-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; border: none; background: rgba(255, 255, 255, 0.1); border-radius: 50%; color: var(--color-cream); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 2; }
.privacy-modal-close:hover { background: rgba(201, 169, 98, 0.2); transform: rotate(90deg); }
.privacy-modal-body { color: var(--color-text); }
.privacy-modal-body h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 300; color: var(--color-cream); margin-bottom: 2rem; border-bottom: 1px solid rgba(201, 169, 98, 0.3); padding-bottom: 1rem; }
.privacy-modal-body h2 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 400; color: var(--color-gold); margin-top: 2.5rem; margin-bottom: 1rem; }
.privacy-modal-body p { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: clamp(0.9rem, 1.5vw, 1rem); line-height: 1.7; }
.privacy-modal-body ul { color: var(--color-text-muted); margin-bottom: 1.5rem; padding-left: 2rem; font-size: clamp(0.9rem, 1.5vw, 1rem); line-height: 1.8; }
.privacy-modal-body li { margin-bottom: 0.8rem; }
.privacy-modal-body strong { color: var(--color-cream); }
.privacy-date { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 2rem; font-style: italic; }

@media (max-width: 768px) {
    .privacy-modal-content { padding: 2rem 1.5rem; width: 95%; }
    .privacy-modal-close { top: 1rem; right: 1rem; width: 36px; height: 36px; }
}
