/* =====================================================
   ROGUELIFE CLOTHING CO — 2026 REVAMP
   Elevated orange / black — 3D parallax edition
   ===================================================== */

:root {
  --bg: #0a0603;
  --bg-2: #120a04;
  --panel: #17100a;
  --ink: #f5efe8;
  --ink-dim: #a89a8c;
  --orange: #ff5c00;
  --orange-hot: #ff7a1a;
  --orange-deep: #b23c00;
  --ember: #ffb27a;
  --line: rgba(255, 92, 0, 0.18);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: #000; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 999;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); }
  60% { transform: translate(-2%,-2%); }
  80% { transform: translate(3%,3%); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.35s;
  will-change: transform;
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
.btn--lg { padding: 1rem 2.1rem; font-size: 0.85rem; }
.btn--fill {
  background: var(--orange); color: #0a0603;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.btn--fill:hover { background: var(--orange-hot); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,92,0,0.35); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(245,239,232,0.25);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-hot); transform: translateY(-3px); }
.btn--dark { background: #0a0603; color: var(--ink); clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }
.btn--dark:hover { background: #000; transform: translateY(-3px); }

/* ---------- announcement ---------- */
.announce {
  position: relative; z-index: 60;
  background: var(--orange); color: #0a0603;
  overflow: hidden; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; padding: 0.45rem 0;
}
.announce__track { display: flex; gap: 2rem; width: max-content; animation: slide 22s linear infinite; white-space: nowrap; }
.announce__track i { font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(10,6,3,0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(10,6,3,0.88); }
.nav__logo { display: flex; align-items: center; gap: 0.7rem; }
.nav__mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: var(--orange); color: #0a0603;
  font-family: var(--font-display); font-size: 1.05rem;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}
.nav__word { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em; line-height: 1; display: flex; flex-direction: column; }
.nav__word em { font-family: var(--font-body); font-style: normal; font-size: 0.55rem; letter-spacing: 0.42em; color: var(--orange-hot); margin-top: 3px; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim); position: relative; transition: color 0.25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; gap: 0.7rem; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 6px; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(10,6,3,0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.06em; }
.mobile-menu a:not(.btn):hover { color: var(--orange); }

/* =====================================================
   HERO — 3D parallax scene
   ===================================================== */
.hero {
  position: relative;
  min-height: max(100svh, 700px);
  display: grid; place-items: center;
  overflow: hidden;
  perspective: 1200px;
}
.hero__scene {
  position: relative;
  width: 100%; min-height: max(100svh, 700px);
  display: grid; place-items: center;
  transform-style: preserve-3d;
}
.hero__layer { position: absolute; inset: 0; display: grid; place-items: center; will-change: transform; }

/* deep giant typography */
.hero__type {
  flex-direction: column; z-index: 1;
  transform: translateZ(-260px) scale(1.25);
  display: flex; align-items: center; justify-content: center;
  user-select: none; pointer-events: none;
}
.hero__type-line {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 21rem);
  line-height: 0.82; letter-spacing: 0.02em;
}
.hero__type-line--outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 92, 0, 0.32);
}
.hero__type-line--solid { color: rgba(255, 92, 0, 0.09); }

/* glow */
.hero__glow { z-index: 2; pointer-events: none; transform: translateZ(-180px); }
.hero__glow::before {
  content: ""; width: min(60vw, 760px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,0,0.22), rgba(255,92,0,0.05) 45%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.12); opacity: 0.8; } }

/* floating cards */
.hero__cards { z-index: 3; pointer-events: none; }
.hcard {
  position: absolute;
  width: clamp(130px, 15vw, 220px);
  background: linear-gradient(160deg, rgba(30,20,12,0.92), rgba(14,9,5,0.92));
  border: 1px solid var(--line);
  padding: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02) inset;
  will-change: transform;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.hcard img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(1.05) contrast(1.04); }
