/* Петро-Проект - Northern Editorial */

@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&family=Unbounded:wght@500;700;800&display=swap');

:root {
    --ink:       #06080f;
    --deep:      #0c1220;
    --granite:   #1a2235;
    --slate:     #2e3a52;
    --mist:      #c8d4e8;
    --frost:     #eef2f8;
    --white:     #ffffff;
    --amber:     #e8952f;
    --amber-hot: #ffb347;
    --neva:      #5b9fd4;
    --neva-dim:  rgba(91, 159, 212, 0.15);
    --glass:     rgba(255, 255, 255, 0.06);
    --glass-bd:  rgba(255, 255, 255, 0.12);
    --text:      #eef2f8;
    --text-dim:  rgba(238, 242, 248, 0.62);
    --text-dark: #121820;
    --text-muted:#5a6478;

    --font-display: 'Unbounded', system-ui, sans-serif;
    --font-body:    'Golos Text', system-ui, sans-serif;

    --ease:    cubic-bezier(0.22, 1, 0.36, 1);
    --header:  72px;
    --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: min(var(--container), 100% - clamp(24px, 5vw, 64px));
    margin-inline: auto;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    transition: background 0.5s var(--ease), backdrop-filter 0.5s;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: var(--header);
}

.site-header.scrolled {
    background: rgba(6, 8, 15, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-bd);
}

.site-header .container {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.logo-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo-name span { color: var(--amber); }

.nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav ul {
    display: flex;
    gap: 4px;
}

.nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dim);
    padding: 8px 14px;
    border-radius: 999px;
    transition: color 0.3s, background 0.3s, border-color 0.3s;
}

.nav a:hover,
.nav a.active,
.nav .current-menu-item > a,
.nav .current_page_item > a {
    color: var(--white);
    background: var(--glass);
}

.nav a.active,
.nav .current-menu-item > a,
.nav .current_page_item > a,
.nav .current_page_parent > a {
    color: var(--amber-hot);
}

.nav-cta {
    flex-shrink: 0;
    padding: 12px 22px;
    font-size: 0.84rem;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    position: relative;
    z-index: 220;
    color: var(--white);
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    transform-origin: center;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav--open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    z-index: 210;
    background: var(--ink);
    padding: 20px clamp(20px, 5vw, 28px) calc(24px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}

.nav--open ul {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav--open li {
    display: block;
    width: 100%;
}

.nav--open a {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid transparent;
}

.nav--open a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.nav--open a.active,
.nav--open .current-menu-item > a,
.nav--open .current_page_item > a {
    background: rgba(232, 149, 47, 0.12);
    border-color: rgba(232, 149, 47, 0.28);
    color: var(--amber-hot);
}

.nav--open .nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
    padding: 16px 28px;
    font-size: 0.95rem;
    border-radius: 999px;
    text-align: center;
    justify-content: center;
}

.site-header.menu-open {
    background: var(--ink);
    border-bottom: 1px solid var(--glass-bd);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 999px;
    transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-amber {
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 8px 32px rgba(232, 149, 47, 0.35);
}

.btn-amber:hover {
    background: var(--amber-hot);
    box-shadow: 0 12px 40px rgba(232, 149, 47, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--glass-bd);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: var(--glass);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-dark {
    background: var(--granite);
    color: var(--white);
    border: 1px solid var(--glass-bd);
}

.btn-lg { padding: 18px 36px; font-size: 0.95rem; }

/* ===== PARALLAX SCENES ===== */
.scene {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.scene--tall { min-height: 120vh; }
.scene--page { min-height: 72vh; align-items: flex-end; }

.scene__layers {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.scene__layer {
    position: absolute;
    will-change: transform;
    pointer-events: none;
}

.scene__layer--bg {
    inset: -25% -5%;
    background-size: cover;
    background-position: center;
    transform-origin: center center;
}

.scene__layer--mid {
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(232, 149, 47, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(91, 159, 212, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(6, 8, 15, 0.2) 0%, rgba(6, 8, 15, 0.75) 100%);
}

.scene__layer--fg {
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
    opacity: 0.5;
}

.scene__layer--grain {
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scene__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(6, 8, 15, 0.92) 0%,
        rgba(6, 8, 15, 0.55) 45%,
        rgba(6, 8, 15, 0.35) 100%
    );
    pointer-events: none;
}

.scene--page .scene__veil {
    background: linear-gradient(0deg, rgba(6, 8, 15, 0.95) 0%, rgba(6, 8, 15, 0.35) 100%);
}

.scene__body {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: calc(var(--header) + 48px) 0 80px;
    will-change: transform;
}

.scene--page .scene__body { padding-bottom: 56px; }

.scene__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-hot);
    margin-bottom: 24px;
}

.scene__kicker::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--amber);
}

.scene__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 14ch;
    margin-bottom: 28px;
}

