
:root {
  --bg: #050505;
  --bg-soft: #0f0f10;
  --panel: #111214;
  --panel-2: #191b1f;
  --text: #f5f5f5;
  --muted: #c3c8d0;
  --line: rgba(255,255,255,.12);
  --orange: #f78b11;
  --orange-soft: #ffb04b;
  --blue: #1e73c9;
  --blue-soft: #65aaf8;
  --green: #3a9c48;
  --black: #000;
  --white: #fff;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 26px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30,115,201,.18), transparent 30%),
    radial-gradient(circle at top right, rgba(247,139,17,.15), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, #030303 100%);
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }
h1, h2, h3, .brand-text strong, .btn, nav a, .category-pills a { font-family: 'Barlow Condensed', sans-serif; letter-spacing: .02em; }
h1, h2, h3 { line-height: .98; margin: 0 0 .7rem; text-transform: uppercase; }
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,6,6,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}
.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 14px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.9rem; }
.brand-text small { color: var(--orange-soft); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; margin-top: .25rem; }
nav { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  color: var(--muted);
  font-size: 1.05rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
nav a.active, nav a:hover { color: var(--white); border-color: rgba(255,255,255,.09); background: rgba(255,255,255,.04); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; }

.hero, .masthead {
  position: relative;
  overflow: hidden;
  padding: 3.6rem 0 2rem;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(247,139,17,.12) 0 2px, transparent 2px),
    radial-gradient(circle at 75% 30%, rgba(30,115,201,.14) 0 2px, transparent 2px),
    radial-gradient(circle at 25% 80%, rgba(255,255,255,.05) 0 1px, transparent 1px);
  background-size: 160px 160px, 220px 220px, 90px 90px;
  opacity: .7;
}
.hero-grid,
.brand-grid,
.split-banner,
.newsletter-box,
.footer-grid,
.hero-actions,
.hero-tags,
.card-meta,
.home-intro,
.masthead-grid {
  display: flex;
}
.hero-grid, .masthead-grid {
  gap: 2rem;
  align-items: center;
}
.hero-copy, .masthead-copy { flex: 1.2; }
.hero-panel, .masthead-panel { flex: .9; }
.eyebrow {
  margin-bottom: 1rem;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  font-weight: 800;
}
.hero h1, .page-head h1, .masthead h1 { font-size: clamp(3rem, 7vw, 5.6rem); max-width: 12ch; }
.page-head h1 { max-width: 14ch; }
.lead { font-size: 1.08rem; max-width: 56ch; }
.lead.slim { max-width: 52rem; }
.hero-actions { gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-tags, .category-pills { gap: .7rem; flex-wrap: wrap; margin-top: 1.2rem; }
.hero-tags span,
.card-tag,
.product-tag,
.article-meta-chip,
.category-pills a,
.stat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .45rem .8rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
}
.category-pills a.active, .category-pills a:hover { background: rgba(247,139,17,.14); border-color: rgba(247,139,17,.3); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1.1rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 0 16px 32px rgba(0,0,0,.35);
}
.btn-secondary {
  background: rgba(255,255,255,.03);
  border-color: var(--line);
}

.graffiti-panel,
.card,
.product-card,
.article,
.newsletter-box,
.stack-panel article,
.split-banner,
.page-head-dark,
.category-strip,
.about-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.graffiti-panel {
  position: relative;
  padding: 1.1rem;
  overflow: hidden;
}
.graffiti-panel::before,
.graffiti-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: .95;
}
.graffiti-panel::before {
  width: 180px;
  height: 180px;
  left: -30px;
  bottom: 10px;
  background: rgba(247,139,17,.3);
}
.graffiti-panel::after {
  width: 220px;
  height: 220px;
  right: -35px;
  top: 5px;
  background: rgba(30,115,201,.28);
}
.graffiti-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
}
.spray-bar {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .8rem;
}
.spray-bar span { height: 16px; border-radius: 999px; }
.spray-bar span:nth-child(1) { background: var(--orange); }
.spray-bar span:nth-child(2) { background: var(--white); }
.spray-bar span:nth-child(3) { background: var(--blue); }

.section, .page-main { padding: 2rem 0 4rem; }
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-tight { padding-top: .5rem; }
.split-banner {
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.5rem;
}
.split-banner > * { flex: 1; }
.home-intro { gap: 1.3rem; align-items: stretch; }
.about-panel { flex: 1.1; padding: 1.4rem; }
.category-strip { flex: .9; padding: 1.3rem; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head a, .text-link, .buy-link { color: var(--orange-soft); font-weight: 700; }
.brand-grid { gap: 1.4rem; align-items: stretch; }
.brand-block { flex: 1.1; }
.stack-panel { flex: .9; display: grid; gap: 1rem; }
.stack-panel article { padding: 1.2rem; }
.card-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card, .product-card { overflow: hidden; }
.card-body, .product-body { padding: 1.15rem; }
.card h3, .product-card h3 { font-size: 1.7rem; }
.card-tag, .product-tag { background: rgba(247,139,17,.14); border-color: rgba(247,139,17,.26); }
.card-meta { gap: .8rem; flex-wrap: wrap; color: var(--muted); font-size: .92rem; margin-top: .9rem; }
.thumb, .product-art {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(0,0,0,.78), rgba(0,0,0,.55)),
    linear-gradient(135deg, rgba(247,139,17,.8), rgba(30,115,201,.84));
}
.thumb::before, .product-art::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  background: url('assets/logo-daft-a-peth.png') center/contain no-repeat;
  opacity: .35;
  filter: grayscale(.1) contrast(1.15);
}
.thumb::after, .product-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}
.price { color: var(--white); font-weight: 800; font-size: 1.15rem; }
.newsletter-box { justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem; }
.newsletter-form { display: flex; gap: .8rem; flex-wrap: wrap; }
.newsletter-form input {
  min-width: 260px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #090909;
  color: var(--white);
  padding: .9rem 1rem;
}
.page-head { margin: 1rem 0 2rem; }
.page-head-dark { padding: 1.4rem; }
.article { max-width: 860px; padding: 1.8rem; }
.article h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
.article .article-meta {
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .84rem;
  margin-bottom: .8rem;
}
.article p + p { margin-top: 1rem; }
.about-article { max-width: 900px; }
.site-footer { padding: 1.6rem 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { justify-content: space-between; gap: 1rem; align-items: flex-start; }
.footer-grid div:last-child { display: flex; gap: 1rem; flex-wrap: wrap; }
.empty-state { padding: 1.2rem; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid, .brand-grid, .split-banner, .newsletter-box, .footer-grid, .home-intro, .masthead-grid { flex-direction: column; }
  .card-grid, .product-grid { grid-template-columns: 1fr; }
  .hero h1, .page-head h1, .masthead h1 { max-width: 100%; }
}

@media (max-width: 860px) {
  nav {
    display: none;
    position: absolute;
    top: 86px;
    right: 1rem;
    left: 1rem;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    background: #0a0a0a;
    border: 1px solid var(--line);
  }
  body.menu-open nav { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .brand-text strong { font-size: 1.55rem; }
  .brand-text small { letter-spacing: .12em; }
  .brand-logo { width: 52px; height: 52px; }
  .hero, .masthead { padding-top: 3rem; }
  .btn { width: 100%; }
  .newsletter-form input { min-width: 100%; }
}
.thumb {
  overflow: hidden;
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
  margin: 2rem 0;
  border: 1px solid rgba(255,255,255,0.14);
}
