*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #050507;
    --dark: #0a0a0f;
    --panel: #0e0e15;
    --border: rgba(255, 255, 255, 0.07);
    --grey: #2a2a35;
    --mid: #5a5a72;
    --silver: #9090a8;
    --light: #cccce0;
    --white: #eeeef8;
    --pure: #fff;
    --accent: #e8e200;
    --accent2: #a0f0ff;
    --accent3: #c084fc;
    --glass: rgba(255, 255, 255, 0.04);
    --glass2: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Barlow", sans-serif;
    overflow-x: hidden;
    cursor: none;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent), var(--accent2));
}

#cur {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

#curl {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.35s, height 0.35s, border-color 0.35s, background 0.35s;
}

body.hov #curl {
    width: 54px;
    height: 54px;
    border-color: var(--accent);
    background: rgba(232, 226, 0, 0.06);
}

[data-lang="fr"] .en,
[data-lang="fr"] .kr {
    display: none;
}

[data-lang="en"] .fr,
[data-lang="en"] .kr {
    display: none;
}

[data-lang="kr"] .fr,
[data-lang="kr"] .en {
    display: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.025;
    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.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    top: -100px;
    right: -100px;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent2), transparent 70%);
    bottom: 10%;
    left: -80px;
    animation-delay: -5s;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent3), transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: -9s;
    opacity: 0.1;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(40px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.liquid-blob {
    position: absolute;
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    filter: blur(2px);
    animation: liquidMorph 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.07;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes liquidMorph {
    0%,
    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 60% 30% 40%/40% 40% 60% 50%;
    }
    75% {
        border-radius: 40% 60% 50% 40%/60% 30% 60% 40%;
    }
}


/* ── NAV ── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 70px;
    padding: 0 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: 100%;
}

.logo-wrapper {
    height: 45px;
    display: flex;
    align-items: center;
}

.logo-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.25s;
    cursor: none;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    gap: 3px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--mid);
    padding: 4px 9px;
    font-family: "Barlow", sans-serif;
    font-size: 0.57rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.25s;
    border-radius: 2px;
}

.lang-btn.active,
.lang-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(232, 226, 0, 0.06);
}

.nav-cta {
    background: var(--accent);
    color: var(--black);
    border: none;
    padding: 9px 20px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.nav-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.nav-cta:hover::after {
    transform: translateX(100%);
}

.nav-cta:hover {
    background: #fff;
    transform: translateY(-1px);
}


/* ── HERO ── */

.hero {
    min-height: 100vh;
    padding-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    position: relative;
    z-index: 2;
}

.hero-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    animation: slideUp 0.7s 0.2s forwards;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-kicker .k-line {
    width: 24px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.hero-h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(62px, 8vw, 114px);
    line-height: 0.87;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: slideUp 0.8s 0.38s forwards;
}

.hero-h1 .stroke {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
    color: transparent;
    display: block;
}

.hero-tagline {
    margin-top: 28px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    opacity: 0;
    animation: slideUp 0.7s 0.56s forwards;
}

.hero-tagline b {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(232, 226, 0, 0.4);
}

.hero-desc {
    margin-top: 18px;
    max-width: 360px;
    font-size: 0.87rem;
    line-height: 1.85;
    font-weight: 300;
    color: var(--mid);
    opacity: 0;
    animation: slideUp 0.7s 0.7s forwards;
}

.hero-btns {
    margin-top: 38px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.7s 0.84s forwards;
}

.btn-prim {
    background: var(--accent);
    color: var(--black);
    border: none;
    padding: 13px 28px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(232, 226, 0, 0.2);
}

.btn-prim::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-prim:hover::after {
    transform: translateX(100%);
}

.btn-prim:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 226, 0, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 13px 28px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    border-color: var(--accent2);
    color: var(--accent2);
    box-shadow: 0 0 20px rgba(160, 240, 255, 0.1);
}

.hero-numbers {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 36px;
    opacity: 0;
    animation: slideUp 0.7s 1s forwards;
}

.hnum-val {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--white), var(--silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hnum-lbl {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 5px;
}


/* ── HERO RIGHT — IMAGE ── */

.hero-right {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-img-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0;
    animation: heroImgIn 1s 0.5s forwards;
}


/* Fade left & bottom edges so image blends into dark bg */

.hero-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, var(--black) 0%, rgba(5, 5, 7, 0.3) 18%, transparent 38%), linear-gradient( to top, var(--black) 0%, rgba(5, 5, 7, 0.2) 12%, transparent 30%), linear-gradient(to bottom, var(--black) 0%, transparent 8%);
    pointer-events: none;
}

