/* ============================================================
   SOMRA — Атмосфера, которую чувствуешь
   styles.css · премиальный лендинг с плавными анимациями
   ============================================================ */

/* ===== TOKENS ===== */
:root {
    /* Цвета по брендбуку */
    --cream: #F5EDE3;        /* основной фон */
    --white: #FEFCF9;        /* светлый фон */
    --charcoal: #3A3330;     /* основной текст */
    --caramel: #B18050;      /* логотип / акцент */
    --terracotta: #C4785A;   /* кнопки */
    --gold: #C9A97A;         /* линии, декор */
    --sand: #E8DCCB;         /* вторичные карточки */
    --soft: #EFE2D0;         /* мягкий фон */

    /* Типографика */
    --h: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --b: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    /* Размеры */
    --container: 1180px;
    --container-narrow: 880px;

    /* Тени */
    --shadow-soft: 0 2px 24px rgba(58, 51, 48, 0.04);
    --shadow-card: 0 16px 48px rgba(58, 51, 48, 0.08);
    --shadow-deep: 0 24px 80px rgba(58, 51, 48, 0.14);

    /* Скорость анимаций */
    --t-fast: .22s;
    --t-med: .45s;
    --t-slow: .9s;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }
body {
    font-family: var(--b);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    font-weight: 300;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.menu-locked { overflow: hidden; touch-action: none; }
a { color: var(--caramel); text-decoration: none; transition: color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease); }
a:hover { color: var(--terracotta); }
img, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em { color: var(--caramel); font-style: normal; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--caramel); color: var(--white); }

/* ===== ANIMATIONS (FADE-IN, REVEAL) ===== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
    will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in[data-delay="1"] { transition-delay: .1s; }
.fade-in[data-delay="2"] { transition-delay: .2s; }
.fade-in[data-delay="3"] { transition-delay: .3s; }
.fade-in[data-delay="4"] { transition-delay: .4s; }
.fade-in[data-delay="5"] { transition-delay: .5s; }

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(.6deg); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes kenburns {
    0% { transform: scale(1.05) translate3d(0, 0, 0); }
    100% { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}
@keyframes letter-in {
    0% { opacity: 0; transform: translateY(40px) rotateX(-30deg); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 150;
    background: rgba(254, 252, 249, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background var(--t-med) var(--ease), backdrop-filter var(--t-med) var(--ease), padding var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
    padding: 16px 0;
}
.nav.scrolled {
    background: rgba(254, 252, 249, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(232, 220, 203, .5);
}
.nav.menu-open,
.nav.menu-open.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
.nav-in {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; transition: height var(--t-med) var(--ease); }
.nav.scrolled .nav-logo img { height: 28px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}
.nav-links li { white-space: nowrap; }
.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    transition: color var(--t-fast) var(--ease);
}
.nav:not(.scrolled) .nav-links a { color: var(--white); text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: currentColor;
    transition: width var(--t-med) var(--ease), left var(--t-med) var(--ease);
}
.nav-links a:hover { color: var(--caramel); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-links a.nav-cta {
    margin-left: 8px;
    padding: 12px 30px;
    border: 1px solid currentColor;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
    white-space: nowrap;
    line-height: 1;
}
.nav:not(.scrolled) .nav-cta { color: var(--white); border-color: rgba(255,255,255,.6); }
.nav-links a.nav-cta:hover {
    background: var(--caramel);
    border-color: var(--caramel);
    color: var(--white) !important;
    transform: translateY(-1px);
}
.nav-links a.nav-cta::after { display: none; }

.burger {
    display: none;
    padding: 10px;
    position: relative;
    z-index: 210;
}
.burger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.nav:not(.scrolled) .burger span { background: var(--white); }
.burger.active span { background: var(--charcoal) !important; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: -2%;
    background: url('assets/images/hero-bg.png') center center/cover no-repeat;
    z-index: -2;
    animation: kenburns 20s ease-in-out infinite alternate;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 35% 55%, rgba(248, 217, 176, .12) 0%, transparent 55%),
        linear-gradient(to bottom, rgba(58, 51, 48, .15) 0%, rgba(58, 51, 48, .35) 50%, rgba(58, 51, 48, .75) 100%);
    z-index: -1;
}
.hero-content {
    position: relative;
    text-align: center;
    padding: 100px 24px 80px;
    max-width: 640px;
    z-index: 2;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F2E4CC;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .6);
    margin-bottom: 22px;
    opacity: 0;
    animation: letter-in .9s var(--ease) .2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: "";
    display: inline-block;
    width: 22px; height: 1px;
    background: #F2E4CC;
    vertical-align: middle;
    margin: 0 12px;
    opacity: .8;
}
.hero-title {
    font-family: var(--h);
    font-weight: 400;
    font-size: clamp(38px, 6vw, 60px);
    letter-spacing: clamp(6px, 1vw, 12px);
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1;
}
.hero-title .l {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: letter-in .9s var(--ease) forwards;
}
.hero-tagline {
    font-family: var(--h);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--white);
    opacity: 0;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    animation: letter-in 1s var(--ease) .9s forwards;
}
.hero-line {
    width: 44px; height: 1px;
    background: var(--gold);
    margin: 0 auto 22px;
    opacity: 0;
    animation: letter-in .9s var(--ease) 1.1s forwards;
}
.hero-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--white);
    opacity: 0;
    max-width: 460px;
    margin: 0 auto 32px;
    animation: letter-in .9s var(--ease) 1.3s forwards;
    animation-fill-mode: forwards;
}
.hero-text { opacity: .82 !important; }
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: letter-in 1s var(--ease) 1.5s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: .75;
    text-align: center;
    animation: float-slow 2.4s ease-in-out infinite;
    transition: opacity var(--t-fast) var(--ease);
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-arrow {
    display: block;
    width: 22px;
    height: 32px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--b);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1.5px solid var(--caramel);
    color: var(--caramel);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
    min-height: 50px;
    z-index: 1;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--caramel);
    transform: translateY(100%);
    transition: transform var(--t-med) var(--ease);
    z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--white); border-color: var(--caramel); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-filled {
    background: var(--charcoal);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1.6px;
    border-color: rgba(201, 169, 122, .5);
    box-shadow: 0 6px 20px rgba(58, 51, 48, .18);
}
.btn-filled::before { background: #5C4A3C; }
.btn-filled:hover { border-color: var(--gold); color: #fff; }

.btn-light {
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-light::before { background: var(--white); }
.btn-light:hover { color: var(--charcoal); border-color: var(--white); }

.btn-arrow {
    display: inline-block;
    transition: transform var(--t-med) var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(6px); }

/* ===== SECTIONS ===== */
section { position: relative; }
.sec { padding: 90px 24px; }
.sec-cream { background: var(--cream); }
.sec-soft { background: var(--soft); }
.sec-dark { background: var(--charcoal); color: var(--cream); }
.sec-white { background: var(--white); }

