*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

:root {
  /* LIGHT THEME (DEFAULT) - PURE LIGHT EVERYWHERE */
  --bg-main: #f9f8f5;
  --text-main: #171717;
  --text-muted: #4a4a4a;
  --text-dim: #666666;
  
  --header-bg: rgba(249, 248, 245, 0.88);
  --header-text: #171717;
  --header-border: rgba(0, 0, 0, 0.10);
  --header-btn-border: rgba(0, 0, 0, 0.18);
  --header-btn-hover-bg: #171717;
  --header-btn-hover-color: #ffffff;
  
  --hero-bg: url("../images/streetwear_hero_bg.jpg") center/cover no-repeat;
  --hero-overlay: linear-gradient(
      90deg,
      rgba(249, 248, 245, 0.94) 0%,
      rgba(249, 248, 245, 0.55) 56%,
      rgba(249, 248, 245, 0.05) 75%,
      rgba(249, 248, 245, 0) 100%
  );
  --hero-text: #171717;
  --hero-copy: #3d3d3d;
  --hero-eyebrow: #777063;
  --hero-meta-color: #555046;
  
  --bg-marquee: #e6e1d5;
  --text-marquee: #171717;
  
  --bg-editorial: #eeebe3;
  --bg-card: #ffffff;
  --border-card: #e2dfd7;
  --shadow-card: rgba(0, 0, 0, 0.05);
  
  --bg-stats: #ffffff;
  --border-stats: #e5e2da;
  
  --bg-visit: #eeebe3;
  --text-visit: #171717;
  --text-visit-muted: #555555;
  --border-visit: #d5d1c5;
  --bg-shipping: #e5e1d7;
  --map-filter: none;
  
  --bg-footer: #e4e0d7;
  --text-footer: #171717;
  --text-footer-muted: #666666;
  --border-footer: #d2ceb6;
  
  --btn-dark-bg: #171717;
  --btn-dark-text: #ffffff;
  --btn-dark-hover: #333333;
  
  --btn-light-bg: #ffffff;
  --btn-light-text: #171717;
  --btn-light-hover: #dfdbc7;
  
  --btn-outline-border: #171717;
  --btn-outline-text: #171717;
  --btn-outline-hover: rgba(23, 23, 23, 0.08);
  
  --theme-btn-bg: rgba(0, 0, 0, 0.05);
  --theme-btn-border: rgba(0, 0, 0, 0.18);
  --theme-btn-text: #171717;
  --eyebrow-dark: #666666;
  --mobile-nav-bg: #f4f0e6;
}

html[data-theme="dark"] {
  /* DARK THEME - PURE DARK EVERYWHERE */
  --bg-main: #0e0e10;
  --text-main: #f5f5f7;
  --text-muted: #b0b0b8;
  --text-dim: #888894;
  
  --header-bg: rgba(14, 14, 16, 0.88);
  --header-text: #ffffff;
  --header-border: rgba(255, 255, 255, 0.12);
  --header-btn-border: rgba(255, 255, 255, 0.25);
  --header-btn-hover-bg: #ffffff;
  --header-btn-hover-color: #171717;
  
  --hero-bg: url("../images/streetwear_hero_bg.jpg") center/cover no-repeat;
  --hero-overlay: linear-gradient(
      90deg,
      rgba(14, 14, 16, 0.94) 0%,
      rgba(14, 14, 16, 0.72) 0%,
      rgba(14, 14, 16, 0.20) 10%
  );
  --hero-text: #ffffff;
  --hero-copy: #e6e6e6;
  --hero-eyebrow: #d7d0c4;
  --hero-meta-color: #dddddd;
  
  --bg-marquee: #08080a;
  --text-marquee: #e6e6ea;
  
  --bg-editorial: #16161a;
  --bg-card: #1c1c22;
  --border-card: #2c2c36;
  --shadow-card: rgba(0, 0, 0, 0.35);
  
  --bg-stats: #16161a;
  --border-stats: #272730;
  
  --bg-visit: #121216;
  --text-visit: #ffffff;
  --text-visit-muted: #bbbbcc;
  --border-visit: #2a2a34;
  --bg-shipping: rgba(255, 255, 255, 0.03);
  --map-filter: opacity(0.88) contrast(1.05);
  
  --bg-footer: #0a0a0d;
  --text-footer: #ffffff;
  --text-footer-muted: #888896;
  --border-footer: #202028;
  
  --btn-dark-bg: #f5f5f7;
  --btn-dark-text: #121216;
  --btn-dark-hover: #e0e0e6;
  
  --btn-light-bg: #272730;
  --btn-light-text: #f5f5f7;
  --btn-light-hover: #383844;
  
  --btn-outline-border: rgba(255, 255, 255, 0.75);
  --btn-outline-text: #ffffff;
  --btn-outline-hover: rgba(255, 255, 255, 0.18);
  
  --theme-btn-bg: rgba(255, 255, 255, 0.08);
  --theme-btn-border: rgba(255, 255, 255, 0.25);
  --theme-btn-text: #ffffff;
  --eyebrow-dark: #9999a4;
  --mobile-nav-bg: #121216;
}

