:root {
  --ink: #050505;
  --panel: #0f0f10;
  --panel-2: #18181a;
  --paper: #f6f4f2;
  --muted: #9d9d9d;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e50922;
  --red-hot: #ff2d3f;
  --red-dark: #680812;
  --bone: #d8d1c8;
  --steel: #2b2d31;
  --green: #69d386;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 4%, rgba(229, 9, 34, 0.12), transparent 32%),
    radial-gradient(circle at 86% 0%, rgba(255, 255, 255, 0.035), transparent 24%),
    var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.gate-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(18px, 5vw, 68px);
  border-bottom: 1px solid rgba(229, 9, 34, 0.2);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 164px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 34, 0.62);
  background: #050505;
  box-shadow: 0 0 30px rgba(229, 9, 34, 0.32);
}

.brand-mark img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.04rem;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  margin-left: clamp(10px, 2vw, 24px);
  margin-right: auto;
  color: #d7d2cc;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a {
  opacity: 0.82;
}

.main-nav a:hover {
  color: white;
  opacity: 1;
}

.header-sigil {
  display: grid;
  flex: 0 0 auto;
  width: clamp(52px, 5vw, 76px);
  height: 56px;
  place-items: center;
  margin-left: clamp(18px, 3vw, 44px);
  margin-right: 0;
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(229, 9, 34, 0.28));
}

.header-sigil img {
  display: block;
  width: 100%;
  max-width: 76px;
  max-height: 56px;
  object-fit: contain;
}

.icon-btn {
  display: inline-grid;
  position: relative;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-trigger span {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 74px));
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 68px) 136px;
  overflow: hidden;
  background:
    linear-gradient(100deg, #050505 0%, #080607 44%, rgba(104, 8, 18, 0.54) 68%, #050505 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 14px),
    #050505;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.2), rgba(229, 9, 34, 0.14) 54%, rgba(5, 5, 5, 0.52)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 84px);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(180deg, transparent, var(--ink));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-logo {
  display: block;
  width: clamp(86px, 10vw, 132px);
  height: auto;
  max-height: 132px;
  margin: 0 0 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.7));
}

.hero-banner {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 34, 0.44);
  background: #111;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.6), 0 0 0 8px rgba(229, 9, 34, 0.035);
}

.hero-banner::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.84) 0%, rgba(5, 5, 5, 0.2) 36%, transparent 70%),
    linear-gradient(180deg, rgba(229, 9, 34, 0.36), transparent 42%, rgba(5, 5, 5, 0.55));
  content: "";
}

.hero-banner img,
.hero-banner video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.12);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-hot);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 8ch;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(229, 9, 34, 0.45), 0 26px 58px rgba(0, 0, 0, 0.64);
}

h2 {
  margin-bottom: 14px;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-copy,
.section-heading p,
.builder-copy p,
.process p {
  color: #c6ced7;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

.hero-copy {
  max-width: 620px;
}

.hero-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(180deg, var(--red-hot), var(--red));
  color: white;
  box-shadow: 0 14px 34px rgba(229, 9, 34, 0.22);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: 34px;
  left: clamp(18px, 5vw, 68px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(229, 9, 34, 0.34);
  background: rgba(229, 9, 34, 0.18);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(5, 5, 5, 0.8);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: white;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.hero-stats span {
  margin-top: 3px;
  color: #b5bec8;
  font-size: 0.88rem;
}

.trust-strip,
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(229, 9, 34, 0.18);
}

.trust-strip div,
.process div {
  padding: 22px clamp(18px, 4vw, 34px);
  background: linear-gradient(180deg, #111, #0b0b0c);
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e7ebef;
  font-weight: 700;
}

.trust-strip svg {
  width: 21px;
  height: 21px;
  color: var(--red);
}

.shop-shell,
.featured-drop,
.builder,
.social-wall,
.contact,
.policy-grid,
.site-footer {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 68px);
}

.featured-drop {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid rgba(229, 9, 34, 0.22);
  border-bottom: 1px solid rgba(229, 9, 34, 0.22);
  background:
    linear-gradient(115deg, rgba(229, 9, 34, 0.18), rgba(5, 5, 5, 0) 48%),
    #080808;
}

.drop-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 850px;
}

.drop-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #c6ced7;
  font-size: 1.08rem;
  line-height: 1.65;
}

