/* ==========================================================================
   WRENCHED SYNDICATE — v2 brand system (black / red / white)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Rubik+Wet+Paint&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root{
  --bg:        #0a0a0b;
  --bg-panel:  #141415;
  --bg-panel-2:#1c1c1e;
  --line:      #2b2b2d;
  --white:     #f5f5f4;
  --gray:      #9a9a9d;
  --gray-dim:  #6b6b6e;
  --red:       #c81e1e;
  --red-dim:   #8f1414;
  --red-glow:  rgba(200,30,30,0.35);

  --display: 'Anton', Impact, sans-serif;
  --script:  'Rubik Wet Paint', cursive;
  --body:    'Work Sans', -apple-system, sans-serif;

  --wrap: 1240px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--white);
  font-family:var(--body); font-size:16px; line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 32px; }
button{ font-family:inherit; cursor:pointer; }

h1,h2,h3{
  font-family:var(--display); font-weight:400; text-transform:uppercase;
  letter-spacing:0.01em; margin:0; line-height:0.95;
}
p{ margin:0 0 1em; color:var(--gray); }
p:last-child{ margin-bottom:0; }
.eyebrow{
  font-family:var(--body); font-weight:700; font-size:13px;
  letter-spacing:0.16em; text-transform:uppercase; color:var(--red);
}

/* ---------- icon helpers ---------- */
.icon{ width:20px; height:20px; display:inline-block; fill:none; stroke:currentColor; stroke-width:1.6; }
.icon.filled{ fill:currentColor; stroke:none; }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(10,10,11,0.92); backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.nav{
  max-width:var(--wrap); margin:0 auto; padding:16px 32px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand{ line-height:0.8; display:flex; align-items:center; }
.brand img{ height:30px; width:auto; display:block; }
.nav-links{
  display:flex; gap:28px; list-style:none; margin:0; padding:0;
}
.nav-links a{
  font-size:13px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--white); padding-bottom:6px; border-bottom:2px solid transparent;
  transition:color .15s ease, border-color .15s ease;
}
.nav-links a:hover{ color:var(--red); }
.nav-links a.active{ color:var(--red); border-color:var(--red); }
.nav-right{ display:flex; align-items:center; gap:16px; }
.social-row{ display:flex; gap:14px; }
.social-row a{ color:var(--white); opacity:0.85; transition:opacity .15s ease, color .15s ease; }
.social-row a:hover{ opacity:1; color:var(--red); }
.cart{ position:relative; color:var(--white); }
.cart .badge{
  position:absolute; top:-8px; right:-9px;
  background:var(--red); color:var(--white); font-size:10px; font-weight:700;
  border-radius:50%; width:16px; height:16px; display:flex; align-items:center; justify-content:center;
}
.nav-toggle{ display:none; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  padding:14px 26px; border:1.5px solid var(--red); color:var(--white);
  background:transparent; transition:background .15s ease, color .15s ease;
}
.btn:hover{ background:var(--red); }
.btn.solid{ background:var(--red); border-color:var(--red); }
.btn.solid:hover{ background:var(--red-dim); border-color:var(--red-dim); }
.btn.small{ padding:9px 16px; font-size:11px; }
.btn.ghost{ border-color:var(--line); color:var(--gray); }
.btn.ghost:hover{ border-color:var(--white); color:var(--white); background:transparent; }