.hcard figcaption {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--ink-dim); padding-top: 8px;
}
.hcard figcaption b { color: var(--orange-hot); font-size: 0.72rem; }
.hcard--1 { top: 14%; left: 6%; transform: translateZ(90px) rotate(-7deg); animation: float1 7s ease-in-out infinite; }
.hcard--2 { top: 55%; left: 13%; transform: translateZ(40px) rotate(5deg); width: clamp(110px, 12vw, 180px); animation: float2 9s ease-in-out infinite; }
.hcard--3 { top: 12%; right: 7%; transform: translateZ(130px) rotate(6deg); animation: float3 8s ease-in-out infinite; }
.hcard--4 { top: 58%; right: 14%; transform: translateZ(30px) rotate(-5deg); width: clamp(100px, 11vw, 170px); animation: float4 10s ease-in-out infinite; }
@keyframes float1 { 50% { margin-top: -18px; } }
@keyframes float2 { 50% { margin-top: 14px; } }
@keyframes float3 { 50% { margin-top: -14px; } }
@keyframes float4 { 50% { margin-top: 18px; } }

/* foreground copy */
.hero__copy { z-index: 4; flex-direction: column; text-align: center; transform: translateZ(60px); display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; }
.hero__kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5em;
  color: var(--orange-hot); margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10.5vw, 9.5rem);
  line-height: 0.9; letter-spacing: 0.01em;
  display: flex; flex-direction: column; align-items: center;
  text-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.hero__title-accent {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255,92,0,0.45), 0 20px 60px rgba(0,0,0,0.7);
}
.hero__sub {
  max-width: 520px; margin: 1.6rem auto 2.2rem;
  color: var(--ink-dim); font-size: clamp(0.95rem, 1.4vw, 1.1rem); line-height: 1.65;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* scroll hint + frame */
.hero__scrollhint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.6rem; letter-spacing: 0.5em; color: var(--ink-dim);
}
.hero__scrollhint span { width: 1px; height: 44px; background: linear-gradient(var(--orange), transparent); animation: drip 2s ease-in-out infinite; }
@keyframes drip { 50% { transform: scaleY(0.4); transform-origin: top; } }
.hero__frame { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.hero__frame i {
  position: absolute; font-style: normal;
  font-size: 0.58rem; letter-spacing: 0.32em; color: rgba(245,239,232,0.28);
}
.hero__frame i:nth-child(1) { top: 1.4rem; left: 1.6rem; }
.hero__frame i:nth-child(2) { top: 50%; right: 0.4rem; transform: rotate(90deg) translateY(-50%); transform-origin: right; }
.hero__frame i:nth-child(3) { bottom: 1.4rem; left: 1.6rem; }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 1.1rem 0;
  background: linear-gradient(90deg, var(--bg-2), var(--bg), var(--bg-2));
}
.marquee__track {
  display: flex; align-items: center; gap: 2.6rem; width: max-content;
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  letter-spacing: 0.06em; white-space: nowrap;
  will-change: transform;
}
.marquee__track span:nth-child(4n+1) { color: var(--ink); }
.marquee__track span:nth-child(4n+3) { color: transparent; -webkit-text-stroke: 1px var(--orange); }
.marquee__track i { color: var(--orange); font-style: normal; font-size: 1rem; }

/* ---------- section heads ---------- */
.section-head { text-align: center; padding: 0 1.5rem; margin-bottom: clamp(2.4rem, 5vw, 4rem); position: relative; z-index: 2; }
.section-head__kicker { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5em; color: var(--orange-hot); margin-bottom: 1rem; }
.section-head__title { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 0.95; letter-spacing: 0.01em; }
.section-head__title .stroke { color: transparent; -webkit-text-stroke: 2px var(--orange); }
.section-head__title .accent { color: var(--orange); }
.section-head__note { color: var(--ink-dim); margin-top: 1rem; font-size: 0.92rem; letter-spacing: 0.04em; }

/* =====================================================
   DROPS — horizontal rail with 3D tilt cards
   ===================================================== */
.drops { padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem); position: relative; }
.drops__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 360px);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  overflow-x: auto;
  padding: 1.5rem clamp(1.2rem, 4vw, 3rem) 2.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.drops__rail::-webkit-scrollbar { height: 4px; }
.drops__rail::-webkit-scrollbar-thumb { background: var(--orange); }

