/*
 * ═══════════════════════════════════════════════════════════════════════════════
 *  Biker Blades — Master Stylesheet
 *  Version: 1.0.0
 *  Colors: Dark Brown · Black · Orange · Golden · Red · Dark/Light Grey · White
 * ═══════════════════════════════════════════════════════════════════════════════
 */

/* ─── Google Fonts ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
    /* ── Brand Palette ── */
    --clr-black:        #0A0A0A;
    --clr-dark-brown:   #2C1810;
    --clr-brown:        #3D2314;
    --clr-brown-light:  #5C3520;
    --clr-dark-grey:    #1E1E1E;
    --clr-mid-grey:     #2D2D2D;
    --clr-light-grey:   #B8B8B8;
    --clr-silver:       #E0E0E0;
    --clr-white:        #FFFFFF;
    --clr-orange:       #E8500A;
    --clr-orange-light: #FF6B1A;
    --clr-orange-glow:  rgba(232, 80, 10, 0.35);
    --clr-golden:       #C9952A;
    --clr-gold-light:   #E8B84B;
    --clr-gold-dark:    #A07820;
    --clr-gold-glow:    rgba(201, 149, 42, 0.35);
    --clr-red:          #8B1A1A;
    --clr-red-bright:   #C0392B;
    --clr-red-glow:     rgba(192, 57, 43, 0.35);

    /* ── Typography ── */
    --font-heading:  'Cinzel', 'Georgia', serif;
    --font-sub:      'Oswald', sans-serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ── Spacing ── */
    --spacing-xs:    0.25rem;
    --spacing-sm:    0.5rem;
    --spacing-md:    1rem;
    --spacing-lg:    1.5rem;
    --spacing-xl:    2rem;
    --spacing-2xl:   3rem;
    --spacing-3xl:   4rem;
    --spacing-4xl:   6rem;

    /* ── Border Radius ── */
    --radius-sm:     4px;
    --radius-md:     8px;
    --radius-lg:     16px;
    --radius-xl:     24px;
    --radius-pill:   100px;
    --radius-circle: 50%;

    /* ── Transitions ── */
    --transition-fast:   150ms ease;
    --transition-base:   300ms ease;
    --transition-slow:   500ms ease;
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ── Z-Index Scale ── */
    --z-dropdown:    1000;
    --z-sticky:      1020;
    --z-modal:       1050;
    --z-overlay:     1040;
    --z-tooltip:     1070;
    --z-top:         9999;
}

