/* ═══════════════════════════════════════════════════
   CONTINENTAL COMMODITIES — 2026 Élégant
   Inspiré groupenetter.com · Casual Chic
   ═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --dark-4: #2e2e2e;
    --gray-1: #444;
    --gray-2: #666;
    --gray-3: #888;
    --gray-4: #aaa;
    --gray-5: #ccc;
    --gray-6: #e2e2e2;
    --gray-7: #f0f0f0;
    --white: #ffffff;
    --cream: #faf9f7;
    --warm: #f5f3ef;

    --gold: #c9a84c;
    --gold-light: #ddc06e;
    --gold-dim: rgba(201,168,76,0.12);

    --ff: 'Instrument Sans', system-ui, -apple-system, sans-serif;
    --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --max: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --r: 8px;
    --r-lg: 16px;
    --r-xl: 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--ff); font-size: 1rem; line-height: 1.65; color: var(--dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ── */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 860px; }
.wrap-wide { max-width: 1440px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.15; color: var(--black); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.125rem, 1.8vw, 1.375rem); }
h4 { font-family: var(--ff); font-weight: 700; font-size: 1rem; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--ff); font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--gold);
}

.lead { font-size: 1.125rem; line-height: 1.75; color: var(--gray-2); }
.muted { color: var(--gray-3); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 600;
    letter-spacing: 0.02em; border-radius: 100px;
    transition: all 0.45s var(--ease);
    position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--gray-6); }
.btn-outline:hover { border-color: var(--black); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-lg { padding: 1.0625rem 2.5rem; font-size: 0.9375rem; }

/* ═══════════════════════════
   HEADER
   ═══════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    transition: all 0.5s var(--ease);
}
.header.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 76px; padding: 0 var(--gutter);
}
.logo {
    display: flex; align-items: baseline; gap: 0.625rem;
    text-decoration: none; transition: opacity 0.3s ease;
}
.logo:hover { opacity: 0.85; }
.logo-main {
    font-family: var(--ff-display); font-size: 1.375rem; font-weight: 700;
    color: var(--white); letter-spacing: 0.01em; line-height: 1;
}
.logo-dot {
    display: inline-block; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    margin-left: 2px; vertical-align: baseline;
    position: relative; top: 0px;
}
.logo-sub {
    font-family: var(--ff); font-size: 0.5625rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase;
    line-height: 1; opacity: 0.8;
}
.nav { display: flex; align-items: center; gap: 0.125rem; }
.nav a {
    padding: 0.4375rem 1rem; font-size: 0.8125rem; font-weight: 500;
    color: rgba(255,255,255,0.55); border-radius: 100px;
    transition: all 0.3s ease; letter-spacing: 0.01em;
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.burger { display: none; width: 28px; height: 28px; position: relative; }
.burger span {
    display: block; width: 20px; height: 1.5px; background: var(--white);
    position: absolute; left: 4px; transition: all 0.35s var(--ease);
}
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 14px; width: 14px; }
.burger span:nth-child(3) { top: 19px; }
.burger.open span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    background: var(--black); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 65% 45%, rgba(201,168,76,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 15% 85%, rgba(30,30,60,0.4) 0%, transparent 50%);
}
.hero-line {
    position: absolute; top: 0; bottom: 0; width: 1px;
    background: rgba(255,255,255,0.04);
}
.hero-line:nth-child(1) { left: 25%; }
.hero-line:nth-child(2) { left: 50%; }
.hero-line:nth-child(3) { left: 75%; }

.hero .wrap { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 4rem; }
.hero-content { max-width: 680px; }
.hero-content .eyebrow { margin-bottom: 2rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content .lead { color: rgba(255,255,255,0.5); margin-bottom: 3rem; max-width: 500px; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.hero-scroll span { font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: pulse-line 2.5s ease-in-out infinite; }
@keyframes pulse-line { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ═══════════════════════════
   PAGE HERO (pages intérieures)
   ═══════════════════════════ */
.page-hero {
    background: var(--black); padding: 10rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero .hero-line { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.04); }
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.45); max-width: 540px; }
.page-hero .wrap { position: relative; z-index: 2; }