.wrap { max-width: var(--container); margin: 0 auto; }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; }

.eyebrow {
    display: inline-block;
    font-family: var(--b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 18px;
}
.eyebrow.center { display: block; text-align: center; }

.sec-title {
    font-family: var(--h);
    font-weight: 400;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.18;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.sec-title.center { text-align: center; }
.sec-dark .sec-title { color: var(--cream); }

.sec-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    opacity: .7;
    max-width: 600px;
}
.sec-sub.center { text-align: center; margin: 0 auto 48px; }

.divider {
    width: 56px; height: 1px;
    background: var(--gold);
    margin: 0 0 36px;
}
.divider.center { margin: 0 auto 60px; }

/* ===== MARQUEE ===== */
.marquee {
    overflow: hidden;
    padding: 28px 0;
    background: var(--charcoal);
    color: var(--cream);
    border-top: 1px solid rgba(201, 169, 122, .15);
    border-bottom: 1px solid rgba(201, 169, 122, .15);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    font-family: var(--h);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    padding: 0 28px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--gold);
}
.marquee-item::after {
    content: "•";
    color: var(--caramel);
    opacity: .5;
}

/* ===== ABOUT (двухколонник) ===== */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.duo.reverse > :first-child { order: 2; }
.duo-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    background: var(--sand);
    position: relative;
    box-shadow: var(--shadow-card);
}
.duo-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.duo-img:hover img { transform: scale(1.04); }
.duo-img-label {
    position: absolute;
    bottom: 24px; left: 24px;
    font-family: var(--h);
    font-style: italic;
    font-size: 14px;
    color: var(--white);
    background: rgba(58, 51, 48, .55);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
}
.duo-text h3 {
    font-family: var(--h);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.25;
    margin-bottom: 18px;
    color: var(--charcoal);
}
.duo-text p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 14px;
    opacity: .82;
}
.duo-quote {
    margin-top: 28px;
    padding: 24px 28px;
    border-left: 2px solid var(--gold);
    background: rgba(232, 220, 203, .35);
    border-radius: 0 8px 8px 0;
}
.duo-quote p {
    font-family: var(--h);
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: var(--caramel);
    margin: 0;
    opacity: 1;
}
.duo-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
    padding: 8px 18px;
    border: 1px solid var(--gold);
    border-radius: 100px;
    font-size: 12px;
    color: var(--caramel);
    letter-spacing: .5px;
    transition: all var(--t-fast) var(--ease);
}
.tag:hover { background: var(--gold); color: var(--white); }

/* ===== PRODUCT GRID ===== */
.p-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.p-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(232, 220, 203, .55);
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
}
.p-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.p-img {
    aspect-ratio: 4 / 5;
    background: var(--sand);
    overflow: hidden;
    position: relative;
}
.p-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.p-card:hover .p-img img { transform: scale(1.06); }
.p-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--caramel);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}
.p-info { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.p-name {
    font-family: var(--h);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--charcoal);
}
.p-desc {
    font-size: 13px;
    line-height: 1.75;
    opacity: .72;
    margin-bottom: 18px;
    flex: 1;
}
.p-foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--sand);
}
.p-price {
    font-family: var(--h);
    font-weight: 500;
    font-size: 18px;
    color: var(--caramel);
}
.p-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
}

/* ===== WHY-US (5 фич) ===== */
.f-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.f {
    text-align: center;
    padding: 28px 18px;
    border-radius: 8px;
    transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.f:hover { background: rgba(201, 169, 122, .08); transform: translateY(-4px); }
.f-num {
    font-family: var(--h);
    font-weight: 300;
    font-size: 52px;
    color: var(--gold);
    opacity: .4;
    margin-bottom: 10px;
    line-height: 1;
}
.f-title {
    font-family: var(--h);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--cream);
    line-height: 1.3;
}
.f-desc {
    font-size: 12px;
    line-height: 1.75;
    color: var(--cream);
    opacity: .65;
}

/* ===== AROMAS (первая коллекция) ===== */
.a-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.a-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    background: var(--sand);
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.a-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.a-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.a-card:hover img { transform: scale(1.05); }
.a-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 51, 48, .85) 0%, rgba(58, 51, 48, .15) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
}
.a-card-title {
    font-family: var(--h);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.25;
}
.a-card-desc {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    transition: opacity var(--t-med) var(--ease), max-height var(--t-med) var(--ease);
}
.a-card:hover .a-card-desc { opacity: .9; max-height: 100px; }
.a-card-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

/* ===== FOUNDERS CLUB ===== */
.founders {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2A2522 100%);
    color: var(--cream);
    border-radius: 16px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}
.founders::before {
    content: "";
    position: absolute;
    top: -40%; right: -10%;
    width: 60%; height: 180%;
    background: radial-gradient(ellipse, rgba(177, 128, 80, .35) 0%, transparent 60%);
    pointer-events: none;
}
.founders-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.founders-title {
    font-family: var(--h);
    font-weight: 400;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.2;
    margin-bottom: 18px;
}
.founders-sub {
    font-size: 15px;
    line-height: 1.85;
    opacity: .8;
    margin-bottom: 28px;
}
.philo-quote {
    font-family: var(--h);
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.55;
    color: var(--charcoal);
}
.founders-list {
    list-style: none;
    margin-bottom: 36px;
}
.founders-list li {
    position: relative;
    padding: 12px 0 12px 32px;
    font-size: 14px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(201, 169, 122, .15);
}
.founders-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 22px;
    width: 18px; height: 1px;
    background: var(--gold);
}