/* ─── DARK THEME (Default) ───────────────────────────────────────────────── */
[data-theme="dark"],
:root {
    --bg-primary:       #0A0A0A;
    --bg-secondary:     #111111;
    --bg-tertiary:      #1A1A1A;
    --bg-card:          #161616;
    --bg-card-hover:    #1E1E1E;
    --bg-input:         #1A1A1A;
    --bg-glass:         rgba(20, 12, 8, 0.82);
    --bg-glass-light:   rgba(44, 24, 16, 0.55);
    --bg-overlay:       rgba(0, 0, 0, 0.65);
    --bg-hero:          linear-gradient(135deg, #0A0A0A 0%, #1A0E08 40%, #2C1810 100%);
    --bg-nav:           rgba(8, 5, 3, 0.96);
    --bg-mega:          rgba(15, 9, 6, 0.98);
    --bg-footer:        #0D0906;

    --text-primary:     #F0EDE8;
    --text-secondary:   #C8C0B8;
    --text-muted:       #8A8278;
    --text-accent:      #C9952A;
    --text-heading:     #F5F0E8;

    --accent-primary:   #C9952A;
    --accent-light:     #E8B84B;
    --accent-dark:      #A07820;
    --accent-orange:    #E8500A;
    --accent-red:       #C0392B;

    --border-color:     rgba(201, 149, 42, 0.18);
    --border-hover:     rgba(201, 149, 42, 0.45);
    --border-subtle:    rgba(255, 255, 255, 0.08);
    --border-card:      rgba(201, 149, 42, 0.12);

    --shadow-sm:        0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md:        0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg:        0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-gold:      0 0 30px rgba(201, 149, 42, 0.25);
    --shadow-orange:    0 0 30px rgba(232, 80, 10, 0.25);
    --shadow-glow:      0 0 60px rgba(201, 149, 42, 0.15);

    --scrollbar-thumb:  #C9952A;
    --scrollbar-track:  #1A1A1A;

    --theme-icon:       '\f186'; /* moon */
}

/* ─── LIGHT THEME ────────────────────────────────────────────────────────── */
[data-theme="light"] {
    --bg-primary:       #F7F2EC;
    --bg-secondary:     #EDE6DA;
    --bg-tertiary:      #E3D8C8;
    --bg-card:          #FFFFFF;
    --bg-card-hover:    #FDF8F2;
    --bg-input:         #FFFFFF;
    --bg-glass:         rgba(255, 248, 240, 0.88);
    --bg-glass-light:   rgba(255, 245, 230, 0.70);
    --bg-overlay:       rgba(30, 15, 8, 0.55);
    --bg-hero:          linear-gradient(135deg, #2C1810 0%, #3D2314 40%, #5C3520 100%);
    --bg-nav:           rgba(247, 242, 236, 0.97);
    --bg-mega:          rgba(253, 248, 242, 0.99);
    --bg-footer:        #1A0E08;

    --text-primary:     #1A1210;
    --text-secondary:   #3D2A20;
    --text-muted:       #7A6558;
    --text-accent:      #A07820;
    --text-heading:     #0D0805;

    --accent-primary:   #A07820;
    --accent-light:     #C9952A;
    --accent-dark:      #7A5C18;
    --accent-orange:    #C94000;
    --accent-red:       #8B1A1A;

    --border-color:     rgba(160, 120, 32, 0.25);
    --border-hover:     rgba(160, 120, 32, 0.55);
    --border-subtle:    rgba(44, 24, 16, 0.10);
    --border-card:      rgba(160, 120, 32, 0.18);

    --shadow-sm:        0 2px 8px rgba(44, 24, 16, 0.12);
    --shadow-md:        0 4px 20px rgba(44, 24, 16, 0.15);
    --shadow-lg:        0 8px 40px rgba(44, 24, 16, 0.20);
    --shadow-gold:      0 0 30px rgba(160, 120, 32, 0.20);
    --shadow-orange:    0 0 30px rgba(201, 64, 0, 0.20);
    --shadow-glow:      0 0 60px rgba(160, 120, 32, 0.12);

    --scrollbar-thumb:  #A07820;
    --scrollbar-track:  #E3D8C8;

    --theme-icon:       '\f185'; /* sun */
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html.lenis, html.lenis body {
    height: auto;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* Scrollbar Webkit */
::-webkit-scrollbar             { width: 6px; }
::-webkit-scrollbar-track       { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb       { background: var(--scrollbar-thumb); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

/* Selection */
::selection       { background: var(--accent-primary); color: #fff; }
::-moz-selection  { background: var(--accent-primary); color: #fff; }

/* Images */
img { max-width: 100%; height: auto; display: block; }

/* Links */
a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--accent-light); }

/* ═══════════════════════════════════════════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-heading);
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ─── Section Labels ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-primary);
    padding: 6px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    background: rgba(201, 149, 42, 0.08);
    margin-bottom: 1rem;
}
.section-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent-primary);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--accent-primary);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─── Gold Divider ── */
.gold-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 1.5rem 0;
}
.gold-divider::before,
.gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}
.gold-divider span {
    font-size: 1.2rem;
    color: var(--accent-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. BUTTONS
   ═══════════════════════════════════════════════════════════════════════════════ */

.btn {
    font-family: var(--font-sub);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

/* Ripple effect */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}
.btn:active::after {
    transform: scale(2.5);
    opacity: 1;
    transition: 0s;
}

/* ─── Primary Button (Gold) ── */
.btn-gold {
    background: linear-gradient(135deg, var(--clr-gold-dark) 0%, var(--clr-golden) 50%, var(--clr-gold-light) 100%);
    color: #0A0A0A;
    padding: 14px 32px;
    font-size: 0.88rem;
    box-shadow: 0 4px 20px rgba(201, 149, 42, 0.4);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--clr-golden) 0%, var(--clr-gold-light) 50%, #F5CC6A 100%);
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(201, 149, 42, 0.55);
}
.btn-gold:active { transform: translateY(0); }

/* ─── Secondary Button (Orange) ── */
.btn-orange {
    background: linear-gradient(135deg, #C94000, var(--clr-orange), var(--clr-orange-light));
    color: #fff;
    padding: 14px 32px;
    font-size: 0.88rem;
    box-shadow: 0 4px 20px rgba(232, 80, 10, 0.4);
}
.btn-orange:hover {
    background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-light), #FF7E35);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(232, 80, 10, 0.55);
}

/* ─── Outline Button ── */
.btn-outline-gold {
    background: transparent;
    color: var(--accent-primary);
    padding: 13px 31px;
    font-size: 0.88rem;
    border: 1.5px solid var(--accent-primary);
}
.btn-outline-gold:hover {
    background: var(--accent-primary);
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ─── Red Danger Button ── */
.btn-red {
    background: linear-gradient(135deg, var(--clr-red), var(--clr-red-bright));
    color: #fff;
    padding: 14px 32px;
    font-size: 0.88rem;
}
.btn-red:hover {
    background: linear-gradient(135deg, var(--clr-red-bright), #E74C3C);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* ─── Ghost ── */
.btn-ghost {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 13px 31px;
    font-size: 0.88rem;
}
.btn-ghost:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ─── Icon Button ── */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. GLASSMORPHISM UTILITIES
   ═══════════════════════════════════════════════════════════════════════════════ */

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}
.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    transform: translateY(-4px);
}

.glass-gold {
    background: linear-gradient(135deg, rgba(201, 149, 42, 0.12) 0%, rgba(201, 149, 42, 0.04) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 149, 42, 0.25);
    border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. NAVIGATION / HEADER
   ═══════════════════════════════════════════════════════════════════════════════ */

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    padding: 0;
}

/* ─── Top Bar ── */
.header-topbar {
    background: var(--clr-dark-brown);
    border-bottom: 1px solid rgba(201, 149, 42, 0.2);
    padding: 6px 0;
    font-size: 0.78rem;
    transition: all var(--transition-base);
    overflow: hidden;
    max-height: 40px;
}
.header-topbar.hidden { max-height: 0; padding: 0; }

.topbar-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--clr-light-grey);
}
.topbar-info a { color: var(--clr-light-grey); }
.topbar-info a:hover { color: var(--clr-golden); }
.topbar-info i { color: var(--clr-golden); margin-right: 4px; }

.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: var(--radius-circle);
    border: 1px solid rgba(201, 149, 42, 0.3);
    color: var(--clr-light-grey);
    font-size: 0.72rem;
    margin-left: 4px;
    transition: all var(--transition-fast);
}
.topbar-social a:hover {
    background: var(--clr-golden);
    border-color: var(--clr-golden);
    color: #000;
    transform: translateY(-2px);
}

/* ─── Main Navbar ── */
.navbar-main {
    background: var(--bg-nav);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    transition: all var(--transition-base);
}

#main-header.scrolled .navbar-main {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
#main-header.scrolled .header-topbar { max-height: 0; padding: 0; }

/* ─── Logo ── */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.navbar-brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(201,149,42,0.4));
    transition: all var(--transition-base);
}
#main-header.scrolled .navbar-brand img { height: 42px; }

.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-golden);
    line-height: 1;
    letter-spacing: 0.08em;
    text-shadow: 0 0 20px rgba(201,149,42,0.5);
}
.brand-tagline {
    font-family: var(--font-sub);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── Nav Links ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item { position: relative; }

.nav-link-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.nav-link-item:hover,
.nav-link-item.active {
    color: var(--accent-primary);
    border-color: var(--border-color);
    background: rgba(201, 149, 42, 0.07);
}
.nav-link-item i { font-size: 0.7rem; transition: transform var(--transition-fast); }
.nav-item:hover .nav-link-item i { transform: rotate(180deg); }

/* ─── Mega Menu ── */
.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 860px;
    background: var(--bg-mega);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,149,42,0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}