body{font-family:"DM Sans",sans-serif;color:var(--text-main);background:var(--bg-main);line-height:1.6;transition:background 0.35s ease, color 0.35s ease;overflow-x:hidden}
.container{width:min(1180px,92%);margin:auto}
a{text-decoration:none;color:inherit}

.site-header{position:fixed;z-index:1000;top:0;left:0;width:100%;color:var(--header-text);background:var(--header-bg);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--header-border);transition:background 0.35s ease, border-color 0.35s ease, color 0.35s ease}
.nav{height:82px;display:flex;align-items:center;justify-content:space-between;gap:15px}
.brand{font-size:18px;letter-spacing:.3em;font-weight:600;white-space:nowrap;color:var(--header-text)}
.nav nav{display:flex;gap:34px;font-size:13px;text-transform:uppercase;letter-spacing:.12em;color:var(--header-text)}
.nav nav a:hover,.footer-links a:hover{opacity:.65}

.nav-right{display:flex;align-items:center;gap:10px}
.icon-circle-btn{width:36px;height:36px;border-radius:50%;border:1px solid var(--theme-btn-border);background:var(--theme-btn-bg);color:var(--header-text);display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.3s ease;padding:0;font-size:14px;flex-shrink:0}
.icon-circle-btn:hover{background:var(--header-btn-hover-bg);color:var(--header-btn-hover-color);transform:translateY(-1px)}
.theme-gold-icon{stroke:#b89759;color:#b89759;display:block}
.nav-phone-call{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:700;color:var(--header-text);margin-left:4px;transition:opacity 0.2s ease;letter-spacing:0.02em;white-space:nowrap}
.nav-phone-call:hover{opacity:0.75}
.phone-gold-icon{stroke:#b89759;color:#b89759;flex-shrink:0}

.menu-toggle{display:none;background:none;border:0;color:var(--header-text);cursor:pointer;align-items:center;justify-content:center;padding:0;width:36px;height:36px;border-radius:50%;border:1px solid var(--theme-btn-border);background:var(--theme-btn-bg);flex-shrink:0;transition:all 0.3s ease}
.menu-toggle:hover{background:var(--header-btn-hover-bg);color:var(--header-btn-hover-color)}

.hero{min-height:760px;position:relative;display:flex;align-items:center;background:var(--hero-bg);color:var(--hero-text);transition:background 0.35s ease, color 0.35s ease}
.hero-overlay{position:absolute;inset:0;background:var(--hero-overlay);transition:background 0.35s ease}
.hero-content{position:relative;padding-top:120px;padding-bottom:50px}
.eyebrow{font-size:11px;letter-spacing:.25em;text-transform:uppercase;margin-bottom:20px;color:var(--hero-eyebrow)}
.eyebrow.dark{color:var(--eyebrow-dark)}
.hero h1{font:600 clamp(38px,6vw,92px)/.95 "Playfair Display",serif;letter-spacing:-.03em;max-width:800px;color:var(--hero-text)}
.hero h1 em,.section h2 em,.editorial-copy h2 em,.visit h2 em{font-weight:500}
.hero-copy{max-width:570px;margin:30px 0;color:var(--hero-copy);font-size:16px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

.btn{display:inline-block;padding:14px 24px;text-transform:uppercase;letter-spacing:.13em;font-size:11px;font-weight:700;transition:all 0.3s ease}
.btn-light{background:var(--btn-light-bg);color:var(--btn-light-text)}
.btn-light:hover{background:var(--btn-light-hover)}
.btn-outline{border:1px solid var(--btn-outline-border);color:var(--btn-outline-text)}
.btn-outline:hover{background:var(--btn-outline-hover)}
.btn-dark{background:var(--btn-dark-bg);color:var(--btn-dark-text)}
.btn-dark:hover{background:var(--btn-dark-hover)}

.hero-meta{display:flex;gap:30px;margin-top:70px;font-size:11px;text-transform:uppercase;letter-spacing:.13em;color:var(--hero-meta-color);flex-wrap:wrap}

.marquee{overflow:hidden;white-space:nowrap;background:var(--bg-marquee);color:var(--text-marquee);padding:14px 0;font-size:10px;letter-spacing:.22em;transition:background 0.35s ease, color 0.35s ease}

.section{padding:115px 0;scroll-margin-top:80px}
.editorial,.visit{scroll-margin-top:80px}
.section-head{display:flex;justify-content:space-between;gap:50px;align-items:end;margin-bottom:55px}
.section h2{font:600 clamp(36px,5vw,64px)/1.05 "Playfair Display",serif;letter-spacing:-.025em;color:var(--text-main)}
.section-head>p{max-width:390px;color:var(--text-muted)}

.category-grid{display:grid;grid-template-columns:1.25fr 1fr;grid-template-rows:360px 360px;gap:18px}
.category-card{position:relative;overflow:hidden;background:#1a1a1a;border-radius:2px}
.category-card.large{grid-row:span 2}
.category-card img, .category-card video{width:100%;height:100%;object-fit:cover;transition:transform .7s;display:block}
.category-card:hover img, .category-card:hover video{transform:scale(1.05)}
.category-card:after{content:"";position:absolute;inset:0;background:linear-gradient(transparent 40%,rgba(0,0,0,.8))}
.category-card>div{position:absolute;z-index:2;bottom:28px;left:30px;color:#fff}
.category-card span{font-size:10px;letter-spacing:.2em;text-transform:uppercase}
.category-card h3{font:500 35px "Playfair Display",serif;margin:3px 0}
.category-card a{font-size:10px;text-transform:uppercase;letter-spacing:.15em}

.editorial{background:var(--bg-editorial);padding:115px 0;transition:background 0.35s ease}
.editorial-grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:center}
.editorial-image{height:650px;overflow:hidden;border-radius:2px}
.editorial-image img{width:100%;height:100%;object-fit:cover}
.editorial-copy p:not(.eyebrow){color:var(--text-muted);max-width:500px;margin:24px 0}
.editorial-copy h2{font:600 clamp(36px,5vw,68px)/1.03 "Playfair Display",serif;color:var(--text-main)}
.text-link{display:inline-block;margin-top:15px;border-bottom:1px solid var(--text-main);padding-bottom:5px;font-size:11px;text-transform:uppercase;letter-spacing:.15em;transition:opacity 0.2s;color:var(--text-main)}
.text-link:hover{opacity:0.7}

.stats{background:var(--bg-stats);padding:48px 0;border-bottom:1px solid var(--border-stats);transition:background 0.35s ease, border-color 0.35s ease}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);text-align:center;gap:20px}
.stats strong{display:block;font:500 34px "Playfair Display",serif;color:var(--text-main)}
.stats span{font-size:10px;text-transform:uppercase;letter-spacing:.15em;color:var(--text-dim)}

.reviews-head{align-items:center}
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.review{background:var(--bg-card);padding:30px;min-height:250px;border:1px solid var(--border-card);transition:transform 0.3s ease, box-shadow 0.3s ease, background 0.35s ease, border-color 0.35s ease;border-radius:2px}
.review:hover{transform:translateY(-3px);box-shadow:0 8px 24px var(--shadow-card)}
.stars{letter-spacing:.15em;font-size:13px;margin-bottom:18px;color:#f39c12}
.review p{font:400 18px/1.55 "Playfair Display",serif;margin-bottom:24px;color:var(--text-main)}
.review strong{display:block;font-size:11px;color:var(--text-main)}
.review span{display:block;font-size:11px;color:var(--text-dim);margin-top:3px}

.visit{background:var(--bg-visit);color:var(--text-visit);padding:110px 0;transition:background 0.35s ease, color 0.35s ease}
.visit-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:100px}
.visit h2{font:600 clamp(38px,5vw,70px)/1 "Playfair Display",serif;color:var(--text-visit)}
.visit>div>p:not(.eyebrow){color:var(--text-visit-muted);max-width:500px;margin:25px 0 35px}
.contact-list{margin-bottom:35px}
.contact-list>a,.contact-list>div{display:block;padding:17px 0;border-top:1px solid var(--border-visit)}
.contact-list small{display:block;color:var(--text-dim);font-size:9px;letter-spacing:.2em}
.contact-list span{display:block;font-size:14px;margin-top:5px;color:var(--text-visit)}
.hours{padding-top:10px}
.hour{display:flex;justify-content:space-between;gap:25px;padding:18px 0;border-bottom:1px solid var(--border-visit);font-size:13px;color:var(--text-visit)}
.hour b{font-weight:500}
.shipping{margin-top:40px;border:1px solid var(--border-visit);padding:22px;font-size:14px;background:var(--bg-shipping);color:var(--text-visit);border-radius:4px}
.shipping span{color:var(--text-visit-muted);font-size:12px}

.compact-map-card {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-visit);
  background: var(--bg-shipping);
  box-shadow: 0 4px 14px var(--shadow-card);
}
.map-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border-visit);
  color: var(--text-visit);
  background: rgba(0, 0, 0, 0.04);
}
.map-card-header a {
  opacity: 0.85;
  transition: opacity 0.2s;
  font-weight: 600;
}
.map-card-header a:hover {
  opacity: 1;
  text-decoration: underline;
}
.google-map-compact {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: var(--map-filter);
  transition: filter 0.35s ease;
}

