/* ─────────────────────────────────────────
   DOUBLES — Design Tokens
   ───────────────────────────────────────── */
:root {
  --black: #0A0A0A;
  --white: #F5F4F0;
  --gray: #BEBDB8;
  --acid: #CAFF00;
  --rust: #C75000;

  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #191919;
  --rule: rgba(245, 244, 240, 0.08);
  --text: #F5F4F0;
  --text-dim: #7A7A72;
}

/* ─────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--acid); color: var(--black); }

/* ─────────────────────────────────────────
   TYPOGRAPHY UTILITIES
   ───────────────────────────────────────── */
.label-sm {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.label-acid {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--acid);
}

/* ─────────────────────────────────────────
   MANIFESTO
   ───────────────────────────────────────── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(202, 255, 0, 0.04) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.manifesto-inner { max-width: 900px; position: relative; z-index: 1; }

.manifesto-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.manifesto-kicker::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--acid);
}

.manifesto-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.4;
  margin-bottom: 48px;
}

.manifesto-rule {
  width: 48px;
  height: 2px;
  background: var(--acid);
  margin-bottom: 28px;
}

.manifesto-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────
   MECHANIC
   ───────────────────────────────────────── */
.mechanic {
  background: var(--surface);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.mechanic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule);
}

.mechanic-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.mechanic-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mechanic-kicker::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--acid);
}

.garment-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}

/* Garment card */
.garment-card {
  position: relative;
  overflow: hidden;
}

/* Garment silhouette — t-shirt */
.tshirt-body {
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* T-shirt shape via clip-path */
.tshirt-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  clip-path: polygon(
    15% 0%, 85% 0%,
    100% 8%, 100% 12%,
    82% 12%, 82% 100%,
    18% 100%, 18% 12%,
    0% 12%, 0% 8%
  );
}

/* Colorway fills */
.cw-black .tshirt-body { background: var(--black); }
.cw-white .tshirt-body { background: var(--white); }
.cw-gray .tshirt-body { background: var(--gray); }

.cw-black .tshirt-body::before { background: var(--black); }
.cw-white .tshirt-body::before { background: var(--white); }
.cw-gray .tshirt-body::before { background: var(--gray); }

/* Hoodie */
.hoodie-body {
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hoodie-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  clip-path: polygon(
    15% 0%, 85% 0%,
    100% 12%, 100% 18%,
    82% 18%, 82% 100%,
    18% 100%, 18% 18%,
    0% 18%, 0% 12%
  );
}

.cw-black .hoodie-body { background: var(--black); }
.cw-white .hoodie-body { background: var(--white); }
.cw-gray .hoodie-body { background: var(--gray); }

.cw-black .hoodie-body::before { background: var(--black); }
.cw-white .hoodie-body::before { background: var(--white); }
.cw-gray .hoodie-body::before { background: var(--gray); }

/* Garment label */
.garment-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--rule);
  display: inline-block;
  align-self: flex-start;
}

/* Front text on garment */
.garment-front-text {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

/* Back text on garment */
.garment-back-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.garment-back-text .line-main {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.92;
}

.garment-back-text .line-sub {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(20px, 3.5vw, 42px);
  font-weight: 400;
  text-align: center;
  line-height: 1.0;
  margin-top: 4px;
}

/* Distressed/grunge text */
.distressed {
  position: relative;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.4),
    2px 2px 0 rgba(0,0,0,0.3),
    -1px -1px 0 rgba(255,255,255,0.08),
    0 0 12px rgba(0,0,0,0.5);
  filter: contrast(1.1) brightness(0.95);
}

/* Paint-slap script */
.paint-slap {
  font-family: 'Permanent Marker', cursive;
  position: relative;
}