.drop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 28px;
}

.drop-specs span,
.product-badge {
  border: 1px solid rgba(229, 9, 34, 0.36);
  background: rgba(229, 9, 34, 0.14);
  color: white;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.drop-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 34, 0.34);
  background: #050505;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.drop-media::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(229, 9, 34, 0.34), transparent 30%),
    linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.72));
  content: "";
}

.drop-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.12);
}

.forge-creed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(229, 9, 34, 0.18);
  border-bottom: 1px solid rgba(229, 9, 34, 0.18);
  background: rgba(229, 9, 34, 0.18);
}

.forge-creed div {
  padding: 22px clamp(18px, 4vw, 40px);
  background:
    linear-gradient(90deg, rgba(229, 9, 34, 0.12), transparent),
    #0b0b0c;
}

.forge-creed span,
.forge-creed strong {
  display: block;
}

.forge-creed span {
  margin-bottom: 8px;
  color: var(--red-hot);
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.forge-creed strong {
  color: #f1eee9;
  font-size: 0.95rem;
}

.section-heading {
  display: grid;
  max-width: 1220px;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 26px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 10px;
}

.shop-tools {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.search-box {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  width: min(100%, 380px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 14px;
}

.search-box input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
}

.search-box input::placeholder {
  color: #8994a2;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-tabs button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #ced6df;
  padding: 0 13px;
  font-weight: 800;
}

.filter-tabs button.active {
  border-color: var(--red);
  background: rgba(240, 24, 45, 0.18);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 34, 0.16);
  background: linear-gradient(180deg, #121214, #0d0d0e);
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.24);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  border-color: rgba(229, 9, 34, 0.46);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
  transform: translateY(-2px);
}

.product-art {
  position: relative;
  aspect-ratio: 1.15 / 1;
  min-height: 0;
  overflow: hidden;
  background: #050505;
}

.product-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 42%, rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at 80% 10%, rgba(229, 9, 34, 0.32), transparent 30%);
  content: "";
}

.product-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08);
  transition: transform 260ms ease;
}

.product-card:hover .product-art img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(10px);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 12px 0 8px;
  color: white;
  font-size: 1.08rem;
  line-height: 1.25;
}

.product-card p {
  color: #aeb8c4;
  line-height: 1.55;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 16px;
}

.spec-list span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 8px;
  color: #d8e1ea;
  font-size: 0.78rem;
  font-weight: 700;
}

.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.buy-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn.mini {
  width: 40px;
  height: 40px;
}

.price {
  color: white;
  font-size: 1.32rem;
  font-weight: 900;
}

.stock {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.stock.low {
  color: var(--bone);
}

.stock.out {
  color: var(--red);
}

.product-card .btn {
  min-width: 116px;
}

.product-card .btn:disabled {
  cursor: not-allowed;
  background: #313942;
  color: #8e98a5;
  transform: none;
}

.builder {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(229, 9, 34, 0.2), rgba(5, 5, 5, 0) 46%),
    #080808;
  color: var(--paper);
}

.builder .eyebrow {
  color: var(--red);
}

.builder-copy p {
  color: #cacaca;
}

.builder-shot {
  margin: 28px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(229, 9, 34, 0.3);
  background: #050505;
}

.builder-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.9) contrast(1.08);
}

.builder-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.builder-form label {
  display: grid;
  gap: 8px;
  color: #f4f4f4;
  font-weight: 800;
}

.builder-form label.full,
.builder-form .full {
  grid-column: 1 / -1;
}

.builder-form input,
.builder-form select,
.builder-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111113;
  color: white;
  padding: 13px 12px;
  outline-color: var(--red);
}

.builder-form input[type="range"] {
  padding: 0;
  accent-color: var(--red);
}

.builder-form textarea {
  resize: vertical;
}

.builder-form .btn {
  width: 100%;
  min-height: 52px;
  align-self: start;
}

.process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 900;
}

.process p {
  color: #adb6c2;
  font-size: 0.96rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(229, 9, 34, 0.18);
}