/* ═══════════════════════════
   SECTIONS
   ═══════════════════════════ */
.section { padding: clamp(5rem, 10vw, 8rem) 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-warm { background: var(--warm); }
.section-cream { background: var(--cream); }

.section-top { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-top-flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.section-top .eyebrow { margin-bottom: 1rem; }
.section-top h2 { margin-bottom: 0; }
.section-top p { color: var(--gray-3); max-width: 480px; margin-top: 1rem; }
.section-top-center { text-align: center; }
.section-top-center .eyebrow { justify-content: center; }
.section-top-center p { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════
   MARQUEE
   ═══════════════════════════ */
.marquee { padding: 1rem 0; background: var(--dark); overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; animation: scroll-marquee 40s linear infinite; }
.marquee-inner span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.15); padding: 0 1.75rem; }
.marquee-inner .sep { color: var(--gold); opacity: 0.4; padding: 0; }
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════
   ABOUT (homepage)
   ═══════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.about-text .eyebrow { margin-bottom: 1.25rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text .lead { margin-bottom: 2rem; }
.about-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.about-pill {
    padding: 0.5rem 1rem; background: var(--warm); border: 1px solid var(--gray-6);
    border-radius: 100px; font-size: 0.8125rem; font-weight: 600; color: var(--gray-1);
    transition: all 0.3s ease;
}
.about-pill:hover { border-color: var(--gold); color: var(--gold); }
.about-img {
    position: relative; border-radius: var(--r-xl); overflow: hidden;
    aspect-ratio: 4/5; background: var(--warm);
    display: flex; align-items: center; justify-content: center;
}
.about-img-pattern {
    position: absolute; inset: 0; opacity: 0.08;
    background-image: radial-gradient(var(--gray-4) 1px, transparent 1px);
    background-size: 16px 16px;
}

/* ═══════════════════════════
   CATEGORIES GRID
   ═══════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-6); border-radius: var(--r-lg); overflow: hidden; }
.cat-card {
    background: var(--white); padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease); cursor: pointer; position: relative;
    display: flex; flex-direction: column;
}
.cat-card::after {
    content: ''; position: absolute; bottom: 0; left: 2rem; right: 2rem; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.cat-card:hover { background: var(--cream); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-num { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 700; color: var(--gray-7); line-height: 1; margin-bottom: 1.25rem; transition: color 0.4s ease; }
.cat-card:hover .cat-num { color: var(--gold-dim); }
.cat-card h3 { margin-bottom: 0.5rem; }
.cat-card p { font-size: 0.875rem; color: var(--gray-3); line-height: 1.6; flex: 1; }
.cat-brands { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 1rem; }
.cat-brands span {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 0.25rem 0.625rem; background: var(--warm); border-radius: 100px; color: var(--gray-3);
    transition: all 0.3s ease;
}
.cat-card:hover .cat-brands span { background: var(--gold-dim); color: var(--gold); }
.cat-arrow {
    display: flex; align-items: center; gap: 0.375rem; margin-top: 1.25rem;
    font-size: 0.8125rem; font-weight: 600; color: var(--gold);
    opacity: 0; transform: translateY(8px);
    transition: all 0.4s var(--ease);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════
   STATS
   ═══════════════════════════ */
.stats { padding: clamp(4rem, 8vw, 5.5rem) 0; background: var(--black); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat-num { font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-num .suf { font-size: 0.55em; color: var(--gold-light); }
.stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.35); font-weight: 500; }
.stat-line { width: 20px; height: 1px; background: rgba(255,255,255,0.08); margin: 0.75rem auto 0; }

/* ═══════════════════════════
   BRANDS (carousel pills)
   ═══════════════════════════ */
.brands-scroll-wrap { position: relative; }
.brands-scroll {
    display: flex; gap: 0.625rem; overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; padding: 0.5rem 0;
    mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.brands-scroll::-webkit-scrollbar { display: none; }
.brand-pill {
    flex: 0 0 auto; padding: 0.75rem 1.5rem;
    background: var(--white); border: 1px solid var(--gray-6); border-radius: 100px;
    font-size: 0.8125rem; font-weight: 600; color: var(--gray-2);
    white-space: nowrap; transition: all 0.35s var(--ease); cursor: default;
}
.brand-pill:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.brands-nav { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.brands-nav button {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--gray-6); background: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; color: var(--dark);
}
.brands-nav button:hover { background: var(--black); border-color: var(--black); color: var(--white); }

/* ═══════════════════════════
   NEWS CARDS
   ═══════════════════════════ */
.news-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1.25rem; }
.news-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--gray-7); transition: all 0.4s var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); border-color: transparent; }
.news-card:first-child { grid-row: span 2; }
.news-card:first-child .news-img { height: 100%; min-height: 280px; }
.news-card:first-child .news-body {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
    background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 100%);
}
.news-card:first-child { position: relative; }
.news-card:first-child .news-body * { color: var(--white) !important; }
.news-card:first-child .news-tag { background: var(--gold); color: var(--black) !important; }
.news-img {
    aspect-ratio: 16/10; background: linear-gradient(135deg, var(--gray-7), var(--warm));
    display: flex; align-items: center; justify-content: center;
}
.news-img svg { opacity: 0.12; }
.news-body { padding: 1.5rem; }
.news-tag {
    display: inline-block; padding: 0.25rem 0.625rem; margin-bottom: 0.75rem;
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--gray-7); border-radius: 100px; color: var(--gray-3);
}
.news-body h3 { margin-bottom: 0.5rem; }
.news-body h3 a { transition: color 0.3s ease; }
.news-body h3 a:hover { color: var(--gold); }
.news-body p { font-size: 0.875rem; color: var(--gray-3); line-height: 1.65; }
.news-date { display: block; margin-top: 0.75rem; font-size: 0.75rem; color: var(--gray-4); font-weight: 500; }

