:root {
  --bg: #f4f1ea;
  --ink: #101010;
  --muted: #5f5a52;
  --line: #1a1a1a;
  --panel: #fffaf0;
  --accent: #d54d2f;
  --shadow: 10px 10px 0 #101010;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 3px solid var(--line);
  background: var(--panel);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo {
  display: block;
  width: min(14rem, 48vw);
  max-height: 4.25rem;
  height: auto;
  object-fit: contain;
}
h1, h2, h3 { font-family: "Archivo Black", Inter, sans-serif; line-height: 1.02; }
.nav { display: flex; gap: 1rem; font-weight: 800; text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.nav a { text-decoration: none; }
.hero, .page-hero, .section, .review-detail { padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 68vh;
}
.eyebrow { margin: 0 0 .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); }
h1 { font-size: clamp(2.7rem, 8vw, 7rem); margin: 0; letter-spacing: -0.08em; }
h2 { font-size: clamp(2rem, 5vw, 4rem); margin: 0 0 1rem; letter-spacing: -0.06em; }
h3 { font-size: 1.45rem; margin: 0 0 .75rem; letter-spacing: -0.04em; }
.hero-text, .page-hero p, .summary { max-width: 65ch; color: var(--muted); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line);
  background: var(--ink);
  color: var(--panel);
  padding: .85rem 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--accent);
}
.button.ghost { background: var(--panel); color: var(--ink); }
.hero-card, .review-card {
  border: 3px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.hero-card { padding: clamp(1.25rem, 3vw, 2rem); transform: rotate(1deg); }
.logo-card { text-align: center; }
.hero-logo {
  display: block;
  width: min(100%, 28rem);
  max-height: 10rem;
  height: auto;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}
.stamp { font-size: clamp(4rem, 10vw, 8rem); writing-mode: vertical-rl; font-weight: 900; line-height: .9; margin: auto; width: min-content; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; border-top: 3px solid var(--line); }
.section-head { margin-bottom: 1.5rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.review-card { padding: 1.25rem; }
.review-card h2 { font-size: 1.7rem; }
.meta { color: var(--muted); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.rating { font-size: 1.15rem; letter-spacing: .12em; color: var(--accent); }
.prose { max-width: 76ch; }
.prose h2 { margin-top: 2.5rem; }
.prose img { max-width: 100%; border: 3px solid var(--line); }
.review-header { max-width: 900px; border-bottom: 3px solid var(--line); padding-bottom: 2rem; margin-bottom: 2rem; }
.site-footer { padding: 2rem clamp(1rem, 4vw, 3rem); border-top: 3px solid var(--line); color: var(--muted); }
code { background: #e7dfd1; padding: .15rem .35rem; border-radius: .25rem; }
@media (max-width: 800px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .brand-logo { width: min(80vw, 18rem); }
  .hero, .split, .card-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { transform: none; }
}
.video-thumb, .video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--line);
  background: #000;
  overflow: hidden;
}
.video-thumb { margin: 1rem 0; }
.video-thumb iframe, .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-detail .video-embed { margin-bottom: 2rem; }
.video-card h2 { font-size: 1.7rem; }