/* ---------- hero (home) ---------- */
.hero{
  position:relative; min-height:520px; display:flex; align-items:flex-end;
  overflow:hidden; border-bottom:1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(6,6,7,0.86) 0%, rgba(6,6,7,0.55) 45%, rgba(6,6,7,0.25) 75%, rgba(6,6,7,0.15) 100%),
    linear-gradient(0deg, rgba(6,6,7,0.65) 0%, rgba(6,6,7,0.05) 35%, transparent 60%),
    url('assets/hero-bg.png');
  background-size: cover;
  background-position: center 12%;
}
.hero-floor{ display:none; }
.hero-glow{ display:none; }
.hero-inner{ position:relative; z-index:2; padding:80px 0 56px; width:100%; }
.hero-tag{
  font-size:13px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--gray); display:block; margin-bottom:24px;
}
.hero h1.headline{ font-size:clamp(48px, 8vw, 96px); }
.hero h1.headline .line2{
  font-family:var(--script); color:var(--red); font-size:clamp(46px, 8vw, 92px);
  display:block; line-height:0.9; margin-top:2px;
}
.hero-logo{ max-width:480px; width:100%; height:auto; display:block; margin-bottom:8px; }
.hero .lede{
  margin-top:18px; font-size:14px; font-weight:700; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--gray-dim);
}
.hero-actions{ margin-top:26px; }
.scroll-cue{
  position:absolute; bottom:26px; left:0; right:0; text-align:center; z-index:2;
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:var(--gray-dim);
}
.scroll-cue .chev{
  display:block; margin:8px auto 0; width:16px; height:16px;
  border-right:2px solid var(--gray-dim); border-bottom:2px solid var(--gray-dim);
  transform:rotate(45deg); animation:bob 1.8s ease-in-out infinite;
}
@keyframes bob{ 0%,100%{ transform:rotate(45deg) translate(0,0);} 50%{ transform:rotate(45deg) translate(4px,4px);} }

/* ---------- feature bar ---------- */
.feature-bar{
  border-bottom:1px solid var(--line);
  background:var(--bg-panel);
}
.feature-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0;
}
.feature-item{
  padding:34px 28px; display:flex; align-items:center; gap:16px;
  border-right:1px solid var(--line);
}
.feature-item:last-child{ border-right:none; }
.feature-icon{
  width:44px; height:44px; flex:0 0 auto; border-radius:50%;
  border:1.5px solid var(--red); display:flex; align-items:center; justify-content:center;
  color:var(--red);
}
.feature-item h3{ font-size:14px; letter-spacing:0.04em; margin-bottom:3px; }
.feature-item p{ font-size:12.5px; color:var(--gray-dim); }

/* ---------- section scaffolding ---------- */
section{ padding:76px 0; }
section.tight{ padding:52px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:38px; gap:20px; flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(26px,3.6vw,38px); }
.section-head .view-all{
  font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--red);
}
.section-head .view-all:hover{ text-decoration:underline; }
.section-head.center{ justify-content:center; text-align:center; flex-direction:column; align-items:center; }

/* ---------- placeholder media block ---------- */
.ph-media{
  position:relative; background:
    linear-gradient(135deg, #1c1c1e 0%, #0e0e0f 100%);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--gray-dim); overflow:hidden;
}
.ph-media .ph-icon{ width:34px; height:34px; opacity:0.5; }
.ph-media .ph-label{
  position:absolute; bottom:10px; left:10px; right:10px;
  font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gray-dim);
  text-align:center; opacity:0.7;
}
.ph-media::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 50% 40%, rgba(200,30,30,0.10), transparent 65%);
}

/* ---------- product cards (apparel) ---------- */
.product-row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.product-card{ position:relative; }
.product-card .ph-media{ aspect-ratio:1/1; margin-bottom:14px; }
.product-card .badge-new{
  position:absolute; top:10px; left:10px; z-index:3;
  background:var(--red); color:var(--white); font-size:10px; font-weight:700;
  letter-spacing:0.06em; padding:4px 9px;
}
.product-card h4{
  font-family:var(--body); font-weight:700; font-size:13.5px;
  letter-spacing:0.03em; text-transform:uppercase; margin-bottom:4px; color:var(--white);
}
.product-card .price{ color:var(--red); font-weight:700; font-size:14px; }

