/* ==========================================================================
   EYZEE - Complete Design System
   Version: 2.0
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables & Reset
   ========================================================================== */

:root {
    /* Colors */
    --color-black: #000000;
    --color-black-light: #111111;
    --color-black-mid: #1a1a1a;
    --color-black-border: #2a2a2a;
    --color-gold: #D6AD60;
    --color-gold-hover: #e8c47a;
    --color-gold-dark: #b8941f;
    --color-white: #ffffff;
    --color-white-muted: #b3b3b3;
    --color-white-dim: rgba(255, 255, 255, 0.6);
    --color-white-subtle: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 0.875rem;
    --font-size-body: 1.0625rem;
    --font-size-large: 1.25rem;

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

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1440px;
    --container-padding: 2rem;

    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 24px rgba(214, 173, 96, 0.25);
}

/* ==========================================================================
   2. Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-black);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

p {
    font-size: var(--font-size-body);
    line-height: 1.7;
    color: var(--color-white-dim);
}

.text-gold {
    color: var(--color-gold);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   4. Layout & Containers
   ========================================================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==========================================================================
   5. Skip Link
   ========================================================================== */

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    color: var(--color-black);
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    transform: translateY(-150%);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ==========================================================================
   6. Navigation
   ========================================================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-white-subtle);
    min-height: 72px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.nav-logo img:hover {
    opacity: 0.85;
}

/* Primary Navigation */
.primary-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu > li > a,
.nav-menu .dropdown-toggle {
    color: var(--color-white-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu .dropdown-toggle:hover {
    color: var(--color-gold);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
}

.dropdown-indicator {
    font-size: 0.6rem;
    transition: transform var(--transition-fast);
}

.dropdown-open .dropdown-indicator {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: -1rem;
    min-width: 240px;
    padding: 0.5rem;
    background: var(--color-black-light);
    border: 1px solid var(--color-black-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    /* Add a transparent bridge to prevent gap issues */
    margin-top: -0.25rem;
    padding-top: 0.75rem;
}

/* This creates an invisible bridge between the button and menu */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
    z-index: 1;
}

/* Keep menu open when hovering over the bridge area */
.dropdown:hover .dropdown-menu,
.dropdown-open .dropdown-menu {
    display: block;
}

/* Ensure the menu stays open when hovering over it */
.dropdown-menu:hover {
    display: block !important;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--color-white-muted);
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--color-gold);
    background: var(--color-white-subtle);
}
/* Trade Link */
.trade-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius-xl);
    color: var(--color-gold) !important;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.trade-link:hover {
    background: var(--color-gold);
    color: var(--color-black) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--color-white-subtle);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--color-gold);
}

/* ==========================================================================
   7. Product Collection Navigation
   ========================================================================== */

.product-collection-nav {
    margin-top: 72px;
    border-top: 1px solid var(--color-white-subtle);
    border-bottom: 1px solid var(--color-white-subtle);
    background: var(--color-black-mid);
}

.product-collection-nav__inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0.75rem var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-collection-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-white-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.product-collection-nav__link:hover {
    color: var(--color-gold);
}

.product-collection-nav__icon {
    font-size: 1.2rem;
    line-height: 1;
    color: var(--color-gold);
}

.product-progress {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.product-progress__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--color-white-muted);
    background: transparent;
    transition: all var(--transition-fast);
}

.product-progress__dot[aria-current="page"] {
    border-color: var(--color-gold);
    background: var(--color-gold);
}

.product-progress__dot:hover {
    border-color: var(--color-gold);
}

.product-collection-nav--bottom .product-progress {
    display: none;
}

/* ==========================================================================
   8. Hero Section
   ========================================================================== */

.dz-hero {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
    max-width: var(--container-wide);
    margin: 0 auto;
    min-height: calc(100vh - 72px);
    background: radial-gradient(circle at 70% 30%, rgba(214, 173, 96, 0.08), transparent 50%), var(--color-black);
}

.dz-hero__copy {
    max-width: 600px;
}

.dz-hero h1 {
    margin: 0.5rem 0 1rem;
}

.dz-hero h1 span {
    color: var(--color-gold);
}

.dz-lead {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--color-white-dim);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.dz-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dz-hero__image img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
}

/* ==========================================================================
   9. Buttons
   ========================================================================== */

