﻿:root {
    --bg: #0b0b0d;
    --text: #fff;
    --accent: #d6b35e;
    --muted: #9ea0a6;
    --card: #141417;
    --border: rgba(214, 179, 94, 0.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Poppins", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top right, #1d1b14 0, var(--bg) 42%);
    color: var(--text);
}
img { max-width: 100%; display: block; }
.container { width: min(1280px, 92%); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 11, 13, 0.86);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    transition: padding .2s ease;
}
.site-header.shrink { padding: 2px 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; font-weight: 700; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    background: rgba(18, 18, 21, 0.9);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 9px 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 20px;
    background: var(--text);
    transition: transform .24s ease, opacity .24s ease;
}
.nav-toggle span + span { margin-top: 6px; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; list-style: none; gap: 20px; padding: 0; margin: 0; }
.nav-item { position: relative; }
.nav-item a { color: var(--text); text-decoration: none; font-size: .95rem; padding: 8px 0; }
.nav-item a.active, .nav-item a:hover { color: var(--accent); }
.sub-menu { display: none; position: absolute; top: 100%; left: 0; background: #111; list-style: none; padding: 10px; border: 1px solid var(--border); border-radius: 10px; min-width: 180px; }
.has-sub:hover .sub-menu { display: block; }
.section { padding: 78px 0; }
.section h2 { margin: 0 0 12px; font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
.subtitle { margin: 0 0 26px; color: var(--muted); }
.section-hero {
    padding-top: 0;
    padding-bottom: 0;
}
.section-hero .container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}
.section-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: 1.06;
    letter-spacing: 0.01em;
    text-wrap: balance;
}
.section-hero .subtitle { font-size: clamp(1rem, 2vw, 1.35rem); color: #f0f0f0; margin-bottom: 14px; }
.section-hero .hero-stage { position: relative; width: 100vw; overflow: hidden; }
.section-hero .hero-media {
    position: relative;
    width: 100vw;
}
.section-hero .hero-media img {
    width: 100vw;
    height: min(88vh, 980px);
    object-fit: cover;
}
.section-hero .hero-overlay {
    position: absolute; inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: clamp(20px, 4vw, 50px);
    background:
      linear-gradient(120deg, rgba(8,8,9,0.68) 0%, rgba(8,8,9,0.35) 46%, rgba(8,8,9,0.7) 100%),
      linear-gradient(180deg, rgba(11,11,13,0.02) 0%, rgba(11,11,13,0.82) 78%, rgba(11,11,13,0.98) 100%);
}
.section-hero .hero-brand-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(360px, 48vw, 640px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
}
.section-hero .hero-brand-center img {
    width: 100%;
    height: auto;
    max-height: min(400px, 48vh);
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.35));
}
.section-hero .hero-content {
    width: min(1240px, 94vw);
    text-align: left;
}
.section-hero .hero-content .richtext {
    max-width: 760px;
}
.section-hero .hero-content .button-row {
    margin-top: 18px;
}
.section-hero .hero-no-media {
    width: min(1240px, 92vw);
    margin: 0 auto;
    padding: 120px 0 90px;
}
.section-hero .hero-overlay .button-row {
    margin-top: 0;
}
.richtext p { margin: 0 0 14px; }
.grid { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
    background: linear-gradient(180deg, rgba(214,179,94,.08), rgba(20,20,23,.9));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(214, 179, 94, 0.7); }