.dropcard {
  scroll-snap-align: start;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
  will-change: transform;
}
.dropcard__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--orange); color: #0a0603;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
  padding: 0.35rem 0.7rem;
  transform: translateZ(40px);
}
.dropcard__img { position: relative; overflow: hidden; aspect-ratio: 4/5; transform: translateZ(20px); }
.dropcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.dropcard:hover .dropcard__img img { transform: scale(1.07); }
.dropcard__body { padding: 1.1rem 1.2rem 1.3rem; transform: translateZ(30px); }
.dropcard__name { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.03em; line-height: 1.1; margin-bottom: 0.5rem; }
.dropcard__meta { display: flex; justify-content: space-between; align-items: center; }
.dropcard__price { color: var(--orange-hot); font-weight: 700; font-size: 1.05rem; }
.dropcard__tag { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--ink-dim); text-transform: uppercase; }

/* =====================================================
   COLLECTIONS
   ===================================================== */
.collections { position: relative; padding: clamp(4.5rem, 9vw, 8rem) clamp(1.2rem, 4vw, 3rem); overflow: hidden; }
.collections__bgword {
  position: absolute; top: 6%; left: 50%; translate: -50% 0;
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 19rem);
  color: transparent; -webkit-text-stroke: 1px rgba(255,92,0,0.1);
  white-space: nowrap; pointer-events: none; user-select: none;
  will-change: transform;
}
.collections__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.2rem;
  max-width: 1400px; margin: 0 auto;
}
.colcard {
  position: relative; overflow: hidden;
  aspect-ratio: 16/11;
  border: 1px solid var(--line);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
  display: block;
}
.colcard:nth-child(1) { grid-column: span 2; aspect-ratio: 21/10; }
.colcard img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(0.9) brightness(0.75);
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  transform: scale(1.08);
}
.colcard:hover img { transform: scale(1.16); filter: saturate(1.1) brightness(0.9); }
.colcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,6,3,0.9));
}
.colcard__label {
  position: absolute; left: 1.3rem; bottom: 1.1rem; z-index: 2;
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: 0.03em;
}
.colcard__count {
  position: absolute; right: 1.3rem; bottom: 1.3rem; z-index: 2;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange-hot);
}
.colcard__arrow {
  position: absolute; top: 1.1rem; right: 1.2rem; z-index: 2;
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(245,239,232,0.3); border-radius: 50%;
  font-size: 1rem; color: var(--ink);
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-out);
}
.colcard:hover .colcard__arrow { background: var(--orange); color: #0a0603; transform: rotate(45deg); }

/* =====================================================
   MANIFESTO
   ===================================================== */
.manifesto {
  position: relative; text-align: center;
  padding: clamp(6rem, 12vw, 11rem) 1.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,92,0,0.07), transparent),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.manifesto__float {
  position: absolute; font-family: var(--font-display);
  color: rgba(255,92,0,0.12); pointer-events: none; user-select: none;
  will-change: transform;
}
.manifesto__float--1 { font-size: 7rem; top: 12%; left: 8%; }
.manifesto__float--2 { font-size: 11rem; bottom: 8%; right: 4%; -webkit-text-stroke: 1px rgba(255,92,0,0.2); color: transparent; }
.manifesto__kicker { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5em; color: var(--orange-hot); margin-bottom: 2.4rem; }
.manifesto__lines { display: flex; flex-direction: column; gap: 0.4rem; }
.mline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.4vw, 4.2rem);
  line-height: 1.1; letter-spacing: 0.02em;
  opacity: 0.14; filter: blur(2px);
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s;
}
.mline.on { opacity: 1; transform: none; filter: none; }
.mline em { font-style: normal; color: var(--orange); }
.manifesto__stats {
  display: flex; justify-content: center; gap: clamp(2rem, 7vw, 6rem);
  margin-top: 4rem; flex-wrap: wrap;
}
.manifesto__stats b { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--orange); display: block; }
.manifesto__stats span { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--ink-dim); }

/* =====================================================
   SHOP
   ===================================================== */