.dz-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.cta-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.cta-primary:hover {
    background: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.cta-secondary {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.cta-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   10. Statement Section
   ========================================================================== */

.dz-statement {
    padding: clamp(4rem, 8vw, 8rem) var(--container-padding);
    max-width: var(--container-wide);
    margin: 0 auto;
    text-align: center;
}

.dz-statement h2 {
    max-width: 800px;
    margin: 0 auto;
}

.dz-statement p {
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ==========================================================================
   11. Split Section (Image + Text)
   ========================================================================== */

.dz-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--container-wide);
    margin: 0 auto;
    background: var(--color-black-mid);
}

.dz-split__image {
    min-height: 400px;
    max-height: 550px;
    overflow: hidden;
    background: var(--color-black-light);
    position: relative;
}

.dz-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--color-black-light);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-medium);
}

.image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(214, 173, 96, 0.35);
}

.dz-split__copy {
    padding: clamp(3rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-black-mid);
}

.dz-split__copy h2 {
    margin: 0.5rem 0 1rem;
    max-width: 90%;
}

.dz-split__copy p {
    max-width: 90%;
}

.dz-split--reverse .dz-split__image {
    order: 2;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--color-black-light);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-medium);
}

.image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(214, 173, 96, 0.35);
}

/* ==========================================================================
   12. Video Section
   Premium thumbnail and lightbox video system
   ========================================================================== */

.dz-video {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding:
        clamp(4rem, 8vw, 8rem)
        var(--container-padding);
    text-align: center;
}

.dz-video h2 {
    margin: 0.5rem 0 1rem;
}

.dz-video p {
    max-width: 680px;
    margin: 0 auto;
}

.dz-split__video {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    padding: clamp(1.5rem, 3vw, 3rem);
    background: var(--color-black-light);
}

/* ---------- Thumbnail ---------- */

.video-thumbnail {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    padding: 0;
    overflow: hidden;
    appearance: none;
    cursor: pointer;
    border: 1px solid var(--color-white-subtle);
    border-radius: var(--border-radius-lg);
    background: #050505;
    color: var(--color-white);
    font: inherit;
    text-align: left;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 173, 96, 0.5);
    box-shadow:
        0 30px 85px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(214, 173, 96, 0.08);
}

.video-thumbnail:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 5px;
}

.video-thumbnail img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.025);
    filter: brightness(0.88);
}

.video-thumbnail__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 25%,
            rgba(0, 0, 0, 0.72) 100%
        );
    pointer-events: none;
}

/* ---------- Play Button ---------- */

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: clamp(68px, 8vw, 92px);
    height: clamp(68px, 8vw, 92px);
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: rgba(214, 173, 96, 0.96);
    color: #090909;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(214, 173, 96, 0.18);
    transform: translate(-50%, -50%);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
    pointer-events: none;
}

.video-thumbnail:hover .video-play-button {
    background: var(--color-gold-hover);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(214, 173, 96, 0.28);
    transform:
        translate(-50%, -50%)
        scale(1.08);
}

.video-thumbnail__label {
    position: absolute;
    right: clamp(1.25rem, 3vw, 2rem);
    bottom: clamp(1.25rem, 3vw, 2rem);
    left: clamp(1.25rem, 3vw, 2rem);
    z-index: 2;
    color: var(--color-white);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

/* ---------- Play icon correction ---------- */

.video-play-button {
    overflow: hidden;
}

/* Hide the SVG so other icon styling cannot distort it */
.video-play-button svg {
    display: none;
}

/* Create a consistent play triangle using CSS */
.video-play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 6px;

    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 21px solid #090909;
}

/* ---------- Lightbox ---------- */

.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.video-lightbox.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.video-lightbox__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.video-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: block;
    width: min(1200px, 94vw);
    transform: translateY(14px) scale(0.985);
    transition: transform 0.25s ease;
}

.video-lightbox.is-active .video-lightbox__dialog {
    transform: translateY(0) scale(1);
}

.video-lightbox__player {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: clamp(12px, 2vw, 22px);
    background: #000;
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(214, 173, 96, 0.06);
}

.video-lightbox__player iframe,
.video-lightbox__player video {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    border: 0;
    background: #000;
}

.video-lightbox__player video {
    object-fit: contain;
}

.video-lightbox__player iframe[hidden],
.video-lightbox__player video[hidden] {
    display: none;
}

.video-lightbox__close {
    position: absolute;
    top: -56px;
    right: 0;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.video-lightbox__close:hover {
    border-color: rgba(214, 173, 96, 0.55);
    background: rgba(214, 173, 96, 0.2);
    transform: rotate(4deg);
}

.video-lightbox__close:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 4px;
}

