/* ==========================================================
   EINS ZWEI ZWEI EINS — SAMPLE SALE 2026
   Art direction: "Analog Bloom"
   Paper-light Swiss grid + soft colour fields + neon contours
   ========================================================== */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Switzer', 'Inter', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* Campaign colours */
  --lilac: oklch(0.78 0.11 305);
  --signal: oklch(0.55 0.19 258);
  --tomato: oklch(0.62 0.21 32);
  --orange: oklch(0.78 0.16 68);
  --lime: oklch(0.9 0.22 122);

  --edge: 1400px;
}

/* Light (default) */
:root,
[data-theme='light'] {
  --paper: oklch(0.972 0.008 85);
  --paper-2: oklch(0.995 0.004 85);
  --ink: oklch(0.19 0.01 60);
  --ink-soft: oklch(0.44 0.012 60);
  --ink-faint: oklch(0.68 0.01 60);
  --rule: oklch(0.86 0.01 70);
  --accent: var(--tomato);
  --contour: oklch(0.78 0.21 122);
  --field-a: oklch(0.86 0.1 300 / 0.85);
  --field-b: oklch(0.8 0.13 250 / 0.75);
  --field-c: oklch(0.85 0.15 65 / 0.8);
  --field-d: oklch(0.75 0.2 32 / 0.65);
  --field-strength: 1;
}

[data-theme='dark'] {
  --paper: oklch(0.17 0.012 285);
  --paper-2: oklch(0.22 0.014 285);
  --ink: oklch(0.96 0.008 85);
  --ink-soft: oklch(0.78 0.01 85);
  --ink-faint: oklch(0.56 0.012 85);
  --rule: oklch(0.32 0.015 285);
  --accent: oklch(0.72 0.19 40);
  --contour: oklch(0.88 0.22 122);
  --field-a: oklch(0.5 0.16 300 / 0.75);
  --field-b: oklch(0.46 0.17 255 / 0.7);
  --field-c: oklch(0.6 0.17 65 / 0.6);
  --field-d: oklch(0.55 0.2 30 / 0.55);
  --field-strength: 0.85;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition:
    background-color 0.5s ease,
    color 0.5s ease;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--contour);
  color: oklch(0.2 0.01 60);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--edge);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-16));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.lede {
  font-size: var(--text-base);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0;
}

section {
  position: relative;
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  scroll-margin-top: 84px;
  overflow-x: clip;
}

.hero {
  scroll-margin-top: 0;
}

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ---------- Colour fields ---------- */
.fields {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px) saturate(1.15);
  opacity: var(--field-strength);
}

.field {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  animation: drift 26s ease-in-out infinite alternate;
}

[data-theme='dark'] .field {
  mix-blend-mode: screen;
}

.field.a {
  width: 46vw;
  height: 46vw;
  left: -6vw;
  top: 4%;
  background: var(--field-a);
}
.field.b {
  width: 40vw;
  height: 40vw;
  right: -4vw;
  top: -6%;
  background: var(--field-b);
  animation-duration: 32s;
  animation-delay: -8s;
}
.field.c {
  width: 34vw;
  height: 34vw;
  left: 34%;
  bottom: -8%;
  background: var(--field-c);
  animation-duration: 38s;
  animation-delay: -16s;
}
.field.d {
  width: 22vw;
  height: 22vw;
  right: 22%;
  bottom: 6%;
  background: var(--field-d);
  animation-duration: 29s;
  animation-delay: -4s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4vw, -3vw, 0) scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .field {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Duotone photo overlays ---------- */
.shot {
  position: relative;
  display: block;
  isolation: isolate;
  overflow: hidden;
  border-radius: 2px;
  background: var(--duo-dark);
}

.shot img {
  filter: grayscale(1) contrast(1.08) brightness(1.04);
  mix-blend-mode: screen;
  transition:
    filter 0.6s ease,
    opacity 0.6s ease;
}

.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--duo-light);
  mix-blend-mode: multiply;
  opacity: 0.88;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.shot::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(
    120% 90% at 70% 15%,
    transparent 35%,
    color-mix(in oklab, var(--duo-dark) 55%, transparent) 100%
  );
  opacity: 0.28;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* hover fades the veil back to the original photograph */
figure:hover .shot img,
.shot:hover img {
  filter: none;
  mix-blend-mode: normal;
}

figure:hover .shot::after,
figure:hover .shot::before,
.shot:hover::after,
.shot:hover::before {
  opacity: 0;
}

