/* ---------- Tokens ---------- */
:root{
  --bg: #0b0b0c;
  --bg-elevated: #141416;
  --bg-elevated-2: #1b1b1e;
  --text: #f5f0e6;
  --text-muted: #a8a29a;
  --accent: #ff4b1f;
  --accent-soft: rgba(255, 75, 31, 0.16);
  --border: rgba(245, 240, 230, 0.12);
  --font-display: 'Anton', sans-serif;
  --font-body: 'Epilogue', sans-serif;
  --container: 1180px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 7rem;
}

/* ---------- Reset ---------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, p{ margin: 0; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.skip-link{
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus{
  position: fixed;
  left: var(--space-2);
  top: var(--space-2);
  z-index: 100;
  background: var(--accent);
  color: #0b0b0c;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: 600;
}

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Grain texture ---------- */
.grain{
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}
.logo{
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}
.logo-accent{ color: var(--accent); font-size: 0.7em; }

.site-nav{
  display: flex;
  gap: var(--space-4);
  font-weight: 600;
  font-size: 0.9rem;
}
.site-nav a{
  position: relative;
  padding: 0.25rem 0;
  color: var(--text-muted);
  transition: color 200ms ease;
}
.site-nav a:hover{ color: var(--text); }
.site-nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 200ms ease;
}
.site-nav a:hover::after{ width: 100%; }

.header-cta{
  display: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--text);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.header-cta:hover{
  background: var(--accent);
  color: #0b0b0c;
  transform: translateY(-1px);
}

@media (min-width: 640px){
  .header-cta{ display: inline-flex; align-items: center; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 250ms ease, background 200ms ease;
}
.btn-primary{
  background: var(--accent);
  color: #0b0b0c;
  box-shadow: 0 0 0 0 var(--accent-soft);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -5px rgba(255, 75, 31, 0.45);
}
.btn-primary:active{ transform: translateY(0); }
.btn-large{ font-size: 1.05rem; padding: 1.1rem 1.9rem; }
.btn-arrow{
  width: 18px; height: 18px;
  transition: transform 200ms ease;
}
.btn:hover .btn-arrow{ transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.hero-inner{ max-width: 760px; }
.eyebrow{
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.hero-headline{
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 13vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero-sub{
  margin-top: var(--space-3);
  max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
}
.hero .btn{ margin-top: var(--space-4); }

.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: var(--space-3);
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 999px;
}
.scroll-cue span{
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--accent);
  border-radius: 999px;
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{ opacity: 1; transform: translateY(0); }
  60%{ opacity: 0.2; transform: translateY(14px); }
  100%{ opacity: 0; transform: translateY(14px); }
}

/* ---------- Product ---------- */
.product{
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
}
.product-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 900px){
  .product-inner{
    grid-template-columns: 0.95fr 1fr;
    gap: var(--space-6);
  }
}

.product-visual{ display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.tee-floater{
  width: 100%;
  max-width: 380px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}
.tee-photo{
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.thread-meta{ display: flex; gap: var(--space-2); }
.thread-pill{
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

.product-copy{ max-width: 540px; }
.comment-id{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: var(--space-2);
  min-height: 1.4em;
}
.caret{
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: -0.1em;
  animation: blink 1s step-end infinite;
}
@keyframes blink{ 50%{ opacity: 0; } }

.product-title{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.product-desc{
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-3);
}
.product-specs{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-4);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.product-specs li{
  padding-left: 1.1rem;
  position: relative;
}
.product-specs li::before{
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 999px;
}

.price-row{
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: var(--space-3);
}
.price{
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
}
.price-note{ color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery{ padding: var(--space-5) 0 var(--space-6); border-top: 1px solid var(--border); }
.gallery-inner .social-label{ text-align: center; }
.gallery-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
@media (min-width: 700px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
.gallery-item{
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 5;
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
  filter: grayscale(0.08) contrast(1.04);
}
.gallery-item:hover img{ transform: scale(1.04); }

/* ---------- Brand statement ---------- */
.brand-statement{
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.statement-inner{ max-width: 820px; }
.statement-text{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

/* ---------- Social ---------- */
.social{ padding: var(--space-5) 0; border-top: 1px solid var(--border); }
.social-inner{ text-align: center; }
.social-label{
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.social-links{ display: flex; justify-content: center; gap: var(--space-3); }
.social-link{
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.social-link svg{ width: 20px; height: 20px; }
.social-link:hover{
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.site-footer{
  border-top: 1px solid var(--border);
  padding: var(--space-3) 0 var(--space-4);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-inner a{ font-weight: 600; color: var(--text); transition: color 200ms ease; }
.footer-inner a:hover{ color: var(--accent); }

/* ---------- Motion & accessibility ---------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Small screens ---------- */
@media (max-width: 480px){
  .hero{ min-height: 80vh; }
  .footer-inner{ flex-direction: column; gap: 0.5rem; text-align: center; }
}