.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 12px;
    background: var(--bg-mega);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    transform: translateX(-50%) rotate(45deg);
}

.mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}
.mega-menu-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}
.mega-item:hover {
    background: rgba(201, 149, 42, 0.08);
    border-color: var(--border-color);
    transform: translateX(4px);
}

.mega-item-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201,149,42,0.15), rgba(201,149,42,0.05));
    border: 1px solid rgba(201,149,42,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}
.mega-item:hover .mega-item-icon {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-dark));
    color: #000;
    border-color: var(--accent-primary);
}

.mega-item-label {
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    transition: color var(--transition-fast);
}
.mega-item:hover .mega-item-label { color: var(--accent-primary); }
.mega-item-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.mega-menu-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ─── Nav Right Actions ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── Theme Toggle ── */
.theme-toggle {
    width: 44px; height: 44px;
    border-radius: var(--radius-circle);
    border: 1px solid var(--border-color);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    color: var(--accent-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-base);
}
.theme-toggle:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
    transform: rotate(20deg) scale(1.1);
}

/* ─── Mobile Toggle ── */
.hamburger {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    color: var(--text-primary);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: calc(var(--z-sticky) - 1);
    padding: 100px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-nav-links { list-style: none; padding: 0; }
.mobile-nav-links li { border-bottom: 1px solid var(--border-subtle); }
.mobile-nav-links a, .mobile-nav-links button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}
.mobile-nav-links a:hover, .mobile-nav-links button:hover { color: var(--accent-primary); }