footer{background:var(--bg-footer);color:var(--text-footer);padding:55px 0 20px;transition:background 0.35s ease, color 0.35s ease}
.footer-top{display:flex;justify-content:space-between;gap:30px;padding-bottom:45px}
.footer-top p{color:var(--text-footer-muted);font-size:12px;margin-top:10px}
.footer-links{display:flex;gap:28px;font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:var(--text-footer)}
.footer-bottom{border-top:1px solid var(--border-footer);padding-top:18px;display:flex;justify-content:space-between;color:var(--text-footer-muted);font-size:10px;text-transform:uppercase;letter-spacing:.1em}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1100px) {
  .container { width: 90%; }
  .editorial-grid { gap: 50px; }
  .visit-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; scroll-margin-top: 70px; }
  .editorial, .visit { scroll-margin-top: 70px; }
  
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .section-head > p { max-width: 100%; }
  
  .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-image { height: 480px; }
  
  .visit-grid { grid-template-columns: 1fr; gap: 50px; }
  
  .review-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 800px) {
  .nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .brand {
    font-size: 14px;
    letter-spacing: 0.15em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--mobile-nav-bg);
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  }
  .nav nav.open {
    display: flex;
  }
  .nav nav a {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-stats);
    text-align: center;
  }
  .nav nav a:last-child {
    border-bottom: none;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .icon-circle-btn, .menu-toggle {
    width: 32px;
    height: 32px;
  }
  .icon-circle-btn svg, .menu-toggle svg {
    width: 15px;
    height: 15px;
  }
  .nav-phone-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--theme-btn-border);
    background: var(--theme-btn-bg);
    margin-left: 0;
  }
  .nav-phone-call span {
    display: none;
  }
  
  /* CENTER SECTION TEXT ON MOBILE */
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 105px;
  }
  .hero h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
    width: 100%;
  }
  .hero-meta {
    justify-content: center;
    margin-top: 40px;
    gap: 14px;
    font-size: 10px;
  }

  .section-head {
    text-align: center;
    align-items: center;
  }
  .section-head > p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .editorial-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .editorial-copy p:not(.eyebrow) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .editorial-copy h2 {
    text-align: center;
  }

  .reviews-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .reviews-head h2 {
    text-align: center;
  }

  .visit-grid > div:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .visit h2 {
    text-align: center;
  }
  .visit > div > p:not(.eyebrow) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-list {
    width: 100%;
    text-align: center;
  }
  .contact-list small, .contact-list span {
    text-align: center;
  }
  .hours {
    text-align: center;
  }
  .shipping {
    text-align: center;
  }

  .category-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; }
  .category-card, .category-card.large { grid-row: auto; height: 320px; }
  .category-card > div { text-align: left; }
  
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats { padding: 36px 0; }
  .stats strong { font-size: 28px; }
  
  .review-grid { grid-template-columns: 1fr; }
  .review { text-align: center; }
  .review p { text-align: center; }

  .footer-top { flex-direction: column; gap: 24px; padding-bottom: 30px; text-align: center; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-links { flex-wrap: wrap; gap: 18px; justify-content: center; }
}

@media (max-width: 480px) {
  .container { width: 92%; }
  .brand { font-size: 13px; max-width: 130px; letter-spacing: 0.1em; }
  .nav-right { gap: 4px; }
  .icon-circle-btn, .nav-phone-call, .menu-toggle { width: 30px; height: 30px; }
  .icon-circle-btn svg, .phone-gold-icon, .menu-toggle svg { width: 14px; height: 14px; }
  
  .hero { min-height: 580px; }
  .hero h1 { font-size: 34px; }
  .hero-copy { font-size: 14px; margin: 20px 0; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  
  .category-card, .category-card.large { height: 260px; }
  .category-card h3 { font-size: 28px; }
  
  .editorial-image { height: 340px; }
  .hour { font-size: 12px; gap: 12px; }
  .hour b { font-size: 12px; }
  
  .google-map-compact { height: 200px; }
}

@media (max-width: 360px) {
  .brand { font-size: 11px; max-width: 110px; letter-spacing: 0.08em; }
  .icon-circle-btn, .nav-phone-call, .menu-toggle { width: 28px; height: 28px; }
}