.shop { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.2rem, 4vw, 3rem); max-width: 1500px; margin: 0 auto; }
.shop__filters { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.chip {
  background: transparent; color: var(--ink-dim);
  border: 1px solid rgba(245,239,232,0.18);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.55rem 1.2rem; cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.25s;
}
.chip:hover { color: var(--ink); border-color: var(--orange); }
.chip.on { background: var(--orange); color: #0a0603; border-color: var(--orange); }

.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: 1.4rem;
}
.pcard {
  position: relative; display: block;
  background: var(--panel); border: 1px solid rgba(255,92,0,0.1);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform 0.45s var(--ease-out), border-color 0.3s, box-shadow 0.45s;
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0; translate: 0 34px;
}
.pcard.in { opacity: 1; translate: 0 0; transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out), transform 0.45s var(--ease-out), border-color 0.3s, box-shadow 0.45s; }
.pcard:hover { border-color: rgba(255,92,0,0.45); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,92,0,0.08); }
.pcard__img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out), opacity 0.4s; }
.pcard__img img.alt { position: absolute; inset: 0; opacity: 0; }
.pcard:hover .pcard__img img.alt { opacity: 1; }
.pcard:hover .pcard__img img { transform: scale(1.06); }
.pcard__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--orange); color: #0a0603;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.16em; padding: 0.3rem 0.6rem;
}
.pcard__body { padding: 0.95rem 1rem 1.1rem; }
.pcard__name { font-weight: 600; font-size: 0.88rem; letter-spacing: 0.02em; line-height: 1.35; min-height: 2.4em; }
.pcard__row { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.pcard__price { color: var(--orange-hot); font-weight: 700; }
.pcard__cat { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.shop__more { text-align: center; margin-top: 3rem; }
.shop__more.hidden { display: none; }

/* =====================================================
   DROP LIST CTA
   ===================================================== */
.droplist { padding: clamp(3rem, 7vw, 6rem) clamp(1.2rem, 4vw, 3rem); }
.droplist__inner {
  position: relative; overflow: hidden;
  max-width: 1200px; margin: 0 auto;
  text-align: center;
  padding: clamp(3.4rem, 7vw, 6rem) 1.8rem;
  background: linear-gradient(135deg, var(--orange-deep), var(--orange) 55%, var(--orange-hot));
  color: #0a0603;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}
.droplist__bg {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  font-family: var(--font-display); font-size: clamp(5rem, 15vw, 12rem);
  color: rgba(10,6,3,0.08); white-space: nowrap;
  pointer-events: none; will-change: transform;
}
.droplist h2 { position: relative; font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.95; }
.droplist h2 span { color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.25); }
.droplist p { position: relative; max-width: 480px; margin: 1.2rem auto 2rem; font-weight: 500; line-height: 1.6; }
.droplist__form { position: relative; display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.droplist__form input {
  width: min(360px, 100%); padding: 1rem 1.3rem;
  background: rgba(10,6,3,0.92); border: 1px solid transparent; color: var(--ink);
  font-family: var(--font-body); font-size: 0.92rem;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  outline: none; transition: border-color 0.25s;
}
.droplist__form input:focus { border-color: #fff; }
.droplist__ok { display: none; font-weight: 700; }
.droplist__inner.done .droplist__form { display: none; }
.droplist__inner.done .droplist__ok { display: block; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { position: relative; border-top: 1px solid var(--line); padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 4vw, 3rem) 1.6rem; overflow: hidden; background: var(--bg-2); }
.footer__word {
  position: absolute; bottom: -6%; left: 50%; translate: -50% 0;
  font-family: var(--font-display);
  font-size: clamp(6rem, 19vw, 18rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1px rgba(255,92,0,0.09);
  pointer-events: none; user-select: none; white-space: nowrap;
  will-change: transform;
}
.footer__cols {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.4rem; max-width: 1300px; margin: 0 auto 3.5rem;
}
.footer__col--brand p { color: var(--ink-dim); font-size: 0.88rem; line-height: 1.65; margin-top: 1rem; max-width: 260px; }
.footer__col h4 { font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--orange-hot); margin-bottom: 1.1rem; }
.footer__col a { display: block; color: var(--ink-dim); font-size: 0.86rem; padding: 0.32rem 0; transition: color 0.25s, translate 0.25s; }
.footer__col a:hover { color: var(--ink); translate: 4px 0; }
.footer__base {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  max-width: 1300px; margin: 0 auto;
  padding-top: 1.4rem; border-top: 1px solid rgba(255,92,0,0.12);
  font-size: 0.64rem; letter-spacing: 0.18em; color: var(--ink-dim);
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; translate: 0 36px; transition: opacity 0.9s var(--ease-out) var(--d, 0s), translate 0.9s var(--ease-out) var(--d, 0s); }
.reveal.in { opacity: 1; translate: 0 0; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hcard--2, .hcard--4 { display: none; }
  .hcard { width: 118px; opacity: 0.85; }
  .hcard figcaption { display: none; }
  .hcard--1 { top: 4%; left: -3%; }
  .hcard--3 { top: 5%; right: -3%; }
  .hero__copy { padding-top: 4.5rem; }
  .hero__kicker { font-size: 0.6rem; letter-spacing: 0.34em; }
  .colcard:nth-child(1) { grid-column: span 1; aspect-ratio: 16/11; }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .hcard { width: 96px; }
  .hero__title { font-size: clamp(3rem, 17vw, 5rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .pcard, .mline { opacity: 1 !important; translate: 0 0 !important; transform: none !important; filter: none !important; }
}

/* =====================================================
   MULTI-PAGE ADDITIONS
   ===================================================== */

/* page hero (interior pages) */
.phero {
  position: relative; overflow: hidden;
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.2rem, 4vw, 3rem) clamp(2.6rem, 5vw, 4rem);
  text-align: center;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(255,92,0,0.14), transparent), var(--bg);
  border-bottom: 1px solid var(--line);
}
.phero__bgword {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  font-family: var(--font-display); font-size: clamp(5rem, 17vw, 15rem);
  color: transparent; -webkit-text-stroke: 1px rgba(255,92,0,0.09);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.phero__kicker { position: relative; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5em; color: var(--orange-hot); margin-bottom: 1rem; }
.phero__title { position: relative; font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 0.95; }
.phero__title .accent { color: var(--orange); }
.phero__title .stroke { color: transparent; -webkit-text-stroke: 2px var(--orange); }
.phero__sub { position: relative; color: var(--ink-dim); margin-top: 1rem; max-width: 560px; margin-inline: auto; line-height: 1.6; }

/* breadcrumbs */
.crumbs {
  display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
}
.crumbs a { color: var(--ink-dim); transition: color 0.2s; }
.crumbs a:hover { color: var(--orange-hot); }
.crumbs i { font-style: normal; color: var(--orange); }
.crumbs b { color: var(--ink); font-weight: 600; }

/* cart button + badge */
.nav__cart { position: relative; }
.nav__cart-badge {
  position: absolute; top: -7px; right: -9px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--orange); color: #0a0603;
  border-radius: 20px; font-size: 0.58rem; font-weight: 700;
  opacity: 0; scale: 0.5; transition: opacity 0.25s, scale 0.25s var(--ease-out);
}
.nav__cart-badge.show { opacity: 1; scale: 1; }

/* toast */
.toast {
  position: fixed; bottom: 1.6rem; left: 50%; translate: -50% 140%;
  z-index: 200; display: flex; align-items: center; gap: 1rem;
  background: #17100a; border: 1px solid var(--orange);
  padding: 0.85rem 1.2rem; font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: translate 0.45s var(--ease-out);
  max-width: min(92vw, 480px);
}
.toast.show { translate: -50% 0; }
.toast img { width: 42px; height: 52px; object-fit: cover; }
.toast a { color: var(--orange-hot); white-space: nowrap; }

/* =====================================================
   PRODUCT DETAIL
   ===================================================== */
.pd { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); max-width: 1300px; margin: 0 auto; padding: 1rem clamp(1.2rem, 4vw, 3rem) clamp(4rem, 7vw, 6rem); align-items: start; }
.pd__gallery { position: sticky; top: 90px; }
.pd__main {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); background: var(--panel);
  aspect-ratio: 4/5;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}
.pd__main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease-out, opacity 0.25s; will-change: transform; }
.pd__badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--orange); color: #0a0603; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; padding: 0.4rem 0.75rem; }
.pd__thumbs { display: flex; gap: 0.7rem; margin-top: 0.9rem; flex-wrap: wrap; }
.pd__thumb {
  width: 72px; aspect-ratio: 4/5; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(255,92,0,0.15); background: var(--panel); padding: 0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  opacity: 0.55; transition: opacity 0.25s, border-color 0.25s;
}
.pd__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd__thumb.on, .pd__thumb:hover { opacity: 1; border-color: var(--orange); }