.mobile-sub-menu {
    padding: 0 0 8px 32px;
    display: none;
}
.mobile-sub-menu.open { display: block; }
.mobile-sub-menu a {
    font-size: 0.9rem;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}
.mobile-sub-menu a:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════════════════════
   7. HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}


.hero-swiper .swiper-slide img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-swiper .swiper-slide-active img { 
    transform: scale(1); 
}

/* Gradient overlays */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.30) 60%, transparent 100%),
        linear-gradient(to top, rgba(10,10,10,0.70) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,149,42,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,149,42,0.4);
    border-radius: var(--radius-pill);
    padding: 7px 18px;
    font-family: var(--font-sub);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-golden);
    margin-bottom: 24px;
}
.hero-badge i { font-size: 0.8rem; }

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.05;
    color: #F5F0E8;
    margin-bottom: 8px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-title .accent-word {
    color: var(--clr-golden);
    text-shadow: 0 0 40px rgba(201,149,42,0.7), 0 4px 30px rgba(0,0,0,0.5);
    display: block;
}

.hero-subtitle {
    font-family: var(--font-sub);
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: rgba(245,240,232,0.75);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(245,240,232,0.7);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.8;
}
.hero-scroll-indicator span {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-golden);
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--clr-golden), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5) translateY(-10px); }
    50%       { opacity: 1;   transform: scaleY(1)   translateY(0); }
}

/* ─── Hero Stats ── */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,149,42,0.2);
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-golden);
    display: block;
    line-height: 1;
}
.hero-stat-label {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.6);
    display: block;
    margin-top: 4px;
}

/* ─── Hero Swiper Pagination / Arrows ── */
.hero-swiper .swiper-pagination-bullet {
    width: 24px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
    width: 48px;
    background: var(--clr-golden);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   8. SECTION UTILITIES
   ═══════════════════════════════════════════════════════════════════════════════ */

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 60px 0; }
.section-pad-lg { padding: 120px 0; }

.bg-dark-section   { background: var(--bg-secondary); }
.bg-darker-section { background: var(--bg-primary); }
.bg-card-section   { background: var(--bg-tertiary); }

/* Separator line */
.section-line {
    width: 64px; height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-orange));
    border-radius: 2px;
    margin: 12px auto;
}
.section-line.left { margin: 12px 0; }

/* ═══════════════════════════════════════════════════════════════════════════════
   9. STATS / COUNTER SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.stats-section {
    background: linear-gradient(135deg, var(--clr-dark-brown) 0%, #1A0E08 50%, var(--clr-dark-brown) 100%);
    border-top: 1px solid rgba(201,149,42,0.25);
    border-bottom: 1px solid rgba(201,149,42,0.25);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9952A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}
.stat-card::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(201,149,42,0.2);
}
.stat-card:last-child::after { display: none; }

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent-primary);
    margin-bottom: 12px;
    display: block;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--clr-golden);
    line-height: 1;
    display: block;
    text-shadow: 0 0 30px rgba(201,149,42,0.4);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--accent-orange);
}

.stat-label {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10. PRODUCT CATEGORY CARDS
   ═══════════════════════════════════════════════════════════════════════════════ */

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    transition: transform var(--transition-base);
}
.category-card:hover { transform: translateY(-6px); }

.category-card-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: brightness(0.55) saturate(0.9);
}
.category-card:hover .category-card-img {
    transform: scale(1.08);
    filter: brightness(0.45) saturate(0.8);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.50) 50%,
        rgba(44,24,16,0.20) 100%
    );
    transition: all var(--transition-base);
}
.category-card:hover .category-card-overlay {
    background: linear-gradient(
        to top,
        rgba(44,24,16,0.95) 0%,
        rgba(44,24,16,0.65) 50%,
        rgba(44,24,16,0.30) 100%
    );
}

