/* =============================================
   RESET
   ============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:after, *:before {
    box-sizing: border-box;
}

/* =============================================
   TOKENS
   ============================================= */
:root {
    --primary:       #0e0e0e;
    --accent:        #c0392b;
    --accent-hover:  #a93226;
    --accent-light:  #e74c3c;
    --bg-alt:        #f3f3f3;
    --bg-dark:       #1a1a1a;
    --bg-darker:     #111;
    --text:          #1a1a1a;
    --text-muted:    #5a5a5a;
    --text-light:    #888;
    --border:        #e0e0e0;
    --white:         #fff;
    --nav-h:         68px;
    --radius:        0px;
}

/* =============================================
   BASE
   ============================================= */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announce-bar {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 9px 20px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--primary);
    border-bottom: 2px solid var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 700;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-ghost {
    padding: 8px 20px;
    border: 1.5px solid rgba(255,255,255,0.4);
    background: transparent;
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-solid {
    padding: 8px 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--accent);
    transition: all 0.2s;
}

.btn-solid:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.08);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 300;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 14px 24px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
}

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

.mobile-nav-actions {
    display: flex;
    gap: 10px;
    padding: 16px 24px 20px;
}

/* =============================================
   HERO — BANNER STYLE
   ============================================= */
.hero {
    position: relative;
    height: clamp(540px, 82vh, 820px);
    background: var(--primary) url('../images/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0,0,0,0.94) 0%,
            rgba(0,0,0,0.60) 45%,
            rgba(0,0,0,0.20) 100%);
}

/* red diagonal slash accent */
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 64px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.04;
    max-width: 860px;
    margin-bottom: 20px;
}

.hero-content h1 em {
    color: var(--accent);
    font-style: normal;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 15px 36px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.hero-btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.55);
}

.hero-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    background: var(--bg-alt);
    padding: 56px 0;
}

.gallery-label {
    max-width: 1280px;
    margin: 0 auto 24px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-label span {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-muted);
    white-space: nowrap;
}

.gallery-label-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
}

.gallery-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #ccc;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    filter: grayscale(8%);
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: grayscale(0%);
}

/* =============================================
   INTRO / SECTIONS BASE
   ============================================= */
.section {
    padding: 72px 0;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--white);
}

.section-darker {
    background: var(--primary);
    color: var(--white);
}

.section-gray {
    background: var(--bg-alt);
}

.section-label {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 4px;
}

.section-dark h2,
.section-darker h2 {
    color: var(--white);
}

.red-rule {
    width: 48px;
    height: 4px;
    background: var(--accent);
    margin: 14px 0 32px;
}

.section p {
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 920px;
}

.section p:last-child {
    margin-bottom: 0;
}

.section-dark p,
.section-darker p {
    color: rgba(255,255,255,0.68);
}

/* =============================================
   DROP STAT STRIP
   ============================================= */
.drop-strip {
    background: var(--accent);
}

.drop-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.drop-stat {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.22);
}

.drop-stat:last-child {
    border-right: none;
}

.drop-stat strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.drop-stat span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.88);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

/* =============================================
   CATEGORIES (5 subcategories grid)
   ============================================= */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 40px;
}

.cat-card {
    background: var(--white);
    padding: 36px 30px;
    border-top: 4px solid var(--accent);
}

.cat-card h3 {
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 14px;
}

.cat-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   MERCH SECTION (dark, 2-col)
   ============================================= */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    margin-top: 40px;
}

.merch-card {
    background: var(--bg-dark);
    padding: 36px 32px;
    border-left: 4px solid var(--accent);
}

.merch-card h3 {
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 14px;
}

.merch-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.64);
    line-height: 1.65;
    margin: 0;
    max-width: 100%;
}

/* =============================================
   QUALITY LAYOUT (split 2-col)
   ============================================= */
.quality-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 40px;
}

.quality-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quality-item {
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    background: var(--bg-alt);
}

.quality-item h3 {
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 8px;
}

.quality-item p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   TRENDS (gray section, 3-col)
   ============================================= */
.trends-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
}

.trends-text p {
    max-width: 100%;
}

.trends-cards {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
}

.trend-card {
    background: var(--white);
    padding: 24px 26px;
    border-left: 4px solid transparent;
    transition: border-color 0.2s;
}

.trend-card:hover {
    border-color: var(--accent);
}

.trend-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   UNISEX SECTION (dark)
   ============================================= */
.unisex-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.unisex-cols p {
    max-width: 100%;
}

/* =============================================
   WHY CHOOSE (dark, 3-col grid)
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    margin-top: 40px;
}

.why-item {
    padding: 34px 28px;
    background: var(--bg-dark);
}

.why-item h3 {
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--white);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.why-item p {
    font-size: 0.88rem;
    line-height: 1.62;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   DELIVERY (3-col cards)
   ============================================= */
.delivery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.delivery-card {
    padding: 30px;
    border: 2px solid var(--border);
    border-top: 4px solid var(--accent);
}

.delivery-card h3 {
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 14px;
}

.delivery-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   COMMUNITY (dark split)
   ============================================= */
.community-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
    margin-top: 40px;
}

.community-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.community-highlight {
    background: rgba(192,57,43,0.13);
    border: 1px solid rgba(192,57,43,0.28);
    border-left: 4px solid var(--accent);
    padding: 22px 24px;
}

.community-highlight h3 {
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 8px;
}

.community-highlight p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
    background: var(--accent);
    padding: 60px 0;
}

.cta-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.cta-band p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-band-btn {
    display: inline-block;
    padding: 16px 42px;
    background: var(--white);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.2s;
}

.cta-band-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 28px 32px;
    border-left: 4px solid var(--accent);
}

.faq-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 0.93rem;
    line-height: 1.68;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   CLOSING
   ============================================= */
.closing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--primary);
    color: rgba(255,255,255,0.45);
    padding: 32px 0;
    border-top: 2px solid var(--accent);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.footer-logo span {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .drop-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    .quality-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .trends-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .unisex-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .closing-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cats-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .delivery-cards {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 0 24px 48px;
    }

    .section {
        padding: 56px 0;
    }

    .drop-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        height: clamp(440px, 75vh, 640px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .drop-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .faq-item {
        padding: 22px 20px;
    }
}