.pd__col { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--orange-hot); margin-bottom: 0.9rem; display: block; }
.pd__name { font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 0.98; letter-spacing: 0.01em; margin-bottom: 1.1rem; }
.pd__pricerow { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 1.4rem; }
.pd__price { font-size: 1.7rem; font-weight: 700; color: var(--orange-hot); }
.pd__compare { color: var(--ink-dim); text-decoration: line-through; font-size: 1.05rem; }
.pd__stock { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: #7ee08a; }
.pd__stock--out { color: #e07a7a; }
.pd__short { color: var(--ink-dim); line-height: 1.7; margin-bottom: 1.8rem; max-width: 480px; }

.pd__label { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 0.7rem; display: flex; justify-content: space-between; }
.pd__label b { color: var(--ink); }
.pd__sizes { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.size {
  min-width: 52px; padding: 0.6rem 0.8rem; text-align: center;
  background: transparent; color: var(--ink); cursor: pointer;
  border: 1px solid rgba(245,239,232,0.2);
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  transition: all 0.2s;
}
.size:hover { border-color: var(--orange); color: var(--orange-hot); }
.size.on { background: var(--orange); color: #0a0603; border-color: var(--orange); }

.pd__buyrow { display: flex; gap: 0.8rem; align-items: stretch; margin-bottom: 2.2rem; flex-wrap: wrap; }
.qty { display: flex; border: 1px solid rgba(245,239,232,0.2); clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }
.qty button { width: 44px; background: transparent; border: 0; color: var(--ink); font-size: 1.1rem; cursor: pointer; transition: color 0.2s; }
.qty button:hover { color: var(--orange-hot); }
.qty output { width: 40px; display: grid; place-items: center; font-weight: 700; font-size: 0.95rem; }
.pd__add { flex: 1; min-width: 200px; }
.pd__add:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

.pd__meta { border-top: 1px solid var(--line); }
.pd__acc { border-bottom: 1px solid var(--line); }
.pd__acc summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.05rem 0.2rem; cursor: pointer; list-style: none;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
}
.pd__acc summary::-webkit-details-marker { display: none; }
.pd__acc summary::after { content: "+"; color: var(--orange); font-size: 1.1rem; transition: rotate 0.3s; }
.pd__acc[open] summary::after { rotate: 45deg; }
.pd__acc div { padding: 0 0.2rem 1.2rem; color: var(--ink-dim); font-size: 0.88rem; line-height: 1.75; white-space: pre-line; }

/* related rail */
.related { padding: 0 clamp(1.2rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem); max-width: 1500px; margin: 0 auto; }
.related h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.8rem; }
.related h2 span { color: var(--orange); }
.related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr)); gap: 1.2rem; }