.policy-grid div {
  min-height: 250px;
  padding: 28px;
  background: linear-gradient(180deg, #111, #0c0c0d);
}

.policy-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 42px;
  color: var(--red);
}

.policy-grid p {
  color: #adb6c2;
  line-height: 1.55;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  grid-auto-rows: clamp(280px, 28vw, 460px);
  gap: 1px;
  background: rgba(229, 9, 34, 0.18);
}

.photo-band figure {
  position: relative;
  min-height: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.photo-band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.12);
}

.photo-band figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 5, 5, 0.52));
  content: "";
}

.social-wall {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  border-top: 1px solid rgba(229, 9, 34, 0.18);
  border-bottom: 1px solid rgba(229, 9, 34, 0.18);
  background:
    linear-gradient(120deg, rgba(229, 9, 34, 0.12), transparent 42%),
    #080808;
}

.social-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #c6ced7;
  font-size: 1.06rem;
  line-height: 1.65;
}

.social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-badges.compact {
  margin-top: 22px;
}

.social-badge {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(229, 9, 34, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 5, 0.78);
  color: #f6f4f2;
  padding: 6px 16px 6px 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.social-badge:hover {
  border-color: rgba(255, 45, 63, 0.76);
  background:
    linear-gradient(180deg, rgba(229, 9, 34, 0.28), rgba(229, 9, 34, 0.08)),
    #0a0a0b;
}

.social-badge img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(229, 9, 34, 0.28));
}

.social-badges.compact .social-badge {
  min-height: 50px;
}

.social-badges.compact .social-badge img {
  width: 34px;
  height: 34px;
}

.insta-feature {
  min-height: 420px;
  max-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 34, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 9, 34, 0.18), transparent 44%),
    #050505;
  padding: 16px;
  box-shadow: var(--shadow);
}

.insta-feature .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  background: #050505 !important;
}

.social-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(220px, 20vw, 320px);
  gap: 1px;
  background: rgba(229, 9, 34, 0.18);
}

.social-gallery a {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #050505;
}

.social-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.1);
  transition: transform 220ms ease;
}

.social-gallery a:hover img {
  transform: scale(1.04);
}

.social-gallery span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.74);
  color: #f6f4f2;
  padding: 8px 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 340px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.68)),
    linear-gradient(0deg, rgba(229, 9, 34, 0.34), rgba(5, 5, 5, 0.08)),
    url("assets/coil1-web.jpg") center / cover;
}

.contact h2 {
  max-width: 780px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 220px;
  gap: clamp(24px, 5vw, 60px);
  border-top: 1px solid rgba(229, 9, 34, 0.22);
  background: #050505;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-footer p {
  max-width: 560px;
  color: #aeb8c4;
  line-height: 1.65;
}

.site-footer h3 {
  color: white;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 10px 0;
  color: #adb6c2;
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 180ms ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.54);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(100%, 460px);
  height: 100%;
  flex-direction: column;
  background: #f7f8f6;
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.quick-view,
.order-confirmation {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(10px);
}

.quick-view.open,
.order-confirmation.open {
  display: grid;
}

.quick-panel {
  position: relative;
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(229, 9, 34, 0.32);
  background: #101010;
  box-shadow: var(--shadow);
}

.quick-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.quick-panel figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.quick-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.1);
}

.quick-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.quick-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.quick-copy p:not(.eyebrow) {
  color: #c6ced7;
  line-height: 1.65;
}

.quick-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.quick-footer strong {
  color: white;
  font-size: 1.7rem;
}

.order-panel {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(229, 9, 34, 0.32);
  background:
    linear-gradient(135deg, rgba(229, 9, 34, 0.18), rgba(5, 5, 5, 0) 48%),
    #101010;
  padding: clamp(26px, 5vw, 46px);
  box-shadow: var(--shadow);
}

.order-panel .icon-btn {
  position: absolute;
  top: 14px;
  right: 14px;
}

.order-panel h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.order-panel p:not(.eyebrow) {
  color: #c6ced7;
  line-height: 1.65;
}

.cart-header,
.cart-summary {
  padding: 22px;
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #dde1e4;
}

.cart-header .eyebrow {
  color: var(--red);
}