/* ---------- project cards (home featured) ---------- */
.project-row{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.project-card{ position:relative; }
.project-card .ph-media{ aspect-ratio:16/10; }
.project-card .overlay{
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(0deg, rgba(0,0,0,0.82) 10%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:24px;
}
.project-card h3{ font-size:clamp(22px,2.6vw,28px); margin-bottom:14px; }
.project-card .eyebrow{ margin-bottom:6px; display:block; }

/* ---------- garage / timeline page ---------- */
.filter-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.filter-tab{
  font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  padding:10px 18px; border:1px solid var(--line); color:var(--gray);
  background:transparent; transition:all .15s ease;
}
.filter-tab.active, .filter-tab:hover{ background:var(--red); border-color:var(--red); color:var(--white); }

.timeline{ position:relative; }
.timeline::before{
  content:""; position:absolute; right:70px; top:6px; bottom:6px; width:1px;
  background:var(--line);
}
.timeline-row{
  display:grid; grid-template-columns:260px 1fr 90px; gap:28px;
  align-items:center; padding:26px 0; border-bottom:1px solid var(--line);
  position:relative;
}
.timeline-row:first-child{ padding-top:0; }
.timeline-row .ph-media{ aspect-ratio:4/3; }
.timeline-row h3{ font-size:clamp(18px,2.2vw,22px); margin-bottom:8px; }
.timeline-row .year{
  position:relative; text-align:right; font-family:var(--display); font-size:20px; color:var(--gray-dim);
}
.timeline-row .year::before{
  content:""; position:absolute; right:-34px; top:50%; transform:translateY(-50%);
  width:9px; height:9px; border-radius:50%; background:var(--red);
  box-shadow:0 0 0 4px var(--bg);
}
@media (max-width:820px){
  .timeline-row{ grid-template-columns:1fr; gap:14px; }
  .timeline::before{ display:none; }
  .timeline-row .year{ text-align:left; }
  .timeline-row .year::before{ display:none; }
}

/* ---------- page banner ---------- */
.page-banner{ padding:64px 0 44px; border-bottom:1px solid var(--line); background:var(--bg-panel); }
.page-banner h1{ font-size:clamp(38px,6vw,60px); }
.page-banner .accent{ color:var(--red); font-family:var(--script); font-size:clamp(30px,5vw,50px); display:block; }

/* ---------- footer ---------- */
.site-footer{ border-top:1px solid var(--line); padding:56px 0 0; }
.footer-grid{
  display:grid; grid-template-columns:1.3fr 0.8fr 0.8fr 1.1fr; gap:40px;
  padding-bottom:44px;
}
.footer-grid h4{
  font-size:12px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gray); margin:0 0 16px;
}
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-grid li{ margin-bottom:9px; }
.footer-grid a{ color:var(--gray); font-size:14px; }
.footer-grid a:hover{ color:var(--red); }
.footer-brand img{ height:36px; width:auto; display:block; margin-bottom:14px; }
.newsletter-form{ display:flex; gap:0; margin-top:14px; }
.newsletter-form input{
  flex:1; background:var(--bg-panel-2); border:1px solid var(--line); border-right:none;
  color:var(--white); font-family:var(--body); font-size:13px; padding:12px 14px;
}
.newsletter-form input:focus{ outline:none; border-color:var(--red); }
.newsletter-form button{
  background:var(--red); border:1px solid var(--red); color:var(--white);
  font-size:12px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:0 18px;
}
.newsletter-form button:hover{ background:var(--red-dim); }
.footer-bottom{
  border-top:1px solid var(--line); padding:20px 0;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:12.5px; color:var(--gray-dim);
}
.footer-bottom a{ color:var(--gray-dim); margin-left:18px; }
.footer-bottom a:hover{ color:var(--red); }

/* ---------- intake / contact form ---------- */
.intake-form{ display:grid; gap:16px; max-width:520px; }
.intake-form label{
  font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--gray); display:block; margin-bottom:6px;
}
.intake-form input, .intake-form textarea{
  width:100%; background:var(--bg-panel-2); border:1px solid var(--line);
  color:var(--white); font-family:var(--body); font-size:15px; padding:12px 14px;
}
.intake-form input:focus, .intake-form textarea:focus{ outline:2px solid var(--red); outline-offset:1px; }

@media (max-width:960px){
  .nav-links{ display:none; }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-item{ border-bottom:1px solid var(--line); }
  .product-row{ grid-template-columns:repeat(2,1fr); }
  .project-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation:none !important; transition:none !important; }
}