.scene__title--wide { max-width: 18ch; }

.scene__title em {
    font-style: normal;
    color: var(--amber-hot);
    display: block;
}

.scene__lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-dim);
    max-width: 46ch;
    line-height: 1.75;
    margin-bottom: 40px;
}

.scene__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.scene__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scene__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--amber), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Floating hero cards */
.hero-floats {
    position: absolute;
    right: clamp(24px, 6vw, 80px);
    bottom: clamp(80px, 12vh, 160px);
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 220px;
}

.float-card {
    padding: 18px 22px;
    background: rgba(12, 18, 32, 0.72);
    border: 1px solid var(--glass-bd);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    transform: translateZ(0);
}

.float-card__num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber-hot);
    line-height: 1;
}

.float-card__label {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    background: var(--amber);
    color: var(--ink);
    overflow: hidden;
    padding: 14px 0;
    border-block: 2px solid var(--ink);
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee__item::after {
    content: '◆';
    font-size: 0.5rem;
    opacity: 0.5;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== LIGHT SECTIONS ===== */
.section {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0;
}

.section--light {
    background: var(--frost);
    color: var(--text-dark);
}

.section--dark {
    background: var(--deep);
}

.section--ink { background: var(--ink); }

.section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.section__grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.section__grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section--light .eyebrow { color: #c07010; }

.headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.headline em {
    font-style: normal;
    color: var(--neva);
}

.section--light .headline em { color: #2a6fa8; }

.lead {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.section--dark .lead,
.section--ink .lead { color: var(--text-dim); }

.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; max-width: 560px; }

.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-48 { margin-top: 48px; }

/* ===== BENTO CARDS ===== */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 16px;
}

.bento__item {
    position: relative;
    padding: clamp(24px, 3vw, 36px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-bd);
    background: var(--granite);
    transition: transform 0.45s var(--ease), border-color 0.45s;
}

.section--light .bento__item {
    background: var(--white);
    border-color: rgba(18, 24, 32, 0.08);
    box-shadow: 0 4px 24px rgba(18, 24, 32, 0.06);
}

.bento__item:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 149, 47, 0.4);
}

.bento__item--span6 { grid-column: span 6; }
.bento__item--span4 { grid-column: span 4; }
.bento__item--span8 { grid-column: span 8; }
.bento__item--span12 { grid-column: span 12; }
.bento__item--tall { grid-row: span 2; }

.bento__item--accent {
    background: linear-gradient(135deg, #1a2840 0%, #0f1828 100%);
    border-color: rgba(91, 159, 212, 0.25);
}

.section--light .bento__item--accent {
    background: linear-gradient(135deg, #1a2840 0%, #121c2e 100%);
    color: var(--white);
}

.bento__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--amber-hot);
    line-height: 1;
    margin-bottom: 12px;
}

.bento__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.bento__text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-dim);
}

.section--light .bento__text { color: var(--text-muted); }
.bento__item--accent .bento__text { color: rgba(255,255,255,0.65); }

.bento__item--accent .tile-list li { color: rgba(255,255,255,0.7); }
.bento__item--accent .tile-list li::before { background: var(--amber-hot); }

.section--dark .tile-list li { color: var(--text-dim); }
.section--dark .tile-list li::before { background: var(--amber); }

.bento__icon {
    font-size: 2rem;
    margin-bottom: 16px;
    filter: grayscale(0.2);
}

.bento__tag {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 14px;
}

.bento__item--accent .bento__tag { color: var(--amber-hot); }

/* ===== FORMAT CARDS (partners) ===== */
.formats {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
}

.formats__head .lead {
    max-width: 36ch;
    margin-bottom: 0;
}

.formats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 780px;
    justify-self: end;
}

.format-card {
    padding: 22px 22px 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-bd);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}