.founders-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.founders-visual img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
    transition: transform 1.4s var(--ease);
}
.founders-visual:hover img { transform: scale(1.02); }
.founders-counter {
    background: rgba(254, 252, 249, .04);
    border: 1px solid rgba(201, 169, 122, .25);
    border-radius: 12px;
    padding: 28px;
}
.founders-counter-eye {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.founders-counter-num {
    font-family: var(--h);
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 6px;
}
.founders-counter-num span { color: var(--gold); }
.founders-counter-label {
    font-size: 13px;
    opacity: .65;
    margin-bottom: 24px;
}
.founders-progress {
    height: 6px;
    background: rgba(201, 169, 122, .15);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
}
.founders-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--caramel), var(--gold));
    border-radius: 4px;
    transition: width 2s var(--ease);
}
.founders-counter-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .6;
}

/* ===== PROCESS STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    counter-reset: step;
    position: relative;
}
.step {
    text-align: center;
    padding: 36px 20px;
    border: 1px solid var(--sand);
    border-radius: 10px;
    background: var(--white);
    transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.step:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
}
.step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: var(--h);
    font-weight: 300;
    font-size: 44px;
    color: var(--gold);
    opacity: .4;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}
.step-t {
    font-family: var(--h);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--charcoal);
    line-height: 1.3;
}
.step-d {
    font-size: 12px;
    line-height: 1.65;
    opacity: .7;
}

/* ===== TRUST CARDS ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.trust-card {
    padding: 32px 22px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--sand);
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.trust-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(201, 169, 122, .15);
    color: var(--caramel);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-family: var(--h);
    font-weight: 500;
    font-size: 18px;
}
.trust-title {
    font-family: var(--h);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--charcoal);
    line-height: 1.3;
}
.trust-desc {
    font-size: 12px;
    line-height: 1.7;
    opacity: .72;
}

/* ===== SCENARIOS (для кого) ===== */
.sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sc {
    padding: 36px 28px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--sand);
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.sc:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.sc-eye {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 14px;
}
.sc-title {
    font-family: var(--h);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--charcoal);
    line-height: 1.25;
}
.sc-desc {
    font-size: 13px;
    line-height: 1.75;
    opacity: .75;
}

/* ===== TESTIMONIALS / REACTIONS ===== */
.reac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.reac {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 28px 24px;
    border: 1px solid var(--sand);
    border-left: 2px solid var(--gold);
    position: relative;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.reac:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.reac-text {
    font-family: var(--h);
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: var(--charcoal);
    opacity: .92;
}
.reac-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--sand);
}
.reac-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--caramel);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--h);
    font-weight: 500;
    font-size: 16px;
}
.reac-meta { line-height: 1.4; }
.reac-name { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.reac-source { font-size: 11px; opacity: .55; letter-spacing: .5px; }

.reac-stub {
    text-align: center;
    padding: 48px 24px;
    border: 1px dashed var(--gold);
    border-radius: 10px;
    background: rgba(232, 220, 203, .25);
    font-family: var(--h);
    font-style: italic;
    font-size: 17px;
    color: var(--caramel);
    margin-top: 24px;
}

/* ===== FAQ ACCORDION ===== */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--sand);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 24px 52px 24px 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    font-family: var(--h);
    font-weight: 500;
    font-size: 17px;
    color: var(--charcoal);
    transition: color var(--t-fast) var(--ease);
    line-height: 1.35;
}
.faq-q:hover { color: var(--caramel); }
.faq-q::after {
    content: "";
    position: absolute;
    right: 0; top: 50%;
    width: 18px; height: 18px;
    background:
        linear-gradient(var(--caramel), var(--caramel)) center / 100% 1px no-repeat,
        linear-gradient(var(--caramel), var(--caramel)) center / 1px 100% no-repeat;
    transform: translateY(-50%);
    transition: transform var(--t-med) var(--ease);
}
.faq-item.open .faq-q::after { transform: translateY(-50%); background: linear-gradient(var(--caramel), var(--caramel)) center / 100% 1px no-repeat; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med) var(--ease);
}
.faq-a-in {
    padding: 0 52px 24px 0;
    font-size: 14px;
    line-height: 1.8;
    opacity: .8;
    max-width: 720px;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ===== FORM ===== */
.form-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 56px;
    box-shadow: var(--shadow-card);
    max-width: 720px;
    margin: 0 auto;
}
.form-title {
    font-family: var(--h);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
    margin-bottom: 14px;
    text-align: center;
}
.form-sub {
    font-size: 15px;
    line-height: 1.7;
    opacity: .72;
    text-align: center;
    margin-bottom: 36px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.field { position: relative; }
.field label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 8px;
    font-weight: 500;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--sand);
    border-radius: 8px;
    background: var(--cream);
    font-size: 15px;
    color: var(--charcoal);
    transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--caramel);
    background: var(--white);
}
.field textarea { resize: vertical; min-height: 90px; font-family: inherit; }

.field-radio-group,
.field-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.field-radio,
.field-chip {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 18px;
    border: 1px solid var(--sand);
    border-radius: 100px;
    font-size: 13px;
    line-height: 1.2;
    transition: all var(--t-fast) var(--ease);
    background: var(--cream);
    user-select: none;
}
.field-radio input,
.field-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px; height: 1px;
}
.field-radio:hover,
.field-chip:hover { border-color: var(--gold); }
.field-radio.active,
.field-chip.active {
    background: var(--caramel);
    color: var(--white);
    border-color: var(--caramel);
}

/* Form tabs (Клуб / Заказ) */
.form-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
    background: var(--cream);
    padding: 6px;
    border-radius: 100px;
}
.form-tab {
    flex: 1;
    padding: 12px 18px;
    font-family: var(--b);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--charcoal);
    background: transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
    line-height: 1.2;
}
.form-tab.active {
    background: var(--caramel);
    color: var(--white);
}
.form-pane[hidden] { display: none; }

/* Aroma counters */
.aroma-counter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    background: var(--cream);
    border-radius: 10px;
    padding: 8px;
}
.aroma-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--sand);
    transition: border-color var(--t-fast) var(--ease);
}
.aroma-counter.has-qty { border-color: var(--caramel); }
.aroma-counter-name {
    font-family: var(--h);
    font-weight: 500;
    font-size: 15px;
    color: var(--charcoal);
    flex: 1;
    line-height: 1.3;
}
.aroma-counter-ctrl {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.aroma-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--sand);
    font-size: 16px;
    color: var(--caramel);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    padding: 0;
}
.aroma-btn:hover { background: var(--caramel); color: var(--white); border-color: var(--caramel); }
.aroma-counter input[type="number"] {
    width: 44px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}