.duo-signal {
  --duo-dark: oklch(0.44 0.15 258);
  --duo-light: oklch(0.82 0.13 240);
}

.duo-lilac {
  --duo-dark: oklch(0.48 0.15 305);
  --duo-light: oklch(0.86 0.11 318);
}

.duo-tomato {
  --duo-dark: oklch(0.5 0.16 32);
  --duo-light: oklch(0.89 0.11 58);
}

.duo-orange {
  --duo-dark: oklch(0.54 0.13 55);
  --duo-light: oklch(0.92 0.12 85);
}

.duo-lime {
  --duo-dark: oklch(0.5 0.13 145);
  --duo-light: oklch(0.94 0.16 118);
}

[data-theme='dark'] .shot::after {
  opacity: 0.82;
}

@media (prefers-reduced-motion: reduce) {
  .shot img,
  .shot::after,
  .shot::before {
    transition: none;
  }
}

/* ---------- Contours ---------- */
.contour {
  position: absolute;
  inset: -4%;
  width: auto;
  height: auto;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.contour path,
.contour circle,
.contour line {
  fill: none;
  stroke: var(--contour);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.draw path,
.draw circle,
.draw line {
  stroke-dasharray: var(--len, 2000);
  stroke-dashoffset: var(--len, 2000);
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.draw.is-in path,
.draw.is-in circle,
.draw.is-in line {
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .draw path,
  .draw circle,
  .draw line {
    stroke-dashoffset: 0;
    transition: none;
  }
}

/* ---------- Decorative shapes (sparkles & swirls) ---------- */
.deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.deco-shape {
  position: absolute;
  display: block;
  overflow: visible;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.deco-shape.is-spark {
  animation: twinkle 3.8s ease-in-out infinite;
}

.deco-shape.is-swirl {
  animation: spin-slow 54s linear infinite;
}

.deco-shape.is-nudge {
  animation: nudge-up 2.6s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.78) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.06) rotate(10deg);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes nudge-up {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.55;
  }
  50% {
    transform: translate(5px, -7px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deco-shape {
    animation: none !important;
  }
}

/* ---------- Spin Badge (rotating stamp built from icon kit) ---------- */
.spin-badge {
  position: absolute;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 5;
  filter: drop-shadow(0 14px 28px oklch(0.19 0.01 60 / 0.22));
}

.spin-badge__ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--ink);
  animation: badge-spin-cw 30s linear infinite;
}

.spin-badge__circle {
  fill: var(--paper-2);
  stroke: currentColor;
  stroke-width: 1;
}

.spin-badge__circle-inner {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.6;
  opacity: 0.32;
}

.spin-badge__text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  fill: currentColor;
}

.spin-badge__icon-svg {
  position: absolute;
  top: 28%;
  left: 28%;
  width: 44%;
  height: 44%;
  color: var(--accent);
  animation: badge-spin-ccw 22s linear infinite;
}

@keyframes badge-spin-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes badge-spin-ccw {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.spin-badge--hero {
  width: clamp(112px, 13.5vw, 172px);
  right: -5%;
  bottom: -9%;
}

.spin-badge--hero .spin-badge__text {
  font-size: 11.5px;
}

.spin-badge--cta {
  width: clamp(78px, 9vw, 108px);
  top: -54px;
  right: 6%;
}

.spin-badge--cta .spin-badge__text {
  font-size: 9.5px;
}

.spin-badge--cta .spin-badge__icon-svg {
  color: var(--contour);
}

@media (max-width: 720px) {
  .spin-badge--hero {
    width: 96px;
    right: -2%;
    bottom: -6%;
  }

  .spin-badge--cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spin-badge__ring-svg,
  .spin-badge__icon-svg {
    animation: none !important;
  }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding-block: var(--space-4);
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--paper) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.brandmark svg {
  width: 34px;
  height: 22px;
  flex: none;
}

.brandmark span {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2.2vw, var(--space-10));
}

.nav a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: var(--space-1);
  border-bottom: 1px solid transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

@media (max-width: 1000px) {
  .nav a.hide-md {
    display: none;
  }
}

@media (max-width: 900px) {
  .brandmark span {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav a.hide-sm {
    display: none;
  }
  .nav a.nav-cta {
    border-bottom-color: var(--accent);
    color: var(--ink);
  }
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: transparent;
  flex: none;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.theme-toggle:hover {
  border-color: var(--ink);
  transform: rotate(-12deg);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.theme-toggle .moon {
  display: none;
}

[data-theme='dark'] .theme-toggle .moon {
  display: block;
}

[data-theme='dark'] .theme-toggle .sun {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92svh, 840px);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(var(--space-24), 18vh, var(--space-32));
  padding-bottom: clamp(var(--space-10), 6vw, var(--space-20));
  overflow: hidden;
}

.hero .wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--space-6);
}

.hero-title {
  font-size: var(--text-hero);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > span {
  display: block;
  transform: translateY(105%);
  animation: rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title .line:nth-child(2) > span {
  animation-delay: 0.1s;
}
.hero-title .line:nth-child(3) > span {
  animation-delay: 0.2s;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.countdown-line {
  margin: var(--space-4) 0 var(--space-6);
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--accent);
}

@keyframes rise {
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .line > span {
    transform: none;
    animation: none;
  }
}

.hero-grid {
  margin-top: clamp(var(--space-6), 3vw, var(--space-10));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  align-items: end;
}

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

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.datablock {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-5) var(--space-6);
  border-top: 1px solid var(--rule);
  padding-top: var(--space-5);
}

.datablock dt {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}

.datablock dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-figure {
  position: relative;
}

.hero-figure .shot,
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 46svh;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 2px;
}

.hero-figure .contour {
  inset: -6% -8% -4% -6%;
  width: auto;
  height: auto;
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  gap: clamp(var(--space-3), 2vw, var(--space-8));
  flex-wrap: wrap;
}

.countdown div {
  min-width: 62px;
}

.countdown .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.countdown .lab {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: var(--space-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: oklch(0.99 0 0);
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.btn.ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn .arrow {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.28s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ---------- Ticker ---------- */
.ticker {
  border-block: 1px solid var(--ink);
  background: var(--accent);
  color: oklch(0.99 0 0);
  padding-block: var(--space-3);
  overflow: hidden;
  display: flex;
  gap: 0;
}

.ticker__track {
  display: flex;
  flex: none;
  gap: var(--space-8);
  padding-right: var(--space-8);
  animation: marquee 34s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation-duration: 160s;
  }
}

/* ---------- Section head ---------- */
.head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-6) clamp(var(--space-8), 6vw, var(--space-20));
  align-items: start;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

@media (max-width: 860px) {
  .head {
    grid-template-columns: 1fr;
  }
}

.head .num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  display: block;
  margin-bottom: var(--space-4);
}

.head-title {
  font-size: var(--text-2xl);
}

/* ---------- Inside / categories ---------- */
.cats-list {
  border-top: 1px solid var(--rule);
}

.cat-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding-block: clamp(var(--space-5), 2.6vw, var(--space-8));
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.cat-row .cat-cloud {
  position: absolute;
  left: -6%;
  top: 50%;
  width: 26vw;
  height: 260%;
  transform: translate(-40%, -50%) scale(0.6);
  border-radius: 50%;
  background: var(--row-color);
  filter: blur(48px);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

.cat-row:hover .cat-cloud {
  opacity: 0.28;
  transform: translate(0, -50%) scale(1);
}

.cat-row .idx {
  position: absolute;
  top: clamp(var(--space-5), 2.6vw, var(--space-8));
  right: 0;
  font-size: var(--text-xs);
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  z-index: 2;
}

.cat-icon {
  position: relative;
  z-index: 2;
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}

.cat-icon svg.icon {
  width: 34px;
  height: 34px;
  overflow: visible;
}

.cat-icon svg.icon path,
.cat-icon svg.icon circle,
.cat-icon svg.icon line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
}

.cat-row:hover .cat-icon svg.icon path,
.cat-row:hover .cat-icon svg.icon circle,
.cat-row:hover .cat-icon svg.icon line {
  stroke: var(--row-color);
}

.cat-copy {
  position: relative;
  z-index: 2;
  padding-right: var(--space-8);
}

.cat-copy h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 var(--space-2);
  line-height: 1.05;
}

