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

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --bg:        #0a0a0a;
  --s1:        #121212;
  --s2:        #1a1a1a;
  --s3:        #222222;
  --s4:        #2a2a2a;
  --text:      #f2f2f2;
  --muted:     rgba(242,242,242,.55);
  --line:      rgba(255,255,255,.07);
  --line2:     rgba(255,255,255,.13);
  --brand:     #f97316;
  --brand-h:   #ea6c0a;
  --brand-dim: rgba(249,115,22,.12);
  --accent:    #38bdf8;
  --r:         8px;
  --r-lg:      12px;
  --sh:        0 4px 24px rgba(0,0,0,.5);
  --sh-lg:     0 12px 48px rgba(0,0,0,.65);
  --max:       1140px;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none }
img { max-width: 100%; display: block }
h1,h2,h3,h4 { line-height: 1.15; font-weight: 800 }
p { color: var(--muted); line-height: 1.7 }

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

/* ─────────────────────────────────────────
   UTILITY BAR
───────────────────────────────────────── */
.utility-bar {
  background: var(--s1);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  padding: 7px 0;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.utility-right { display: flex; align-items: center; gap: 10px }
.utility-right a { color: var(--muted); transition: color .15s }
.utility-right a:hover { color: var(--brand) }
.util-sep { opacity: .3 }

/* ─────────────────────────────────────────
   TOP NAV
───────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line2);
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; padding: 13px 0;
}

.brand { display: flex; align-items: center; gap: 12px }
.brand-logo {
  width: 42px; height: 42px;
  border-radius: var(--r);
  border: 1.5px solid var(--brand);
  object-fit: cover;
  background: var(--s2);
}
.brand > div { font-size: 15px; font-weight: 800; letter-spacing: -.01em }
.brand small {
  display: block;
  font-size: 10px; font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 1px;
}

.hamburger {
  display: none;
  background: var(--s2);
  border: 1px solid var(--line2);
  color: var(--text);
  padding: 9px 14px;
  border-radius: var(--r);
  cursor: pointer;
  font-size: 13px; font-family: inherit;
}

.nav { display: flex; align-items: center; gap: 2px }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px;
  border-radius: var(--r);
  font-size: 14px; font-weight: 500;
  color: rgba(242,242,242,.78);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--brand-dim); color: var(--brand) }

.nav-item { position: relative }
.has-dd .chev { font-size: 10px; opacity: .6 }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: var(--s2);
  border: 1px solid var(--line2);
  border-top: 2px solid var(--brand);
  border-radius: 0 var(--r) var(--r) var(--r);
  box-shadow: var(--sh-lg);
  padding: 6px;
  display: none;
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px; font-weight: 500;
  color: rgba(242,242,242,.82);
  transition: background .12s, color .12s;
}
.dropdown a:hover { background: var(--brand-dim); color: var(--brand) }
.has-dd.open .dropdown { display: block }

/* ─────────────────────────────────────────
   HERO — SPLIT (homepage)
───────────────────────────────────────── */
.hero-home {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-home-text {
  display: flex; align-items: center;
  background: var(--bg);
  padding: 80px 56px 80px max(20px, calc((100vw - 1140px) / 2 + 20px));
  position: relative;
}
.hero-home-text::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(249,115,22,.07), transparent);
  pointer-events: none;
}
.hero-home-inner { position: relative; z-index: 1; max-width: 540px }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.35);
  color: var(--brand);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero-home-inner h1 {
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 900; letter-spacing: -.03em;
  line-height: 1.0; color: var(--text);
  margin-bottom: 18px;
}
.hero-accent { color: var(--brand) }
.hero-home-inner p {
  font-size: 16px; color: var(--muted);
  margin-bottom: 32px; line-height: 1.7;
  max-width: 440px;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.hero-tag {
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line2);
  border-radius: 999px; padding: 4px 12px;
}

.hero-home-images {
  overflow: hidden;
}
.hero-home-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hero-home-images:hover img { transform: scale(1.03) }

/* HERO FULL — inner pages only */
.hero-full {
  height: 72vh; min-height: 460px;
  background: url('../images/new_hero.webp') center/cover no-repeat;
  position: relative;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.65));
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-content { max-width: 700px; padding: 0 24px }
.hero-content h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900; letter-spacing: -.02em;
  color: #fff; margin-bottom: 14px;
}
.hero-content p {
  font-size: 17px; color: rgba(255,255,255,.82);
  margin-bottom: 26px;
}