body.video-lightbox-open {
    overflow: hidden;
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {
    .dz-split__video {
        padding: 1rem;
    }

    .video-lightbox {
        padding: 1rem;
    }

    .video-lightbox__dialog {
        width: 100%;
    }

    .video-lightbox__close {
        top: -52px;
        width: 42px;
        height: 42px;
    }

    .video-thumbnail__label {
        font-size: 0.95rem;
    }
}

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
    .video-thumbnail,
    .video-thumbnail img,
    .video-play-button,
    .video-lightbox,
    .video-lightbox__dialog {
        transition: none;
    }
}

/* ==========================================================================
   13. Benefits / Card Grid
   ========================================================================== */

.dz-benefits {
    padding: clamp(4rem, 8vw, 8rem) var(--container-padding);
    max-width: var(--container-wide);
    margin: 0 auto;
    text-align: center;
}

.dz-benefits h2 {
    margin: 0.5rem 0 1rem;
}

.dz-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.dz-card-grid article {
    padding: 2rem;
    background: var(--color-black-mid);
    border: 1px solid var(--color-white-subtle);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-medium);
}

.dz-card-grid article:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.dz-card-grid span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.dz-card-grid h3 {
    margin-bottom: 0.5rem;
}

.dz-card-grid p {
    color: var(--color-white-dim);
    margin: 0;
}

/* ==========================================================================
   14. Gallery
   ========================================================================== */

.dz-gallery-section {
    padding: clamp(4rem, 8vw, 8rem) var(--container-padding);
    max-width: var(--container-wide);
    margin: 0 auto;
    text-align: center;
}

.dz-gallery-section h2 {
    margin: 0.5rem 0 1rem;
}

.dz-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    text-align: left;
}

.dz-gallery figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    min-height: 300px;
    background: var(--color-black-mid);
}

.dz-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.dz-gallery figure:hover img {
    transform: scale(1.03);
}

.dz-gallery__feature {
    grid-row: span 2;
}

.dz-gallery figcaption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   15. Modes
   ========================================================================== */

.dz-modes {
    padding: clamp(4rem, 8vw, 8rem) var(--container-padding);
    max-width: var(--container-wide);
    margin: 0 auto;
    text-align: center;
    background: var(--color-black-mid);
}

.dz-modes h2 {
    margin: 0.5rem 0 1rem;
}

.dz-mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.dz-mode-grid article {
    padding: clamp(2rem, 3vw, 3.5rem);
    background: var(--color-black);
    border: 1px solid var(--color-white-subtle);
    border-radius: var(--border-radius-md);
}

.dz-mode-grid article:hover {
    border-color: var(--color-gold);
}

.dz-mode-grid h3 {
    margin: 0.5rem 0;
}

.dz-mode-grid article > p:last-child {
    margin: 0;
    color: var(--color-white-dim);
}

/* ==========================================================================
   16. Specs
   ========================================================================== */

.dz-specs {
    padding: clamp(4rem, 8vw, 8rem) var(--container-padding);
    max-width: var(--container-wide);
    margin: 0 auto;
    text-align: center;
    background: #f5f5f2;
    color: var(--color-black);
}

.dz-specs h2 {
    margin: 0.5rem 0 1rem;
}

.dz-specs dl {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dz-specs dl div {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dz-specs dt {
    font-weight: 600;
}

.dz-specs dd {
    margin: 0;
    color: #555;
}

/* ==========================================================================
   17. FAQ
   ========================================================================== */

.dz-faq {
    padding: clamp(4rem, 8vw, 8rem) var(--container-padding);
    max-width: var(--container-wide);
    margin: 0 auto;
    text-align: center;
}

.dz-faq h2 {
    margin: 0.5rem 0 1rem;
}

.faq-section {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--color-white-subtle);
    padding: 0.5rem 0;
}

.faq-item summary {
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--color-gold);
}

.faq-item p {
    padding: 0 0 1.5rem;
    margin: 0;
    color: var(--color-white-dim);
}

/* ==========================================================================
   18. Closing Section
   ========================================================================== */

.dz-closing {
    padding: clamp(4rem, 8vw, 8rem) var(--container-padding);
    max-width: var(--container-wide);
    margin: 0 auto;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(214, 173, 96, 0.06), transparent 50%), var(--color-black-mid);
}

.dz-closing h2 {
    margin: 0.5rem 0 1rem;
}

.dz-closing p {
    max-width: 600px;
    margin: 0 auto;
}

.dz-closing .dz-actions {
    justify-content: center;
    margin-top: 2rem;
}

/* ==========================================================================
   19. Footer
   ========================================================================== */