/* ═══════════════════════════
   CTA BLOCK
   ═══════════════════════════ */
.cta-block {
    background: var(--black); border-radius: var(--r-xl); padding: clamp(3.5rem, 7vw, 5.5rem);
    text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
    content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 60%);
}
.cta-block > * { position: relative; z-index: 2; }
.cta-block .eyebrow { justify-content: center; margin-bottom: 1.5rem; }
.cta-block h2 { color: var(--white); margin-bottom: 1rem; }
.cta-block p { color: rgba(255,255,255,0.45); max-width: 460px; margin: 0 auto 2.5rem; }

/* ═══════════════════════════
   CONTACT
   ═══════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.5rem; }
.contact-info {
    background: var(--black); color: var(--white); border-radius: var(--r-xl); padding: 2.5rem;
}
.contact-info h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 2rem; }
.c-item { display: flex; gap: 1rem; padding: 1.125rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.c-item:last-child { border-bottom: none; }
.c-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border-radius: 12px; color: var(--gold);
}
.c-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.25rem; }
.c-value { font-size: 0.9375rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.c-value a { color: rgba(255,255,255,0.7); transition: color 0.3s ease; }
.c-value a:hover { color: var(--gold); }

.contact-form {
    background: var(--cream); border: 1px solid var(--gray-7); border-radius: var(--r-xl); padding: 2.5rem;
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1.75rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 1rem; }
.f-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--dark); margin-bottom: 0.375rem; }
.f-group input, .f-group select, .f-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-6);
    border-radius: var(--r); background: var(--white); font-family: var(--ff);
    font-size: 0.9375rem; color: var(--dark); transition: all 0.3s ease;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim);
}
.f-group textarea { resize: vertical; min-height: 120px; }

/* ═══════════════════════════
   PRODUCT PAGE — Detailed grid
   ═══════════════════════════ */