.category-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 24px;
    transition: all var(--transition-base);
}

.category-card-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    background: rgba(201,149,42,0.15);
    border: 1px solid rgba(201,149,42,0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--clr-golden);
    margin-bottom: 12px;
    transition: all var(--transition-base);
}
.category-card:hover .category-card-icon {
    background: var(--clr-golden);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.category-card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #F5F0E8;
    margin-bottom: 6px;
}

.category-card-desc {
    font-size: 0.8rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.category-card:hover .category-card-desc { max-height: 80px; opacity: 1; }

.category-card-arrow {
    position: absolute;
    top: 24px; right: 24px;
    width: 38px; height: 38px;
    border-radius: var(--radius-circle);
    background: rgba(201,149,42,0.15);
    border: 1px solid rgba(201,149,42,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--clr-golden);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}
.category-card:hover .category-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11. PRODUCT CARDS (SWIPER)
   ═══════════════════════════════════════════════════════════════════════════════ */

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
}
.product-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(201,149,42,0.15);
    transform: translateY(-6px);
}

.product-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-tertiary);
}
.product-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;

}
.product-card:hover .product-card-img-wrap img { transform: scale(1.08); }

.product-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--clr-red), var(--clr-red-bright));
    color: #fff;
    font-family: var(--font-sub);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}
.product-card-badge.new    { background: linear-gradient(135deg, #1A5C1A, #2E8B2E); }
.product-card-badge.hot    { background: linear-gradient(135deg, var(--clr-red), var(--clr-red-bright)); }
.product-card-badge.sale   { background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-light)); }

.product-card-actions {
    position: absolute;
    top: 12px; right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }

.product-action-btn {
    width: 36px; height: 36px;
    border-radius: var(--radius-circle);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.product-action-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
}

.product-card-body {
    padding: 20px;
}
.product-card-category {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 6px;
}
.product-card-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
    transition: color var(--transition-fast);
}
.product-card:hover .product-card-name { color: var(--accent-primary); }

.product-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.product-sku {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ─── Star Rating ── */
.stars { color: var(--clr-golden); font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════════════════════════
   12. TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════════ */

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    height: 100%;
    transition: all var(--transition-base);
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px; left: 28px;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--accent-primary);
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: var(--radius-circle);
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}
.testimonial-avatar-placeholder {
    width: 52px; height: 52px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}
.testimonial-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-heading);
    margin-bottom: 2px;
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   13. GALLERY
   ═══════════════════════════════════════════════════════════════════════════════ */

.gallery-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
}

/* ─── Product Gallery Group ── */
.product-gallery-group {
    margin-bottom: 56px;
}
.product-group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}
.product-group-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-heading);
    margin: 0;
}
.product-group-count {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}
.product-group-sku {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    color: var(--accent-orange);
    letter-spacing: 0.08em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border-card);
    transition: all var(--transition-base);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); border-color: var(--accent-primary); }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10,10,10,0.5); }

.gallery-zoom-icon {
    font-size: 1.6rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-base);
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }

.gallery-item-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    padding: 20px 12px 10px;
    font-size: 0.72rem;
    color: rgba(245,240,232,0.9);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
    font-family: var(--font-sub);
    letter-spacing: 0.06em;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* ─── Load More ── */
.load-more-wrap {
    text-align: center;
    margin-top: 48px;
}
.load-more-spinner {
    display: none;
    width: 24px; height: 24px;
    border: 2px solid rgba(201,149,42,0.3);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════════════════════
   14. ABOUT / TIMELINE
   ═══════════════════════════════════════════════════════════════════════════════ */

.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0 24px;
    margin-bottom: 48px;
    align-items: center;
}
.timeline-item:nth-child(odd) .timeline-content  { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-dot      { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-spacer   { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-spacer  { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot     { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }

.timeline-dot {
    width: 56px; height: 56px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--clr-dark-brown), var(--clr-brown));
    border: 2px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--clr-golden);
    box-shadow: 0 0 20px rgba(201,149,42,0.3);
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}
.timeline-content:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
}
.timeline-year {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.timeline-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}
.timeline-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── Team Cards ── */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-base);
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.team-card-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.team-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover .team-card-img-wrap img { transform: scale(1.06); }