.cart-header h2 {
  margin: 0;
  font-size: 2rem;
}

.cart-header .icon-btn {
  border-color: #d2d7dc;
  background: white;
  color: var(--ink);
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 22px;
}

.cart-empty {
  color: #66717d;
  line-height: 1.6;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #dde1e4;
}

.cart-line h3 {
  margin: 0 0 4px;
  color: var(--ink);
}

.cart-line p {
  margin: 0;
  color: #66717d;
  font-size: 0.9rem;
}

.qty {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.qty button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #c9ced3;
  background: white;
}

.cart-price {
  font-weight: 900;
}

.cart-summary {
  display: grid;
  gap: 12px;
  border-top: 1px solid #dde1e4;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary p {
  margin: 4px 0 8px;
  color: #69737d;
  font-size: 0.9rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(5, 8, 12, 0.86);
  backdrop-filter: blur(12px);
}

.gate-open .age-gate {
  display: grid;
}

.age-panel {
  max-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111821;
  padding: clamp(24px, 5vw, 42px);
  box-shadow: var(--shadow);
}

.age-panel h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
}

.age-panel p:not(.eyebrow) {
  color: #c2cad3;
  line-height: 1.65;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  max-width: min(360px, calc(100% - 40px));
  padding: 14px 16px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.return-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.96), rgba(104, 8, 18, 0.58), rgba(5, 5, 5, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px),
    #050505;
}

.return-shell {
  display: grid;
  width: min(100%, 820px);
  min-height: 100vh;
  align-content: center;
  padding: clamp(32px, 8vw, 80px);
}

.return-shell .footer-brand {
  margin-bottom: 42px;
}

.return-shell h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 9rem);
}

.return-shell p:not(.eyebrow) {
  max-width: 620px;
  color: #d4d9df;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.return-shell .btn {
  width: fit-content;
  margin-top: 22px;
}

.admin-page {
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.98), rgba(104, 8, 18, 0.4), rgba(5, 5, 5, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 86px),
    #050505;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(229, 9, 34, 0.24);
  background: rgba(5, 5, 5, 0.92);
  padding: 0 clamp(16px, 4vw, 48px);
  backdrop-filter: blur(16px);
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.admin-actions .btn svg {
  width: 18px;
  height: 18px;
}

.admin-shell {
  padding: clamp(24px, 4vw, 48px);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: end;
  margin-bottom: 24px;
}

.admin-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(4rem, 9vw, 7.5rem);
}

.admin-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #c6ced7;
  font-size: 1.08rem;
  line-height: 1.65;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(229, 9, 34, 0.24);
  background: rgba(229, 9, 34, 0.18);
}

.admin-metrics div {
  min-height: 112px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    #0d0d0e;
}

.admin-metrics span,
.admin-metrics strong {
  display: block;
}

.admin-metrics span {
  color: #aeb8c4;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-metrics strong {
  margin-top: 14px;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(420px, 1fr) minmax(360px, 0.86fr);
  gap: 18px;
  align-items: start;
}

