/* ============================================
   NIJO — The Culture Representative
   Dark monochrome · Bodoni Moda · Editorial cinematic
   ============================================ */

:root {
  /* Surfaces — pure black with subtle steps */
  --ink: #000000;
  --ink-soft: #0a0a0a;
  --charcoal: #141414;
  --line: #232323;
  --line-soft: #1a1a1a;
  --line-strong: #2e2e2e;

  /* Type colors — off-white scale */
  --bone: #f4f1ea;
  --paper: #ede9df;
  --mute: #8a857c;
  --mute-strong: #b0aba1;
  --mute-soft: #5a554e;

  /* Accent / heritage (used sparingly) */
  --kani-red: #c8252c;
  --kani-cream: #e9dfc9;

  /* Type */
  --f-display: "Bodoni Moda", "Times New Roman", serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Rhythm */
  --gutter: clamp(24px, 5vw, 80px);
  --section-y: clamp(96px, 12vw, 200px);
  --maxw: 1640px;

  /* Photo treatment (set by Tweaks) */
  --photo-filter: grayscale(1) contrast(1.05) brightness(0.92);
}

[data-surface="charcoal"] { --ink: #0c0c0c; --ink-soft: #141414; }
[data-photo-mode="muted"] { --photo-filter: grayscale(0.78) contrast(1.02) brightness(0.93) saturate(0.65); }
[data-photo-mode="color"] { --photo-filter: contrast(1.04) brightness(0.97) saturate(0.95); }

[data-type-mode="anton"] {
  --f-display: "Anton", "Bodoni Moda", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }

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

/* ============================================
   KARL KANI LOGO — integrated mark
   ============================================ */
.kk-logo {
  display: inline-block;
  width: auto;
  height: auto;
  object-fit: contain;
  /* logo asset is pure white on transparent — no recoloring needed */
}

/* Hero overline · inline next to mono label */
.kk-logo--inline {
  height: 22px;
  vertical-align: -0.4em;
  margin-left: 6px;
  opacity: 0.96;
}

/* Brands "featured" block — the hero KK moment */
.kk-logo--xl {
  display: block;
  width: clamp(120px, 14vw, 200px);
  height: auto;
  aspect-ratio: 1 / 1;
}

/* Promo section — large mark above the headline */
.kk-logo--promo {
  display: block;
  width: clamp(106px, 11vw, 154px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 36px;
  opacity: 0.96;
}

/* Footer subtitle — small inline mark */
.kk-logo--footer {
  height: 26px;
  vertical-align: -0.5em;
  margin-left: 6px;
  opacity: 0.9;
}

/* Manifesto section — centered below the attribution */
.kk-logo--manifesto {
  display: block;
  width: clamp(96px, 9vw, 128px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: clamp(20px, 2vw, 32px) auto 0;
  opacity: 0.94;
}

/* ============================================
   PRIMITIVES
   ============================================ */
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute-strong);
}

.display {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: var(--bone);
  text-wrap: balance;
}
.display--h1 { font-size: clamp(64px, 10vw, 168px); }
.display--h2 { font-size: clamp(48px, 7.5vw, 124px); }

.ital { font-style: italic; font-weight: 400; }
.period { color: var(--mute); font-style: normal; }
.thin { font-weight: 300; }

[data-type-mode="anton"] .display {
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-weight: 400;
  line-height: 0.85;
}
[data-type-mode="anton"] .ital { font-style: normal; }

/* Overline (small label with dot) */
.overline {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-strong);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.overline--top { color: var(--bone); }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bone);
  display: inline-block;
}

/* Section head */
.section-head {
  display: flex; align-items: center; gap: 20px;
  padding: 0 var(--gutter);
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head--center { justify-content: center; text-align: center; }
.section-num { color: var(--bone); }
.section-tag { color: var(--mute); }
.rule {
  flex: 1; height: 1px; background: var(--line); display: block;
  max-width: 480px;
}
.rule--short { width: 60px; flex: none; background: var(--line-strong); }
.rule--med { width: 120px; flex: none; background: var(--line-strong); margin: 28px 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  height: 52px;
  padding: 0 28px;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.4s cubic-bezier(.2,.6,.2,1), color 0.4s, border-color 0.4s;
  position: relative;
  cursor: pointer;
}
.btn:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--solid { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--solid:hover { background: transparent; color: var(--bone); }
.btn--xl { height: 76px; padding: 0 56px; font-size: 13px; letter-spacing: 0.24em; }
.btn__arrow { width: 16px; height: 16px; transition: transform 0.4s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1.1s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Social icons row */
.social { display: inline-flex; gap: 14px; align-items: center; }
.social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mute-strong);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.social a:hover { color: var(--ink); background: var(--bone); border-color: var(--bone); }
.social a svg { width: 16px; height: 16px; }
.social--nav a { border: none; width: 28px; height: 28px; }
.social--nav a:hover { background: transparent; color: var(--bone); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bone);
  line-height: 1;
}
.nav__links {
  display: flex; gap: 36px; align-items: center;
}
.nav__link {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute-strong);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.6,.2,1);
}
.nav__link:hover { color: var(--bone); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--bone); }