@keyframes heroImgIn {
    from {
        opacity: 0;
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ── MARQUEE ── */

.mq-wrap {
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.mq-wrap.accent-bg {
    background: var(--accent);
}

.mq-wrap.dark-bg {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mq-track {
    display: flex;
    width: max-content;
    animation: mq 26s linear infinite;
}

.mq-track.rev {
    animation-direction: reverse;
    animation-duration: 32s;
}

.mq-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 22px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    white-space: nowrap;
}

.mq-wrap.accent-bg .mq-item {
    color: var(--black);
}

.mq-wrap.dark-bg .mq-item {
    color: rgba(255, 255, 255, 0.45);
}

.mq-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mq-wrap.accent-bg .mq-sep {
    background: var(--black);
}

.mq-wrap.dark-bg .mq-sep {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes mq {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ── SECTIONS ── */

.sec {
    padding: 100px 64px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.56rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.eyebrow .ey-line {
    width: 18px;
    height: 1px;
    background: var(--accent);
}

.sec-h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 5vw, 70px);
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 0.02em;
}

.sec-h2 .stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    color: transparent;
}


/* ── ABOUT ── */

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-body {
    margin-top: 20px;
    font-size: 0.88rem;
    line-height: 1.88;
    font-weight: 300;
    color: var(--silver);
}

.about-body p+p {
    margin-top: 14px;
}

.sfsh {
    margin-top: 32px;
    padding: 22px 26px 22px 30px;
    border-left: 3px solid var(--accent);
}

.sfsh-text {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.sfsh-sub {
    margin-top: 6px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    position: relative;
    z-index: 1;
}

.about-facts {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.fact-row:first-child {
    border-top: 1px solid var(--border);
}

.fact-k {
    font-size: 0.56rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mid);
}

.fact-v {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--light);
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.av-cell {
    border-radius: 14px;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: none;
}

.av-cell:first-child {
    grid-column: span 2;
    aspect-ratio: 16/7;
}

.av-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.av-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.av-cell:hover img {
    transform: scale(1.05);
}

.av-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(5, 5, 7, 0.85) 0%, rgba(5, 5, 7, 0.2) 40%, transparent 70%);
}

.av-name {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 0.52rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--silver);
    z-index: 1;
}


/* ── LOOKBOOK ── */

.lb-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
}

.lb-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
}

.lb-card {
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: transform 0.4s, box-shadow 0.4s;
}

.lb-card:first-child {
    grid-row: span 2;
}

.lb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}


/* Real photo background */

.lb-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s;
}

.lb-card:hover .lb-card-img {
    transform: scale(1.06);
}

.lb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient( to top, rgba(5, 5, 7, 0.97) 0%, rgba(5, 5, 7, 0.5) 40%, transparent 80%);
}

.lb-card:first-child .lb-inner {
    min-height: 500px;
}

.lb-inner:not(:first-child .lb-inner) {
    min-height: 220px;
}

.lb-tag {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 4px;
}

.lb-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lb-price {
    margin-top: 5px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.new-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: linear-gradient(135deg, var(--accent), #c8c200);
    color: var(--black);
    padding: 4px 13px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    border-radius: 2px;
}


/* ── PRODUCT CARDS ── */

.filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.fbtn {
    background: none;
    border: 1px solid var(--border);
    color: var(--mid);
    padding: 7px 17px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.25s;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.fbtn.on,
.fbtn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(232, 226, 0, 0.06);
    box-shadow: 0 0 18px rgba(232, 226, 0, 0.1);
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.prod-card {
    border-radius: 22px;
    overflow: hidden;
    cursor: none;
    position: relative;
    aspect-ratio: 3/4.2;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0f;
}

.prod-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);
}


/* Real photo in card */

.prod-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.prod-card:hover .prod-img img {
    transform: scale(1.07) translateY(-8px);
}

.prod-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to top, rgba(5, 5, 7, 0.55) 0%, rgba(5, 5, 7, 0.1) 40%, transparent 65%);
    pointer-events: none;
}


/* frosted info panel */

.prod-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 14px 16px 16px;
    background: rgba(14, 14, 21, 0.78);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.prod-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.prod-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.prod-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.prod-badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prod-badge i {
    font-size: 0.55rem;
    color: var(--black);
}

.prod-desc {
    font-size: 0.68rem;
    color: var(--silver);
    font-weight: 300;
    margin-top: 3px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.prod-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}

.prod-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: var(--silver);
}

.prod-stat i {
    font-size: 0.72rem;
    color: var(--mid);
}