.footer {
    background: var(--color-black);
    border-top: 1px solid var(--color-white-subtle);
    padding: 4rem var(--container-padding) 2rem;
}

.footer-content {
    max-width: var(--container-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: var(--color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--color-white-dim);
    font-size: 0.9rem;
    line-height: 2;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    max-width: var(--container-wide);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-white-subtle);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-white-dim);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-white-dim);
}

/* ==========================================================================
   20. Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 2rem;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--color-white-subtle);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
        z-index: 999;
        gap: 0;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-menu.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a,
    .nav-menu .dropdown-toggle {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-white-subtle);
        font-size: 1rem;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        padding: 0.5rem 0 0.5rem 1rem;
        background: transparent;
        border: none;
        box-shadow: none;
        display: none;
    }

    .dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--color-white-subtle);
        border-radius: 0;
    }

    .trade-menu-item {
        padding-top: 1rem;
    }

    .nav-menu .trade-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Hero */
    .dz-hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 6rem 1.5rem 4rem;
    }

    .dz-hero__copy {
        max-width: 100%;
    }

    .dz-hero h1 {
        font-size: clamp(2.8rem, 10vw, 4.5rem);
    }

    .dz-lead {
        max-width: 100%;
        margin: 1rem auto;
    }

    .dz-actions {
        justify-content: center;
    }

    .dz-hero__image img {
        max-height: 400px;
    }

    /* Split */
    .dz-split {
        grid-template-columns: 1fr;
    }

    .dz-split--reverse .dz-split__image {
        order: 0;
    }

    .dz-split__image {
        min-height: 300px;
        max-height: 450px;
    }

    .dz-split__copy {
        padding: 3rem;
    }

    .dz-split__copy h2,
    .dz-split__copy p {
        max-width: 100%;
    }

    /* Cards */
    .dz-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Gallery */
    .dz-gallery {
        grid-template-columns: 1fr;
    }

    .dz-gallery__feature {
        grid-row: auto;
    }

    .dz-gallery figure {
        min-height: 250px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    /* Layout */
    .container,
    .container-wide {
        padding: 0 1rem;
    }

    /* Hero */
    .dz-hero {
        padding: 5rem 1rem 3rem;
    }

    .dz-hero h1 {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .dz-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .dz-actions .cta-primary,
    .dz-actions .cta-secondary {
        width: 100%;
        text-align: center;
    }

    /* Split */
    .dz-split__copy {
        padding: 2rem;
    }

    .dz-split__copy h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .dz-split__image {
        min-height: 200px;
        max-height: 350px;
    }

    /* Cards */
    .dz-card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dz-card-grid article {
        padding: 1.5rem;
    }

    /* Modes */
    .dz-mode-grid {
        grid-template-columns: 1fr;
    }

    .dz-mode-grid article {
        padding: 1.5rem;
    }

    /* Specs */
    .dz-specs dl div {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        padding: 0.75rem 0;
    }

    .dz-specs dt {
        font-weight: 600;
    }

    /* Gallery */
    .dz-gallery figure {
        min-height: 200px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Product Navigation */
    .product-collection-nav__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .product-collection-nav__link .product-collection-nav__title {
        display: none;
    }

    .product-progress {
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .product-collection-nav__link--previous {
        order: 0;
    }

    .product-collection-nav__link--next {
        order: 2;
    }
}

/* ==========================================================================
   21. Utility Classes
   ========================================================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================
   MOBILE PRODUCT NAVIGATION — CROSS-BROWSER FIX
   ========================================================== */

@media (max-width: 700px) {

    .product-collection-nav__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: center;
        width: 100%;
        padding: 1rem 1.25rem;
        gap: 1rem 1.5rem;
    }

    /* Dots always occupy the full first row */
    .product-progress {
        grid-column: 1 / -1;
        grid-row: 1;
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        order: initial;
    }

    /* Previous page stays bottom left */
    .product-collection-nav__link--previous {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
        order: initial;
        min-width: 0;
    }

    /* Next page stays bottom right */
    .product-collection-nav__link--next {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        text-align: right;
        order: initial;
        min-width: 0;
    }

    /* Keep the product names visible */
    .product-collection-nav__link .product-collection-nav__title {
        display: inline;
        font-size: 0.72rem;
        line-height: 1.25;
        letter-spacing: 0.08em;
        white-space: normal;
    }

    .product-collection-nav__link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        max-width: 100%;
    }

    .product-collection-nav__icon {
        flex: 0 0 auto;
        font-size: 1.5rem;
        line-height: 1;
    }
}