.nav__link--cta {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  color: var(--bone);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.nav__right { display: flex; align-items: center; gap: 28px; }
.nav__menu { display: none; }

/* Mobile menu button */
@media (max-width: 920px) {
  .nav__links, .social--nav { display: none; }
  .nav__menu {
    display: flex; flex-direction: column; gap: 6px;
    width: 32px; height: 32px;
    justify-content: center; align-items: center;
  }
  .nav__menu span { display: block; width: 22px; height: 1px; background: var(--bone); transition: transform 0.3s; }
  .nav__menu[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav__menu[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(.7,0,.2,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu.is-open { transform: none; }
.mobile-menu__inner {
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 600px;
}
.mobile-menu__link {
  font-family: var(--f-display);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
  position: relative;
  padding-left: 64px;
}
.mobile-menu__link::before {
  content: attr(data-num);
  position: absolute;
  left: 0; top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--mute);
}
.mobile-menu__foot {
  margin-top: 48px;
  padding-left: 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu__email { color: var(--mute-strong); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter);
  padding-bottom: clamp(80px, 10vh, 140px);
  padding-top: clamp(120px, 18vh, 200px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: var(--photo-filter);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.95) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
}
.hero__noise {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.hero__title {
  font-family: var(--f-display);
  color: var(--bone);
  letter-spacing: -0.04em;
  line-height: 0.85;
  margin: 26px 0 18px;
}
.hero__title-line { display: block; }
.hero__title-line--lg {
  font-size: clamp(120px, 22vw, 360px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.8;
}
.hero__title-line--sm {
  font-size: clamp(28px, 4.2vw, 64px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-top: 8px;
  margin-left: clamp(8px, 1vw, 16px);
  color: var(--paper);
}
.hero__title-line--sm em { font-style: italic; color: var(--mute-strong); margin-right: 0.25em; }

[data-hero-scale="lg"] .hero__title-line--lg { font-size: clamp(96px, 18vw, 280px); }
[data-hero-scale="md"] .hero__title-line--lg { font-size: clamp(80px, 14vw, 220px); }

[data-type-mode="anton"] .hero__title-line--lg { font-weight: 400; text-transform: uppercase; letter-spacing: 0.005em; }
[data-type-mode="anton"] .hero__title-line--sm { font-style: normal; text-transform: uppercase; font-weight: 400; letter-spacing: 0.04em; }

.hero__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--mute-strong);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero__social-label { color: var(--mute); }
.hero__social-handle { color: var(--mute-strong); }

/* Hero bottom strip */
.hero__strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  color: var(--mute);
}

@media (max-width: 720px) {
  .hero__strip { font-size: 9px; padding: 16px var(--gutter); }
  .hero__strip span:nth-child(2) { display: none; }
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 70px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--mute-strong);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--mute-strong));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -20px; left: 0; right: 0;
  height: 20px;
  background: var(--bone);
  animation: scrollCue 2s cubic-bezier(.6,.1,.2,1) infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(80px); opacity: 0; }
}
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-y) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 6vw, 96px);
  padding: 0 var(--gutter);
  align-items: start;
}

.about__photo {
  position: relative;
}
.about__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: var(--photo-filter);
}
.caption {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mute);
}

.about__body {
  padding-top: clamp(0px, 2vw, 36px);
}

.about__copy {
  margin-top: clamp(28px, 4vw, 48px);
  max-width: 56ch;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.7;
}
.lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--bone);
  letter-spacing: -0.005em;
}

/* Stats */
.stats {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.stats__row:last-child { border-bottom: none; }
.stat {
  padding: 22px 12px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat__label { color: var(--mute); font-size: 10px; }
.stat__val {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--bone);
}

.contact {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact__email {
  color: var(--bone);
  font-size: 13px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: border-color 0.3s;
}
.contact__email:hover { border-color: var(--bone); }
.contact__social { display: flex; align-items: center; gap: 16px; }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .stats__row .stat:nth-child(2) { border-right: none; }
}

/* ============================================
   WORK
   ============================================ */
.work {
  padding: var(--section-y) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}

.work__title {
  padding: 0 var(--gutter);
  margin-bottom: clamp(56px, 7vw, 96px);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  padding: 0 var(--gutter);
}

.work-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  position: relative;
}
.work-card--tall { grid-column: span 5; grid-row: span 2; }
.work-card--feature { grid-column: span 7; }
.work-card--wide { grid-column: span 12; }