.aroma-counter input[type="number"]::-webkit-outer-spin-button,
.aroma-counter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Consent checkbox */
.field-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--charcoal);
    opacity: .8;
    cursor: pointer;
}
.field-consent input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--caramel);
}
.field-consent a { color: var(--caramel); text-decoration: underline; text-decoration-thickness: .5px; text-underline-offset: 2px; }

.form-actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.form-note {
    font-size: 12px;
    opacity: .55;
    text-align: center;
    max-width: 460px;
}
.form-success,
.form-error {
    display: none;
    padding: 20px 24px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
}
.form-success { background: rgba(177, 128, 80, .12); color: var(--caramel); border: 1px solid var(--caramel); }
.form-error { background: rgba(196, 120, 90, .12); color: var(--terracotta); border: 1px solid var(--terracotta); }
.form-success.visible, .form-error.visible { display: block; }

.form-loading {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
    display: none;
}
.btn.loading .form-loading { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== CONTACT GRID ===== */
.c-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.c-card {
    background: var(--white);
    padding: 44px;
    border-radius: 12px;
    border: 1px solid var(--sand);
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.c-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.c-card h3 {
    font-family: var(--h);
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 28px;
    color: var(--charcoal);
}
.c-row {
    display: flex;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--sand);
}
.c-row:last-child { border-bottom: none; }
.c-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--caramel);
    min-width: 110px;
    padding-top: 2px;
    font-weight: 500;
}
.c-val { font-size: 15px; line-height: 1.6; }
.c-text p { font-size: 15px; line-height: 1.85; opacity: .78; margin-bottom: 12px; }
.btn-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== GIFT ===== */
.g-list {
    list-style: none;
    margin-top: 24px;
}
.g-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--sand);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    gap: 16px;
}
.g-list li span:last-child {
    color: var(--caramel);
    font-weight: 500;
    font-family: var(--h);
    font-size: 17px;
    white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 80px 24px 40px;
    position: relative;
}
.footer-in {
    max-width: var(--container);
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 169, 122, .15);
}
.footer-brand .footer-logo {
    font-family: var(--h);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 8px;
    color: var(--cream);
    margin-bottom: 8px;
}
.footer-brand .footer-tag {
    font-family: var(--h);
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    opacity: .55;
    max-width: 320px;
}
.footer-col h4 {
    font-family: var(--b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    font-size: 13px;
    color: var(--cream);
    opacity: .65;
    transition: opacity var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    opacity: .4;
    letter-spacing: 1px;
}

/* ===== UTILS ===== */
.t-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.gap-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.gap-cta.center { justify-content: center; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 16px; right: 16px;
    bottom: 16px;
    z-index: 250;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(58, 51, 48, .96);
    color: var(--cream);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 14px 48px rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.cookie-banner-text {
    flex: 1;
    min-width: 220px;
    font-size: 13px;
    line-height: 1.55;
    opacity: .92;
}
.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-thickness: .5px;
    text-underline-offset: 2px;
}
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner button {
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--charcoal);
}
.cookie-banner button:hover { background: var(--caramel); border-color: var(--caramel); color: var(--white); }
.cookie-banner-close {
    background: transparent !important;
    border: none !important;
    color: var(--cream) !important;
    opacity: .5;
    padding: 8px !important;
    font-size: 20px !important;
    line-height: 1 !important;
    cursor: pointer;
}
.cookie-banner-close:hover { opacity: 1; }
@media (max-width: 640px) {
    .cookie-banner { padding: 14px 16px; gap: 12px; flex-direction: column; align-items: stretch; }
    .cookie-banner-actions { justify-content: stretch; }
    .cookie-banner-actions button { flex: 1; }
}

/* ===== LEGAL PAGE ===== */
.legal-page {
    background: var(--white);
    color: var(--charcoal);
    min-height: 100vh;
}
.legal-top {
    background: var(--cream);
    padding: 28px 0;
    border-bottom: 1px solid var(--sand);
}
.legal-top-in {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid var(--caramel);
    color: var(--caramel);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all var(--t-fast) var(--ease);
}
.legal-back:hover { background: var(--caramel); color: var(--white); }
.legal-brand {
    font-family: var(--h);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 6px;
    color: var(--charcoal);
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}
.legal-eye {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 14px;
}
.legal-title {
    font-family: var(--h);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--charcoal);
}
.legal-content h2 {
    font-family: var(--h);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    margin: 36px 0 14px;
    color: var(--charcoal);
}
.legal-content h3 {
    font-family: var(--h);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    margin: 26px 0 10px;
    color: var(--charcoal);
}
.legal-content p {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 14px;
    color: var(--charcoal);
    opacity: .85;
}
.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 18px;
}
.legal-content ul li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 8px;
    opacity: .85;
}
.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 13px;
    width: 12px; height: 1px;
    background: var(--gold);
}
.legal-content strong { color: var(--caramel); font-weight: 600; }
.legal-meta {
    margin-top: 36px;
    padding: 24px 28px;
    background: var(--cream);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}
.legal-meta p { margin-bottom: 6px; font-size: 13px; }
.legal-back-bottom {
    margin-top: 56px;
    text-align: center;
}

@media (max-width: 640px) {
    .legal-top-in { padding: 0 16px; }
    .legal-content { padding: 36px 16px 56px; }
    .legal-content h2 { font-size: 18px; }
    .legal-back { padding: 9px 18px; font-size: 11px; }
}

/* ===== RESPONSIVE 1100 — включаем мобильное меню ===== */
@media (max-width: 1100px) {
    .f-grid, .a-grid, .trust-grid, .steps { grid-template-columns: repeat(3, 1fr); }
    .sc-grid { grid-template-columns: repeat(2, 1fr); }
    .founders { padding: 56px 36px; }
    .founders-inner { grid-template-columns: 1fr; gap: 40px; }
    .duo { gap: 48px; }

    .burger { display: block; position: relative; z-index: 210; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 18px;
        padding: 88px 24px 32px;
        z-index: 200;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        color: var(--charcoal) !important;
        text-shadow: none !important;
        font-size: 14px;
        letter-spacing: 1.8px;
        padding: 10px 0;
    }
    .nav-links a.nav-cta {
        color: var(--caramel) !important;
        border-color: var(--caramel) !important;
        margin: 14px 0 0 !important;
        padding: 14px 36px;
    }
}