.prod-dm {
    background: rgba(255, 255, 255, 0.92);
    color: var(--black);
    border: none;
    padding: 6px 14px;
    border-radius: 100px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s;
    white-space: nowrap;
}

.prod-dm:hover {
    background: var(--accent);
    transform: scale(1.04);
}


/* coming soon */

.prod-card.coming {
    background: rgba(255, 255, 255, 0.03);
}

.prod-card.coming .prod-img {
    flex-direction: column;
    gap: 10px;
}

.prod-card.coming .prod-img i {
    font-size: 2rem;
    color: var(--mid);
}


/* ── CONTACT ── */

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.ci-list {
    display: flex;
    flex-direction: column;
}

.ci-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.ci-row:first-child {
    border-top: 1px solid var(--border);
}

.ci-ico {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    border: 1px solid rgba(232, 226, 0, 0.15);
    background: rgba(232, 226, 0, 0.05);
}

.ci-lbl {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 4px;
}

.ci-val {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--light);
}

.socials {
    margin-top: 26px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.soc-pill {
    padding: 8px 15px;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    cursor: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.soc-pill:hover {
    border-color: var(--accent2);
    color: var(--accent2);
    box-shadow: 0 0 16px rgba(160, 240, 255, 0.1);
}

.dm-cta {
    margin-top: 26px;
    padding: 22px 26px;
    border-radius: 14px;
}

.dm-cta-h {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.dm-cta-p {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.cf {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cf-f {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf-lbl {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mid);
}

.cf-in,
.cf-ta {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 11px 14px;
    font-family: "Barlow", sans-serif;
    font-size: 0.86rem;
    font-weight: 300;
    outline: none;
    cursor: none;
    transition: all 0.25s;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.cf-in::placeholder,
.cf-ta::placeholder {
    color: var(--grey);
}

.cf-in:focus,
.cf-ta:focus {
    border-color: rgba(232, 226, 0, 0.4);
    background: rgba(232, 226, 0, 0.03);
    box-shadow: 0 0 20px rgba(232, 226, 0, 0.08);
}

.cf-ta {
    resize: vertical;
    min-height: 110px;
}


/* ── FOOTER ── */

.ft-bg {
    overflow: hidden;
    padding: 60px 64px 0;
    position: relative;
    z-index: 1;
}

.ft-bg-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(70px, 16vw, 210px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    letter-spacing: 0.04em;
    line-height: 0.85;
    display: block;
    user-select: none;
}

footer {
    position: relative;
    z-index: 1;
    background: rgba(5, 5, 7, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 36px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.ft-logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.22em;
    color: var(--mid);
}

.ft-tag {
    font-family: "Barlow Condensed", sans-serif;
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--grey);
}

.ft-copy {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey);
}


/* ── ANIMATIONS ── */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rev {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rev.in {
    opacity: 1;
    transform: translateY(0);
}

.rev-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rev-left.in {
    opacity: 1;
    transform: translateX(0);
}

.stagger>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.in>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.05s;
}

.stagger.in>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.13s;
}

.stagger.in>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.21s;
}

.stagger.in>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.29s;
}

.stagger.in>*:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.37s;
}

.stagger.in>*:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 0.45s;
}

.stagger.in>*:nth-child(7) {
    opacity: 1;
    transform: none;
    transition-delay: 0.53s;
}

.stagger.in>*:nth-child(8) {
    opacity: 1;
    transform: none;
    transition-delay: 0.61s;
}


/* ── RESPONSIVE ── */

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }
    nav {
        padding: 0 22px;
    }
}

@media (max-width: 720px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-right {
        display: block;
        min-height: 260px;
        order: -1;
        /* image above text on mobile */
        padding-top: 0;
    }
    .hero-img-wrap::after {
        background: linear-gradient( to bottom, var(--black) 0%, transparent 12%, transparent 75%, var(--black) 100%), linear-gradient( to right, var(--black) 0%, transparent 10%, transparent 90%, var(--black) 100%);
    }
    .hero-left {
        padding: 40px 24px 60px;
    }
    .sec {
        padding: 68px 24px;
    }
    .about-wrap,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lb-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .prod-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lb-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lb-card:first-child {
        grid-column: span 2;
    }
    footer,
    .ft-bg {
        padding: 28px 24px 0;
    }
    footer {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
    }
    .cf-row {
        grid-template-columns: 1fr;
    }
    .about-visual {
        grid-template-columns: 1fr 1fr;
    }
    .av-cell:first-child {
        grid-column: span 2;
        aspect-ratio: 16/8;
    }
}

@media (max-width: 480px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }
    .hero-h1 {
        font-size: clamp(52px, 14vw, 80px);
    }
}