.product-section { padding: clamp(4rem, 8vw, 6rem) 0; border-bottom: 1px solid var(--gray-7); }
.product-section:last-child { border-bottom: none; }
.product-section:nth-child(even) { background: var(--cream); }
.product-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.product-header-num {
    font-family: var(--ff-display); font-size: 3rem; font-weight: 700;
    color: var(--gold); line-height: 1; opacity: 0.3;
}
.product-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.25rem; }
.product-header p { font-size: 0.9375rem; color: var(--gray-3); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.product-card {
    background: var(--white); border: 1px solid var(--gray-7); border-radius: var(--r-lg);
    overflow: hidden; transition: all 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); border-color: transparent; }
.product-card-img {
    aspect-ratio: 4/3; background: linear-gradient(135deg, var(--warm), var(--gray-7));
    display: flex; align-items: center; justify-content: center; position: relative;
}
.product-card-img svg { opacity: 0.1; }
.product-card-brand {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.625rem; background: var(--gold); border-radius: 100px;
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--black);
}
.product-card-body { padding: 1.25rem; }
.product-card-body h4 { margin-bottom: 0.25rem; }
.product-card-body p { font-size: 0.8125rem; color: var(--gray-3); }

/* ═══════════════════════════
   BRANDS PAGE — Detailed
   ═══════════════════════════ */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.brand-card {
    background: var(--white); border: 1px solid var(--gray-7); border-radius: var(--r-lg);
    padding: 2rem; transition: all 0.4s var(--ease);
}
.brand-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); border-color: transparent; }
.brand-card-logo {
    width: 64px; height: 64px; background: var(--gold-dim); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
    font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--gold);
}
.brand-card h3 { margin-bottom: 0.375rem; }
.brand-card .brand-cat {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem; display: block;
}
.brand-card p { font-size: 0.875rem; color: var(--gray-3); line-height: 1.6; }

/* ═══════════════════════════
   ARTICLES PAGE
   ═══════════════════════════ */
.article-card {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; border-radius: var(--r-lg);
    overflow: hidden; background: var(--white); border: 1px solid var(--gray-7);
    transition: all 0.4s var(--ease); margin-bottom: 1.25rem;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); border-color: transparent; }
.article-card-img {
    background: linear-gradient(135deg, var(--warm), var(--gray-7));
    display: flex; align-items: center; justify-content: center; min-height: 200px;
}
.article-card-img svg { opacity: 0.1; }
.article-card-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.article-card-body .news-tag { margin-bottom: 0.75rem; }
.article-card-body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.article-card-body p { font-size: 0.9375rem; color: var(--gray-3); line-height: 1.7; margin-bottom: 1rem; }
.article-card-body .read-more { font-size: 0.8125rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 0.375rem; transition: gap 0.3s ease; }
.article-card-body .read-more:hover { gap: 0.625rem; }

/* ═══════════════════════════
   VIDEO GRID
   ═══════════════════════════ */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 1.5rem; }