/* Paint splatter background */
.paint-splatter {
  position: relative;
}
.paint-splatter::after {
  content: '';
  position: absolute;
  inset: -10px;
  background:
    radial-gradient(ellipse 8px 12px at 15% 20%, rgba(202,255,0,0.25) 0%, transparent 100%),
    radial-gradient(ellipse 6px 8px at 85% 15%, rgba(202,255,0,0.2) 0%, transparent 100%),
    radial-gradient(ellipse 10px 14px at 78% 80%, rgba(202,255,0,0.18) 0%, transparent 100%),
    radial-gradient(ellipse 5px 7px at 22% 78%, rgba(202,255,0,0.2) 0%, transparent 100%),
    radial-gradient(ellipse 7px 9px at 50% 50%, rgba(202,255,0,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 12px 8px at 90% 45%, rgba(202,255,0,0.15) 0%, transparent 100%),
    radial-gradient(ellipse 4px 6px at 10% 55%, rgba(202,255,0,0.2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.paint-splatter > * { position: relative; z-index: 1; }

/* Rust paint splatter variant */
.paint-splatter-rust::after {
  background:
    radial-gradient(ellipse 8px 12px at 15% 20%, rgba(199,80,0,0.3) 0%, transparent 100%),
    radial-gradient(ellipse 6px 8px at 85% 15%, rgba(199,80,0,0.25) 0%, transparent 100%),
    radial-gradient(ellipse 10px 14px at 78% 80%, rgba(199,80,0,0.2) 0%, transparent 100%),
    radial-gradient(ellipse 5px 7px at 22% 78%, rgba(199,80,0,0.25) 0%, transparent 100%),
    radial-gradient(ellipse 7px 9px at 50% 50%, rgba(199,80,0,0.1) 0%, transparent 100%),
    radial-gradient(ellipse 12px 8px at 90% 45%, rgba(199,80,0,0.18) 0%, transparent 100%),
    radial-gradient(ellipse 4px 6px at 10% 55%, rgba(199,80,0,0.2) 0%, transparent 100%);
}

/* Colorway text overrides */
.cw-black .garment-front-text,
.cw-black .garment-label { color: var(--white); }
.cw-black .garment-back-text .line-main { color: var(--acid); }
.cw-black .garment-back-text .line-sub { color: var(--acid); }

.cw-white .garment-front-text,
.cw-white .garment-label { color: var(--black); }
.cw-white .garment-back-text .line-main { color: var(--black); }
.cw-white .garment-back-text .line-sub { color: var(--black); }

.cw-gray .garment-front-text,
.cw-gray .garment-label { color: var(--black); }
.cw-gray .garment-back-text .line-main { color: var(--black); }
.cw-gray .garment-back-text .line-sub { color: var(--black); }

/* Rust colorway variant */
.cw-rust .garment-front-text,
.cw-rust .garment-label { color: var(--white); }
.cw-rust .garment-back-text .line-main { color: var(--acid); }
.cw-rust .garment-back-text .line-sub { color: var(--acid); }
.cw-rust .tshirt-body,
.cw-rust .tshirt-body::before { background: var(--rust); }
.cw-rust .hoodie-body,
.cw-rust .hoodie-body::before { background: var(--rust); }

.mechanic-explainer {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.7;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   PALETTE
   ───────────────────────────────────────── */
.palette {
  padding: 120px 48px;
  background: var(--bg);
  position: relative;
}

.palette::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

.palette-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.palette-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.palette-kicker::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--acid);
}

.colorway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.colorway-card {
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  cursor: default;
}

.colorway-swatch {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  position: relative;
}

.colorway-swatch .swatch-shape {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.colorway-swatch .swatch-sub {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
}

.colorway-meta {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--rule);
}

.colorway-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.colorway-hex {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.colorway-combo {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Palette CTA */
.palette-cta {
  margin-top: 64px;
  text-align: center;
}

.palette-cta-text {
  font-size: clamp(24px, 3.5vw, 40px);
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}

.palette-cta-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────
   COLLECTION
   ───────────────────────────────────────── */
.collection {
  padding: 120px 48px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.collection::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(202, 255, 0, 0.03) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.collection-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.collection-header {
  margin-bottom: 72px;
}

.collection-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.collection-kicker::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--acid);
}

.collection-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.4;
}

/* Product group */
.product-group {
  margin-bottom: 72px;
}

.product-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.product-group-label span {
  color: var(--text);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Product card */
.product-card {
  position: relative;
  overflow: hidden;
}

/* Garment area — CSS silhouette */
.product-garment {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-garment .garment-bg {
  position: absolute;
  inset: 0;
}

/* T-shirt clip path */
.product-garment.tshirt .garment-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 168px;
  clip-path: polygon(
    18% 0%, 82% 0%,
    100% 8%, 100% 12%,
    83% 12%, 83% 100%,
    17% 100%, 17% 12%,
    0% 12%, 0% 8%
  );
}

/* Hoodie clip path — slightly taller */
.product-garment.hoodie .garment-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 176px;
  clip-path: polygon(
    18% 0%, 82% 0%,
    100% 12%, 100% 20%,
    83% 20%, 83% 100%,
    17% 100%, 17% 20%,
    0% 20%, 0% 12%
  );
}

/* Front text on product card */
.product-front-text {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  word-break: break-word;
}

/* Back text on product card */
.product-back-text {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 3;
}

.product-back-text .pb-main {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
}

.product-back-text .pb-sub {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(18px, 2.5vw, 30px);
  text-align: center;
  line-height: 1.0;
  margin-top: 6px;
}

/* Colorway assignments for product cards */
.cw-black-bg .garment-bg { background: var(--black); }
.cw-white-bg .garment-bg { background: var(--white); }
.cw-gray-bg .garment-bg { background: var(--gray); }
.cw-gray-black-bg .garment-bg { background: var(--gray); }
.cw-gray-white-bg .garment-bg { background: var(--gray); }

/* Front text color by background */
.cw-black-bg .product-front-text { color: var(--white); }
.cw-white-bg .product-front-text { color: var(--black); }
.cw-gray-bg .product-front-text { color: var(--black); }
.cw-gray-black-bg .product-front-text { color: var(--black); }
.cw-gray-white-bg .product-front-text { color: var(--white); }

/* Back text color */
.cw-black-bg .pb-main,
.cw-black-bg .pb-sub { color: var(--acid); }
.cw-white-bg .pb-main,
.cw-white-bg .pb-sub { color: var(--black); }
.cw-gray-bg .pb-main,
.cw-gray-bg .pb-sub { color: var(--black); }
.cw-gray-black-bg .pb-main,
.cw-gray-black-bg .pb-sub { color: var(--black); }
.cw-gray-white-bg .pb-main,
.cw-gray-white-bg .pb-sub { color: var(--white); }

/* Two-line clue card (#12) */
.pb-clue {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}
.pb-clue-sub {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(14px, 1.8vw, 22px);
  text-align: center;
  line-height: 1.1;
  margin-top: 4px;
}

/* Long front text variant (#35) */
.product-front-text--long {
  font-size: clamp(9px, 1.1vw, 12px) !important;
  letter-spacing: 0.04em;
}

/* Hover effect on product cards */
.product-card {
  transition: transform 0.2s ease;
}
.product-card:hover {
  transform: translateY(-2px);
}

/* Product card meta */
.product-meta {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--rule);
  background: var(--surface-2);
}

.product-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 8px;
}

.product-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.product-q {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.product-arrow {
  color: var(--acid);
  font-size: 11px;
}

.product-a {
  font-family: 'Permanent Marker', cursive;
  font-size: 12px;
  color: var(--acid);
}

.product-type-spec {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.7;
}

/* ─────────────────────────────────────────
   CLOSING
   ───────────────────────────────────────── */
.closing {
  background: var(--bg);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(202, 255, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }

.closing-mark {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 40px;
}

.closing-mark .accent-word {
  color: var(--acid);
  display: block;
}

.closing-tagline {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 48px;
}

.closing-rule {
  width: 2px;
  height: 56px;
  background: var(--acid);
  margin: 0 auto 28px;
}

.closing-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--rule);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-meta span {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.footer-slug { color: var(--acid); }

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 768px) {
  .manifesto, .mechanic, .palette, .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }

  .garment-pair { grid-template-columns: 1fr; }
  .colorway-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .collection { padding: 80px 24px; }
  .collection-header { margin-bottom: 48px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { align-items: center; }
}

@media (max-width: 480px) {
  .colorway-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}