.format-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.format-card--lead {
    border-color: rgba(232, 149, 47, 0.35);
    background: linear-gradient(160deg, rgba(232, 149, 47, 0.12) 0%, rgba(255, 255, 255, 0.02) 55%);
}

.format-card__num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--amber);
    margin-bottom: 14px;
}

.format-card__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 14px;
}

.format-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.format-card__list li {
    position: relative;
    padding-left: 14px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-dim);
}

.format-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .formats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .formats__grid {
        max-width: none;
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .formats__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .format-card {
        padding: 20px 18px;
    }
}

/* Light theme variant */
.formats--light .format-card {
    background: var(--white);
    border-color: rgba(18, 24, 32, 0.08);
    box-shadow: 0 8px 28px rgba(6, 8, 15, 0.05);
}

.formats--light .format-card:hover {
    border-color: rgba(232, 149, 47, 0.3);
    background: var(--white);
    box-shadow: 0 14px 36px rgba(6, 8, 15, 0.09);
}

.formats--light .format-card--lead {
    border-color: rgba(232, 149, 47, 0.35);
    background: linear-gradient(155deg, rgba(232, 149, 47, 0.1) 0%, var(--white) 52%);
}

.formats--light .format-card__title {
    color: var(--text-dark);
}

.formats--light .format-card__list li {
    color: var(--text-muted);
}

.formats__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2a6fa8;
    transition: color 0.3s, gap 0.3s;
}

.formats__link:hover {
    color: var(--text-dark);
    gap: 10px;
}

.formats--light .formats__head .lead {
    margin-bottom: 0;
}

.section--tight-top {
    padding-top: clamp(48px, 7vw, 88px);
}

/* ===== PARTNERS GRID ===== */
.section--partners {
    background: var(--frost);
    color: var(--text-dark);
    padding-block: clamp(72px, 10vw, 120px);
}

.partners-intro {
    max-width: 640px;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.partners-intro .eyebrow { color: var(--amber); }
.partners-intro .headline { color: var(--text-dark); }
.partners-intro .lead { color: var(--text-muted); }

.partners-category + .partners-category {
    margin-top: clamp(40px, 5vw, 64px);
    padding-top: clamp(40px, 5vw, 64px);
    border-top: 1px solid rgba(18, 24, 32, 0.08);
}

.partners-category__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.partners-category__title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.partners-category__sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 520px;
}

.partners-category__count {
    flex-shrink: 0;
    min-width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(18, 24, 32, 0.08);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--amber);
    box-shadow: 0 8px 24px rgba(6, 8, 15, 0.06);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.partner-card {
    background: var(--white);
    border: 1px solid rgba(18, 24, 32, 0.07);
    border-radius: 18px;
    padding: 22px 16px 18px;
    text-align: center;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    box-shadow: 0 10px 30px rgba(6, 8, 15, 0.04);
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 149, 47, 0.35);
    box-shadow: 0 18px 40px rgba(6, 8, 15, 0.1);
}

.partner-card__logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--frost);
    border: 1px solid rgba(18, 24, 32, 0.06);
    overflow: hidden;
}

.partner-card__logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.partner-card__mono {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    background: linear-gradient(145deg, var(--accent, var(--amber)), color-mix(in srgb, var(--accent, var(--amber)) 70%, black));
}

.partner-card__name {
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    min-height: 2.7em;
    display: grid;
    place-items: center;
}

@media (max-width: 768px) {
    .partners-category__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .partner-card {
        padding: 18px 12px 14px;
    }

    .partner-card__logo {
        width: 64px;
        height: 64px;
    }
}

/* Image frame */
.frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.frame:hover img { transform: scale(1.06); }

.frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    pointer-events: none;
}

.frame__tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 16px;
    background: rgba(6, 8, 15, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--glass-bd);
}

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

.tag {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid rgba(232, 149, 47, 0.35);
    background: rgba(232, 149, 47, 0.1);
    color: var(--amber-hot);
}

.section--light .tag {
    background: rgba(42, 111, 168, 0.08);
    border-color: rgba(42, 111, 168, 0.25);
    color: #2a6fa8;
}

/* ===== FULLSCREEN PARALLAX BREAK ===== */
.break {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.break__layers {
    position: absolute;
    inset: 0;
}

.break__layer {
    position: absolute;
    inset: -30% -10%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.break__veil {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 15, 0.55);
}

.break__content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 24px;
    max-width: 820px;
}