/* ===== RESPONSIVE 880 ===== */
@media (max-width: 880px) {
    .sec { padding: 70px 24px; }
    .duo { grid-template-columns: 1fr; gap: 40px; }
    .duo.reverse > :first-child { order: initial; }
    .c-grid { grid-template-columns: 1fr; }
    .reac-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .form-wrap { padding: 36px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .marquee-item { font-size: 18px; padding: 0 22px; gap: 22px; }
    .p-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE 640 — мобильный ===== */
@media (max-width: 640px) {
    .sec { padding: 56px 18px; }
    .nav-in { padding: 0 18px; }
    .nav-logo img { height: 28px; }
    .hero-content { padding: 100px 18px 80px; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-actions .btn { width: 100%; }
    .p-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .f-grid, .a-grid, .trust-grid, .steps { grid-template-columns: 1fr 1fr; }
    .sc-grid { grid-template-columns: 1fr; }
    .founders { padding: 40px 22px; border-radius: 12px; }
    .founders-counter { padding: 22px; }
    .founders-counter-num { font-size: 40px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .form-wrap { padding: 28px 18px; }
    .c-card { padding: 28px 22px; }
    .marquee-item { font-size: 15px; padding: 0 18px; gap: 18px; }
    .btn { padding: 14px 28px; font-size: 11px; }
    .hero-title { letter-spacing: 5px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 2.5px; }
    .hero-eyebrow::before, .hero-eyebrow::after { width: 16px; margin: 0 8px; }
    .reac { padding: 22px 22px 20px; }
    .reac-text { font-size: 15px; }
    .faq-q { font-size: 15px; padding: 20px 44px 20px 0; }
    .faq-a-in { font-size: 13px; padding-right: 44px; }
    .duo-text h3 { font-size: 22px; }
    .duo-quote { padding: 18px 20px; }
    .duo-quote p { font-size: 15px; }
    .p-info { padding: 22px 22px 24px; }
    .p-name { font-size: 18px; }
    .step { padding: 24px 16px; }
    .step::before { font-size: 36px; }
    .trust-card { padding: 24px 18px; }
    .sc { padding: 28px 22px; }
    .form-actions .btn { width: 100%; }
}

/* ===== RESPONSIVE 420 ===== */
@media (max-width: 420px) {
    .f-grid, .trust-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .a-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .hero-bg { animation: none; }
    .marquee-track { animation: none; }
    .fade-in { opacity: 1; transform: none; }
}

/* ============================================================
   ============================================================
   MULTIPAGE v3 — расширение дизайн-системы
   (мега-меню, хлебные крошки, page-hero, каталог,
    карточка товара, ноты, коллекции, конфигуратор,
    гайды, журнал, sticky-CTA, мобильный hero)
   ============================================================
   ============================================================ */

/* ===== NAV: DROPDOWN / MEGA-MENU ===== */
.nav-links li.has-drop { position: relative; }
.nav-drop-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.nav-drop-toggle .caret {
    width: 7px; height: 7px;
    border-right: 1.4px solid currentColor;
    border-bottom: 1.4px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--t-fast) var(--ease);
    opacity: .7;
}
.has-drop:hover .nav-drop-toggle .caret { transform: rotate(-135deg) translateY(-1px); }
.nav-drop {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med);
    z-index: 160;
}
.nav-drop::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.has-drop:hover .nav-drop {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(8px);
}
.nav-drop a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--charcoal) !important;
    text-transform: none !important;
    letter-spacing: .2px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-drop a::after { display: none !important; }
.nav-drop a:hover { background: rgba(201,169,122,.12); color: var(--caramel) !important; }
.nav-drop a .nd-price {
    font-family: var(--h);
    font-size: 13px;
    color: var(--caramel);
    white-space: nowrap;
}
.nav-drop a .nd-soon {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}
.nav-drop-head {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 14px 8px;
}
.nav-drop-all {
    margin-top: 6px;
    border-top: 1px solid var(--sand);
    padding-top: 8px !important;
    color: var(--caramel) !important;
    font-weight: 500 !important;
}

/* ===== PAGE HERO (внутренние страницы) ===== */
.phero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    padding: 140px 0 0;
}
.phero-bg {
    position: absolute; inset: -2%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: kenburns 24s ease-in-out infinite alternate;
    will-change: transform;
}
.phero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to bottom, rgba(58,51,48,.28) 0%, rgba(58,51,48,.5) 55%, rgba(58,51,48,.82) 100%);
}
.phero-in {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px 56px;
    width: 100%;
    color: var(--white);
    position: relative;
    z-index: 2;
}
.phero-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F2E4CC;
    margin-bottom: 16px;
    text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.phero-title {
    font-family: var(--h);
    font-weight: 400;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.08;
    color: var(--white);
    max-width: 760px;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.phero-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--white);
    opacity: .9;
    max-width: 560px;
    margin-top: 16px;
    text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.phero--light .phero-overlay {
    background: linear-gradient(to bottom, rgba(245,237,227,.2) 0%, rgba(245,237,227,.55) 60%, rgba(245,237,227,.9) 100%);
}
.phero--light .phero-eyebrow { color: var(--caramel); text-shadow: none; }
.phero--light .phero-title { color: var(--charcoal); text-shadow: none; }
.phero--light .phero-sub { color: var(--charcoal); opacity: .8; text-shadow: none; }

/* ===== BREADCRUMBS ===== */
.crumbs {
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
}
.crumbs-in {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .3px;
}
.crumbs-in a { color: var(--caramel); opacity: .85; }
.crumbs-in a:hover { opacity: 1; }
.crumbs-in .sep { color: var(--gold); opacity: .7; }
.crumbs-in .cur { color: var(--charcoal); opacity: .6; }

/* ===== SECTION HEAD (общий) ===== */
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }

/* ===== CATALOG GRID (3 / 2 колонки) ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cat-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cat-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(232,220,203,.6);
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.cat-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--sand);
    overflow: hidden;
}
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cat-card:hover .cat-media img { transform: scale(1.06); }
.cat-media .p-badge { z-index: 2; }
.cat-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.cat-eye { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.cat-name { font-family: var(--h); font-weight: 500; font-size: 21px; line-height: 1.2; color: var(--charcoal); margin-bottom: 8px; }
.cat-desc { font-size: 13px; line-height: 1.7; opacity: .72; margin-bottom: 18px; flex: 1; }
.cat-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--sand); }
.cat-price { font-family: var(--h); font-weight: 500; font-size: 20px; color: var(--caramel); }
.cat-price small { font-size: 12px; opacity: .6; font-family: var(--b); }
.cat-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--caramel);
}
.cat-link .a { transition: transform var(--t-med) var(--ease); }
.cat-card:hover .cat-link .a { transform: translateX(4px); }
.cat-swatches { display: flex; gap: 6px; margin-bottom: 16px; }
.swatch { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(58,51,48,.15); }
.sw-beige { background: #E8DCCB; }
.sw-grey { background: #B9B7B2; }
.sw-white { background: #F4EFE8; }
.sw-graphite { background: #4A4744; }

/* ===== PRODUCT DETAIL ===== */
.pd { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
.pd-gallery { position: sticky; top: 96px; }
.pd-main {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    overflow: hidden;
    background: var(--sand);
    box-shadow: var(--shadow-card);
}
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 12px; }
.pd-thumb { flex: 1; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--sand); border: 1px solid var(--sand); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-eye { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--caramel); margin-bottom: 12px; }
.pd-title { font-family: var(--h); font-weight: 400; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; color: var(--charcoal); margin-bottom: 10px; }
.pd-title .lat { display: block; font-size: 15px; font-style: italic; letter-spacing: 2px; color: var(--gold); margin-top: 8px; }
.pd-price { font-family: var(--h); font-weight: 500; font-size: 30px; color: var(--caramel); margin: 20px 0 8px; }
.pd-price small { font-size: 14px; font-family: var(--b); opacity: .6; }
.pd-lead { font-size: 15px; line-height: 1.85; opacity: .85; margin-bottom: 24px; }
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 28px; }
.pd-specs { list-style: none; border-top: 1px solid var(--sand); }
.pd-specs li { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--sand); font-size: 14px; }
.pd-specs .k { color: var(--caramel); letter-spacing: .3px; }
.pd-specs .v { text-align: right; opacity: .85; }
.pd-story { font-size: 15px; line-height: 1.9; opacity: .85; }
.pd-story p { margin-bottom: 16px; }

/* ===== AROMA NOTES (пирамида) ===== */
.notes { display: grid; gap: 14px; }
.note {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 28px;
    align-items: center;
    padding: 22px 26px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 12px;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.note:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.note-tier { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.note-tier .ico { width: 32px; height: 32px; flex-shrink: 0; color: var(--caramel); }
.note-tier .lbl { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); line-height: 1.4; }
.note-desc { font-size: 14px; line-height: 1.65; }
.note-desc b { font-family: var(--h); font-weight: 500; font-size: 16px; color: var(--charcoal); }
.note-desc span { opacity: .7; }

/* ===== SPEC / FEATURE ICON CARDS ===== */
.ico-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ico-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ico-card {
    padding: 30px 24px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 12px;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.ico-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.ico-card .ic {
    width: 46px; height: 46px; color: var(--caramel);
    margin-bottom: 18px;
}
.ico-card h4 { font-family: var(--h); font-weight: 500; font-size: 18px; margin-bottom: 8px; color: var(--charcoal); line-height: 1.25; }
.ico-card p { font-size: 13px; line-height: 1.7; opacity: .74; }
.sec-dark .ico-card { background: rgba(254,252,249,.04); border-color: rgba(201,169,122,.2); }
.sec-dark .ico-card h4 { color: var(--cream); }
.sec-dark .ico-card p { color: var(--cream); opacity: .65; }
.sec-dark .ico-card .ic { color: var(--gold); }

/* ===== STATS ROW (факты) ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--h); font-weight: 400; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--caramel); }
.sec-dark .stat-num { color: var(--gold); }
.stat-lbl { font-size: 12px; letter-spacing: 1px; opacity: .7; margin-top: 8px; }

/* ===== CROSS-SELL ROW ===== */
.xsell { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== COLLECTION CARDS (сезоны) ===== */
.col-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.col-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: var(--charcoal);
    display: block;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.col-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.col-card img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform 1.2s var(--ease), opacity var(--t-med) var(--ease); }
.col-card:hover img { transform: scale(1.05); }
.col-card.soon img { filter: grayscale(.35) brightness(.7); }
.col-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(58,51,48,.85) 0%, rgba(58,51,48,.1) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px; color: var(--white);
}
.col-season { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.col-name { font-family: var(--h); font-weight: 500; font-size: 24px; line-height: 1.15; }
.col-state { margin-top: 10px; font-size: 12px; letter-spacing: .3px; opacity: .85; }
.col-badge {
    position: absolute; top: 16px; right: 16px;
    background: rgba(58,51,48,.65);
    color: var(--gold);
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 12px; border-radius: 100px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,169,122,.35);
}

/* ===== CONFIGURATOR ===== */
.cfg { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.cfg-step { margin-bottom: 40px; }
.cfg-step-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.cfg-step-num {
    font-family: var(--h); font-weight: 400; font-size: 20px;
    width: 38px; height: 38px; flex-shrink: 0;
    border: 1px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--caramel);
}
.cfg-step-title { font-family: var(--h); font-weight: 500; font-size: 22px; color: var(--charcoal); line-height: 1.2; }
.cfg-step-hint { font-size: 13px; opacity: .6; margin-top: 2px; }
.cfg-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cfg-opts.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cfg-opt {
    position: relative;
    display: flex; flex-direction: column; gap: 6px;
    padding: 16px;
    border: 1.5px solid var(--sand);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    text-align: left;
}
.cfg-opt:hover { border-color: var(--gold); transform: translateY(-2px); }
.cfg-opt.active { border-color: var(--caramel); background: rgba(201,169,122,.08); }
.cfg-opt.active::after {
    content: "✓"; position: absolute; top: 12px; right: 14px;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--caramel); color: var(--white);
    font-size: 11px; display: flex; align-items: center; justify-content: center;
}
.cfg-opt-media { aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--sand); margin-bottom: 4px; }
.cfg-opt-media img { width: 100%; height: 100%; object-fit: cover; }
.cfg-opt-name { font-family: var(--h); font-weight: 500; font-size: 16px; color: var(--charcoal); line-height: 1.2; }
.cfg-opt-meta { font-size: 12px; opacity: .65; }
.cfg-opt-price { font-size: 13px; color: var(--caramel); font-weight: 500; }
.cfg-opt .swatch { width: 22px; height: 22px; }