.cat-copy p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  max-width: 46ch;
}

@media (max-width: 640px) {
  .cat-row {
    gap: var(--space-4);
  }
  .cat-icon {
    width: 40px;
    height: 40px;
  }
  .cat-icon svg.icon {
    width: 26px;
    height: 26px;
  }
}

/* ---------- Brands ---------- */
.brands {
  border-top: 1px solid var(--rule);
}

.brand-row {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: clamp(var(--space-4), 2vw, var(--space-6));
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.brand-row .name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.6vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s ease;
  position: relative;
  z-index: 2;
}

.brand-row .tag {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.brand-row .swatch {
  position: absolute;
  left: -10%;
  top: 50%;
  width: 34vw;
  height: 220%;
  transform: translate(-40%, -50%) scale(0.6);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  pointer-events: none;
}

.brand-row:hover .swatch {
  opacity: 0.9;
  transform: translate(0, -50%) scale(1);
}

.brand-row:hover .name {
  transform: translateX(clamp(8px, 1.6vw, 26px));
}

.brands-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

/* ---------- Editorial ---------- */
.editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(var(--space-4), 2.5vw, var(--space-10));
  align-items: start;
}

.editorial figure {
  margin: 0;
  position: relative;
}

.editorial img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.editorial figcaption {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.e1 {
  grid-column: 1 / span 7;
}
.e1 img {
  aspect-ratio: 4 / 5;
}
.e2 {
  grid-column: 9 / span 4;
  padding-top: clamp(var(--space-10), 8vw, var(--space-24));
}
.e2 img {
  aspect-ratio: 3 / 4;
}
.e3 {
  grid-column: 1 / span 4;
}
.e3 img {
  aspect-ratio: 3 / 4;
}
.e4 {
  grid-column: 6 / span 7;
}
.e4 img {
  aspect-ratio: 3 / 2;
}
.e5 {
  grid-column: 3 / span 8;
}
.e5 img {
  aspect-ratio: 16 / 9;
}

.editorial .stack {
  margin-top: clamp(var(--space-10), 7vw, var(--space-24));
}

.pull {
  grid-column: 1 / span 12;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: clamp(var(--space-10), 6vw, var(--space-20)) 0;
  max-width: 22ch;
  text-wrap: balance;
}

.pull em {
  font-style: normal;
  color: var(--accent);
}

@media (max-width: 860px) {
  .e1,
  .e2,
  .e3,
  .e4,
  .e5 {
    grid-column: 1 / span 12;
    padding-top: 0;
  }
  .editorial .stack {
    margin-top: 0;
  }
}

/* ---------- Practical ---------- */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(var(--space-6), 3vw, var(--space-12));
}