.break__quote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.break__quote span { color: var(--amber-hot); }

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    counter-reset: step;
}

.step {
    padding: clamp(28px, 4vw, 48px);
    border-left: 1px solid var(--glass-bd);
    position: relative;
}

.section--light .step { border-color: rgba(18, 24, 32, 0.1); }
.step:first-child { border-left: none; }

.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 149, 47, 0.35);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.step__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step__text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-dim);
}

.section--light .step__text { color: var(--text-muted); }

/* ===== PARTNER TILES ===== */
.tile {
    padding: clamp(28px, 3vw, 40px);
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(18, 24, 32, 0.08);
    height: 100%;
    transition: transform 0.4s var(--ease);
}

.tile:hover { transform: translateY(-6px); }

.tile__head {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(18, 24, 32, 0.08);
}

.tile__icon { font-size: 2.4rem; margin-bottom: 16px; }

.tile__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.tile-list li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 8px 0;
    line-height: 1.5;
}

.tile-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--amber);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* ===== ORDER STRIP ===== */
.order-strip {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: clamp(32px, 5vw, 56px);
    background: var(--ink);
    color: var(--white);
    border-radius: 24px;
    border: 1px solid var(--glass-bd);
    overflow: hidden;
    position: relative;
}

.order-strip::before {
    content: '3500';
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 14rem);
    font-weight: 800;
    color: rgba(232, 149, 47, 0.06);
    line-height: 1;
    pointer-events: none;
}

.order-strip h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.order-strip p {
    font-size: 0.92rem;
    color: var(--text-dim);
    position: relative;
}

.order-strip__price {
    text-align: center;
    position: relative;
}

.price-huge {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--amber-hot);
    line-height: 1;
}

.price-caption {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===== CATALOG CARDS (products) ===== */
.catalog {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 5vw, 52px);
}

.catalog__head {
    max-width: 520px;
}

.catalog__head .lead {
    margin-bottom: 0;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
    max-width: 1040px;
}

.catalog-card {
    display: block;
    min-height: 128px;
    padding: 20px 18px 18px;
    border-radius: 16px;
    border: 1px solid rgba(18, 24, 32, 0.08);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(6, 8, 15, 0.04);
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
    color: inherit;
}

.catalog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 149, 47, 0.28);
    box-shadow: 0 14px 32px rgba(6, 8, 15, 0.08);
}

.catalog__cta {
    margin-top: 8px;
}

.catalog-card--lead {
    border-color: rgba(232, 149, 47, 0.3);
    background: linear-gradient(155deg, rgba(232, 149, 47, 0.09) 0%, var(--white) 55%);
}

.catalog-card__num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #c07010;
    margin-bottom: 12px;
}

.catalog-card__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.catalog-card__name {
    min-width: 0;
    max-width: 100%;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.catalog-card__sku {
    flex-shrink: 0;
    margin-left: auto;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--amber);
    background: rgba(232, 149, 47, 0.1);
    border: 1px solid rgba(232, 149, 47, 0.22);
}

.catalog-card__desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }
}

@media (max-width: 768px) {
    .catalog__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ===== PRODUCT LIST CATALOG ===== */
.section--catalog {
    padding-top: clamp(48px, 8vw, 72px);
    padding-bottom: clamp(48px, 8vw, 72px);
}

.plist {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vw, 24px);
}

.plist--page .plist__head {
    max-width: 720px;
}

