/* ────────────────────────────────────────────────────────────
   SYRS — Sam Yearsley / Sports Series
   ──────────────────────────────────────────────────────────── */

:root {
  --ink: #0a0a0a;
  --bone: #f5f2ec;
  --paper: #ece8df;
  --blood: #ff3b1f;
  --blood-deep: #d92808;
  --muted: rgba(245, 242, 236, 0.55);
  --rule: rgba(245, 242, 236, 0.12);

  --font-display: 'Anton', 'Archivo Black', sans-serif;
  --font-stencil: 'Saira Stencil One', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-mono: 'JetBrains Mono', 'Space Mono', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--ink); color: var(--bone); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }

img { display: block; max-width: 100%; }

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

::selection { background: var(--blood); color: var(--bone); }

/* ───── Sticky top nav ───── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 22px 32px;
  pointer-events: none;
  mix-blend-mode: difference;
  color: var(--bone);
}
.nav > * { pointer-events: auto; }
.nav .brand {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  display: flex; flex-direction: column; gap: 4px; color: var(--blood);
}
.nav .brand-sub { display: none; }
.nav .menu-btn {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  background: none; border: none; color: var(--blood); cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 8px;
}
.nav .menu-btn::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--blood); }

/* ───── Menu overlay ───── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: var(--blood); color: var(--ink);
  display: flex; flex-direction: column; padding: 22px 32px;
  transform: translateY(-100%); transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.menu-overlay.open { transform: translateY(0); }
.menu-overlay .menu-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
}
.menu-overlay .menu-close { background: none; border: none; cursor: pointer; color: var(--ink); font: inherit; }
.menu-overlay .menu-body {
  flex: 1; display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: center; padding: 60px 0;
}
.menu-overlay nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.menu-overlay nav a {
  font-family: var(--font-display); font-size: clamp(54px, 9vw, 140px); line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase;
  position: relative; display: inline-flex; align-items: baseline; gap: 16px;
  color: var(--ink);
}
.menu-overlay nav a sup { font-family: var(--font-mono); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; opacity: 0.55; align-self: flex-start; padding-top: 12px; }
.menu-overlay nav a:hover { font-style: italic; }
.menu-overlay .menu-aside { display: flex; flex-direction: column; gap: 24px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(10,10,10,0.7); }
.menu-overlay .menu-aside h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--ink); margin: 0 0 8px; font-weight: 700; }
.menu-overlay .menu-aside a { color: var(--ink); border-bottom: 1px solid rgba(10,10,10,0.3); padding-bottom: 2px; }
.menu-overlay .menu-foot { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(10,10,10,0.7); }

/* ───── Hero ───── */
.hero {
  position: relative; height: 100vh; min-height: 720px; overflow: hidden;
  background: var(--ink);
}
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) grayscale(1) brightness(0.78); }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 22%, transparent 70%, rgba(0,0,0,0.75) 100%); }
.hero-wordmark {
  position: absolute; left: 0; right: 0; bottom: -0.16em;
  font-family: var(--font-stencil); /* Saira Stencil One — matches Option 04 */
  color: var(--blood);
  font-size: clamp(280px, 42vw, 820px);
  line-height: 0.78;
  letter-spacing: -0.005em;
  text-align: center;
  z-index: 2;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(255,59,31,0.5);
  user-select: none;
}
.hero-book {
  position: absolute;
  left: 32px;
  top: 78px;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  color: var(--blood);
  text-decoration: none;
}
.hero-book span {
  font-family: var(--font-display);
  font-size: clamp(96px, 14vw, 230px);
  line-height: 0.76;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255,59,31,0.96);
  text-shadow: 0 12px 34px rgba(0,0,0,0.42);
}
.hero-book small {
  width: max-content;
  max-width: min(460px, calc(100vw - 64px));
  padding: 9px 12px;
  background: rgba(10,10,10,0.62);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-book:hover span,
.hero-book:focus-visible span {
  color: var(--bone);
}
.hero-book:focus-visible {
  outline: 2px solid var(--blood);
  outline-offset: 8px;
}
.hero-meta-top {
  position: absolute; left: 32px; right: 32px; top: 112px;
  display: flex; justify-content: flex-end; align-items: flex-start;
  z-index: 3;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone);
}
.hero-meta-top .tag {
  display: none;
}
.hero-meta-top .tag .red { color: var(--blood); display: block; margin-bottom: 6px; font-weight: 700; }
.hero-meta-top .index { text-align: right; line-height: 1.7; }
.hero-meta-top .index .num { color: var(--blood); font-weight: 700; }
.hero-meta-bot {
  position: absolute; left: 32px; right: 32px; bottom: 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 3;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); opacity: 0.7;
}
.hero-meta-bot .blood { color: var(--blood); opacity: 1; }