.work-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.work-card--feature .work-card__media { aspect-ratio: 16/11; }
.work-card--wide .work-card__media { aspect-ratio: 21/9; }
.work-card--tall .work-card__media { aspect-ratio: 4/6; }

.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1), filter 0.6s;
}
.work-card:hover .work-card__media img { transform: scale(1.04); }

.work-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55));
  opacity: 0;
  transition: opacity 0.5s;
}
.work-card:hover .work-card__media::after { opacity: 1; }

.badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  padding: 7px 12px;
  border: 1px solid var(--bone);
  color: var(--bone);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mute);
  text-transform: uppercase;
  padding-top: 4px;
}

.work-card__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--bone);
  transition: color 0.3s;
}
.work-card:hover .work-card__title { color: var(--bone); }

.work-card__caption {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mute-strong);
}

.work__more {
  margin-top: clamp(56px, 6vw, 88px);
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .work-card,
  .work-card--tall,
  .work-card--feature,
  .work-card--wide { grid-column: span 12; grid-row: auto; }
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
  padding: var(--section-y) 0;
  background: var(--ink);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.brands__title {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: clamp(56px, 7vw, 96px);
}

.brands__row--featured {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: 64px;
}
.brand--featured {
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 64px;
  border: 1px solid var(--line-strong);
  align-items: center;
}
.brand__wordmark--kani {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  color: var(--bone);
}
.brand__role { color: var(--mute-strong); }

.brands__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  background-clip: content-box;
}
.brand {
  background: var(--ink);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: background 0.4s;
}
.brand:hover { background: var(--ink-soft); }
.brand__wordmark {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: 0.01em;
  color: var(--mute-strong);
  transition: color 0.4s;
}
.brand:hover .brand__wordmark { color: var(--bone); }
.brand__wordmark--mono {
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.brand__wordmark--script { font-style: italic; font-weight: 500; }

.brand__wordmark--num {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.brand__wordmark--num .num77 {
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.brand:hover .brand__wordmark--num .num77 { color: var(--bone); }

@media (max-width: 720px) {
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .brand { min-height: 90px; padding: 28px 18px; }
}

/* ============================================
   NYFW PROMO
   ============================================ */
.nyfw {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.nyfw__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.nyfw__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(36px, 4.5vw, 56px);
  color: var(--mute-strong);
}
.nyfw__meta .rule { max-width: 60px; }

.nyfw__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(60px, 11vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.nyfw__line { display: block; }
.nyfw__line--soft {
  font-style: italic;
  font-weight: 300;
  color: var(--mute-strong);
  font-size: 0.55em;
  letter-spacing: -0.01em;
  margin-left: 0.4em;
}
.nyfw__line--soft em { color: var(--mute); font-style: italic; }
.nyfw__line--year {
  font-style: italic;
  font-weight: 400;
  color: var(--mute);
}

[data-type-mode="anton"] .nyfw__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .nyfw__line--soft { font-style: normal; }

.nyfw__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--paper);
  max-width: 52ch;
  margin-bottom: 40px;
}

.nyfw__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nyfw__rail {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  color: var(--mute-soft);
  font-size: 11px;
  letter-spacing: 0.4em;
  pointer-events: none;
  opacity: 0.6;
}

@media (max-width: 1100px) {
  .nyfw__rail { display: none; }
}

/* ============================================
   REEL
   ============================================ */
.reel {
  padding: var(--section-y) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}

.reel .display {
  padding: 0 var(--gutter);
  margin-bottom: clamp(56px, 6vw, 88px);
}

.reel__player {
  padding: 0 var(--gutter);
}
.reel__player-inner {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink-soft);
  cursor: pointer;
}
.reel__cover {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1);
}
.reel__player-inner:hover .reel__cover { transform: scale(1.03); }
.reel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}
.reel__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(80px, 9vw, 120px);
  height: clamp(80px, 9vw, 120px);
  color: var(--bone);
  transition: transform 0.5s cubic-bezier(.2,.6,.2,1);
}
.reel__player-inner:hover .reel__play { transform: translate(-50%, -50%) scale(1.08); }
.reel__play svg { width: 100%; height: 100%; }
.reel__caption {
  position: absolute;
  bottom: 20px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--bone);
  font-size: 11px;
}

.reel__sub {
  padding: 0 var(--gutter);
  margin-top: 24px;
  color: var(--mute);
  text-align: right;
}

/* ============================================
   PROMO — NIJO10
   ============================================ */
.promo {
  padding: var(--section-y) 0;
  background: var(--ink-soft);
  position: relative;
  text-align: center;
}
.promo__top-rule, .promo__bot-rule {
  height: 1px;
  background: var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
  width: calc(100% - var(--gutter) * 2);
}