.plist--page .plist__head .headline {
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.plist--page .plist__head .lead {
    font-size: 0.92rem;
    line-height: 1.55;
}

.plist__head {
    max-width: 640px;
}

.plist__head .lead {
    margin-bottom: 0;
}

.plist__toolbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.plist__toolbar-top {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.plist__search {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    width: auto;
    max-width: 460px;
    padding: 0 18px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(18, 24, 32, 0.1);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(6, 8, 15, 0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.plist__cart {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(18, 24, 32, 0.1);
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(6, 8, 15, 0.05);
    transition: border-color 0.3s, background 0.3s, transform 0.25s var(--ease);
}

.plist__cart:hover {
    border-color: rgba(232, 149, 47, 0.4);
    background: rgba(232, 149, 47, 0.08);
}

.plist__cart.is-active {
    border-color: rgba(232, 149, 47, 0.45);
    background: rgba(232, 149, 47, 0.12);
    color: #9a5b12;
}

.plist__cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    background: var(--amber);
    box-shadow: 0 4px 12px rgba(232, 149, 47, 0.35);
}

.plist__cart-badge.is-bump {
    animation: cart-bump 0.35s var(--ease);
}

@keyframes cart-bump {
    0% { transform: scale(1); }
    40% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.plist__cart-panel {
    width: 100%;
    border: 1px solid rgba(18, 24, 32, 0.1);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(6, 8, 15, 0.06);
    padding: 16px 18px 18px;
}

.plist__cart-panel[hidden] {
    display: none;
}

.plist__cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.plist__cart-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.plist__cart-clear {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.25s;
}

.plist__cart-clear:hover {
    color: #c07010;
}

.plist__cart-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 12px;
}

.plist__cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(18, 24, 32, 0.03);
    border: 1px solid rgba(18, 24, 32, 0.06);
}

.plist__cart-item-name {
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
}

.plist__cart-item-meta {
    display: block;
    margin-top: 3px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.plist__cart-remove {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--text-muted);
    background: rgba(18, 24, 32, 0.04);
    transition: color 0.25s, background 0.25s;
}

.plist__cart-remove:hover {
    color: #b42318;
    background: rgba(180, 35, 24, 0.08);
}

.plist__cart-empty {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 8px 0 16px;
}

.plist__cart-empty[hidden],
.plist__cart-list[hidden],
.plist__cart-actions[hidden] {
    display: none;
}

.plist__cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plist__search:focus-within {
    border-color: rgba(232, 149, 47, 0.45);
    box-shadow: 0 10px 28px rgba(232, 149, 47, 0.12);
}

.plist__search-icon {
    font-size: 1.1rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.plist__search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.plist__search input::placeholder {
    color: rgba(90, 100, 120, 0.75);
}

.plist__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.plist__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid rgba(18, 24, 32, 0.08);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.plist__nav-link span {
    padding: 1px 6px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--amber);
    background: rgba(232, 149, 47, 0.1);
}

.plist__nav-link:hover,
.plist__nav-link.is-active {
    color: var(--text-dark);
    border-color: rgba(232, 149, 47, 0.35);
    background: rgba(232, 149, 47, 0.08);
}

.plist__panel {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - var(--header) - 168px);
    min-height: 380px;
    max-height: none;
    border: 1px solid rgba(18, 24, 32, 0.1);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 12px 36px rgba(6, 8, 15, 0.06);
    overflow: hidden;
}

.plist__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 8px 14px 12px;
}

.plist__group {
    scroll-margin-top: 4px;
}

.plist__group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 6px 0 7px;
    margin-bottom: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(18, 24, 32, 0.1);
}

.plist__group-title {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.plist__group-count {
    flex-shrink: 0;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.plist__rows {
    display: flex;
    flex-direction: column;
}

.plist__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    padding: 5px 6px;
    margin-inline: -6px;
    border-bottom: 1px solid rgba(18, 24, 32, 0.05);
    border-radius: 6px;
    transition: background 0.2s;
}

.plist__row.is-added {
    background: rgba(232, 149, 47, 0.06);
}

.plist__row:last-child {
    border-bottom: none;
}

.plist__row:hover {
    background: rgba(232, 149, 47, 0.04);
}

.plist__main {
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
}

.plist__name {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

.plist__code {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(90, 100, 120, 0.8);
    white-space: nowrap;
}

.plist__code::before {
    content: '·';
    margin-right: 6px;
    color: rgba(90, 100, 120, 0.45);
}

.plist__meta {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.plist__add {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: var(--amber);
    background: rgba(232, 149, 47, 0.1);
    border: 1px solid rgba(232, 149, 47, 0.28);
    transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.plist__add:hover {
    transform: scale(1.05);
    background: rgba(232, 149, 47, 0.18);
}

.plist__add.is-added {
    color: var(--white);
    background: var(--amber);
    border-color: var(--amber);
}

.plist__chip {
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    color: var(--text-muted);
    background: rgba(18, 24, 32, 0.04);
    border: 1px solid rgba(18, 24, 32, 0.06);
}

.plist__chip--vol {
    color: #2a6fa8;
    background: rgba(42, 111, 168, 0.08);
    border-color: rgba(42, 111, 168, 0.14);
}

.plist__chip--alc {
    color: #9a5b12;
    background: rgba(232, 149, 47, 0.1);
    border-color: rgba(232, 149, 47, 0.2);
}

.plist__row.is-hidden,
.plist__group.is-hidden {
    display: none;
}

.plist__empty {
    text-align: center;
    padding: 48px 20px;
    font-size: 1rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(18, 24, 32, 0.06);
}

.plist__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .plist__search {
        width: auto;
        max-width: none;
        min-height: 44px;
    }

    .plist__cart {
        width: 44px;
        height: 44px;
    }

    .plist__nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .plist__nav::-webkit-scrollbar { display: none; }

    .plist__nav-link {
        flex-shrink: 0;
    }

    .plist__panel {
        height: calc(100dvh - var(--header) - 150px);
        min-height: 300px;
        border-radius: 14px;
    }

    .plist__row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px 8px;
        padding: 6px 4px;
    }

    .plist__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .plist__code::before {
        display: none;
    }

    .plist__meta {
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 42%;
    }

    .plist__name {
        font-size: 0.76rem;
    }

    .plist__chip {
        font-size: 0.58rem;
        padding: 2px 6px;
    }

    .plist__cta {
        flex-direction: column;
    }

    .plist__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .plist__cart-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== LOGISTICS ===== */
.lfeat {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(18, 24, 32, 0.08);
}

.lfeat:last-child { border-bottom: none; }

.lfeat__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 111, 168, 0.1);
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.lfeat h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.lfeat p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.stat-box {
    padding: 20px 16px;
    background: var(--ink);
    color: var(--white);
    border-radius: 14px;
    text-align: center;
}

.stat-box__num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--amber-hot);
}