.hero-scroll {
  position: absolute; left: 32px; top: 50%; transform: translateY(-50%) rotate(180deg); z-index: 3;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--bone);
  writing-mode: vertical-rl;
}

/* ───── Section common ───── */
section { position: relative; padding: 120px 32px; }
.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 80px;
  padding-bottom: 24px; border-bottom: 1px solid var(--rule);
}
.section-head .eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blood); font-weight: 700;
}
.section-head .title {
  font-family: var(--font-display); font-size: clamp(64px, 7vw, 124px); line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; color: var(--bone);
}

/* ───── Manifesto ───── */
.manifesto { background: var(--ink); padding-bottom: 60px; }
.manifesto .marquee {
  font-family: var(--font-stencil); font-size: clamp(80px, 12vw, 220px); line-height: 0.92; color: var(--blood); text-transform: uppercase; letter-spacing: -0.005em; white-space: nowrap; overflow: hidden;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  margin: 0 -32px;
}
.manifesto .marquee-track {
  display: inline-flex; gap: 0.5em;
  animation: marquee 40s linear infinite;
}
.manifesto .marquee-track span { display: inline-block; padding-right: 0.5em; }
.manifesto .marquee-track .dot { color: var(--bone); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.manifesto-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 80px auto 0;
}
.manifesto-body .big {
  font-family: var(--font-display); font-size: clamp(40px, 4.5vw, 76px); line-height: 0.96; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; color: var(--bone);
}
.manifesto-body .big .red { color: var(--blood); }
.manifesto-body .copy { font-size: 17px; line-height: 1.65; color: rgba(245,242,236,0.78); }
.manifesto-body .copy p { margin: 0 0 18px; }
.manifesto-body .copy p:first-child::first-letter { color: var(--blood); font-weight: 600; }

/* ───── Work grid ───── */
.work { background: var(--ink); }
.work-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.work-item { position: relative; overflow: hidden; background: #111; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); }
.work-item:hover img { transform: scale(1.04); }
.work-item .tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone);
  background: rgba(10,10,10,0.7); padding: 6px 10px; backdrop-filter: blur(4px);
}
.work-item .tag .blood { color: var(--blood); font-weight: 700; }
.work-item .caption {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone);
  display: flex; justify-content: space-between;
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s;
}
.work-item:hover .caption { opacity: 1; transform: translateY(0); }
.work-item .caption span { background: rgba(10,10,10,0.7); padding: 6px 10px; backdrop-filter: blur(4px); }

.work-cta { margin-top: 60px; display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--rule); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.work-cta a { color: var(--blood); display: flex; align-items: center; gap: 12px; font-weight: 700; }
.work-cta a::after { content: '→'; transition: transform 0.3s; }
.work-cta a:hover::after { transform: translateX(4px); }

/* ───── About ───── */
.about { background: var(--bone); color: var(--ink); }
.about .section-head { border-color: rgba(10,10,10,0.12); }
.about .section-head .eyebrow { color: var(--blood); }
.about .section-head .title { color: var(--ink); }
.about-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; max-width: 1400px; margin: 0 auto; }
.about-photo { aspect-ratio: 3 / 4; overflow: hidden; background: #ddd; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) contrast(1.05); }
.about-photo .stamp {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone);
  background: rgba(10,10,10,0.7); padding: 6px 10px;
}
.about-text { font-size: 18px; line-height: 1.65; color: rgba(10,10,10,0.78); }
.about-text .lead {
  font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 56px); line-height: 1.02; letter-spacing: -0.01em; text-transform: uppercase; color: var(--ink); margin: 0 0 32px;
}
.about-text .lead em { color: var(--blood); font-style: normal; }
.about-text p { margin: 0 0 18px; }
.about-facts { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(10,10,10,0.15); }
.about-facts dt { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blood); font-weight: 700; margin-bottom: 4px; }
.about-facts dd { margin: 0 0 8px; font-family: var(--font-mono); font-size: 13px; color: var(--ink); letter-spacing: 0.04em; }

/* ───── Services ───── */
.services { background: var(--ink); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.service { background: var(--ink); padding: 40px 32px; display: flex; flex-direction: column; gap: 18px; position: relative; transition: background 0.3s; }
.service:hover { background: #141414; }
.service .num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--blood); font-weight: 700; }
.service h3 { font-family: var(--font-display); font-size: clamp(32px, 3.4vw, 56px); line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; margin: 0; color: var(--bone); }
.service .price { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.06em; color: var(--blood); font-weight: 700; padding-top: 16px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: baseline; }
.service .price .from { color: var(--muted); font-weight: 400; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.service ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: rgba(245,242,236,0.7); line-height: 1.5; }
.service ul li { padding-left: 18px; position: relative; }
.service ul li::before { content: '—'; position: absolute; left: 0; color: var(--blood); }