.price { color: var(--accent); font-weight: 700; }
.product-stack {
    display: grid;
    gap: 56px;
}
.product-item {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
}
.product-item h3, .product-item p {
    margin: 0;
}
.reveal-pop {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(68px) scale(0.88);
    transition: opacity .9s cubic-bezier(.22, .67, .22, 1), transform .9s cubic-bezier(.22, .67, .22, 1), filter .9s cubic-bezier(.22, .67, .22, 1);
    will-change: opacity, transform, filter;
}
.reveal-pop.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.product-orbit {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1 / 1;
    margin: 16px auto 14px;
    display: grid;
    place-items: center;
}
.product-photo-wrap {
    position: relative;
    width: 82%;
    aspect-ratio: auto;
    overflow: visible;
    border: 0;
    box-shadow: none;
    animation: floaty 4s ease-in-out infinite;
    background: transparent;
}
.product-photo-wrap img {
    width: 100%;
    max-height: min(420px, 58vw);
    object-fit: contain;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.42));
}
.product-keyword {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(214, 179, 94, 0.8);
    background: linear-gradient(135deg, rgba(214, 179, 94, 0.26), rgba(30, 30, 33, 0.92));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
    white-space: nowrap;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-keyword:hover {
    border-color: rgba(214, 179, 94, 1);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(214, 179, 94, 0.28);
}
.product-orbit .product-keyword:nth-of-type(1) {
    left: 0;
    right: auto;
    transform: translate(-34%, -186%);
}
.product-orbit .product-keyword:nth-of-type(2) {
    left: auto;
    right: 0;
    transform: translate(34%, -142%);
}
.product-orbit .product-keyword:nth-of-type(3) {
    left: 0;
    right: auto;
    transform: translate(-38%, -30%);
}
.product-orbit .product-keyword:nth-of-type(4) {
    left: auto;
    right: 0;
    transform: translate(36%, 2%);
}
.product-orbit .product-keyword:nth-of-type(5) {
    left: 0;
    right: auto;
    transform: translate(-30%, 112%);
}
.product-modal[hidden] { display: none; }
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 250;
}
.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}
.product-modal-dialog {
    position: relative;
    width: min(780px, 92vw);
    max-height: 82vh;
    overflow: auto;
    margin: 8vh auto 0;
    background: #141417;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
}
.product-modal-layout {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}
.product-modal-media {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(14, 14, 17, 0.85);
    padding: 10px;
}
.product-modal-media img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}
.product-modal-close {
    float: right;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    border-radius: 999px;
    padding: 8px 12px;
    cursor: pointer;
}
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 11px 19px;
    border: 1px solid var(--accent);
    color: var(--text);
    background: transparent;
    cursor: pointer;
}
.btn.primary { background: var(--accent); color: #111; font-weight: 600; }
.btn.secondary { background: transparent; }
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.gallery-item img { border-radius: 16px; height: 220px; width: 100%; object-fit: cover; border: 1px solid var(--border); }
.faq-list details { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; padding: 10px 14px; background: rgba(20,20,23,.75); }
.faq-list summary { cursor: pointer; color: var(--accent); }
.partner-slider {
    position: relative;
    overflow: hidden;
    margin: 0 0 24px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    mask-image: linear-gradient(to right, transparent, black 9%, black 91%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 9%, black 91%, transparent);
}
.partner-slider-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: partner-slide 30s linear infinite;
}
.partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    min-width: 170px;
    height: 80px;
    border: 1px solid rgba(214, 179, 94, 0.24);
    border-radius: 14px;
    background: rgba(15, 15, 18, 0.82);
    padding: 12px;
}
.partner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) contrast(1.08);
    opacity: 0.86;
    transition: filter .24s ease, opacity .24s ease;
}
.partner-slide a:hover img,
.partner-slide img:hover {
    filter: grayscale(0) contrast(1);
    opacity: 1;
}
.contact-form { display: grid; gap: 12px; max-width: 900px; }
.contact-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-form label { display: grid; gap: 8px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #101114;
    color: var(--text);
    padding: 11px 12px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-products-picker {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(20, 20, 23, 0.75);
    overflow: hidden;
}
.contact-products-picker summary {
    cursor: pointer;
    list-style: none;
    padding: 12px 14px;
    font-weight: 600;
    color: var(--accent);
}
.contact-products-picker summary::-webkit-details-marker { display: none; }
.contact-products-list {
    display: grid;
    gap: 10px;
    padding: 0 14px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-product-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(214, 179, 94, 0.28);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(12, 12, 14, 0.72);
}
.contact-product-option span small {
    color: var(--muted);
    font-size: 0.8em;
}
.contact-product-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}
.reviews-embed {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    background: rgba(20, 20, 23, 0.76);
}
.site-footer {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    background: rgba(9, 9, 10, 0.75);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
}
.footer-inner p {
    margin: 0;
    color: var(--muted);
}
.footer-inner nav {
    display: flex;
    gap: 14px;
}
.footer-inner a {
    color: var(--text);
    text-decoration: none;
}
.footer-inner a:hover {
    color: var(--accent);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner {
    position: fixed;
    z-index: 300;
    left: 16px;
    right: 16px;
    bottom: 16px;
}
.cookie-banner-card {
    width: min(860px, 100%);
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(14, 14, 17, 0.95);
    padding: 14px;
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.45);
}
.cookie-banner-card p {
    margin: 0;
}
.cookie-banner-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.form-note { color: var(--muted); font-size: .9rem; }
@media (max-width: 860px) {
    .nav-wrap {
        flex-direction: row;
        align-items: center;
        min-height: 72px;
        padding: 10px 0;
        position: relative;
        justify-content: space-between;
    }
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        margin-left: auto;
        position: relative;
        opacity: 1;
        visibility: visible;
        flex: 0 0 auto;
        z-index: 120;
    }
    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .22s ease, transform .22s ease;
    }
    .site-header.nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-list {
        display: grid;
        gap: 4px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: rgba(14, 14, 16, 0.97);
        padding: 8px;
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
    }
    .nav-item a {
        display: block;
        padding: 10px 12px;
        border-radius: 9px;
    }
    .nav-item a:hover,
    .nav-item a.active {
        background: rgba(214, 179, 94, 0.14);
    }
    .sub-menu {
        display: block;
        position: static;
        margin: 2px 0 0;
        min-width: 0;
        border: 0;
        background: transparent;
        padding: 0 0 0 10px;
    }
    .sub-menu li a {
        display: block;
        padding: 8px 10px;
        color: var(--muted);
    }
    .site-header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .site-header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .site-header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .section-hero .hero-media img { height: 76vh; }
    .section-hero .container {
        width: min(1280px, 92%);
        max-width: min(1280px, 92%);
        margin: 0 auto;
    }
    .section-hero .hero-stage,
    .section-hero .hero-media,
    .section-hero .hero-media img {
        width: 100%;
    }
    .section-hero .hero-stage {
        border-radius: 18px;
    }
    .section-hero .hero-overlay { padding: 16px; }
    .section-hero .hero-content { width: 100%; }
    .section-hero .hero-brand-center {
        width: clamp(280px, 80vw, 440px);
        top: 50%;
    }
    .partner-slide {
        width: 138px;
        min-width: 138px;
        height: 70px;
    }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-products-list { grid-template-columns: 1fr; }
    .product-modal-layout {
        grid-template-columns: 1fr;
    }
    .product-modal-media img {
        max-height: 220px;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }
    .product-keyword {
        font-size: 0.9rem;
        padding: 9px 14px;
    }
    .product-orbit .product-keyword:nth-of-type(1) {
        transform: translate(-18%, -154%);
    }
    .product-orbit .product-keyword:nth-of-type(2) {
        transform: translate(18%, -124%);
    }
    .product-orbit .product-keyword:nth-of-type(3) {
        transform: translate(-20%, -32%);
    }
    .product-orbit .product-keyword:nth-of-type(4) {
        transform: translate(20%, -2%);
    }
    .product-orbit .product-keyword:nth-of-type(5) {
        transform: translate(-16%, 88%);
    }
}

@media (max-width: 520px) {
    .nav-toggle {
        display: inline-flex !important;
        width: 46px;
        height: 46px;
        padding: 10px 8px;
        z-index: 160;
    }
    .nav-toggle span {
        height: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-hero .hero-brand-center {
        backdrop-filter: none;
    }
    .partner-slider-track {
        animation: none;
    }
    .reveal-pop {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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