.info-card {
  border-top: 2px solid var(--ink);
  padding-top: var(--space-5);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
  line-height: 1.05;
}

.info-card p,
.info-card li {
  margin: 0 0 var(--space-2);
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card .strong {
  color: var(--ink);
  font-weight: 500;
}

.info-card a.link {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  transition: color 0.25s ease;
}

.info-card a.link:hover {
  color: var(--accent);
}

.faq {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  border-top: 1px solid var(--rule);
}

.faq details {
  border-bottom: 1px solid var(--rule);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding-block: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '';
  width: 12px;
  height: 12px;
  flex: none;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(-135deg) translateY(-3px);
}

.faq p {
  margin: 0 0 var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- Newsletter ---------- */
.signup {
  position: relative;
  overflow: hidden;
}

.signup .wrap {
  position: relative;
  z-index: 3;
}

.signup-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-8), 5vw, var(--space-20));
  align-items: end;
}

@media (max-width: 860px) {
  .signup-inner {
    grid-template-columns: 1fr;
  }
}

.signup-title {
  font-size: var(--text-3xl);
}

form.nl {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nl-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.nl input[type='email'] {
  flex: 1 1 240px;
  min-width: 0;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink);
  background: color-mix(in oklab, var(--paper) 80%, transparent);
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.nl input[type='email']::placeholder {
  color: var(--ink-faint);
}

.nl .fine {
  font-size: var(--text-xs);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0;
}

.nl .status {
  font-size: var(--text-sm);
  min-height: 1.4em;
  margin: 0;
}

.nl .status[data-state='ok'] {
  color: var(--ink);
  font-weight: 500;
}

.nl .status[data-state='error'] {
  color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding-block: var(--space-12) var(--space-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  align-items: start;
}

.footer-grid h4 {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 var(--space-4);
  font-weight: 500;
}

.footer-grid p,
.footer-grid li {
  margin: 0 0 var(--space-2);
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}

.footer-mark {
  margin-top: clamp(var(--space-10), 6vw, var(--space-20));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-mark .big {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: uppercase;
  margin: 0;
}

.footer-mark small {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