.team-card-social {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(10,10,10,0.85), transparent);
    display: flex;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}
.team-card:hover .team-card-social { transform: translateY(0); }

.team-social-link {
    width: 32px; height: 32px;
    border-radius: var(--radius-circle);
    background: rgba(201,149,42,0.2);
    border: 1px solid rgba(201,149,42,0.4);
    color: var(--clr-golden);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.team-social-link:hover { background: var(--clr-golden); color: #000; }

.team-card-body { padding: 20px; }
.team-name { font-family: var(--font-heading); font-size: 1rem; color: var(--text-heading); margin-bottom: 4px; }
.team-role { font-family: var(--font-sub); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-orange); }

/* ═══════════════════════════════════════════════════════════════════════════════
   15. CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all var(--transition-base);
}
.contact-info-card:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201,149,42,0.15), rgba(201,149,42,0.05));
    border: 1px solid rgba(201,149,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all var(--transition-base);
}
.contact-info-card:hover .contact-icon {
    background: var(--accent-primary);
    color: #000;
}

.contact-info-label {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ─── Form Styles ── */
.form-label {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-control, .form-select {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-primary) !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    transition: all var(--transition-fast) !important;
}
.form-control::placeholder { color: var(--text-muted) !important; }
.form-control:focus, .form-select:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(201,149,42,0.15) !important;
    background: var(--bg-input) !important;
    color: var(--text-primary) !important;
}
.form-control option, .form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* Alert / Form feedback */
.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.form-alert.show { display: flex; }
.form-alert.success {
    background: rgba(46, 139, 46, 0.12);
    border: 1px solid rgba(46, 139, 46, 0.35);
    color: #5CBA5C;
}
.form-alert.error {
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.35);
    color: #E74C3C;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   16. CTA BANNER
   ═══════════════════════════════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.35) saturate(0.7);
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(44,24,16,0.88) 0%,
        rgba(10,10,10,0.70) 50%,
        rgba(44,24,16,0.88) 100%);
}
.cta-content { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid rgba(201,149,42,0.2);
    padding: 80px 0 0;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-golden), var(--clr-orange), var(--clr-golden), transparent);
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.55);
    line-height: 1.8;
    margin: 16px 0 20px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-golden);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,149,42,0.2);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.footer-links a::before {
    content: '';
    width: 12px; height: 1px;
    background: var(--clr-golden);
    opacity: 0;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}
.footer-links a:hover {
    color: var(--clr-golden);
    padding-left: 6px;
}
.footer-links a:hover::before { opacity: 1; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: var(--radius-circle);
    border: 1px solid rgba(201,149,42,0.25);
    background: rgba(201,149,42,0.06);
    color: rgba(245,240,232,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--clr-golden);
    border-color: var(--clr-golden);
    color: #000;
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    flex: 1;
    padding: 11px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,149,42,0.25);
    border-radius: var(--radius-md);
    color: #F5F0E8;
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition-fast);
}
.newsletter-form input::placeholder { color: rgba(245,240,232,0.4); }
.newsletter-form input:focus { border-color: var(--clr-golden); }

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(201,149,42,0.1);
    padding: 18px 0;
    margin-top: 60px;
}
.footer-bottom-text {
    font-size: 0.78rem;
    color: rgba(245,240,232,0.4);
    margin: 0;
}
.footer-bottom-text a { color: var(--clr-golden); }

/* ═══════════════════════════════════════════════════════════════════════════════
   18. PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════════════════════════ */

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.7);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.85), rgba(44,24,16,0.60));
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb-item { font-size: 0.82rem; font-family: var(--font-sub); }
.breadcrumb-item a { color: var(--accent-primary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-divider { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════════════════
   19. PRODUCT DETAIL SECTION (products.php)
   ═══════════════════════════════════════════════════════════════════════════════ */

.products-section-header {
    position: relative;
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 40px;
}
.products-section-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-orange));
    border-radius: 2px;
}

/* ─── Skill / Feature Bar ── */
.feature-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.feature-bar-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    width: 120px;
    flex-shrink: 0;
}
.feature-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border-subtle);
    border-radius: 3px;
    overflow: hidden;
}
.feature-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-orange));
    width: 0;
    transition: width 1.5s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   20. BACK TO TOP
   ═══════════════════════════════════════════════════════════════════════════════ */