.btn-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: flex-start;
}
.hero-content .btn-row,
.center .btn-row { justify-content: center }
.cta-inner .btn-row { justify-content: flex-start }

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
  background: var(--s1);
  border-bottom: 1px solid var(--line2);
  padding: 0;
}
.stats-inner {
  display: flex; align-items: stretch;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .15s;
}
.stat-item:last-child { border-right: none }
.stat-item:hover { background: var(--brand-dim) }
.stat-num {
  font-size: 26px; font-weight: 900;
  color: var(--brand);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-label {
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .09em;
  margin-top: 5px;
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding: 72px 0 }
.section-alt { background: var(--s1) }
.center { text-align: center }
.narrow { max-width: 720px; margin: 0 auto }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.center-header { justify-content: center; text-align: center }

.kicker {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--brand);
  margin-bottom: 8px;
  display: block;
}
h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; letter-spacing: -.02em }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px }

/* ─────────────────────────────────────────
   INTRO GRID
───────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 14px }
.intro-text p  { margin-bottom: 28px }
.intro-highlights { display: flex; flex-direction: column; gap: 20px }
.highlight-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  background: var(--s2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--r);
}
.highlight-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--brand);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}
.highlight-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px }
.highlight-item p { font-size: 13px; margin: 0 }

/* ─────────────────────────────────────────
   CATEGORY GRID
───────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.category-card {
  position: relative; display: flex;
  overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  height: 220px;
  transition: border-color .2s;
}
.category-card:hover { border-color: rgba(249,115,22,.4) }
.category-card img {
  width: 42%; flex-shrink: 0;
  object-fit: cover;
  transition: transform .45s ease;
  filter: brightness(.85);
}
.category-card:hover img { transform: scale(1.04) }
.cat-body {
  flex: 1;
  background: var(--s2);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--brand);
}
.cat-label {
  font-size: 18px; font-weight: 800;
  color: var(--text); margin-bottom: 6px;
}
.cat-sub {
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.cat-arrow {
  margin-top: 14px;
  font-size: 13px; font-weight: 700;
  color: var(--brand);
}

/* ─────────────────────────────────────────
   WHY GRID
───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  padding: 32px 28px;
  background: var(--s2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.why-card:hover {
  border-color: rgba(249,115,22,.35);
  transform: translateY(-3px);
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
}
.why-num {
  font-size: 36px; font-weight: 900;
  color: rgba(249,115,22,.18);
  letter-spacing: -.04em;
  margin-bottom: 12px;
  line-height: 1;
}
.why-card h3 { color: var(--text); margin-bottom: 10px }
.why-card p  { font-size: 14px }

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a0d00 0%, #0f0f0f 60%);
  border-top: 1px solid rgba(249,115,22,.2);
  border-bottom: 1px solid rgba(249,115,22,.2);
  padding: 64px 0;
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-inner h2 { font-size: 30px; margin-bottom: 8px }
.cta-inner p  { font-size: 15px; margin: 0 }

/* ─────────────────────────────────────────
   TILE (hero on inner pages — horizontal)
───────────────────────────────────────── */
.hero { padding: 28px 0 0 }
.tile {
  display: flex; flex-direction: row;
  background: var(--s2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.tile-img {
  width: 45%; min-height: 280px;
  object-fit: cover; flex-shrink: 0;
}
.tile-body {
  flex: 1; padding: 40px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 0;
}
.tile-body h2 { font-size: 28px; margin: 8px 0 10px }
.tile-body p  { font-size: 15px; margin-bottom: 20px }

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card {
  background: var(--s2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh);
}
.card h2, .card h3 { margin-bottom: 6px }
.card p { margin-top: 6px }

/* ─────────────────────────────────────────
   INFO BOXES
───────────────────────────────────────── */
.info-box {
  background: var(--s2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.info-box:hover { border-color: var(--brand); transform: translateY(-3px) }
.info-box h3 { color: var(--brand); margin-bottom: 10px }
.section.dark { background: var(--s1) }
.section.dark .container { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px;
  border-radius: var(--r);
  font-size: 14px; font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .15s;
  border: 1px solid var(--line2);
  background: var(--s3);
  color: rgba(242,242,242,.88);
  white-space: nowrap;
}
.btn:hover { background: var(--s4); border-color: var(--line2) }
.btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #0a0a0a;
  font-weight: 700;
}
.btn.primary:hover { background: var(--brand-h); border-color: var(--brand-h) }
.btn.outline {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn.outline:hover { background: rgba(255,255,255,.1) }
.btn.outline-light {
  background: transparent;
  border-color: rgba(249,115,22,.4);
  color: var(--brand);
}
.btn.outline-light:hover { background: var(--brand-dim) }

/* ─────────────────────────────────────────
   INVENTORY
───────────────────────────────────────── */
.section-title {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.section-title p { font-size: 14px; margin: 0 }

.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.inv-card {
  background: var(--s2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.inv-card:hover {
  border-color: rgba(249,115,22,.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.inv-img { height: 190px; width: 100%; object-fit: cover }
.inv-body { padding: 18px }
.inv-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text) }
.inv-meta { font-size: 13px; color: var(--muted) }
.inv-price {
  display: flex; align-items: center; justify-content: space-between;
  margin: 12px 0 4px;
}

.badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-dim);
  color: var(--brand);
  border: 1px solid rgba(249,115,22,.25);
}

/* ─────────────────────────────────────────
   FORMS
───────────────────────────────────────── */
.form { margin-top: 16px }
.field { display: flex; flex-direction: column; gap: 6px; margin-top: 14px }
label {
  font-size: 13px; font-weight: 600;
  color: rgba(242,242,242,.72); letter-spacing: .01em;
}
input, select, textarea {
  background: var(--s1);
  color: var(--text);
  border: 1px solid var(--line2);
  border-radius: var(--r);
  padding: 11px 14px;
  font-size: 14px; font-family: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical }
input::placeholder, textarea::placeholder { color: rgba(242,242,242,.3) }
input:focus, select:focus, textarea:focus {
  border-color: rgba(249,115,22,.55);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
input[readonly] { opacity: .55; cursor: default }
select option { background: var(--s2) }

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

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--s1); border-top: 1px solid var(--line2); margin-top: 0 }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.footer-logo {
  width: 46px; height: 46px;
  border-radius: var(--r);
  border: 1.5px solid var(--brand);
  margin-bottom: 14px;
}
.footer-name {
  font-size: 16px; font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-brand-col p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
}
.footer-heading {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--brand);
  margin-bottom: 16px;
}
.footer-col {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 4px;
}
.footer-col a, .footer-col span {
  font-size: 13px;
  color: rgba(242,242,242,.62);
  transition: color .15s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--brand) }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span {
  font-size: 12px; color: rgba(242,242,242,.38);
}

/* ─────────────────────────────────────────
   MOBILE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-home { grid-template-columns: 1fr 1fr }
  .hero-home-text { padding: 60px 40px 60px 20px }
  .intro-grid { grid-template-columns: 1fr; gap: 40px }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 0 28px }
  .footer-brand-col { grid-column: span 2 }
}

@media (max-width: 880px) {
  .utility-bar { display: none }
  .hamburger { display: inline-flex }
  .section { padding: 48px 0 }
  .hero-home { grid-template-columns: 1fr; min-height: auto }
  .hero-home-text { padding: 60px 20px; min-height: 60vh }
  .hero-home-inner h1 { font-size: 36px }
  .hero-home-images { height: 340px; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr }
  .hero-full { height: 60vh }
  .hero-content { padding: 0 20px }
  .hero-content h1 { font-size: 30px }
  .stats-inner { flex-wrap: wrap }
  .stat-item { flex: 1 1 45%; border-bottom: 1px solid var(--line) }
  .category-grid { grid-template-columns: 1fr }
  .why-grid { grid-template-columns: 1fr; gap: 14px }
  .section.dark .container { grid-template-columns: 1fr }
  .inv-grid { grid-template-columns: 1fr 1fr }
  .section-title { flex-direction: column; align-items: flex-start }
  .cta-inner { flex-direction: column; gap: 24px }
  .tile { flex-direction: column }
  .tile-img { width: 100%; min-height: 220px }
  .tile-body { padding: 24px }
  .split { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 0 24px }
  .footer-brand-col { grid-column: span 2 }

  .nav[aria-label="Primary"] {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    padding: 10px 16px 16px;
    border-bottom: 1px solid var(--line2);
    background: rgba(10,10,10,.98);
    flex-direction: column;
    align-items: stretch; gap: 4px;
  }
  .nav[aria-label="Primary"].open { display: flex }
  .dropdown {
    position: relative; top: 0; left: 0;
    min-width: unset; border: none;
    background: transparent; box-shadow: none;
    padding: 4px 0 4px 12px;
  }
}

@media (max-width: 540px) {
  .category-card { flex-direction: column; height: auto }
  .category-card img { width: 100%; height: 160px }
  .inv-grid { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }
  .footer-brand-col { grid-column: span 1 }
}