.cfg-qty-list { display: flex; flex-direction: column; gap: 10px; }
.cfg-toggle { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1.5px solid var(--sand); border-radius: 12px; cursor: pointer; transition: border-color var(--t-fast) var(--ease); }
.cfg-toggle.active { border-color: var(--caramel); background: rgba(201,169,122,.08); }

/* summary */
.cfg-summary {
    position: sticky; top: 96px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 28px;
}
.cfg-summary h3 { font-family: var(--h); font-weight: 500; font-size: 20px; margin-bottom: 18px; color: var(--charcoal); }
.cfg-sum-list { list-style: none; margin-bottom: 16px; min-height: 40px; }
.cfg-sum-list li { display: flex; justify-content: space-between; gap: 14px; font-size: 13px; padding: 9px 0; border-bottom: 1px dashed var(--sand); }
.cfg-sum-list li .v { color: var(--caramel); white-space: nowrap; font-weight: 500; }
.cfg-sum-empty { font-size: 13px; opacity: .55; font-style: italic; padding: 8px 0; }
.cfg-total { display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0 20px; padding-top: 16px; border-top: 1px solid var(--sand); }
.cfg-total .lbl { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.cfg-total .amt { font-family: var(--h); font-weight: 500; font-size: 34px; color: var(--caramel); }
.cfg-note { font-size: 11px; opacity: .55; line-height: 1.5; margin-top: 12px; text-align: center; }

/* ===== GUIDE PAGE ===== */
.guide-lead { font-family: var(--h); font-weight: 400; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.5; color: var(--charcoal); max-width: 720px; }
.guide-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: gstep; }
.guide-step {
    padding: 30px 26px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 14px;
    position: relative;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.guide-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.guide-step .gs-ico { width: 44px; height: 44px; color: var(--caramel); margin-bottom: 16px; }
.guide-step .gs-num { position: absolute; top: 24px; right: 26px; font-family: var(--h); font-size: 34px; color: var(--gold); opacity: .35; }
.guide-step h4 { font-family: var(--h); font-weight: 500; font-size: 19px; margin-bottom: 10px; color: var(--charcoal); line-height: 1.25; }
.guide-step p { font-size: 14px; line-height: 1.75; opacity: .8; }
.guide-step p + p { margin-top: 10px; }

/* info / warning blocks */
.callout {
    display: flex; gap: 18px;
    padding: 24px 28px;
    border-radius: 12px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}
.callout .co-ico { width: 30px; height: 30px; flex-shrink: 0; color: var(--caramel); margin-top: 2px; }
.callout h4 { font-family: var(--h); font-weight: 500; font-size: 18px; margin-bottom: 6px; color: var(--charcoal); }
.callout p { font-size: 14px; line-height: 1.8; opacity: .85; }
.callout.warn { background: rgba(196,120,90,.08); border-left-color: var(--terracotta); }
.callout.warn .co-ico { color: var(--terracotta); }

/* safety / rules list */
.rules { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.rules li { position: relative; padding-left: 32px; font-size: 14px; line-height: 1.7; opacity: .88; }
.rules li .rico { position: absolute; left: 0; top: 2px; width: 20px; height: 20px; color: var(--caramel); }

/* do / dont table */
.dodont { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dd-col { padding: 28px; border-radius: 14px; border: 1px solid var(--sand); background: var(--white); }
.dd-col h4 { font-family: var(--h); font-weight: 500; font-size: 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.dd-col.yes h4 { color: #6E8B5B; }
.dd-col.no h4 { color: var(--terracotta); }
.dd-col ul { list-style: none; }
.dd-col li { position: relative; padding: 8px 0 8px 26px; font-size: 14px; line-height: 1.6; border-bottom: 1px solid var(--sand); }
.dd-col li:last-child { border-bottom: none; }
.dd-col li::before { position: absolute; left: 0; top: 8px; font-size: 14px; }
.dd-col.yes li::before { content: "✓"; color: #6E8B5B; }
.dd-col.no li::before { content: "✕"; color: var(--terracotta); }

/* QR hint (для гайдов, печать) */
.qr-hint {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(201,169,122,.12);
    border: 1px dashed var(--gold);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 12px;
    color: var(--caramel);
}

/* ===== JOURNAL ===== */
.jr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.jr-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--sand); border-radius: 12px; overflow: hidden; transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
.jr-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.jr-media { aspect-ratio: 16/10; background: var(--sand); overflow: hidden; }
.jr-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.jr-card:hover .jr-media img { transform: scale(1.05); }
.jr-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.jr-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.jr-title { font-family: var(--h); font-weight: 500; font-size: 20px; line-height: 1.25; color: var(--charcoal); margin-bottom: 10px; }
.jr-ex { font-size: 13px; line-height: 1.7; opacity: .72; margin-bottom: 16px; flex: 1; }
.jr-more { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--caramel); font-weight: 500; }
.article { max-width: 780px; margin: 0 auto; }
.article p { font-size: 16px; line-height: 1.9; margin-bottom: 18px; opacity: .88; }
.article h2 { font-family: var(--h); font-weight: 500; font-size: 26px; margin: 36px 0 14px; color: var(--charcoal); }
.article h3 { font-family: var(--h); font-weight: 500; font-size: 20px; margin: 26px 0 10px; color: var(--charcoal); }
.article ul { list-style: none; margin: 0 0 18px; }
.article ul li { position: relative; padding-left: 24px; font-size: 16px; line-height: 1.8; margin-bottom: 8px; opacity: .88; }
.article ul li::before { content: ""; position: absolute; left: 0; top: 14px; width: 12px; height: 1px; background: var(--gold); }
.article a { color: var(--caramel); text-decoration: underline; text-decoration-thickness: .5px; text-underline-offset: 3px; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 140;
    display: none;
    gap: 10px;
    background: rgba(58,51,48,.97);
    border: 1px solid rgba(201,169,122,.3);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.sticky-cta .sc-txt { color: var(--cream); font-size: 12px; line-height: 1.3; }
.sticky-cta .sc-txt b { font-family: var(--h); font-weight: 500; color: var(--gold); font-size: 15px; display: block; }
.sticky-cta .sc-btn {
    flex-shrink: 0;
    background: var(--caramel); color: var(--white);
    border-radius: 100px; padding: 12px 22px;
    font-size: 11px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
    white-space: nowrap;
    transition: background var(--t-fast) var(--ease);
}
.sticky-cta .sc-btn:hover { background: var(--terracotta); color: var(--white); }

/* ===== SOON / EMPTY STATE ===== */
.soon-wrap { text-align: center; max-width: 620px; margin: 0 auto; padding: 40px 0; }
.soon-badge {
    display: inline-block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold); border-radius: 100px; padding: 8px 20px; margin-bottom: 24px;
}
.notify-form { display: flex; gap: 10px; max-width: 460px; margin: 24px auto 0; flex-wrap: wrap; }
.notify-form input { flex: 1; min-width: 200px; padding: 14px 18px; border: 1px solid var(--sand); border-radius: 100px; background: var(--white); font-size: 14px; }
.notify-form input:focus { outline: none; border-color: var(--caramel); }

/* ===== HERO: мобильная картинка ===== */
.hero-bg--desktop { display: block; }
.hero-bg--mobile { display: none; }

/* ===== RESPONSIVE (новые компоненты) ===== */
@media (max-width: 1100px) {
    .cat-grid, .jr-grid, .guide-steps, .xsell { grid-template-columns: repeat(2, 1fr); }
    .ico-grid { grid-template-columns: repeat(2, 1fr); }
    .col-grid { grid-template-columns: repeat(2, 1fr); }
    .cfg { grid-template-columns: 1fr; }
    .cfg-summary { position: static; }
    .pd-gallery { position: static; }

    /* мега-меню внутри мобильного оверлея → статичные раскрытые списки */
    .nav-links li.has-drop { width: 100%; text-align: center; }
    .nav-drop-toggle { justify-content: center; }
    .has-drop .nav-drop-toggle .caret { display: none; }
    .nav-drop {
        position: static; transform: none; box-shadow: none; border: none;
        padding: 4px 0 10px; min-width: 0; opacity: 1; visibility: visible;
        pointer-events: auto; background: transparent; margin-top: 6px;
    }
    .nav-drop::before { display: none; }
    .has-drop:hover .nav-drop { transform: none; }
    .nav-drop-head { display: none; }
    .nav-drop a { justify-content: center; font-size: 13px !important; opacity: .7; }
    .nav-drop a .nd-price, .nav-drop a .nd-soon { display: none; }
}
@media (max-width: 880px) {
    .pd { grid-template-columns: 1fr; gap: 36px; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .dodont, .rules { grid-template-columns: 1fr; }
    .cfg-opts, .cfg-opts.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .phero-in { padding: 0 24px 44px; }
    .crumbs-in { padding: 12px 24px; }
}
@media (max-width: 640px) {
    .cat-grid, .cat-grid.cols-2, .jr-grid, .guide-steps, .xsell, .ico-grid, .ico-grid.cols-3 { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .col-grid { grid-template-columns: 1fr 1fr; }
    .note { grid-template-columns: 1fr; gap: 10px; }
    .note-tier { gap: 10px; }
    .cfg-opts, .cfg-opts.cols-2 { grid-template-columns: 1fr 1fr; }
    .sticky-cta { display: flex; }
    .phero { min-height: 46vh; padding-top: 120px; }
    .hero-bg--desktop { display: none; }
    .hero-bg--mobile { display: block; }
    .nav-drop { position: static; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 14px; min-width: 0; opacity: 1; visibility: visible; pointer-events: auto; background: transparent; }
    .nav-drop::before { display: none; }
    .has-drop:hover .nav-drop { transform: none; }
}
@media (max-width: 420px) {
    .col-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ПРАВКИ v3.1 — контраст меню, мобильный hero, кнопка «наверх»
   ============================================================ */

/* Тёмный скрим под прозрачным меню (логотип/бургер/ссылки читаемы над любым hero) */
.nav:not(.scrolled):not(.nav-solid)::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 118px;
    background: linear-gradient(to bottom, rgba(40, 35, 32, .5), rgba(40, 35, 32, 0));
    z-index: -1;
    pointer-events: none;
}
.nav:not(.scrolled):not(.nav-solid) .nav-logo img { filter: drop-shadow(0 1px 6px rgba(0, 0, 0, .55)); }

/* Сплошное меню на страницах без hero-картинки (карточки, конфигуратор, статьи) */
.nav.nav-solid {
    background: rgba(254, 252, 249, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(232, 220, 203, .6);
}
.nav.nav-solid .nav-links a { color: var(--charcoal); text-shadow: none; }
.nav.nav-solid .nav-links a.nav-cta { color: var(--caramel); border-color: var(--caramel); }
.nav.nav-solid .burger span { background: var(--charcoal); }

/* Кнопка «Наверх» */
.to-top {
    position: fixed;
    right: 18px; bottom: 18px;
    z-index: 130;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(58, 51, 48, .9);
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), background .2s var(--ease);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    border: 1px solid rgba(201, 169, 122, .3);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--caramel); color: #fff; }
.to-top svg { width: 20px; height: 20px; }

/* Мобильный hero: усиленный скрим, чтобы текст читался над картинкой (кот/кофе) */
@media (max-width: 640px) {
    .hero-overlay {
        background:
            radial-gradient(ellipse at 50% 42%, rgba(40, 35, 32, .28) 0%, transparent 60%),
            linear-gradient(to bottom, rgba(40, 35, 32, .52) 0%, rgba(40, 35, 32, .34) 42%, rgba(40, 35, 32, .82) 100%);
    }
    .hero-title { text-shadow: 0 2px 22px rgba(0, 0, 0, .55); }
    .hero-tagline, .hero-text { text-shadow: 0 1px 14px rgba(0, 0, 0, .6); }
    /* кнопка «наверх» выше липкой CTA-панели */
    .to-top { bottom: 78px; right: 14px; }
}