.promo__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo .overline { margin-bottom: 32px; }

.promo__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin-bottom: 0;
}
.promo__title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--mute-strong);
}

[data-type-mode="anton"] .promo__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .promo__title-em { font-style: normal; }

.promo__code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 56px;
  border: 1px solid var(--line-strong);
  margin: 8px 0 28px;
  min-width: 320px;
  transition: border-color 0.4s, background 0.4s;
  cursor: pointer;
  position: relative;
}
.promo__code:hover { border-color: var(--bone); }
.promo__code.is-copied { border-color: var(--bone); background: var(--bone); }
.promo__code.is-copied .promo__code-label,
.promo__code.is-copied .promo__code-value,
.promo__code.is-copied .promo__code-hint { color: var(--ink); }
.promo__code-label { color: var(--mute); letter-spacing: 0.24em; }
.promo__code-value {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.04em;
  color: var(--bone);
  transition: color 0.4s;
}
.promo__code-hint { color: var(--mute-strong); letter-spacing: 0.24em; transition: color 0.4s; }

.promo__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--mute-strong);
  margin-bottom: 36px;
}

/* ============================================
   FINALE
   ============================================ */
.finale {
  padding: clamp(140px, 18vw, 280px) 0;
  text-align: center;
  position: relative;
}
.finale__rule {
  height: 1px;
  background: var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
  width: calc(100% - var(--gutter) * 2);
}
.finale__rule--top { position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.finale__rule--bot { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }

.finale__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.finale__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(64px, 10vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--bone);
}
.finale__title .ital { color: var(--mute-strong); }
.finale__title .period { color: var(--mute); }

[data-type-mode="anton"] .finale__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .finale__title .ital { font-style: normal; }

.finale__meta { color: var(--mute); letter-spacing: 0.3em; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: clamp(80px, 8vw, 120px) 0 32px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer__hero {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: clamp(72px, 9vw, 120px);
}
.footer__logo {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(80px, 14vw, 220px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--bone);
  margin-bottom: 12px;
}
.footer__tag {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--mute-strong);
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.footer__sub { color: var(--mute); }

[data-type-mode="anton"] .footer__logo { text-transform: uppercase; font-weight: 400; }

.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-h {
  color: var(--mute);
  margin-bottom: 12px;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  color: var(--paper);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--bone); }

.footer__social {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px var(--gutter);
  display: flex;
  justify-content: center;
  gap: 18px;
}
.footer__social a {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mute-strong);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.footer__social a:hover {
  color: var(--ink);
  background: var(--bone);
  border-color: var(--bone);
}
.footer__social a svg { width: 18px; height: 18px; }

.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--mute);
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 0;
  transition: transform 0.5s cubic-bezier(.2,.6,.2,1);
  pointer-events: none;
}
.toast.is-on { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; }
.toast span { color: var(--ink); }

/* ============================================
   TWEAKS PANEL
   ============================================ */
.tweaks {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 280px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tweaks__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.tweaks__head button {
  font-size: 20px;
  width: 24px;
  height: 24px;
  color: var(--mute-strong);
  line-height: 1;
}
.tweaks__head button:hover { color: var(--bone); }
.tweaks__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tweaks__label {
  display: block;
  margin-bottom: 8px;
  color: var(--mute);
}
.tweaks__seg {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 4px;
  border: 1px solid var(--line);
  padding: 3px;
}
.tweaks__seg button {
  padding: 9px 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mute-strong);
  transition: background 0.3s, color 0.3s;
}
.tweaks__seg button:hover { color: var(--bone); }
.tweaks__seg button.is-on {
  background: var(--bone);
  color: var(--ink);
}

@media (max-width: 600px) {
  .tweaks { right: 12px; left: 12px; width: auto; bottom: 12px; }
}

/* ============================================
   LOOKBOOK PAGE
   ============================================ */
.lb-hero {
  position: relative;
  padding: clamp(160px, 22vh, 240px) var(--gutter) clamp(64px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.lb-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.lb-hero__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.lb-hero__head .rule { max-width: 280px; }

.lb-hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(96px, 18vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: var(--bone);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.lb-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--mute-strong);
}
[data-type-mode="anton"] .lb-hero__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .lb-hero__title em { font-style: normal; }

.lb-hero__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--paper);
  max-width: 64ch;
}

