/* === ПЕРЕМЕННЫЕ === */
        :root {
            --bg-page: #FDFBF7;
            --bg-card: #F4EFEB;
            --bg-card-inner: #FFFFFF;
            --text-page: #2B2A29;
            --text-muted: #7A7774;
            --header-bg: rgba(253, 251, 247, 0.95);
            --overlay-bg: rgba(253, 251, 247, 0.92);
            --aroma-bg: #1A1918; 
            
            --gold: #C5A059;
            --gold-light: #E6D0A3;

            --ritual-bg: var(--bg-card);
            --ritual-text: var(--text-page);
            --ritual-muted: var(--text-muted);
            
            --font-main: 'Nunito', sans-serif;
            --font-display: 'Cormorant Garamond', serif;
            --transition: all 0.4s ease;
        }

        body.dark-theme {
            --bg-page: #121212;
            --bg-card: #1E1E1E;
            --bg-card-inner: #252525;
            --text-page: #FDFBF7;
            --text-muted: #A09E9C;
            --header-bg: rgba(18, 18, 18, 0.95);
            --overlay-bg: rgba(18, 18, 18, 0.92);
            --aroma-bg: #0A0A0A;

            --ritual-bg: #0A0A0A;
            --ritual-text: #FDFBF7;
            --ritual-muted: #A09E9C;
        }

        /* === БАЗА === */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 100px; }
        
        /* Золотой кастомный курсор */
        @media (pointer: fine) {
            body { cursor: none; }
            a, button, input { cursor: none; }
            .custom-cursor { position: fixed; top: 0; left: 0; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s; }
            .custom-cursor-trail { position: fixed; top: 0; left: 0; width: 34px; height: 34px; border: 1.5px solid rgba(197, 160, 89, 0.6); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: left 0.15s ease-out, top 0.15s ease-out, transform 0.15s, opacity 0.15s; }
            body.hovering .custom-cursor { width: 40px; height: 40px; background: rgba(197, 160, 89, 0.15); border: 1px solid var(--gold); }
            body.hovering .custom-cursor-trail { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
        }

        body { font-family: var(--font-main); background-color: var(--bg-page); color: var(--text-page); line-height: 1.6; font-weight: 600; overflow-x: hidden; transition: background-color 0.4s ease, color 0.4s ease; }
        h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: 0.3px; }
        .quote { font-family: var(--font-display); font-style: italic; font-weight: 600; }
        .res-role, .res-number { font-family: var(--font-display); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; object-fit: cover; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 88px 0; }
        .text-center { text-align: center; }

        .reveal { opacity: 0; transform: translateY(30px); transition: transform 0.6s ease, opacity 0.6s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .scroll-progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 10001; width: 0%; transition: width 0.1s ease-out; pointer-events: none; }

        /* === КНОПКИ === */
        .btn {
            display: inline-block; padding: 16px 40px; font-family: var(--font-main);
            font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
            border: 2px solid var(--gold); background: transparent; color: var(--text-page);
            cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; border-radius: 16px; text-align: center;
        }
        .btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gold); z-index: -1; transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease; }
        .btn:hover::before { transform: scaleX(1); transform-origin: left; }
        .btn:hover { color: #fff; border-color: var(--gold); }
        .btn-gold { background: var(--gold); color: #fff; }
        .btn-gold::before { background: var(--text-page); }

        html { scrollbar-color: var(--gold) var(--bg-card); scrollbar-width: thin; }
        ::-webkit-scrollbar { width: 10px; height: 10px; }
        ::-webkit-scrollbar-track { background: var(--bg-card); }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-light), var(--gold)); border-radius: 10px; }

        @media (prefers-reduced-motion: no-preference) {
            .btn, .logo-img-wrap { position: relative; overflow: hidden; display: inline-block; }
            .btn::after, .logo-img-wrap::after {
                content: ''; position: absolute; top: 0; left: -150%; width: 60%; height: 100%;
                background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
                transform: skewX(-20deg); transition: left 0.7s ease; pointer-events: none; z-index: 2;
            }
            .btn:hover::after, .logo-img-wrap:hover::after { left: 150%; }
        }

        .tulip-watermark { position: absolute; opacity: 0.07; pointer-events: none; z-index: 0; height: auto; }
        body.dark-theme .tulip-watermark { opacity: 0.12; }

        .theme-toggle { background: none; border: none; font-size: 24px; margin-left: 20px; color: var(--text-page); transition: transform 0.3s ease; cursor: pointer;}
        .theme-toggle:hover { transform: scale(1.1); }
        .logo-img { height: 78px; width: auto; display: block; object-fit: contain; transition: var(--transition); }
        footer .logo-img { height: 110px; margin: 0 auto 20px; }

        /* === HEADER === */
        header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 20px 0; background: var(--header-bg); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(197, 160, 89, 0.2); transition: all 0.3s ease; }
        header.scrolled { padding: 10px 0; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-weight: 900; font-size: 22px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
        .nav-links { display: flex; gap: 30px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
        .nav-links a { transition: color 0.3s; position: relative; }
        .nav-links a:hover, .nav-links a.active-link { color: var(--gold); }
        .nav-links a.active-link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px; background: var(--gold); border-radius: 2px; }
        .nav-right { display: flex; align-items: center; }

        .hamburger { display: none; background: none; border: none; width: 28px; height: 20px; position: relative; margin-left: 18px; padding: 0; z-index: 1100; }
        .hamburger span { display: block; position: absolute; left: 0; height: 2px; width: 100%; background: var(--gold); border-radius: 2px; transition: var(--transition); }
        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 9px; }
        .hamburger span:nth-child(3) { top: 18px; }
        .hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
        .nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998; opacity: 0; transition: opacity 0.3s ease; }
        .nav-backdrop.active { display: block; opacity: 1; }

        /* === HERO === */
        .hero { min-height: 100vh; display: flex; align-items: center; padding-top: 130px; position: relative; }
        .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-text h1 { font-size: 56px; margin-bottom: 20px; text-transform: uppercase; }
        .hero-text .subtitle { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 30px; }
        .hero-text p { font-size: 16px; font-weight: 600; margin-bottom: 40px; color: var(--text-muted); }
        .hero-img { border-radius: 200px 200px 0 0; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
        .hero-img img { max-height: 80vh; width: 100%; object-fit: cover; }

        /* === КАТАЛОГ УСЛУГ === */
        .catalog { background: var(--bg-card); transition: background-color 0.4s ease; }
        .section-title { font-size: 38px; margin-bottom: 20px; text-align: center; }
        .section-subtitle { text-align: center; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 60px; }
        .grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
        
        .service-card { background: var(--bg-card-inner); padding: 40px; border-radius: 24px; border: 2px solid rgba(197,160,89,0.2); transition: var(--transition); display: flex; flex-direction: column; }
        .service-card:hover { transform: translateY(-5px); border-color: var(--gold); }
        .service-card h3 { font-size: 24px; margin-bottom: 15px; color: var(--gold); }
        .service-card p { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
        .badge { display: inline-block; padding: 6px 14px; background: var(--bg-card); color: var(--gold); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 20px; margin-bottom: 15px; align-self: flex-start; }
        
        /* Главная карточка Ромашки в каталоге */
        .service-card-featured { grid-column: 1 / -1; display: flex; align-items: center; gap: 40px; background: linear-gradient(135deg, var(--bg-card-inner) 0%, var(--bg-card) 100%); border: 2px solid var(--gold); box-shadow: 0 15px 40px rgba(197,160,89,0.1); }
        .service-card-featured .featured-text { flex: 1; }
        .service-card-featured .featured-text h3 { font-size: 32px; color: var(--gold); margin-bottom: 15px; }
        .service-card-featured .featured-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 25px; line-height: 1.7; }
        .service-card-featured .featured-visual { width: 30%; max-width: 250px; flex-shrink: 0; }
        .service-card-featured .featured-visual img { border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; height: auto; }
        
        .timer-box { background: rgba(197,160,89,0.1); border-radius: 12px; padding: 12px; display: flex; justify-content: space-around; text-align: center; margin-bottom: 20px; border: 1px dashed var(--gold); }
        .timer-item { display: flex; flex-direction: column; }
        .timer-val { font-size: 22px; font-weight: 900; color: var(--gold); line-height: 1; font-family: var(--font-display); }
        .timer-label { font-size: 10px; text-transform: uppercase; font-weight: 800; opacity: 0.7; }

        /* === РИТУАЛ 3 ШАГА === */
        .ritual-section { background-color: var(--ritual-bg); color: var(--ritual-text); padding: 88px 0; transition: background-color 0.4s ease, color 0.4s ease; }
        .ritual-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
        .steps-container { position: relative; padding: 20px 0; }
        .steps-container::after { content: ''; position: absolute; left: 117px; top: 20px; bottom: 30px; width: 2px; background: linear-gradient(to bottom, transparent, rgba(197,160,89, 0.4) 5%, rgba(197,160,89, 0.4) 95%, transparent); z-index: 1; }
        .step { display: flex; align-items: flex-start; position: relative; z-index: 2; margin-bottom: 50px; }
        .step-num { width: 80px; text-align: right; font-size: 46px; font-weight: 900; color: var(--gold); opacity: 0.5; line-height: 0.9; }
        .step-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 4px solid var(--ritual-bg); margin: 12px 30px 0 30px; position: relative; z-index: 2; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(197,160,89,0.15); transition: var(--transition); }
        .step:hover .step-dot { background: #fff; box-shadow: 0 0 12px var(--gold); }
        .step-text { flex: 1; padding-top: 4px; }
        .step-text h4 { font-size: 24px; margin-bottom: 10px; color: var(--ritual-text); }
        .step-text p { font-size: 15px; color: var(--ritual-muted); font-weight: 600; }
        .ritual-img { position: sticky; top: 120px; border: 2px solid var(--gold); border-radius: 24px; padding: 12px; align-self: flex-start; }
        .ritual-img img { border-radius: 16px; width: 100%; max-height: 65vh; object-fit: cover; }

        /* === ФИЛОСОФИЯ === */
        .philosophy { padding: 88px 0; text-align: center; }
        .quote { font-size: 26px; color: var(--gold); font-style: italic; max-width: 1100px; margin: 0 auto 60px; font-weight: 800; line-height: 1.4; text-align: center; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .phil-card { padding: 40px; border: 2px solid var(--gold-light); border-radius: 24px; transition: var(--transition); background: var(--bg-card-inner); }
        .phil-card:hover { border-color: var(--gold); transform: translateY(-5px); }
        .phil-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--gold); line-height: 1.3; }
        .phil-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
        .line-sep { width: 2px; height: 80px; background: var(--gold-light); margin: 80px auto; }

        /* === ОТЗЫВЫ === */
        .reviews-section { background: var(--bg-card); padding: 88px 0; transition: background-color 0.4s ease; }
        .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
        .review-card { background: var(--bg-card-inner); padding: 35px; border-radius: 24px; border: 1px solid rgba(197,160,89,0.2); position: relative; }
        .review-quote-icon { position: absolute; top: 20px; right: 20px; font-family: var(--font-display); font-size: 60px; color: var(--gold); opacity: 0.15; line-height: 1; }
        .review-card p { font-size: 15px; color: var(--text-muted); font-style: italic; margin-bottom: 20px; position: relative; z-index: 2;}
        .review-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid rgba(197,160,89,0.2); padding-top: 20px;}
        .review-author-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-weight: 900; color: #fff; font-family: var(--font-display); font-size: 20px; }
        .review-author-info strong { display: block; font-size: 15px; color: var(--text-page); }
        .review-author-info span { font-size: 12px; color: var(--gold); text-transform: uppercase; font-weight: 800; }

        /* === АРОМАТ === */
        .aroma-section { background: var(--bg-page); padding: 88px 0; transition: background-color 0.4s ease; }
        .aroma-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
        .aroma-text h2 { font-size: 38px; margin-bottom: 20px; line-height: 1.2; }
        .aroma-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
        .aroma-img { border: 2px solid var(--gold); padding: 15px; border-radius: 24px; align-self: flex-start; }
        .aroma-img img { border-radius: 12px; width: 100%; max-height: 70vh; object-fit: cover; }
        .usage-box { border: 2px dashed var(--gold); border-radius: 24px; padding: 30px; margin-top: 30px; text-align: left; }
        .usage-box p { color: var(--text-page); font-weight: 600; }
        .ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .ing-card { border-top: 2px solid rgba(197,160,89,0.3); padding-top: 15px; }
        .ing-card h5 { color: var(--gold); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .ing-card p { font-size: 13px; color: var(--text-muted); font-weight: 600; }
        .doterra-mark { text-align: center; margin-top: 50px; font-size: 15px; font-weight: 600; color: var(--text-page); line-height: 1.6; }

        /* === КАЛЬКУЛЯТОР === */
        .destiny-section { background: linear-gradient(135deg, var(--bg-card) 0%, #EDE3D2 100%); position: relative; }
        .destiny-section::before { content: ''; position: absolute; inset: 0; background: transparent; }
        .destiny-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
        
        .calc-box { background: var(--bg-card-inner); padding: 50px; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); text-align: center; border: 2px solid var(--gold-light); transition: background-color 0.4s ease; position: relative; overflow: hidden;}
        
        .calc-inputs-wrapper { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
        .input-group { display: flex; flex-direction: column; align-items: center; }
        .input-label { font-size: 12px; font-weight: 800; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }
        .calc-input { background: var(--bg-card); color: var(--text-page); border: 2px solid rgba(197,160,89,0.3); padding: 15px 25px; font-family: var(--font-main); font-weight: 800; font-size: 20px; text-align: center; width: 220px; border-radius: 16px; outline: none; transition: var(--transition); }
        .calc-input:focus { border-color: var(--gold); }
        
        #resultContainer { display: none; margin-top: 40px; text-align: left; border-top: 2px dashed var(--gold); padding-top: 40px; animation: fadeIn 1s forwards; position: relative; z-index: 2; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        
        .result-header { display: flex; align-items: center; gap: 30px; margin-bottom: 30px; }
        .res-number { font-size: 90px; font-weight: 900; color: var(--gold); line-height: 1; }
        .res-role { font-size: 32px; margin-bottom: 5px; color: var(--text-page); }
        
        .res-meta { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; background: var(--bg-card); padding: 25px; border-radius: 16px; border-left: 4px solid var(--gold); }
        .res-meta div { font-size: 15px; color: var(--text-page); }
        .res-meta strong { color: var(--gold); font-size: 14px; text-transform: uppercase; }
        .res-text { font-size: 15px; color: var(--text-page); white-space: pre-line; line-height: 1.8; margin-bottom: 20px;}
        
        .oil-match { background: rgba(197, 160, 89, 0.1); border: 1px solid var(--gold); border-radius: 16px; padding: 20px; margin-top: 20px; text-align: center; }
        .oil-match h4 { color: var(--gold); font-size: 18px; margin-bottom: 8px; }
        .oil-match p { font-size: 14px; color: var(--text-page); }

        .compat-match { background: var(--aroma-bg); color: #fff; border-radius: 16px; padding: 25px; margin-top: 30px; border: 2px solid var(--gold); text-align: center; }
        .compat-match h4 { color: var(--gold); font-size: 22px; margin-bottom: 10px; }
        .compat-match p { font-size: 15px; opacity: 0.9; }

        .confetti-piece { position: absolute; width: 10px; height: 10px; background: var(--gold); top: -20px; z-index: 1000; animation: fall 3s linear forwards; pointer-events: none; opacity: 0; }
        @keyframes fall { 0% { transform: translateY(0) rotate(0deg); opacity: 1; } 100% { transform: translateY(800px) rotate(720deg); opacity: 0; } }

        .sticky-result-bar { position: fixed; bottom: -100px; left: 0; width: 100%; background: var(--header-bg); backdrop-filter: blur(10px); border-top: 2px solid var(--gold); z-index: 2000; display: flex; justify-content: center; align-items: center; padding: 15px 20px; gap: 20px; transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 -10px 30px rgba(0,0,0,0.1); }
        .sticky-result-bar.show { bottom: 0; }
        .sticky-result-bar span { font-weight: 800; font-size: 16px; color: var(--text-page); }
        .sticky-result-bar b { color: var(--gold); font-size: 22px; font-family: var(--font-display); }

        /* === АВТОР === */
        .author-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .author-grid img { width: 100%; max-height: 70vh; object-fit: cover; }
        .tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
        .tag { border: 2px solid var(--gold); padding: 5px 15px; font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--gold); border-radius: 20px; }

/* === ФУТЕР И ВСПЛЫВАШКИ === */
        footer { background: var(--aroma-bg); color: #fff; text-align: center; padding: 60px 0; transition: background-color 0.4s ease; }

        #introOverlay {
            position: fixed; inset: 0; background: var(--bg-page); z-index: 99999;
            display: flex; align-items: center; justify-content: center;
            animation: hideOverlay 0.6s 1.2s forwards ease; pointer-events: none;
        }
        #introOverlay img {
            width: 140px; height: auto; opacity: 0; transform: scale(0.85);
            animation: introPop 0.9s cubic-bezier(.2,.9,.25,1) forwards;
        }
        @keyframes hideOverlay { to { opacity: 0; visibility: hidden; z-index: -1; } }
        @keyframes introPop { 0% { opacity: 0; transform: scale(0.8); } 60% { opacity: 1; transform: scale(1.05); } 100% { opacity: 1; transform: scale(1); } }
        @media (prefers-reduced-motion: reduce) { #introOverlay { display: none; } }

        .footer-socials { display: flex; justify-content: center; gap: 18px; margin: 24px 0; }
        .footer-socials a { width: 42px; height: 42px; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: var(--transition); }
        .footer-socials a:hover { background: var(--gold); color: #fff; }
        .footer-socials svg { width: 20px; height: 20px; }

        .get-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
        .get-card { background: var(--bg-card); border-radius: 16px; padding: 30px 24px; text-align: center; transition: var(--transition); }
        .get-card:hover { transform: translateY(-6px); }
        .get-card .get-icon { width: 44px; height: 44px; margin: 0 auto 18px; color: var(--gold); }
        .get-card h4 { font-size: 19px; margin-bottom: 10px; }
        .get-card p { font-size: 14px; color: var(--text-muted); font-weight: 600; }

        .modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; padding: 20px; }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-content { background: var(--bg-card-inner); border: 2px solid var(--gold); border-radius: 24px; padding: 40px; max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .modal-overlay.active .modal-content { transform: translateY(0); }
        .modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 32px; color: var(--gold); cursor: pointer; transition: transform 0.3s ease; }
        .modal-close:hover { transform: scale(1.1); }
        #modalTitle { font-size: 24px; margin-bottom: 20px; color: var(--gold); padding-right: 25px; line-height: 1.2; }
        #modalBody { font-size: 15px; color: var(--text-page); line-height: 1.7; font-weight: 600; }
        #modalBody ul { padding-left: 20px; margin-bottom: 20px; }
        #modalBody li { margin-bottom: 10px; }

        /* === SHARE CARD MODAL === */
        #shareModalContent { text-align: center; padding: 10px; border-radius: 30px; }
        .ig-card { background: #fff; width: 300px; margin: 0 auto 20px; border-radius: 20px; padding: 30px 20px; text-align: center; box-shadow: 0 15px 35px rgba(197,160,89,0.2); border: 1px solid var(--gold-light); position: relative;}
        .ig-card h3 { font-size: 14px; color: #7A7774; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-family: var(--font-main);}
        .ig-card .ig-num { font-size: 80px; color: var(--gold); font-family: var(--font-display); line-height: 1; margin-bottom: 5px; }
        .ig-card .ig-role { font-size: 18px; color: #2B2A29; font-family: var(--font-display); font-style: italic; margin-bottom: 20px;}
        .ig-card .ig-brand { font-size: 10px; color: var(--gold); text-transform: uppercase; font-weight: 900; opacity: 0.6; }
        .ig-hint { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

        /* === АДАПТИВ === */
        @media (max-width: 1100px) {
            .get-grid { grid-template-columns: repeat(2, 1fr); }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .container { padding: 0 30px; }
        }
        @media (max-width: 900px) {
            .hero-content, .grid-3, .aroma-grid, .author-grid, .ingredients-grid, .ritual-grid, .reviews-grid { grid-template-columns: 1fr; }
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .service-card-featured { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; }
            .service-card-featured .featured-visual { width: 100%; max-width: 200px; }
            .service-card-featured .badge { align-self: center; margin: 0 auto 15px; display: block; width: max-content; }

            .ritual-img { position: static; margin-bottom: 40px; align-self: stretch; }
            .hero-text h1 { font-size: 42px; }
            .hero { padding-top: 110px; }
            .result-header { flex-direction: column; text-align: center; gap: 15px; }
            .calc-box { padding: 30px 20px; }
            
            .steps-container::after { left: 57px; }
            .step-num { width: 40px; font-size: 32px; text-align: left; }
            .step-dot { margin: 8px 20px 0 10px; }
            .step { gap: 0; }
            
            .section-padding { padding: 80px 0; }

            .nav-links {
                display: flex !important; flex-direction: column; align-items: center; justify-content: center;
                gap: 36px; position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
                background: var(--bg-page); z-index: 999; transition: right 0.4s ease;
                box-shadow: -15px 0 40px rgba(0,0,0,0.15); font-size: 16px; letter-spacing: 1px;
            }
            .nav-links.active { right: 0; }
            .hamburger { display: block; }
            .logo-img { height: 56px; }
        }
        @media (max-width: 600px) {
            .hero-text h1 { font-size: 34px; }
            .hero-text p { font-size: 15px; }
            .section-title { font-size: 28px; }
            .quote { font-size: 20px; }
            .get-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
            .get-card { padding: 22px 14px; }
            .calc-input { width: 100%; max-width: 100%; }
            .tags { justify-content: center; }
            footer .logo-img { height: 70px; }
            .sticky-result-bar { flex-direction: column; gap: 10px; padding: 10px; text-align: center; }
            .sticky-result-bar .btn { padding: 10px 20px; width: 100%; }
            
            .steps-container::after { left: 7px; }
            .step-num { display: none; }
            .step-dot { margin: 6px 15px 0 0; }
            .modal-content { padding: 30px 20px; }
        }

        /* === ФИКСЫ СЕТКИ === */
        .philosophy.container, .aroma-section.container { padding-top: 88px; padding-bottom: 88px; padding-left: 20px; padding-right: 20px; }
        @media (max-width: 900px) { .philosophy.container, .aroma-section.container { padding-top: 80px; padding-bottom: 80px; } }
        @media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

        /* === ТЕСТ «КОД СОСТОЯНИЯ» (модалка) === */
        .quiz-content { max-width: 640px; }
        .quiz-screen { text-align: center; }
        .quiz-title { font-size: 34px; color: var(--gold); margin: 6px 0 16px; }
        .quiz-lead { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }
        .quiz-progress { height: 6px; background: var(--bg-card); border-radius: 6px; overflow: hidden; margin-bottom: 22px; }
        .quiz-progress span { display: block; height: 100%; background: var(--gold); transition: width 0.3s ease; }
        .quiz-step { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 14px; }
        .quiz-question { font-size: 22px; line-height: 1.3; color: var(--text-page); margin-bottom: 26px; min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
        .quiz-answers { display: grid; gap: 12px; margin-bottom: 22px; }
        .quiz-answer { padding: 15px 20px; border: 2px solid rgba(197,160,89,0.35); border-radius: 14px; background: var(--bg-card-inner); color: var(--text-page); font-family: var(--font-main); font-weight: 700; font-size: 15px; transition: var(--transition); }
        .quiz-answer:hover { border-color: var(--gold); background: rgba(197,160,89,0.08); }
        .quiz-answer.sel { border-color: var(--gold); background: var(--gold); color: #fff; }
        .quiz-nav { display: flex; justify-content: flex-start; margin-top: 6px; }
        .quiz-nav .btn { padding: 10px 24px; font-size: 11px; }
        .quiz-nav .btn:disabled { opacity: 0.35; pointer-events: none; }
        .quiz-bars { text-align: left; margin: 24px 0 10px; }
        .quiz-bar-row { margin-bottom: 16px; }
        .quiz-bar-head { display: flex; justify-content: space-between; font-size: 14px; font-weight: 800; margin-bottom: 6px; }
        .quiz-bar-state { color: var(--gold); font-weight: 700; text-transform: none; }
        .quiz-bar { height: 10px; background: var(--bg-card); border-radius: 6px; overflow: hidden; }
        .quiz-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-light), var(--gold)); border-radius: 6px; }
        .quiz-reco { text-align: left; background: rgba(197,160,89,0.08); border: 1px solid rgba(197,160,89,0.35); border-radius: 16px; padding: 22px 24px; margin: 20px 0 26px; }
        .quiz-reco h4 { color: var(--gold); font-size: 20px; margin-bottom: 10px; }
        .quiz-reco p { font-size: 14px; color: var(--text-page); line-height: 1.6; margin-bottom: 8px; }
        .quiz-invite { color: var(--text-muted) !important; font-style: italic; margin-top: 12px !important; }

        /* === ФОРМА ЗАЯВКИ (модалка) === */
        .lead-content { max-width: 480px; text-align: center; }
        .lead-title { font-size: 26px; color: var(--gold); margin: 6px 0 14px; }
        .lead-text { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 22px; }
        .lead-consent { display: flex; align-items: flex-start; gap: 10px; text-align: left; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; cursor: pointer; }
        .lead-consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
        .lead-consent a { color: var(--gold); text-decoration: underline; }
        .lead-err { display: none; color: #c0392b; font-size: 13px; text-align: left; margin-bottom: 14px; }
        .lead-go { width: 100%; margin-top: 12px; }

                /* === ФУТЕР === */
        footer { padding: 60px 0 30px; }
        .footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1.4fr 1fr; gap: 40px; align-items: start; }
        .footer-brand { display: flex; flex-direction: column; gap: 14px; }
        footer .footer-brand .logo-img { height: 90px; margin: 0; }
        .footer-tagline { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); }
        .footer-h { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
        .footer-nav { display: flex; flex-direction: column; gap: 10px; }
        .footer-nav a { color: rgba(255,255,255,0.72); font-size: 14px; transition: color 0.3s; }
        .footer-nav a:hover { color: var(--gold); }
        footer .footer-socials { display: flex; gap: 12px; margin: 0 0 16px; }
        .footer-contact { color: rgba(255,255,255,0.72); font-size: 14px; display: block; }
        .footer-contact:hover { color: var(--gold); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px 30px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }
        .footer-legal { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.55; margin: 0; max-width: 680px; }
        .footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 700; margin: 0; }
        .footer-copy .cookie-foot-link { margin-left: 6px; }
        @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
        @media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; text-align: center; } .footer-brand, .footer-nav { align-items: center; } footer .footer-socials { justify-content: center; } .footer-bottom { flex-direction: column; text-align: center; } }

        .footer-tg-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); border: 1px solid var(--gold); border-radius: 40px; transition: all 0.3s; }
        .footer-tg-btn:hover { background: var(--gold); color: #1A1918; }

        /* === COOKIE-БАННЕР === */
        .cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--aroma-bg); color: #fff; display: flex; align-items: center; gap: 16px 28px; justify-content: center; flex-wrap: wrap; padding: 16px 24px; box-shadow: 0 -8px 30px rgba(0,0,0,0.18); }
        .cookie-text { font-size: 13px; color: rgba(255,255,255,0.9); max-width: 620px; line-height: 1.5; margin: 0; }
        .cookie-text a { color: var(--gold); text-decoration: underline; }
        .cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
        .cookie-btn { padding: 11px 24px; font-size: 12px; min-height: 44px; }
        .cookie-btn:not(.btn-gold) { color: #fff; border-color: rgba(255,255,255,0.5); }
        .cookie-btn:not(.btn-gold):hover { color: #fff; border-color: var(--gold); }
        .cookie-modal .cookie-settings { max-width: 520px; text-align: left; }
        .cookie-set-title { font-size: 24px; color: var(--gold); margin: 6px 0 20px; }
        .cookie-cat { border: 1px solid rgba(197,160,89,0.3); border-radius: 14px; padding: 16px 18px; margin-bottom: 14px; }
        .cookie-cat p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 6px 0 0; }
        .cookie-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 15px; color: var(--text-page); }
        .cookie-locked { font-size: 12px; color: var(--gold); font-weight: 700; }
        .cookie-cat-toggle { cursor: pointer; display: block; }
        .cookie-cat-toggle input { width: 22px; height: 22px; accent-color: var(--gold); flex-shrink: 0; }
        .cookie-save { width: 100%; margin-top: 6px; }
        .cookie-foot-link { background: none; border: none; color: rgba(255,255,255,0.7); font: inherit; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; text-decoration: underline; padding: 0; }
        .cookie-foot-link:hover { color: var(--gold); }
        @media (max-width: 600px) { .cookie-bar { flex-direction: column; text-align: center; padding: 14px 16px; } .cookie-actions { width: 100%; justify-content: center; } }

        /* === Типографика: балансировка переносов строк === */
        .section-title, .quote, .hero-text h1, .hero-text p, .text-center,
        .quiz-question, .quiz-lead, .service-card p, .phil-card p, .section-subtitle { text-wrap: balance; }
