/* ==========================================================================
   THE FAT MECHANIC — site.css
   Brand: charcoal + lime, brush display, workshop grit.
   ========================================================================== */

@font-face { font-family: "Marker"; src: url("../fonts/permanent-marker.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Oswald"; src: url("../fonts/oswald-var.woff2") format("woff2"); font-weight: 200 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-var.woff2") format("woff2"); font-weight: 400 800; font-display: swap; }

:root {
  --ink: #111111;
  --ink-2: #1a1a1a;
  --ink-3: #242424;
  --lime: #CBFF40;
  --lime-deep: #b4e62e;
  --white: #ffffff;
  --paper: #F1F1EC;
  --grey: #E5E5E5;
  --slate: #687280;
  --muted: #a3a9b1;
  --line: rgba(255,255,255,.12);

  --f-brush: "Marker", "Permanent Marker", "Arial Black", Impact, sans-serif;
  --f-cond: "Oswald", "Arial Narrow", Impact, sans-serif;
  --f-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1240px;
  --head-h: 76px;
  --r: 10px;

  --swipe: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 40' preserveAspectRatio='none'%3E%3Cpath fill='%23CBFF40' d='M6 30C120 21 300 13 596 5l-3 9C420 18 262 25 120 31L38 35C26 36 14 37 3 37z'/%3E%3Cpath fill='%23CBFF40' opacity='.85' d='M70 39l236-9 2 3-230 8z'/%3E%3Cpath fill='%23CBFF40' opacity='.7' d='M384 9l190-7-2 3-184 7z'/%3E%3C/svg%3E");
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: #f2f2f2;
  font: 400 1.0625rem/1.6 var(--f-body);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
body::after { /* workshop grit over everything, very subtle */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  background: var(--grain); opacity: .05; mix-blend-mode: overlay;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3 { margin: 0; line-height: 1; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--lime); color: var(--ink); padding: .6rem 1rem; font-weight: 700; }
.skip:focus { left: 8px; }

.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .7rem 1.35rem;
  font: 600 1.05rem/1 var(--f-cond); text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none; border: 2px solid transparent; border-radius: 6px; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: #d8ff6b; }
.btn-ghost { border-color: rgba(255,255,255,.85); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #000; }
.btn-sm { min-height: 44px; padding: .5rem 1rem; font-size: .98rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.text-link { font: 500 1rem var(--f-cond); text-transform: uppercase; letter-spacing: .04em; color: var(--lime); text-underline-offset: 5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { height: var(--head-h); display: flex; align-items: center; gap: 1.5rem; }
.brand { position: relative; align-self: flex-start; flex: none; width: 140px; height: var(--head-h); }
.brand img {
  position: absolute; left: -6px; top: 6px; width: 140px;
  transform: rotate(-3deg); transform-origin: top left;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.5));
  transition: width .25s ease, top .25s ease;
}
.is-scrolled .brand img { width: 92px; top: 4px; }

.nav { margin-left: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.6rem; }
.nav a {
  position: relative; text-decoration: none;
  font: 500 .98rem var(--f-cond); text-transform: uppercase; letter-spacing: .06em; color: #e9e9e9;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px;
  background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav-social { display: none; }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-btn { display: none; }

.socials { display: flex; gap: .4rem; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--white); transition: color .15s, background-color .15s; }
.socials a:hover { color: var(--ink); background: var(--lime); }
.socials .ico { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(560px, 74svh, 720px);
  display: grid; align-items: center;
  background: var(--ink);
}
.hero-media {
  position: absolute; top: 0; right: 0; bottom: 0; z-index: -2;
  width: 62%; height: 100%; object-fit: cover; object-position: 8% 35%;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, var(--ink) 0%, var(--ink) 39%, rgba(17,17,17,.7) 46%, rgba(17,17,17,.2) 56%, rgba(17,17,17,0) 64%),
    linear-gradient(0deg, var(--ink) 0%, rgba(17,17,17,0) 28%);
}
.hero-inner { padding: 5rem 0 7rem; }
.hero-title {
  font-family: var(--f-brush); font-weight: 400;
  font-size: clamp(3rem, 5.6vw, 5.3rem); line-height: .98; letter-spacing: .005em;
  text-transform: uppercase;
  transform: rotate(-4deg); transform-origin: left bottom;
  margin-bottom: 2.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.55);
}
.hero-title span { display: block; }
.hero-title .l3 { color: var(--lime); position: relative; width: fit-content; padding-bottom: .12em; }
.hero-title .l3::after {
  content: ""; position: absolute; left: -3%; right: -4%; bottom: -.16em; height: .36em;
  background: var(--swipe) center / 100% 100% no-repeat;
  transform-origin: left; 
}
.hero-copy { max-width: 30rem; font-size: 1.2rem; color: rgba(255,255,255,.92); margin-bottom: 1.8rem; }
.hero-proof { margin-top: 1.4rem; color: var(--muted); font-size: .98rem; }
.hero-proof strong { color: var(--white); font: 600 1.15rem var(--f-cond); letter-spacing: .03em; }

/* the one orchestrated moment: lines slap on, swipe paints under */
@media (prefers-reduced-motion: no-preference) {
  .hero-title span { opacity: 0; transform: translateY(18px) scale(1.04); animation: slap .5s cubic-bezier(.2,.9,.3,1.2) forwards; }
  .hero-title .l1 { animation-delay: .1s; }
  .hero-title .l2 { animation-delay: .32s; }
  .hero-title .l3 { animation-delay: .54s; }
  .hero-title .l3::after { transform: scaleX(0); animation: paint .45s .95s cubic-bezier(.6,0,.2,1) forwards; }
  @keyframes slap { to { opacity: 1; transform: none; } }
  @keyframes paint { to { transform: scaleX(1); } }
}

/* ---------- Tiles ---------- */
.tiles {
  position: relative; z-index: 2; margin-top: -4.5rem;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem;
}
.tile {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  text-decoration: none; box-shadow: 0 14px 30px rgba(0,0,0,.45);
}
.tile img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .35s ease; }
.tile:hover img { transform: scale(1.04); }
.tile-body { padding: 1rem 3rem 1.15rem 1.1rem; }
.tile h2 { font: 600 1.5rem/1 var(--f-cond); text-transform: uppercase; letter-spacing: .02em; margin-bottom: .35rem; }
.tile p { font-size: .95rem; color: #cfcfcf; line-height: 1.4; }
.tile-arrow { position: absolute; right: 1rem; bottom: 1.1rem; color: var(--lime); width: 24px; height: 24px; transition: transform .15s ease; }
.tile:hover .tile-arrow { transform: translateX(3px); }
.tile:hover { border-color: rgba(203,255,64,.5); }

/* ---------- Sections ---------- */
.section { padding: 6.5rem 0; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 2.2rem; }
.section-sub { color: var(--muted); max-width: 34rem; }
.brush-title {
  position: relative; width: fit-content;
  font-family: var(--f-brush); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.05;
  transform: rotate(-2deg); padding-bottom: .22em;
}
.brush-title::after {
  content: ""; position: absolute; left: 0; right: -4%; bottom: 0; height: .22em;
  background: var(--swipe) center / 100% 100% no-repeat;
}

/* ---------- Videos ---------- */
.videos { padding-top: 5.5rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.chip {
  min-height: 40px; padding: .4rem 1rem; border-radius: 999px; cursor: pointer;
  background: var(--ink-3); color: var(--grey); border: 1px solid var(--line);
  font: 500 .92rem var(--f-cond); text-transform: uppercase; letter-spacing: .05em;
}
.chip:hover { border-color: var(--lime); }
.chip.is-on { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.video-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 1100px) { .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.vid {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer; text-align: left;
  aspect-ratio: 9/16; border-radius: var(--r); overflow: hidden; background: var(--ink-3); color: var(--white);
}
.vid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.vid:hover img { transform: scale(1.05); }
.vid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.85)); }
.vid-play {
  position: absolute; z-index: 1; top: 50%; left: 50%; translate: -50% -50%;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(17,17,17,.6); border: 2px solid rgba(255,255,255,.8); backdrop-filter: blur(4px);
  transition: background-color .15s ease, border-color .15s ease;
}
.vid-play .ico { width: 26px; height: 26px; margin-left: 3px; }
.vid:hover .vid-play { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.vid-cap { position: absolute; z-index: 1; left: .9rem; right: .9rem; bottom: .9rem; font: 500 1.02rem/1.2 var(--f-cond); text-transform: uppercase; letter-spacing: .02em; }
.vid-tag { display: inline-block; margin-bottom: .45rem; padding: .15rem .5rem; border-radius: 4px; background: var(--lime); color: var(--ink); font-size: .72rem; letter-spacing: .06em; }
.empty { color: var(--muted); padding: 2rem 0; }

/* ---------- Story ---------- */
.story { background: var(--ink-2); border-block: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4.5rem; align-items: start; }
.story-photos { position: sticky; top: calc(var(--head-h) + 2rem); display: grid; padding: 1rem 0 3rem; }
.snap {
  margin: 0; background: var(--paper); padding: .7rem .7rem 0; border-radius: 3px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55); color: var(--ink);
}
.snap img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.snap figcaption { font: 1.05rem/1 var(--f-brush); padding: .8rem .2rem .9rem; }
.snap::before { /* strip of tape */
  content: ""; position: absolute; top: -12px; left: 50%; width: 90px; height: 26px; translate: -50% 0; rotate: -4deg;
  background: rgba(203,255,64,.85); box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.snap { position: relative; }
.snap-a { width: 74%; rotate: -4deg; }
.snap-b { width: 58%; justify-self: end; margin-top: -12%; rotate: 5deg; }

.lede { font-size: 1.25rem; line-height: 1.55; color: #ececec; margin: 2rem 0 2.8rem; max-width: 40rem; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; max-width: 40rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: rgba(203,255,64,.35); }
.timeline li { position: relative; padding: 0 0 2.1rem 2.4rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--ink-2); border: 3px solid var(--lime); }
.timeline li:last-child::before { background: var(--lime); }
.when { display: block; font: 500 .9rem var(--f-cond); letter-spacing: .06em; text-transform: uppercase; color: var(--lime); margin-bottom: .35rem; }
.timeline h3 { font: 600 1.5rem/1.1 var(--f-cond); text-transform: uppercase; margin-bottom: .45rem; }
.timeline p { color: #cdcdcd; }
.timeline strong { color: var(--white); }
.dont-be-me {
  margin-top: 2.8rem; max-width: 40rem; position: relative;
  background: var(--lime); color: var(--ink); border-radius: var(--r);
  padding: 1.5rem 1.6rem 1.6rem; rotate: -1deg;
  box-shadow: 0 16px 34px rgba(0,0,0,.45);
}
.dont-be-me h3 { font: 1.8rem/1.05 var(--f-brush); text-transform: uppercase; margin-bottom: .7rem; }
.dont-be-me p { font-weight: 500; line-height: 1.55; }

/* ---------- Events ---------- */
.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; }
.event {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.event img { aspect-ratio: 7/2; object-fit: cover; width: 100%; background: #000; }
.event-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.event h3 { font: 600 1.6rem/1 var(--f-cond); text-transform: uppercase; }
.event p { color: #cdcdcd; flex: 1; }
.event .go { display: inline-flex; align-items: center; gap: .5rem; color: var(--lime); font: 500 .98rem var(--f-cond); text-transform: uppercase; letter-spacing: .05em; margin-top: .4rem; }
a.event:hover { border-color: rgba(203,255,64,.55); }
a.event:hover .go .ico { transform: translateX(3px); }
.go .ico { transition: transform .15s ease; }

/* ---------- Collab ---------- */
.collab { background: var(--ink-2); border-top: 1px solid var(--line); }
.collab-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 4rem; align-items: start; }
.collab-lede { font-size: 1.25rem; line-height: 1.5; color: #ececec; margin: 2rem 0 1rem; max-width: 34rem; }
.collab-lede strong { color: var(--lime); }
.collab-note { color: var(--muted); max-width: 34rem; margin-bottom: 2rem; }
.offer-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.offer-list li { background: var(--ink); padding: 1.6rem 1.5rem 1.7rem; }
.offer-list h3 { font: 600 1.35rem/1.1 var(--f-cond); text-transform: uppercase; margin-bottom: .55rem; padding-left: .8rem; border-left: 4px solid var(--lime); }
.offer-list p { color: #cdcdcd; font-size: .98rem; }
.partners { margin-top: 4.5rem; }
.partners-title { font: 500 1rem var(--f-cond); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 1.1rem; }
.partner-row { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.partner-tile { display: grid; place-items: center; height: 120px; padding: 1.1rem 1.6rem; background: var(--tile, var(--paper)); border: 1px solid var(--line); border-radius: var(--r); color: var(--ink); text-decoration: none; }
.partner-row img { max-height: 76px; max-width: 78%; width: auto; object-fit: contain; }
a.partner-tile:hover { border-color: var(--lime); box-shadow: 0 0 0 2px var(--lime); }
.partner-name { font: 700 1.5rem/1 var(--f-cond); text-transform: uppercase; letter-spacing: .03em; text-align: center; }

/* ---------- Merch (light section for contrast, like the brand sheet) ---------- */
.merch { background: var(--paper); color: var(--ink); }
.merch .section-sub { color: #4a4f57; }
.merch-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.25rem; }
.product { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.product-art {
  position: relative; aspect-ratio: 1; border-radius: var(--r); overflow: hidden;
  background: #e2e2dc; display: grid; place-items: center; margin-bottom: .9rem;
  transition: background-color .2s ease;
}
a.product:hover .product-art { background: var(--lime); }
.product-art svg.garment { width: 78%; height: 78%; }
.product-art .garment-logo { position: absolute; width: 26%; top: 34%; left: 50%; translate: -50% 0; }
.product-art .stubby-logo { width: 22%; top: 38%; }
.product-art .sticker-a { position: absolute; width: 52%; left: 12%; top: 16%; rotate: -10deg; filter: drop-shadow(0 6px 8px rgba(0,0,0,.25)); }
.product-art .sticker-b { position: absolute; width: 38%; right: 12%; bottom: 14%; rotate: 12deg; filter: drop-shadow(0 6px 8px rgba(0,0,0,.25)); }
.product h3 { font: 600 1.25rem/1.1 var(--f-cond); text-transform: uppercase; }
.product .price { color: #4a4f57; margin-top: .25rem; }
.merch-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.merch-note { color: #4a4f57; max-width: 34rem; }
.brush-title.dark { color: var(--ink); }

/* ---------- Topics strip ---------- */
.topics { background: var(--paper); color: var(--ink); border-top: 1px solid #d9d9d2; padding: 2.4rem 0 3rem; overflow: hidden; }
.topics-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.topic-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.2rem 2.6rem; }
.topic-list li { display: flex; flex-direction: column; align-items: center; gap: .45rem; font: 600 .95rem var(--f-cond); text-transform: uppercase; letter-spacing: .04em; font-style: italic; }
.tico { width: 42px; height: 42px; }
.sticker {
  flex: none; font: 2.1rem/1 var(--f-brush); text-transform: uppercase; color: var(--ink);
  background: var(--swipe) center / 100% 100% no-repeat;
  padding: 1.1rem 1.8rem 1.3rem; rotate: -5deg;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100' preserveAspectRatio='none'%3E%3Cpath fill='%23CBFF40' d='M14 18l372-12-6 14 12 6-8 12 10 10-10 14 8 16-14 6 4 12L20 96l6-12-18-6 10-12-12-10 12-12-10-12 12-8z'/%3E%3C/svg%3E");
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 4rem; align-items: start; }
.contact-intro > p { color: #d4d4d4; margin-top: 1.6rem; max-width: 32rem; }
.workshop-plug a { color: var(--lime); }
.contact-photo { margin-top: 2rem; border-radius: var(--r); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.contact-form { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); padding: 2rem; display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font: 500 .95rem var(--f-cond); text-transform: uppercase; letter-spacing: .05em; color: #dcdcdc; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .75rem .9rem; border-radius: 6px;
  background: var(--ink); color: var(--white); border: 1px solid rgba(255,255,255,.22);
  font: 400 1rem var(--f-body);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(203,255,64,.25); }
.field .is-bad { border-color: #ff6b5a; }
.hp { position: absolute; left: -9999px; }
.form-status { min-height: 1.4em; font-size: .98rem; }
.form-status.ok { color: var(--lime); }
.form-status.err { color: #ff8a7a; }
.contact-form .btn { justify-self: start; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3.5rem 0 3rem; }
.footer-inner { display: flex; align-items: center; gap: 3rem; }
.footer-logo { width: 190px; rotate: -3deg; }
.footer-links { display: grid; gap: 1.1rem; }
.footer-links nav { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; }
.footer-links nav a { text-decoration: none; font: 500 1rem var(--f-cond); text-transform: uppercase; letter-spacing: .05em; }
.footer-links nav a:hover { color: var(--lime); }
.small { font-size: .9rem; color: var(--muted); }
.credit { margin-left: auto; align-self: flex-end; display: block; background: var(--paper); border-radius: 8px; padding: .55rem .8rem; transition: background-color .15s ease; }
.credit img { width: 150px; }
a.credit[href]:not([href="#"]):hover { background: var(--white); }

/* ---------- Modal ---------- */
.modal {
  padding: 0; border: 0; background: transparent; overflow: visible;
  width: min(92vw, 380px); max-height: 92svh;
}
.modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(4px); }
.modal-frame { aspect-ratio: 9/16; width: 100%; max-height: 88svh; border-radius: 12px; overflow: hidden; background: #000; }
.modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal-close {
  position: absolute; top: -18px; right: -18px; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: var(--lime); color: var(--ink); font-size: 1.8rem; line-height: 1; cursor: pointer;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav ul { gap: 1.1rem; }
  .header-actions .btn span { display: none; }
  .header-actions .btn { padding: .5rem .8rem; }
}

@media (max-width: 960px) {
  :root { --head-h: 68px; }
  .brand, .brand img { width: 112px; }
  .is-scrolled .brand img { width: 84px; }
  .menu-btn {
    display: grid; align-content: center; gap: 5px; width: 46px; height: 46px; padding: 0 11px;
    background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
  }
  .menu-btn span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-actions { margin-left: auto; }

  .nav {
    position: fixed; left: 0; right: 0; top: calc(var(--head-h) + env(safe-area-inset-top, 0px)); bottom: 0;
    background: var(--ink); padding: 2rem 1.25rem calc(2rem + env(safe-area-inset-bottom, 0px));
    display: flex; flex-direction: column; justify-content: space-between;
    opacity: 0; transform: translateY(-10px); visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; transition: opacity .2s ease, transform .2s ease; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid var(--line); }
  .nav a { display: block; padding: 1rem 0; font-size: 1.6rem; }
  .nav a::after { display: none; }
  .nav-social { display: flex; margin-top: 2rem; }
  .nav-social .socials a { width: 50px; height: 50px; border: 1px solid var(--line); }

  .hero { min-height: auto; align-items: end; }
  .hero-media { position: relative; width: 100%; height: auto; aspect-ratio: 16/10; object-position: 38% 30%; }
  .hero { display: block; }
  .hero::before { background: linear-gradient(0deg, var(--ink) 0%, var(--ink) 62%, rgba(17,17,17,0) 80%); }
  .hero-inner { margin-top: -2.4rem; padding: 0 0 6.5rem; position: relative; }
  .tiles { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .story-grid, .contact-grid, .collab-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-photos { position: static; max-width: 460px; }
  .snap-b { margin-top: -4%; }
  .event-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .topics-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .wrap { width: min(100% - 2rem, var(--wrap)); }
  .hero-title { font-size: clamp(2.6rem, 12.5vw, 3.6rem); }
  .hero-copy { font-size: 1.08rem; }
  .btn-row .btn { flex: 1 1 100%; }
  .tiles { grid-template-columns: 1fr; gap: .75rem; margin-top: -3.5rem; }
  .tile { flex-direction: row; align-items: stretch; }
  .tile img { width: 38%; aspect-ratio: auto; min-height: 104px; }
  .tile-body { padding: .9rem 2.6rem .9rem 1rem; align-self: center; }
  .tile h2 { font-size: 1.3rem; }
  .section { padding: 4.5rem 0; }
  .video-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: .65rem; }
  .vid-cap { font-size: .9rem; left: .6rem; right: .6rem; bottom: .6rem; }
  .vid-play { width: 46px; height: 46px; }
  .event-grid { grid-template-columns: 1fr; }
  .offer-list { grid-template-columns: 1fr; }
  .partner-tile { height: 96px; }
  .merch-grid { gap: .8rem; }
  .product h3 { font-size: 1.05rem; }
  .topic-list { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .sticker { font-size: 1.7rem; align-self: center; }
  .contact-form { padding: 1.3rem; }
  .contact-form .btn { justify-self: stretch; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer-logo { width: 150px; }
  .credit { margin-left: 0; align-self: flex-start; }
  .modal-close { top: -54px; right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
}