.admin-sidebar,
.admin-list-panel,
.admin-editor {
  border: 1px solid rgba(229, 9, 34, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 11, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.admin-sidebar {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.admin-sidebar .search-box {
  width: 100%;
}

.admin-filter {
  display: grid;
  gap: 8px;
}

.admin-filter button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: #d7d2cc;
  font-weight: 900;
  text-align: left;
  padding: 0 12px;
}

.admin-filter button.active {
  border-color: rgba(255, 45, 63, 0.76);
  background: rgba(229, 9, 34, 0.2);
  color: white;
}

.admin-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.admin-note svg {
  width: 20px;
  height: 20px;
  color: var(--red-hot);
}

.admin-note p {
  margin: 0;
  color: #aeb8c4;
  font-size: 0.86rem;
  line-height: 1.55;
}

.admin-list-panel {
  min-height: 720px;
  padding: 18px;
}

.admin-list-head,
.editor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-list-head h2,
.editor-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.admin-products {
  display: grid;
  gap: 10px;
}

.admin-product {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  padding: 10px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.admin-product:hover,
.admin-product.active {
  border-color: rgba(255, 45, 63, 0.62);
  background: rgba(229, 9, 34, 0.12);
}

.admin-product:hover {
  transform: translateY(-1px);
}

.admin-product img {
  display: block;
  width: 74px;
  height: 64px;
  object-fit: cover;
  background: #050505;
}

.admin-product span {
  color: var(--red-hot);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-product h3 {
  margin: 4px 0;
  color: white;
  line-height: 1.2;
}

.admin-product p {
  margin: 0;
  color: #aeb8c4;
  font-size: 0.88rem;
}

.admin-product strong {
  display: grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(105, 211, 134, 0.42);
  background: rgba(105, 211, 134, 0.1);
  color: var(--green);
}

.admin-product strong.low {
  border-color: rgba(216, 209, 200, 0.42);
  background: rgba(216, 209, 200, 0.1);
  color: var(--bone);
}

.admin-product strong.out {
  border-color: rgba(229, 9, 34, 0.44);
  background: rgba(229, 9, 34, 0.12);
  color: var(--red-hot);
}

.admin-editor {
  padding: 18px;
}

.admin-editor form {
  display: grid;
  gap: 13px;
}

.admin-editor label {
  display: grid;
  gap: 8px;
  color: #f4f4f4;
  font-weight: 900;
}

.admin-editor input,
.admin-editor textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111113;
  color: white;
  padding: 12px;
  outline-color: var(--red);
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.asset-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.asset-drop span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px dashed rgba(255, 45, 63, 0.54);
  background: rgba(229, 9, 34, 0.08);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.asset-drop svg {
  width: 20px;
  height: 20px;
}

.asset-preview {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 34, 0.24);
  background: #050505;
}

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

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  }

  .featured-drop,
  .social-wall,
  .quick-panel {
    grid-template-columns: 1fr;
  }

  .drop-media,
  .quick-panel figure {
    min-height: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip,
  .policy-grid,
  .forge-creed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .social-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-hero,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    grid-template-columns: minmax(220px, 0.5fr) 1fr;
  }

  .admin-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 66px;
  }

  .brand-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .main-nav {
    display: none;
  }

  .header-sigil {
    width: clamp(70px, 24vw, 120px);
    height: 48px;
    margin-left: auto;
    margin-right: 10px;
  }

  .header-sigil img {
    max-width: 120px;
    max-height: 48px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 226px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }

  .hero-banner {
    order: -1;
    width: min(100%, 620px);
    aspect-ratio: 16 / 9;
    justify-self: stretch;
  }

  .hero-banner img {
    object-position: center;
  }

  .hero-logo {
    width: 84px;
    max-height: 84px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .featured-drop,
  .social-wall,
  .builder,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading p,
  .section-heading .eyebrow,
  .section-heading h2 {
    grid-column: auto;
    grid-row: auto;
  }

  .shop-tools,
  .contact {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

  .search-box {
    width: 100%;
  }

  .builder-form {
    grid-template-columns: 1fr;
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

  .policy-grid,
  .forge-creed,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .drop-media,
  .quick-panel figure {
    min-height: 0;
  }

  .quick-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .insta-feature {
    min-height: 320px;
  }

  .social-gallery {
    grid-template-columns: 1fr;
  }

  .social-gallery a {
    min-height: 0;
  }

  .admin-topbar,
  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-topbar {
    position: static;
    padding-block: 14px;
  }

  .admin-metrics,
  .admin-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-sidebar .search-box,
  .admin-filter,
  .admin-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .hero-actions,
  .age-actions,
  .drop-actions,
  .social-badges {
    flex-direction: column;
  }

  .hero-actions .btn,
  .age-actions .btn,
  .drop-actions .btn,
  .social-badge {
    width: 100%;
  }

  .buy-row {
    align-items: stretch;
    flex-direction: column;
  }

  .buy-actions {
    justify-content: space-between;
  }

  .admin-metrics,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-product {
    grid-template-columns: 64px 1fr;
  }

  .admin-product strong {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .header-sigil {
    width: 64px;
    height: 42px;
    margin-left: auto;
    margin-right: 8px;
  }

  .header-sigil img {
    max-width: 64px;
    max-height: 42px;
  }
}