.stat-box__label {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ===== CONTACTS ===== */
.contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.cbox {
    padding: 32px 24px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(18, 24, 32, 0.08);
    text-align: center;
    transition: transform 0.35s var(--ease);
}

.cbox:hover { transform: translateY(-4px); }

.cbox__icon { font-size: 2rem; margin-bottom: 14px; }

.cbox__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}

.cbox__val {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cbox__val a:hover { color: #2a6fa8; }

.form-panel {
    background: var(--white);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 48px);
    border: 1px solid rgba(18, 24, 32, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    font: inherit;
    font-size: 0.92rem;
    padding: 14px 16px;
    border: 1.5px solid rgba(18, 24, 32, 0.12);
    border-radius: 12px;
    background: var(--frost);
    color: var(--text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neva);
    box-shadow: 0 0 0 3px var(--neva-dim);
    background: var(--white);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.map-block {
    min-height: 360px;
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    border-top: 1px solid var(--glass-bd);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #04060b;
    padding: 64px 0 28px;
    border-top: 1px solid var(--glass-bd);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-bd);
    margin-bottom: 28px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-logo-name span { color: var(--amber); }

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 20px;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(232, 149, 47, 0.12);
    border: 1px solid rgba(232, 149, 47, 0.35);
    color: var(--amber-hot);
    border-radius: 999px;
}

.footer-col h5 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    font-size: 0.86rem;
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact div {
    display: flex;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-dim);
}

.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section__grid--4 { grid-template-columns: repeat(2, 1fr); }
    .section__grid--3 { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-floats { display: none; }
    .bento__item--span6,
    .bento__item--span8 { grid-column: span 12; }
    .bento__item--span4 { grid-column: span 6; }
}

@media (max-width: 768px) {
    :root { --header: 64px; }

    .site-header,
    .site-header.scrolled,
    .site-header.menu-open {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header.scrolled,
    .site-header.menu-open {
        background: var(--ink);
    }

    .nav:not(.nav--open) {
        display: none;
    }

    .burger { display: flex; }

    .site-header__inner,
    .site-header .container {
        gap: 12px;
    }

    .logo-img {
        height: 46px;
    }
    .section__grid,
    .section__grid--4,
    .form-row,
    .contact-row,
    .stat-row { grid-template-columns: 1fr; }

    .steps { grid-template-columns: 1fr; }
    .step { border-left: none; border-top: 1px solid var(--glass-bd); }
    .step:first-child { border-top: none; }

    .order-strip {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .scene__title { max-width: none; }

    .scene__lead {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .scene__actions {
        flex-direction: column;
    }

    .scene__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .bento__item--span4 { grid-column: span 12; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-desc { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
    .marquee { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .scene__layer, .break__layer, .scene__body { transform: none !important; }
}