/* ───── Shop ───── */
.shop { background: var(--paper); color: var(--ink); }
.shop .section-head { border-color: rgba(10,10,10,0.12); }
.shop .section-head .title { color: var(--ink); }

.drop { margin-top: 56px; }
.drop:first-of-type { margin-top: 0; }
.drop-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 18px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(10,10,10,0.15);
  gap: 40px;
}
.drop-head .drop-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blood); font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.drop-head .drop-num .dot { width: 8px; height: 8px; background: var(--blood); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.drop-head .drop-title {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 80px); line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; margin: 8px 0 6px; color: var(--ink);
}
.drop-head .drop-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(10,10,10,0.55); max-width: 480px; line-height: 1.55; }
.drop-head .drop-cta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }

.drop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.product-v2 {
  background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-stage {
  aspect-ratio: 4/4.6;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 35%, #2a2724 0%, #161513 55%, #08080a 100%);
}
.product-stage::before {
  /* fine concrete grain */
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(48deg, transparent 0 3px, rgba(255,255,255,0.012) 3px 6px),
    repeating-linear-gradient(132deg, transparent 0 5px, rgba(0,0,0,0.06) 5px 10px);
  pointer-events: none;
}
.product-stage::after {
  /* top-down spotlight */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 35% at 50% 22%, rgba(255,255,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 35% at 50% 95%, rgba(0,0,0,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.tee-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bone); color: var(--ink);
  padding: 7px 11px 6px;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.55);
  z-index: 4;
  line-height: 1.35;
  transform: rotate(2deg);
}
.tee-tag .b { color: var(--blood); }

.tee-flat {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: 78%;
  aspect-ratio: 1 / 1.08;
  filter:
    drop-shadow(0 26px 36px rgba(0,0,0,0.85))
    drop-shadow(0 6px 10px rgba(0,0,0,0.55));
  z-index: 2;
}
.tee-flat-body {
  position: absolute; inset: 0;
  background: var(--tee-color, #0c0c0c);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 240'><path d='M44 20 L74 8 Q110 26 146 8 L176 20 L208 38 L188 76 L168 64 L168 232 L52 232 L52 64 L32 76 L12 38 Z' fill='black'/><path d='M88 8 Q110 22 132 8 L122 18 Q110 24 98 18 Z' fill='rgba(255,255,255,0.18)'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 240'><path d='M44 20 L74 8 Q110 26 146 8 L176 20 L208 38 L188 76 L168 64 L168 232 L52 232 L52 64 L32 76 L12 38 Z' fill='black'/></svg>") center/contain no-repeat;
}
.tee-flat-body.bone { background: var(--bone); }
.tee-flat-body.heather { background: linear-gradient(170deg, #2a2724 0%, #1a1816 100%); }

/* Subtle fabric crease via inner shadow */
.tee-flat::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(255,255,255,0.04) 0%, transparent 18%),
    radial-gradient(ellipse 60% 30% at 50% 78%, rgba(0,0,0,0.4) 0%, transparent 70%);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 240'><path d='M44 20 L74 8 Q110 26 146 8 L176 20 L208 38 L188 76 L168 64 L168 232 L52 232 L52 64 L32 76 L12 38 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 240'><path d='M44 20 L74 8 Q110 26 146 8 L176 20 L208 38 L188 76 L168 64 L168 232 L52 232 L52 64 L32 76 L12 38 Z' fill='black'/></svg>") center/contain no-repeat;
  pointer-events: none;
}

/* Hoodie mask variant */
.tee-flat.hoodie .tee-flat-body {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 230'><path d='M40 28 Q60 0 110 0 Q160 0 180 28 L208 42 L188 84 L168 72 L168 228 L52 228 L52 72 L32 84 L12 42 Z M82 0 Q90 32 110 36 Q130 32 138 0 L120 16 Q110 22 100 16 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 230'><path d='M40 28 Q60 0 110 0 Q160 0 180 28 L208 42 L188 84 L168 72 L168 228 L52 228 L52 72 L32 84 L12 42 Z M82 0 Q90 32 110 36 Q130 32 138 0 L120 16 Q110 22 100 16 Z' fill='black'/></svg>") center/contain no-repeat;
}
.tee-flat.hoodie::after {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 230'><path d='M40 28 Q60 0 110 0 Q160 0 180 28 L208 42 L188 84 L168 72 L168 228 L52 228 L52 72 L32 84 L12 42 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 230'><path d='M40 28 Q60 0 110 0 Q160 0 180 28 L208 42 L188 84 L168 72 L168 228 L52 228 L52 72 L32 84 L12 42 Z' fill='black'/></svg>") center/contain no-repeat;
}

/* The print area on chest */
.tee-print {
  position: absolute;
  top: 26%; left: 22%; right: 22%; bottom: 18%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6%;
  pointer-events: none;
  z-index: 1;
}
.tee-print.photo { padding: 0; }
.tee-print img {
  width: 100%; flex: 1; min-height: 0;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.92);
  border: 1.5px solid rgba(245,242,236,0.6);
}
.tee-print-mark {
  font-family: var(--font-stencil);
  color: var(--blood);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.tee-print-mark.large { font-size: clamp(48px, 6vw, 88px); }
.tee-print-mark.small { font-size: clamp(28px, 3.6vw, 56px); }
.tee-print-mark.bone { color: var(--bone); }
.tee-print-label {
  font-family: var(--font-mono); font-size: clamp(8px, 0.85vw, 11px); letter-spacing: 0.28em; color: var(--bone);
  text-transform: uppercase; text-align: center; font-weight: 500;
}
.tee-print-label.ink { color: var(--ink); }
.tee-print-label.blood { color: var(--blood); }

/* Hoodie chest print sits higher and is smaller */
.tee-flat.hoodie .tee-print { top: 32%; left: 36%; right: 36%; bottom: 38%; }

.product-info {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--rule);
}
.product-info .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.product-info h4 { font-family: var(--font-display); font-size: 26px; letter-spacing: -0.01em; text-transform: uppercase; margin: 0; line-height: 1; color: var(--bone); }
.product-info .price { font-family: var(--font-mono); font-size: 14px; color: var(--blood); font-weight: 700; }
.product-info .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,242,236,0.55); margin-top: 4px; }