.video-card {
    background: var(--white); border: 1px solid var(--gray-7); border-radius: var(--r-lg);
    overflow: hidden; transition: all 0.4s var(--ease);
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.video-thumb {
    aspect-ratio: 16/9; background: var(--dark); display: flex; align-items: center; justify-content: center;
    position: relative; cursor: pointer;
}
.video-play {
    width: 64px; height: 64px; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s var(--ease);
}
.video-thumb:hover .video-play { transform: scale(1.1); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.video-card-body { padding: 1.25rem; }
.video-card-body h3 { font-size: 1rem; }
.video-card-body p { font-size: 0.8125rem; color: var(--gray-3); margin-top: 0.25rem; }

/* ═══════════════════════════
   PAGE CONTENT (legal, etc.)
   ═══════════════════════════ */
.wrap-narrow h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
.wrap-narrow h2:first-child { margin-top: 0; }
.wrap-narrow h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1rem; font-family: var(--ff); color: var(--gray-1); }
.wrap-narrow p { color: var(--gray-2); line-height: 1.8; margin-bottom: 0.75rem; }
.wrap-narrow p a { color: var(--gold); transition: color 0.3s ease; }
.wrap-narrow p a:hover { color: var(--gold-light); }
.wrap-narrow > div { margin-bottom: 2rem; }
.wrap-narrow > div:last-child { margin-bottom: 0; }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.footer { background: var(--black); color: rgba(255,255,255,0.45); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand { margin-bottom: 1rem; display: flex; align-items: baseline; gap: 0.5rem; }
.footer-brand .logo-main { font-size: 1.125rem; }
.footer-brand .logo-dot { width: 5px; height: 5px; }
.footer-brand .logo-sub { font-size: 0.5rem; }
.footer-desc { font-size: 0.9375rem; line-height: 1.7; }
.footer h4 { font-family: var(--ff); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9375rem; color: rgba(255,255,255,0.45); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-c { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.625rem; font-size: 0.9375rem; }
.footer-c svg { flex-shrink: 0; color: var(--gold); opacity: 0.5; }
.footer-c a { color: rgba(255,255,255,0.45); transition: color 0.3s ease; }
.footer-c a:hover { color: var(--gold); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; }
.footer-bar a:hover { color: var(--gold); }

/* ═══════════════════════════
   ANIMATIONS
   ═══════════════════════════ */
[data-r] { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
[data-r].v { opacity: 1; transform: translateY(0); }
[data-r="l"] { transform: translateX(-36px) translateY(0); }
[data-r="l"].v { transform: translateX(0); }
[data-r="r"] { transform: translateX(36px) translateY(0); }
[data-r="r"].v { transform: translateX(0); }
[data-r="s"] { transform: scale(0.96); }
[data-r="s"].v { transform: scale(1); }
[data-sg] > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo); }
[data-sg].v > *:nth-child(1) { transition-delay: 0s; }
[data-sg].v > *:nth-child(2) { transition-delay: 0.06s; }
[data-sg].v > *:nth-child(3) { transition-delay: 0.12s; }
[data-sg].v > *:nth-child(4) { transition-delay: 0.18s; }
[data-sg].v > *:nth-child(5) { transition-delay: 0.24s; }
[data-sg].v > *:nth-child(6) { transition-delay: 0.30s; }
[data-sg].v > * { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-img { max-height: 360px; aspect-ratio: 16/9; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card:first-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .article-card { grid-template-columns: 1fr; }
    .article-card-img { min-height: 200px; }
}
@media (max-width: 768px) {
    .burger { display: block; }
    .nav {
        position: fixed; top: 76px; left: 0; width: 100%;
        background: var(--black); flex-direction: column;
        padding: 1rem var(--gutter) 2rem; gap: 0.125rem;
        transform: translateY(-120%); transition: transform 0.5s var(--ease); z-index: 99;
    }
    .nav.open { transform: translateY(0); }
    .nav a { padding: 0.75rem 1rem; font-size: 1rem; border-radius: var(--r); }
    .section-top-flex { flex-direction: column; align-items: flex-start; }
    .cat-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card:first-child { grid-column: auto; grid-row: auto; }
    .news-card:first-child .news-img { height: auto; aspect-ratio: 16/10; min-height: auto; }
    .news-card:first-child .news-body { position: static; background: none; padding: 1.5rem; }
    .news-card:first-child .news-body * { color: inherit !important; }
    .news-card:first-child .news-tag { background: var(--gray-7); color: var(--gray-3) !important; }
    .f-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bar { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-scroll { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; text-align: center; }
    .video-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: 1fr; }
}