/* =====================================================
   SHOP PAGE
   ===================================================== */
.shoppage { max-width: 1500px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem) clamp(4rem, 7vw, 6rem); }
.shopbar {
  position: sticky; top: 64px; z-index: 30;
  display: flex; gap: 0.9rem; align-items: center; flex-wrap: wrap;
  padding: 0.9rem 0; margin-bottom: 1.8rem;
  background: linear-gradient(rgba(10,6,3,0.96), rgba(10,6,3,0.88));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.shopbar__chips { display: flex; gap: 0.5rem; flex-wrap: wrap; flex: 1; }
.shopbar__right { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.shopbar select, .shopbar input[type="search"] {
  background: var(--panel); color: var(--ink);
  border: 1px solid rgba(245,239,232,0.18); padding: 0.55rem 0.8rem;
  font-family: var(--font-body); font-size: 0.78rem;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  outline: none;
}
.shopbar select:focus, .shopbar input[type="search"]:focus { border-color: var(--orange); }
.shopbar input[type="search"] { width: 170px; }
.shop__count { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 1.4rem; }
.shop__empty { text-align: center; color: var(--ink-dim); padding: 4rem 0; font-size: 0.95rem; }

/* =====================================================
   COLLECTIONS PAGES
   ===================================================== */
.colspage { max-width: 1400px; margin: 0 auto; padding: clamp(2rem, 4vw, 3.5rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 7vw, 6rem); }
.colspage__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 1.3rem; }
.colhero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(5rem, 11vw, 9rem) 1.5rem clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.colhero__img { position: absolute; inset: 0; }
.colhero__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.85); }
.colhero__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,6,3,0.45), var(--bg)); }
.colhero > *:not(.colhero__img) { position: relative; }