/* Filter bar */
.lb-filter {
  padding: 28px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.lb-filter__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lb-pill {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute-strong);
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.lb-pill:hover { color: var(--bone); border-color: var(--mute-strong); }
.lb-pill.is-on { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.lb-count { color: var(--mute); }

/* Masonry-ish editorial grid */
.lb-grid-wrap {
  padding: clamp(56px, 7vw, 96px) 0;
}
.lb-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(40px, 4vw, 64px) clamp(20px, 2.5vw, 36px);
}

.lb-frame {
  display: flex;
  flex-direction: column;
  gap: 18px;
  grid-column: span 6;
  position: relative;
}
.lb-frame--tall { grid-column: span 5; grid-row: span 2; }
.lb-frame--wide { grid-column: span 7; }
.lb-frame--full { grid-column: span 12; }
.lb-frame--narrow { grid-column: span 5; }

.lb-frame__media {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}
.lb-frame__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1), filter 0.6s;
}
.lb-frame:hover .lb-frame__media img { transform: scale(1.03); }

.lb-frame__media--portrait { aspect-ratio: 4/5; }
.lb-frame__media--tall { aspect-ratio: 4/6; }
.lb-frame__media--wide { aspect-ratio: 16/10; }
.lb-frame__media--cinemascope { aspect-ratio: 21/9; }
.lb-frame__media--square { aspect-ratio: 1/1; }

.lb-frame__num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  z-index: 2;
  text-transform: uppercase;
}

.lb-frame__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.lb-frame__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--bone);
}
.lb-frame__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--mute-strong);
}
[data-type-mode="anton"] .lb-frame__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .lb-frame__title em { font-style: normal; }

.lb-frame__desc {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
  max-width: 52ch;
}
.lb-frame__credit {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.6;
}

/* End-of-lookbook note */
.lb-end {
  max-width: 720px;
  margin: clamp(80px, 10vw, 140px) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
}
.lb-end__line {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.lb-end__copy {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--paper);
  margin-bottom: 24px;
}
.lb-end__copy a {
  color: var(--bone);
  border-bottom: 1px solid var(--line-strong);
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.lb-end__copy a:hover { border-color: var(--bone); }

@media (max-width: 900px) {
  .lb-frame,
  .lb-frame--tall,
  .lb-frame--wide,
  .lb-frame--full,
  .lb-frame--narrow { grid-column: span 12; grid-row: auto; }
}

/* ============================================
   KARL KANI PAGE
   ============================================ */

/* --- HERO --- */
.kk-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter);
  padding-bottom: clamp(80px, 10vh, 140px);
  padding-top: clamp(140px, 18vh, 200px);
  overflow: hidden;
}
.kk-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kk-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: var(--photo-filter);
}
.kk-hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.75) 80%, rgba(0,0,0,0.98) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.45));
}
.kk-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.kk-hero__overline {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bone);
  margin-bottom: 32px;
}
.kk-hero__overline img {
  height: 32px;
  width: auto;
}
.kk-hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--bone);
  margin-bottom: 24px;
}
.kk-hero__title .l1 {
  display: block;
  font-size: clamp(60px, 11vw, 168px);
  font-weight: 400;
  font-style: italic;
  color: var(--mute-strong);
  line-height: 1.05;
}
.kk-hero__title .l2 {
  display: block;
  font-size: clamp(56px, 14vw, 160px);
  letter-spacing: -0.055em;
  text-transform: uppercase;
  line-height: 0.9;
  margin-top: 8px;
}
[data-type-mode="anton"] .kk-hero__title .l1 { font-style: normal; }
[data-type-mode="anton"] .kk-hero__title .l2 { font-weight: 400; }

.kk-hero__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  color: var(--paper);
  max-width: 56ch;
  margin-bottom: 40px;
}
.kk-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.kk-hero__strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  color: var(--mute);
}
@media (max-width: 720px) {
  .kk-hero__strip span:nth-child(2) { display: none; }
}

/* --- MANIFESTO / pull-quote --- */
.kk-manifesto {
  padding: clamp(120px, 16vw, 200px) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.kk-manifesto__mark {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 14vw, 220px);
  line-height: 0.5;
  color: var(--mute-soft);
  margin-bottom: -20px;
}
.kk-manifesto__quote {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--bone);
  max-width: 22ch;
  margin: 0 auto 36px;
  text-wrap: balance;
}
.kk-manifesto__quote em {
  font-style: normal;
  font-weight: 500;
  color: var(--mute-strong);
}
[data-type-mode="anton"] .kk-manifesto__quote { font-style: normal; text-transform: uppercase; }
.kk-manifesto__attr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
}
.kk-manifesto__attr-name { color: var(--bone); }

/* --- TIMELINE: Since 1989 --- */
.kk-timeline {
  padding: var(--section-y) 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kk-timeline__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(72px, 8vw, 120px);
}
.kk-timeline__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.kk-timeline__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-timeline__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-timeline__title em { font-style: normal; }
.kk-timeline__intro {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--paper);
  max-width: 48ch;
}