.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--clr-golden), var(--clr-gold-dark));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(201,149,42,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-tooltip);
    text-decoration: none;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 30px rgba(201,149,42,0.6);
    color: #000;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   21. SWIPER GLOBAL OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════════ */

.swiper-button-next,
.swiper-button-prev {
    width: 48px !important;
    height: 48px !important;
    border-radius: var(--radius-circle) !important;
    background: var(--bg-glass) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--accent-primary) !important;
    transition: all var(--transition-fast) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
    font-weight: 800 !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-primary) !important;
    border-color: var(--accent-primary) !important;
    color: #000 !important;
}
.swiper-pagination-bullet {
    background: var(--accent-primary) !important;
    opacity: 0.4 !important;
    width: 8px !important; height: 8px !important;

}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.3) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   22. LOADING / PAGE PRELOADER
   ═══════════════════════════════════════════════════════════════════════════════ */

.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: var(--z-top);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(201,149,42,0.6));
    animation: logoPulse 1.5s ease-in-out infinite;
}
@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(201,149,42,0.6)); }
    50%       { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(201,149,42,0.9)); }
}

.preloader-bar {
    width: 200px; height: 3px;
    background: rgba(201,149,42,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.preloader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-golden), var(--clr-orange));
    border-radius: 2px;
    animation: preloaderFill 1.8s ease forwards;
}
@keyframes preloaderFill {
    0%   { width: 0; }
    100% { width: 100%; }
}

.preloader-text {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   23. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════════ */

.text-gold    { color: var(--accent-primary) !important; }
.text-orange  { color: var(--accent-orange) !important; }
.text-red     { color: var(--accent-red) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-golden), var(--clr-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gold { border-color: var(--border-color) !important; }
.border-gold-strong { border-color: var(--accent-primary) !important; }

/* Reveal animation classes (set by GSAP) */
.reveal-up   { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right{ opacity: 0; transform: translateX(40px); }
.reveal-fade { opacity: 0; }

/* ═══════════════════════════════════════════════════════════════════════════════
   24. LightGallery Overrides
   ═══════════════════════════════════════════════════════════════════════════════ */

.lg-backdrop { background: rgba(5, 3, 2, 0.97) !important; }
.lg-toolbar, .lg-actions { background: rgba(10,6,4,0.9) !important; }
.lg-thumb-outer { background: rgba(10,6,4,0.95) !important; }
.lg-progress-bar { background: var(--clr-golden) !important; }
.lg-icon { color: var(--clr-golden) !important; }
.lg-sub-html { font-family: var(--font-sub) !important; font-size: 0.82rem !important; letter-spacing: 0.06em !important; }

/* ═══════════════════════════════════════════════════════════════════════════════
   25. ABOUT PAGE — VALUES
   ═══════════════════════════════════════════════════════════════════════════════ */

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}
.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}
.value-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, rgba(201,149,42,0.15), rgba(201,149,42,0.04));
    border: 2px solid rgba(201,149,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-primary);
    transition: all var(--transition-base);
}
.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-dark));
    color: #000;
    border-color: var(--accent-primary);
    transform: rotate(10deg) scale(1.1);
}
.value-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: 10px;
}
.value-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   26. PRODUCT PAGE TABS / FILTER
   ═══════════════════════════════════════════════════════════════════════════════ */

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
}
.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.category-tab:hover, .category-tab.active {
    background: rgba(201,149,42,0.1);
    border-color: var(--border-color);
    color: var(--accent-primary);
}
.category-tab i { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════════════════════════
   27. QUICK VIEW MODAL
   ═══════════════════════════════════════════════════════════════════════════════ */

.modal-content {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    color: var(--text-primary) !important;
}
.modal-header {
    border-bottom: 1px solid var(--border-subtle) !important;
}
.modal-footer {
    border-top: 1px solid var(--border-subtle) !important;
}
.btn-close {
    filter: var(--text-primary) == '#F0EDE8' ? invert(1) : none;
}
[data-theme="dark"] .btn-close { filter: invert(1) brightness(0.7); }

/* ═══════════════════════════════════════════════════════════════════════════════
   28. ANIMATIONS (misc)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Floating particles */
.particles-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.particle {
    position: absolute;
    width: 2px; height: 2px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

/* Shimmer */
.shimmer {
    background: linear-gradient(90deg,
        var(--bg-tertiary) 25%,
        rgba(201,149,42,0.08) 50%,
        var(--bg-tertiary) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