/* =====================================================
   INFO / PROSE PAGES
   ===================================================== */
.prose { max-width: 760px; margin: 0 auto; padding: clamp(2.4rem, 5vw, 4rem) 1.5rem clamp(5rem, 8vw, 7rem); }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: 0.03em; color: var(--orange-hot); margin: 2.6rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-dim); line-height: 1.85; font-size: 0.96rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.2rem 1.2rem; }
.prose li { margin-bottom: 0.5rem; }
.prose li::marker { color: var(--orange); }
.prose .stamp { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 2rem; }

/* values grid (about) */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 1.1rem; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem clamp(4rem, 8vw, 7rem); }
.vcard {
  background: var(--panel); border: 1px solid var(--line);
  padding: 1.8rem 1.5rem;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.vcard:hover { transform: translateY(-6px); border-color: rgba(255,92,0,0.4); }
.vcard i { font-style: normal; font-size: 1.5rem; display: block; margin-bottom: 1rem; }
.vcard h3 { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.05em; margin-bottom: 0.6rem; color: var(--orange-hot); }
.vcard p { color: var(--ink-dim); font-size: 0.86rem; line-height: 1.65; }

/* contact */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); max-width: 1100px; margin: 0 auto; padding: clamp(2.4rem, 5vw, 4rem) 1.5rem clamp(5rem, 8vw, 7rem); }
.contact__card { background: var(--panel); border: 1px solid var(--line); padding: 1.5rem; margin-bottom: 1rem; clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); }
.contact__card h3 { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange-hot); margin-bottom: 0.6rem; }
.contact__card p, .contact__card a { color: var(--ink); font-size: 1rem; font-weight: 600; }
.contact__card a:hover { color: var(--orange-hot); }
.contact__card small { display: block; color: var(--ink-dim); font-size: 0.8rem; margin-top: 0.5rem; line-height: 1.6; }
.cform { display: flex; flex-direction: column; gap: 0.9rem; }
.cform input, .cform textarea {
  background: var(--panel); color: var(--ink);
  border: 1px solid rgba(245,239,232,0.16); padding: 0.95rem 1.1rem;
  font-family: var(--font-body); font-size: 0.9rem;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  outline: none; resize: vertical; transition: border-color 0.25s;
}
.cform input:focus, .cform textarea:focus { border-color: var(--orange); }

/* 404 */
.notfound { text-align: center; padding: clamp(6rem, 14vw, 11rem) 1.5rem; }
.notfound h1 { font-family: var(--font-display); font-size: clamp(5rem, 18vw, 13rem); line-height: 0.85; color: transparent; -webkit-text-stroke: 2px var(--orange); }
.notfound p { color: var(--ink-dim); margin: 1.4rem 0 2.2rem; }

@media (max-width: 900px) {
  .pd { grid-template-columns: 1fr; }
  .pd__gallery { position: static; }
  .contact { grid-template-columns: 1fr; }
  .shopbar { top: 56px; }
}