.kk-timeline__rail {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.kk-timeline__rail::before {
  content: '';
  position: absolute;
  top: 14px;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line-strong);
}
.kk-timeline__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.kk-year {
  position: relative;
  padding-top: 40px;
}
.kk-year::before {
  content: '';
  position: absolute;
  top: 10px; left: 0;
  width: 9px; height: 9px;
  background: var(--bone);
  border-radius: 50%;
}
.kk-year__num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 12px;
}
[data-type-mode="anton"] .kk-year__num { text-transform: uppercase; font-weight: 400; }
.kk-year__title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-strong);
  margin-bottom: 12px;
  line-height: 1.4;
}
.kk-year__copy {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
}

@media (max-width: 900px) {
  .kk-timeline__head { grid-template-columns: 1fr; }
  .kk-timeline__items { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .kk-timeline__rail::before { display: none; }
  .kk-year { padding-top: 0; }
  .kk-year::before { display: none; }
}

/* --- HALL OF INFLUENCE — celebrity grid --- */
.kk-hall {
  padding: var(--section-y) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.kk-hall__title {
  padding: 0 var(--gutter);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.kk-hall__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-hall__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-hall__title em { font-style: normal; }
.kk-hall__sub {
  padding: 0 var(--gutter);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  color: var(--paper);
  max-width: 64ch;
  margin-bottom: clamp(48px, 6vw, 88px);
}

.kk-hall__band {
  padding: 0 var(--gutter);
  margin-bottom: clamp(28px, 3.5vw, 48px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.kk-hall__band-label { color: var(--bone); }
.kk-hall__band .rule { background: var(--line-strong); }

.kk-hall__grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  background-clip: content-box;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.kk-icon {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  transition: background 0.5s;
  position: relative;
  overflow: hidden;
}
.kk-icon:hover { background: var(--ink-soft); }

.kk-icon__media {
  aspect-ratio: 3/4;
  background: var(--ink-soft);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.kk-icon__media image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.kk-icon__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.kk-icon:hover .kk-icon__media img { transform: scale(1.04); }

.kk-icon__content {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.kk-icon__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.kk-icon__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.kk-icon__era {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute-strong);
}
.kk-icon__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--bone);
  transition: color 0.4s;
}
.kk-icon__name em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-icon__name { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-icon__name em { font-style: normal; }
.kk-icon__moment {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute-strong);
}

@media (max-width: 900px) { .kk-hall__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kk-hall__grid { grid-template-columns: 1fr; } }

/* --- THE NEW WAVE — text-driven section after the pioneer grid --- */
.kk-newwave {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.kk-newwave__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.kk-newwave__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.kk-newwave__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-newwave__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-newwave__title em { font-style: normal; }

.kk-newwave__lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
  color: var(--paper);
  max-width: 52ch;
}

.kk-newwave__roster {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.015em;
  color: var(--bone);
  line-height: 1.35;
  margin-top: 8px;
}
.kk-newwave__roster span {
  display: inline-flex;
  align-items: center;
}
.kk-newwave__roster span:not(:last-child)::after {
  content: '·';
  margin: 0 14px;
  color: var(--mute);
  font-weight: 400;
}
.kk-newwave__roster span:nth-child(2n)::before {
  content: '';
}
.kk-newwave__roster em {
  font-style: italic;
  font-weight: 300;
  color: var(--mute-strong);
}
[data-type-mode="anton"] .kk-newwave__roster { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-newwave__roster em { font-style: normal; }

.kk-newwave__close {
  color: var(--mute-strong);
  margin-top: 8px;
}

.kk-newwave__media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
  overflow: hidden;
}
.kk-newwave__media image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.kk-newwave__media-caption {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 9px 12px;
}

@media (max-width: 900px) {
  .kk-newwave { grid-template-columns: 1fr; }
}

/* --- AMBASSADOR · NIJO × KARL KANI --- */
.kk-amb {
  padding: var(--section-y) 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kk-amb__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.kk-amb__photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.kk-amb__photo image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.kk-amb__caption {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  z-index: 3;
  padding: 12px 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--bone);
  text-transform: uppercase;
}
.kk-amb__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.kk-amb__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--bone);
}
.kk-amb__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-amb__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-amb__title em { font-style: normal; }
.kk-amb__lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.5;
  color: var(--bone);
  max-width: 52ch;
}
.kk-amb__copy {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper);
  max-width: 56ch;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.kk-amb__meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.kk-amb__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kk-amb__meta-item span:first-child { color: var(--mute); }
.kk-amb__meta-item span:last-child {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--bone);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) { .kk-amb__inner { grid-template-columns: 1fr; } }