.product-buy {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px;
  padding: 14px 0 0;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--blood);
  cursor: pointer;
  transition: color 0.2s;
}
.product-buy::after { content: '→'; transition: transform 0.3s; }
.product-buy:hover { color: var(--bone); }
.product-buy:hover::after { transform: translateX(6px); }

.shop-foot { margin-top: 50px; text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: rgba(10,10,10,0.55); text-transform: uppercase; padding-top: 24px; border-top: 1px solid rgba(10,10,10,0.15); }
.shop-foot strong { color: var(--ink); }

/* ───── Contact ───── */
.contact { background: var(--ink); padding-bottom: 60px; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
.contact-pitch { font-family: var(--font-display); font-size: clamp(54px, 7vw, 124px); line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; color: var(--bone); }
.contact-pitch em { color: var(--blood); font-style: normal; }
.contact-aside { display: flex; flex-direction: column; gap: 28px; padding-top: 20px; }
.contact-aside h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blood); margin: 0 0 6px; font-weight: 700; }
.contact-aside a { font-family: var(--font-mono); font-size: 18px; color: var(--bone); border-bottom: 1px solid var(--rule); padding-bottom: 4px; display: inline-block; transition: color 0.2s, border-color 0.2s; }
.contact-aside a:hover { color: var(--blood); border-color: var(--blood); }
.contact-aside .group { display: flex; flex-direction: column; gap: 8px; }

/* ───── Footer ───── */
footer { background: var(--ink); border-top: 1px solid var(--rule); padding: 40px 32px 32px; }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: end; }
.foot-mark { font-family: var(--font-stencil); font-size: clamp(80px, 14vw, 260px); line-height: 0.85; color: var(--blood); text-transform: uppercase; }
.foot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,242,236,0.7); }
.foot-cols h5 { font-size: 10px; color: var(--blood); margin: 0 0 8px; letter-spacing: 0.2em; font-weight: 700; }
.foot-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.foot-cols a:hover { color: var(--blood); }
.foot-end { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,242,236,0.5); text-align: right; }
.foot-end .blood { color: var(--blood); }

/* ───── Mobile ───── */
@media (max-width: 900px) {
  section { padding: 80px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .nav { padding: 16px 20px; }
  .menu-overlay { padding: 16px 20px; }
  .menu-overlay .menu-body { grid-template-columns: 1fr; gap: 40px; padding: 30px 0; }
  .manifesto .marquee { margin: 0 -20px; }
  .manifesto-body { grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
  .work-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .work-item { grid-column: span 4 !important; }
  .about-body { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .drop-grid { grid-template-columns: 1fr; }
  .drop-head { align-items: flex-start; flex-direction: column; gap: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-end { text-align: left; }
  .hero-meta-top { display: none; }
  .hero-book { left: 20px; top: 96px; }
  .hero-book span { font-size: clamp(88px, 32vw, 134px); }
  .hero-book small { max-width: calc(100vw - 40px); font-size: 10px; }
  .hero-scroll { display: none; }
}
