:root {
    --bg: #0c0c0c;
    --bg-alt: #141414;
    --bg-card: #171717;
    --text: #f2f2f2;
    --muted: #a3a3a3;
    --border: #2b2b2b;
    --accent: #ffffff;
    --header-h: 64px;
    --max-w: 1120px;
    --content-w: 760px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--text);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

p {
    margin-bottom: 1.1em;
    color: #d8d8d8;
}

strong {
    color: var(--text);
}

.wrap {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

.wrap--narrow {
    max-width: var(--content-w);
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(12, 12, 12, 0.96);
    border-bottom: 1px solid var(--border);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    height: var(--header-h);
}

.logo img {
    height: 34px;
    width: auto;
}

/* Desktop nav */
.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    padding: 8px 0;
    display: inline-block;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent);
}

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

.has-dropdown > a::after {
    content: "";
    display: inline-block;
    margin-left: 6px;
    border: 4px solid transparent;
    border-top-color: currentColor;
    transform: translateY(2px);
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 0;
    display: none;
    flex-direction: column;
    gap: 0;
    list-style: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 861px) {
    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown {
        display: flex;
    }
}

.dropdown a {
    padding: 10px 18px;
    font-size: 12px;
    white-space: nowrap;
}

.dropdown a:hover {
    background: #1f1f1f;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    margin: 6px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 12px 20px 40px;
        overflow-y: auto;
        display: none;
    }

    body.nav-open .site-nav {
        display: block;
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav a {
        display: block;
        padding: 16px 4px;
        font-size: 15px;
    }

    .has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .has-dropdown > a::after {
        transform: rotate(-90deg);
    }

    .has-dropdown.open > a::after {
        transform: rotate(0deg);
    }

    .has-dropdown .dropdown {
        position: static;
        transform: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        display: none;
        padding: 0 0 8px;
    }

    .has-dropdown.open .dropdown {
        display: flex;
    }

    .dropdown a {
        padding: 12px 16px;
        font-size: 15px;
        text-transform: none;
        letter-spacing: 0.04em;
    }
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--bg-alt);
}

.hero img.hero-bg,
.hero video.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 12, 12, 0.45), rgba(12, 12, 12, 0.85));
}

.hero .wrap {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    padding-bottom: 56px;
}

.hero h1 {
    font-size: clamp(34px, 7vw, 64px);
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: clamp(14px, 2.4vw, 18px);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 0;
}

.hero .lede {
    margin-top: 18px;
    max-width: 640px;
    font-size: 16px;
    color: #e4e4e4;
}

.hero--small {
    min-height: 34vh;
}

/* ---------- Sections ---------- */

.section {
    padding: 70px 0;
}

.section--alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin-bottom: 10px;
}

.section h2 {
    font-size: clamp(24px, 4vw, 34px);
    margin-bottom: 24px;
}

.section h3 {
    font-size: 20px;
    margin: 34px 0 14px;
}

.section h4 {
    font-size: 15px;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin: 30px 0 10px;
}

.section h5 {
    font-size: 16px;
    margin: 8px 0;
}

.notice {
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    background: var(--bg-card);
    padding: 18px 20px;
    margin: 26px 0;
    font-size: 14px;
    line-height: 1.6;
}

.notice strong {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.btn:hover {
    background: var(--accent);
    color: #0c0c0c;
}

.btn--solid {
    background: var(--accent);
    color: #0c0c0c;
}

.btn--solid:hover {
    background: #d4d4d4;
    border-color: #d4d4d4;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.link-arrow:hover {
    color: var(--accent);
}

.link-arrow::after {
    content: "\2192";
}

/* ---------- Product / card grid ---------- */

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 560px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .card-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.card:hover {
    border-color: #4a4a4a;
}

.card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-media {
    position: relative;
}

.card-media img {
    display: block;
}

.card-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.card .card-body {
    padding: 18px 20px 20px;
}

.card h3 {
    font-size: 17px;
    margin: 0 0 6px;
}

.card p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin: 0;
}

/* ---------- Photo grid ---------- */

.photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 560px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-grid figure {
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-card);
}

.photo-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: zoom-in;
}

.photo-grid figcaption {
    padding: 10px 14px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.photo-grid > figure:only-child {
    grid-column: 1 / -1;
}

.photo-grid > figure:only-child img {
    aspect-ratio: 16 / 9;
}

/* ---------- Made in USA strip ---------- */

.usa-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    padding: 18px 22px;
    margin: 34px 0;
}

.usa-strip img {
    width: 52px;
    height: auto;
    flex: none;
}

.usa-strip h5 {
    margin: 0;
    font-size: 15px;
}

.card-grid .usa-strip {
    margin: 0;
    height: 100%;
    align-items: center;
}

/* ---------- Shopify embed ---------- */

.shopify-slot {
    min-height: 120px;
    margin: 10px 0 26px;
    padding: 4px 0;
    color: #f2f2f2;
    overflow: hidden;
}

.shopify-slot img {
    border-radius: 8px;
    border: 1px solid var(--border);
}

.shopify-slot::after {
    content: "";
    display: table;
    clear: both;
}

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

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: zoom-out;
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
}

/* ---------- Next page banner ---------- */

.next-banner {
    position: relative;
    display: block;
    min-height: 240px;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.next-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.6);
}

.next-banner .next-inner {
    position: relative;
    z-index: 1;
    padding: 70px 20px;
    text-align: center;
}

.next-banner .next-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
}

.next-banner .next-title {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    background: var(--bg);
}

.site-footer .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.copyright {
    font-size: 13px;
    color: var(--muted);
}

.copyright a {
    color: var(--text);
}

.socials {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

.socials span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-right: 4px;
}

.socials a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
}

.socials a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* ---------- Utility ---------- */

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        transition: none !important;
    }
}