/* --- COLLECTIONS (East Flatbush · 35mm Film · BIB) --- */
.kk-coll {
  padding: var(--section-y) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.kk-coll__head {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.kk-coll__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.kk-coll__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-coll__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-coll__title em { font-style: normal; }
.kk-coll__intro {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--paper);
}
.kk-coll__grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.kk-collection {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.kk-collection__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.kk-collection__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1);
}
.kk-collection:hover .kk-collection__media img { transform: scale(1.04); }
.kk-collection__chapter {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 7px 12px;
}
.kk-collection__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--bone);
}
.kk-collection__name em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-collection__name { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-collection__name em { font-style: normal; }
.kk-collection__copy {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
  max-width: 44ch;
}
.kk-collection__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

@media (max-width: 900px) {
  .kk-coll__head { grid-template-columns: 1fr; }
  .kk-coll__grid { grid-template-columns: 1fr; }
}

/* --- BIG STATEMENT BANNER --- */
.kk-banner {
  padding: clamp(140px, 18vw, 240px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kk-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/photos/kani-jacket-back.jpg") center/cover no-repeat;
  filter: var(--photo-filter);
  opacity: 0.18;
}
.kk-banner__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.95));
}
.kk-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.kk-banner__overline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bone);
  margin-bottom: 36px;
}
.kk-banner__quote {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: 32px;
}
.kk-banner__quote em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-banner__quote { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-banner__quote em { font-style: normal; }
.kk-banner__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--mute-strong);
  margin-bottom: 40px;
}

/* --- LEGACY JOURNAL — blog teaser grid --- */
.kk-journal {
  padding: var(--section-y) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.kk-journal__head {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.kk-journal__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.kk-journal__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-journal__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-journal__title em { font-style: normal; }
.kk-journal__intro {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--paper);
  max-width: 48ch;
}

.kk-journal__list {
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
}
.kk-post {
  display: grid;
  grid-template-columns: 80px 1fr 260px 80px;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s cubic-bezier(.2,.6,.2,1);
  cursor: pointer;
  position: relative;
}
.kk-post:hover { padding-left: 16px; }
.kk-post::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(.2,.6,.2,1);
}
.kk-post:hover::after { transform: scaleX(1); }

.kk-post__num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--mute); }
.kk-post__year {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.01em;
  color: var(--bone);
}
[data-type-mode="anton"] .kk-post__year { font-weight: 400; }
.kk-post__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--bone);
  transition: color 0.3s;
}
.kk-post__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .kk-post__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .kk-post__title em { font-style: normal; }
.kk-post__cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mute-strong);
  text-transform: uppercase;
  text-align: right;
}
.kk-post__arrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bone);
  text-align: right;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s;
}
.kk-post:hover .kk-post__arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 900px) {
  .kk-journal__head { grid-template-columns: 1fr; }
  .kk-post {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "num  title"
      ".    cat";
    row-gap: 6px;
  }
  .kk-post__num { grid-area: num; }
  .kk-post__title { grid-area: title; }
  .kk-post__cat { grid-area: cat; text-align: left; }
  .kk-post__arrow { display: none; }
}

.kk-journal__more {
  margin-top: clamp(48px, 6vw, 80px);
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
}

/* --- PROMO (reuse promo from home, but slightly tighter) --- */
.kk-promo {
  padding: var(--section-y) 0;
  background: var(--ink-soft);
  position: relative;
  text-align: center;
}
.kk-promo__rule {
  height: 1px;
  background: var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
  width: calc(100% - var(--gutter) * 2);
}

/* ============================================
   LEGACY ARTICLE PAGE
   ============================================ */
.article-hero {
  padding: clamp(140px, 18vh, 200px) var(--gutter) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-strong);
  margin-bottom: clamp(48px, 6vw, 80px);
  transition: color 0.3s, transform 0.4s cubic-bezier(.2,.6,.2,1);
}
.article-back:hover { color: var(--bone); transform: translateX(-4px); }
.article-back svg { width: 16px; height: 16px; }

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--bone);
}
.article-meta-row .rule { max-width: 240px; }

.article-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin-bottom: 32px;
  text-wrap: balance;
  max-width: 22ch;
}
.article-title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .article-title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .article-title em { font-style: normal; }

.article-lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  color: var(--paper);
  max-width: 56ch;
  margin-bottom: 28px;
}
[data-type-mode="anton"] .article-lede { font-style: normal; }

.article-byline {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  flex-wrap: wrap;
}
.article-byline strong { color: var(--bone); font-weight: 500; }

/* Hero image-slot */
.article-image {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(36px, 4vw, 56px);
}
.article-image__frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink-soft);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.article-image__frame image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.article-image__cap {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Body */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
}
.article-body p,
.article-body ul {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--paper);
  margin-bottom: 26px;
}
.article-body p strong { color: var(--bone); font-weight: 500; }
.article-body p em { font-style: italic; color: var(--bone); }
.article-body p.lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
  color: var(--bone);
  margin-bottom: 36px;
  max-width: 38ch;
}
.article-body p.lede::first-letter {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.5em;
  color: var(--mute-strong);
}
.article-body h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 48px 0 20px;
}
.article-body h2 em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .article-body h2 { text-transform: uppercase; font-weight: 400; }
.article-body ul { padding-left: 22px; list-style: none; }
.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 1px;
  background: var(--mute-strong);
}
.article-body a {
  color: var(--bone);
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s;
}
.article-body a:hover { border-color: var(--bone); }

