/* ============ DADRIP — styles.css ============ */
:root{
  --bg: #121013;
  --bg-soft: #1b1719;
  --panel: #201b1d;
  --red: #e4342a;
  --red-deep: #8f1f18;
  --ecru: #f7f3f1;
  --muted: #9c9294;
  --line: rgba(247,243,241,0.12);
  --radius: 22px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--ecru);
  font-family:'Space Grotesk', sans-serif;
  overflow-x:hidden;
}
::selection{background:var(--red); color:#fff;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}

.display{
  font-family:'Anton', sans-serif;
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:0.01em;
  line-height:0.92;
}
.mono{
  font-family:'JetBrains Mono', monospace;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:0.72rem;
}
.wrap{ max-width:1240px; margin:0 auto; padding:0 32px; }

body::before{
  content:"";
  position:fixed; inset:0;
  background:
    radial-gradient(circle at 84% 6%, rgba(228,52,42,0.30), transparent 45%),
    radial-gradient(circle at 8% 88%, rgba(228,52,42,0.10), transparent 40%);
  pointer-events:none; z-index:0;
}

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(18,16,19,0.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 32px; max-width:1240px; margin:0 auto;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo-mark{
  width:34px; height:34px; border-radius:8px; object-fit:cover;
  background:var(--red);
}
.logo-text{
  font-family:'Anton', sans-serif; font-size:1.4rem;
  letter-spacing:0.02em; text-transform:uppercase;
}
.nav-links{ display:flex; gap:36px; font-size:0.92rem; font-weight:500; }
.nav-links a{ color:var(--muted); position:relative; padding-bottom:4px; transition:color .25s; }
.nav-links a:hover, .nav-links a:focus-visible{ color:var(--ecru); }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--red); transition:width .25s;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after{ width:100%; }
.nav-right{ display:flex; align-items:center; gap:18px; }
.cart-btn{
  display:flex; align-items:center; gap:8px;
  background:var(--panel); border:1px solid var(--line);
  padding:9px 16px; border-radius:999px; font-size:0.82rem; font-weight:600;
  cursor:pointer; transition:border-color .25s, transform .15s; color:var(--ecru);
}
.cart-btn:hover{ border-color:var(--red); }
.cart-btn:active{ transform:scale(0.96); }
.burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.burger span{ width:22px; height:2px; background:var(--ecru); display:block; }

/* ---------- HERO ---------- */
.hero{ position:relative; z-index:1; padding:70px 32px 40px; max-width:1240px; margin:0 auto; }
.hero-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:24px; flex-wrap:wrap; }
.eyebrow{ color:var(--red); display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.eyebrow::before{ content:""; width:22px; height:1px; background:var(--red); }
.hero h1{ font-size:clamp(3.2rem, 9vw, 7.2rem); color:var(--ecru); }
.hero h1 .stroke{ -webkit-text-stroke:2px var(--red); color:transparent; }
.hero h1 .fill{ color:var(--red); }
.hero-sub{ max-width:340px; color:var(--muted); font-size:1rem; line-height:1.6; padding-top:10px; }

.hero-stage{
  position:relative; margin-top:36px; border-radius:var(--radius);
  background:linear-gradient(160deg, var(--red-deep), #2a1a18 60%, #121013);
  border:1px solid var(--line); min-height:420px;
  display:grid; grid-template-columns:1.1fr 0.9fr; overflow:hidden;
}
.stage-copy{ padding:44px; display:flex; flex-direction:column; justify-content:space-between; position:relative; z-index:2; }
.stage-copy p{ color:#f0c9c6; max-width:360px; line-height:1.6; font-size:1.02rem; }
.cta-row{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.btn-primary{
  background:var(--ecru); color:#1a1213; padding:15px 26px; border-radius:999px;
  font-weight:700; font-size:0.92rem; display:inline-flex; align-items:center; gap:10px;
  border:none; cursor:pointer; transition:transform .2s, box-shadow .2s; font-family:inherit;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(0,0,0,0.4); }
.btn-ghost{
  color:var(--ecru); font-weight:600; font-size:0.9rem; display:inline-flex; align-items:center; gap:8px;
  border-bottom:1px solid var(--line); padding-bottom:3px;
}

.stamp{ position:absolute; top:26px; right:26px; width:118px; height:118px; z-index:3; animation:spin 16s linear infinite; }
@media (prefers-reduced-motion: reduce){ .stamp{ animation:none; } }
@keyframes spin{ to{ transform:rotate(360deg); } }

.stage-visual{
  position:relative; display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 60% 30%, rgba(228,52,42,0.25), transparent 55%);
  overflow:hidden;
}
.stage-visual img.logo-watermark{
  width:64%; opacity:0.92; filter:drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.stage-visual img.hero-product-photo{
  width:100%; height:100%; object-fit:cover; opacity:0.95;
}
.price-chip{
  position:absolute; bottom:24px; left:24px; background:rgba(18,16,19,0.78);
  backdrop-filter:blur(8px); border:1px solid var(--line); border-radius:14px; padding:12px 16px; z-index:3;
}
.price-chip .name{ font-weight:600; font-size:0.88rem; }
.price-chip .tag{ color:var(--muted); font-size:0.76rem; }
.price-chip .price{ color:var(--red); font-weight:700; margin-top:4px; }

.hero-stats{ display:flex; gap:0; margin-top:34px; border-top:1px solid var(--line); padding-top:24px; flex-wrap:wrap; }
.stat{ flex:1; min-width:150px; padding-right:28px; }
.stat .num{ font-family:'Anton', sans-serif; font-size:2.1rem; color:var(--ecru); }
.stat .lbl{ color:var(--muted); font-size:0.8rem; margin-top:4px; }

/* ---------- MARQUEE ---------- */
.marquee{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--red); padding:14px 0; overflow:hidden; position:relative; z-index:1; }
.marquee-track{ display:flex; gap:48px; white-space:nowrap; animation:scroll 22s linear infinite; width:max-content; }
.marquee-track span{ font-family:'Anton', sans-serif; font-size:1.1rem; text-transform:uppercase; color:#1a1213; display:flex; align-items:center; gap:16px; }
.marquee-track span::after{ content:"✶"; color:#1a1213; opacity:0.6; }
@keyframes scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

/* ---------- SECTIONS ---------- */
section{ position:relative; z-index:1; padding:90px 32px; }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:44px; flex-wrap:wrap; }
.section-head h2{ font-size:clamp(2.2rem,5vw,3.4rem); }
.section-head .desc{ color:var(--muted); max-width:340px; font-size:0.95rem; line-height:1.6; }
.label-tag{ color:var(--red); margin-bottom:10px; display:block; }

.grid-products{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.product-card{ background:var(--panel); border:1px solid var(--line); border-radius:18px; overflow:hidden; transition:transform .3s, border-color .3s; }
.product-card:hover{ transform:translateY(-6px); border-color:var(--red); }
.product-thumb{ height:220px; position:relative; display:flex; align-items:center; justify-content:center; background:linear-gradient(150deg, var(--card-a,#8f1f18), var(--card-b,#1b1719)); }
.product-thumb::before{
  content:attr(data-tag); position:absolute; top:12px; left:12px; font-family:'JetBrains Mono', monospace;
  font-size:0.66rem; letter-spacing:0.08em; text-transform:uppercase; background:rgba(18,16,19,0.6);
  padding:5px 9px; border-radius:999px; color:#f0c9c6;
}
.product-thumb .glyph{ font-family:'Anton', sans-serif; font-size:2.6rem; color:rgba(255,255,255,0.18); }
.product-thumb .product-photo{ width:100%; height:100%; object-fit:cover; }
.exclusive-badge{
  position:absolute; top:12px; right:12px; z-index:2;
  background:var(--ecru); color:#1a1213; font-size:0.66rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.05em; padding:5px 10px; border-radius:999px;
}
.product-info{ padding:18px; }
.product-info .pname{ font-weight:700; font-size:1.02rem; margin-bottom:2px; }
.product-info .pcat{ color:var(--muted); font-size:0.8rem; }
.product-info .prow{ display:flex; justify-content:space-between; align-items:center; margin-top:14px; }
.product-info .price{ font-weight:700; color:var(--red); }
.add-btn{
  width:34px; height:34px; border-radius:50%; background:var(--bg-soft); border:1px solid var(--line);
  color:var(--ecru); font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .2s, border-color .2s, transform .15s;
}
.add-btn:hover{ background:var(--red); border-color:var(--red); }
.add-btn:active{ transform:scale(0.9); }

.features{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature{ background:var(--panel); border:1px solid var(--line); border-radius:18px; padding:30px; }
.feature .fi{ width:44px; height:44px; border-radius:12px; background:rgba(228,52,42,0.18); display:flex; align-items:center; justify-content:center; margin-bottom:20px; font-size:1.2rem; }
.feature h3{ font-size:1.15rem; margin-bottom:8px; }
.feature p{ color:var(--muted); font-size:0.9rem; line-height:1.6; }

.manifesto{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.manifesto-visual{
  aspect-ratio:1/1; border-radius:var(--radius);
  background:radial-gradient(circle at 30% 20%, rgba(228,52,42,0.35), transparent 55%), linear-gradient(160deg, #3a1917, #121013);
  border:1px solid var(--line); position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.manifesto-visual img{ width:46%; opacity:0.95; }
.manifesto h2{ font-size:clamp(2.2rem,5vw,3rem); margin-bottom:20px; }
.manifesto p{ color:#f0c9c6; line-height:1.75; font-size:1.02rem; margin-bottom:16px; }
.manifesto p:last-of-type{ margin-bottom:26px; }
.avatars{ display:flex; align-items:center; gap:14px; }
.avatars .stack{ display:flex; }
.avatars .stack span{ width:36px; height:36px; border-radius:50%; border:2px solid var(--bg); margin-left:-10px; background:linear-gradient(135deg,var(--red),#f0c9c6); }
.avatars .stack span:first-child{ margin-left:0; }
.avatars .txt{ font-size:0.85rem; color:var(--muted); }
.avatars .txt b{ color:var(--ecru); }

.newsletter{
  background:linear-gradient(120deg, var(--red-deep), #241615); border-radius:var(--radius); padding:60px;
  display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap; border:1px solid var(--line);
}
.newsletter h2{ font-size:clamp(2rem,4.5vw,2.8rem); max-width:460px; }
.newsletter-form{ display:flex; gap:10px; flex-wrap:wrap; }
.newsletter-form input{
  background:rgba(18,16,19,0.5); border:1px solid rgba(255,255,255,0.2); padding:15px 18px; border-radius:999px;
  color:var(--ecru); font-family:inherit; font-size:0.92rem; min-width:240px;
}
.newsletter-form input::placeholder{ color:var(--muted); }
.newsletter-form input:focus-visible, a:focus-visible, button:focus-visible{ outline:2px solid var(--red); outline-offset:2px; }

footer{ border-top:1px solid var(--line); padding:60px 32px 30px; position:relative; z-index:1; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; }
.footer-grid h4{ font-size:0.85rem; margin-bottom:16px; color:var(--muted); text-transform:uppercase; letter-spacing:0.06em; }
.footer-grid ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-grid a{ color:#f0c9c6; font-size:0.92rem; transition:color .2s; }
.footer-grid a:hover{ color:var(--ecru); }
.footer-brand p{ color:var(--muted); font-size:0.9rem; max-width:280px; margin-top:14px; line-height:1.6; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line); padding-top:22px;
  color:var(--muted); font-size:0.8rem; flex-wrap:wrap; gap:10px;
}

.toast{
  position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--ecru); color:#1a1213; padding:13px 22px; border-radius:999px; font-weight:700; font-size:0.88rem;
  opacity:0; pointer-events:none; transition:opacity .25s, transform .25s; z-index:100; display:flex; align-items:center; gap:8px;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

@media (max-width:980px){
  .hero-stage{ grid-template-columns:1fr; }
  .stage-visual{ min-height:280px; }
  .grid-products{ grid-template-columns:repeat(2,1fr); }
  .features{ grid-template-columns:1fr; }
  .manifesto{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:680px){
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .grid-products{ grid-template-columns:1fr 1fr; }
  .newsletter{ padding:36px 24px; }
  .footer-grid{ grid-template-columns:1fr; }
}