.article-pullquote {
  margin: 56px 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.article-pullquote p {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--bone);
  max-width: 24ch;
  margin-bottom: 18px;
}
[data-type-mode="anton"] .article-pullquote p { font-style: normal; text-transform: uppercase; font-weight: 400; }
.article-pullquote__attr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.article-pullquote__attr strong { color: var(--bone); font-weight: 500; }

/* Article foot — prev / next */
.article-foot {
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}
.article-foot__nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
}
.article-foot__link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
  transition: padding 0.4s cubic-bezier(.2,.6,.2,1);
}
.article-foot__link.next { text-align: right; }
.article-foot__link.next:hover { padding-right: 8px; }
.article-foot__link.prev:hover { padding-left: 8px; }
.article-foot__dir {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.article-foot__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bone);
  transition: color 0.3s;
}
.article-foot__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .article-foot__title { text-transform: uppercase; font-weight: 400; }
.article-foot__cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute-strong);
  text-transform: uppercase;
}

.article-foot__index {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(56px, 6vw, 88px);
  text-align: center;
}
.article-foot__index a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-strong);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.3s, border-color 0.3s;
}
.article-foot__index a:hover { color: var(--bone); border-color: var(--bone); }

@media (max-width: 720px) {
  .article-foot__nav { grid-template-columns: 1fr; }
}

/* ============================================
   LEGAL PAGE (Privacy Policy · Imprint)
   ============================================ */
.legal-hero {
  position: relative;
  padding: clamp(160px, 22vh, 240px) var(--gutter) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
}
.legal-hero__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(28px, 3.5vw, 48px);
  color: var(--mute-strong);
}
.legal-hero__head .rule { max-width: 320px; }
.legal-hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: var(--bone);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.legal-hero__title em { font-style: italic; font-weight: 400; color: var(--mute-strong); }
[data-type-mode="anton"] .legal-hero__title { text-transform: uppercase; font-weight: 400; }
[data-type-mode="anton"] .legal-hero__title em { font-style: normal; }
.legal-hero__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--paper);
  max-width: 64ch;
}
.legal-hero__updated {
  margin-top: clamp(24px, 3vw, 36px);
  color: var(--mute);
}

.legal {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gutter) var(--section-y);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(48px, 6vw, 112px);
  align-items: start;
}

/* Sticky table of contents */
.legal__toc {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal__toc-h {
  color: var(--mute);
  margin-bottom: 18px;
}
.legal__toc a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute-strong);
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  transition: color 0.3s;
  line-height: 1.4;
}
.legal__toc a:hover { color: var(--bone); }
.legal__toc a span { color: var(--mute); flex: none; }

.legal__body {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 5vw, 72px);
  max-width: 72ch;
}

/* Data-controller card */
.legal-card {
  border: 1px solid var(--line-strong);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-card__label {
  color: var(--mute);
  margin-bottom: 14px;
}
.legal-card__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.015em;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 8px;
}
[data-type-mode="anton"] .legal-card__name { text-transform: uppercase; font-weight: 400; }
.legal-card__line { font-size: 15px; color: var(--paper); line-height: 1.6; }
.legal-card__contact {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-card__contact a, .legal-card__contact span {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mute-strong);
  transition: color 0.3s;
}
.legal-card__contact a:hover { color: var(--bone); }

.legal-section {
  scroll-margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.legal-section__num {
  color: var(--mute);
}
.legal-section__h {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
}
[data-type-mode="anton"] .legal-section__h { text-transform: uppercase; font-weight: 400; }
.legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper);
}
.legal-section p + p { margin-top: -4px; }
.legal-section a:not(.legal-card__contact a) {
  color: var(--bone);
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s;
  word-break: break-word;
}
.legal-section a:hover { border-color: var(--bone); }
.legal-section strong { color: var(--bone); font-weight: 500; }

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0;
}
.legal-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--paper);
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--mute-strong);
}
.legal-list--law li::before { display: none; }
.legal-list--law li {
  padding-left: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.legal-list--law .legal-list__ref {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  margin-top: 4px;
}

.legal-callout {
  border-left: 1px solid var(--line-strong);
  padding-left: clamp(20px, 2vw, 28px);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--bone);
}

@media (max-width: 900px) {
  .legal { grid-template-columns: 1fr; gap: 40px; }
  .legal__toc {
    position: static;
    border: 1px solid var(--line);
    padding: 24px;
  }
}

/* Footer legal links */
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--bone); }
