/* ============================================================
   QUIET GENTLEMEN — Master Stylesheet
   Old Money Editorial · Luxury Minimal Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Palette */
  --bg:           #090907;
  --bg-warm:      #0e0d0a;
  --surface:      #131210;
  --surface-2:    #1a1916;
  --border:       #252318;
  --border-light: #2e2c22;
  --text:         #f0ead8;
  --text-sub:     #b8ae96;
  --text-muted:   #6e6855;
  --text-ghost:   #302e24;
  --accent:       #3b82f6;
  --accent-dim:   rgba(59, 130, 246, 0.12);
  --accent-hover: #60a5fa;
  --green:        #10b981;
  --green-dim:    rgba(16, 185, 129, 0.12);
  --gold:         #c8a96e;
  --gold-dim:     rgba(200, 169, 110, 0.1);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --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;

  /* Layout */
  --container: 72rem;
  --container-narrow: 48rem;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.3s;
}

/* ── Base ───────────────────────────────────────────────── */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Utility ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

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

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3em 0.85em;
  border-radius: 2px;
  line-height: 1.6;
}
.tag--blue  { background: var(--accent-dim);  color: var(--accent); }
.tag--green { background: var(--green-dim);   color: var(--green);  }
.tag--gold  { background: var(--gold-dim);    color: var(--gold);   }

.label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Hero Image ─────────────────────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,7,0.72) 0%,
    rgba(9,9,7,0.48) 35%,
    rgba(9,9,7,0.82) 75%,
    rgba(9,9,7,0.98) 100%
  );
  z-index: 1;
}

.hero > *:not(.hero__bg):not(.hero__overlay):not(.hero__roman) {
  position: relative;
  z-index: 2;
}

.hero__roman { z-index: 2; }

/* ── Post Card Images ────────────────────────────────────── */
.post-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.post-card:hover .post-card__visual img {
  transform: scale(1.04);
}

.post-card__visual:has(img) .post-card__visual-num {
  display: none;
}

/* ── Noise Overlay ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9, 9, 7, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-color: var(--border);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color var(--duration) var(--ease);
}

.nav__logo-mark span { color: var(--accent); }

.nav__logo-sub {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-sub);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--duration) var(--ease-out);
}

.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--text); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.55em 1.4em;
  border-radius: 2px;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-sub);
  transition: all var(--duration) var(--ease);
}

/* ============================================================
   HERO — Homepage
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-32) var(--space-8) var(--space-16);
  position: relative;
  overflow: hidden;
}

/* Diagonal decorative lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(59,130,246,0.02) 100%);
  pointer-events: none;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__meta-line {
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.hero__eyebrow {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 14ch;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.42), 0 2px 10px rgba(0, 0, 0, 0.55);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.35s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #f7f1e3;
}

.hero__title .accent-word {
  color: #d8b883;
}

.hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: var(--space-12);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(240, 234, 216, 0.92);
  max-width: 38ch;
  line-height: 1.5;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.hero__scroll-label {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Decorative roman numeral / year */
.hero__roman {
  position: absolute;
  right: var(--space-8);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 15rem);
  font-weight: 300;
  color: var(--text-ghost);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   FEATURED STRIP
   ============================================================ */
.strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
  overflow: hidden;
}

.strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.strip__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   SECTION — Shared
   ============================================================ */
.section {
  padding: var(--space-24) 0;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
  gap: var(--space-6);
}

.section__label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.section__label-line {
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section__title em { font-style: italic; color: var(--text-sub); }

.section__link {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--duration) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.section__link:hover { gap: var(--space-4); }
.section__link::after { content: '→'; }

/* ============================================================
   POST GRID
   ============================================================ */
.post-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.post-grid--3 { grid-template-columns: repeat(3, 1fr); }
.post-grid--2 { grid-template-columns: repeat(2, 1fr); }

.post-grid--feature {
  grid-template-columns: 5fr 4fr;
  grid-template-rows: auto;
}

.post-grid--feature .post-card:first-child {
  grid-row: 1 / 3;
}

/* ============================================================
   POST CARD
   ============================================================ */
.post-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background var(--duration) var(--ease);
  position: relative;
}

.post-card:hover { background: var(--surface); }

.post-card__visual {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}

.post-card--large .post-card__visual {
  aspect-ratio: 4 / 3;
}

/* Elegant editorial number */
.post-card__visual-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--text-ghost);
  letter-spacing: -0.05em;
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
}

.post-card:hover .post-card__visual-num {
  transform: scale(1.05);
  color: rgba(59,130,246,0.07);
}

.post-card__visual-cat {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

/* Gradient overlays to distinguish categories */
.post-card__visual--wardrobe { background: linear-gradient(135deg, #13120e 0%, #1d1b13 100%); }
.post-card__visual--fabrics  { background: linear-gradient(135deg, #0e1219 0%, #131a24 100%); }
.post-card__visual--culture  { background: linear-gradient(135deg, #0e1510 0%, #121d14 100%); }
.post-card__visual--style    { background: linear-gradient(135deg, #16130c 0%, #201c11 100%); }
.post-card__visual--review   { background: linear-gradient(135deg, #13100e 0%, #1d1712 100%); }
.post-card__visual--guide    { background: linear-gradient(135deg, #0f0e13 0%, #17151e 100%); }

.post-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card--large .post-card__body { padding: var(--space-8); }

.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.post-card__date {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--space-3);
  transition: color var(--duration) var(--ease);
}

.post-card--large .post-card__title { font-size: 2rem; }
.post-card:hover .post-card__title { color: var(--accent-hover); }

.post-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  flex: 1;
}

.post-card__readmore {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: gap var(--duration) var(--ease);
}

.post-card:hover .post-card__readmore { gap: 0.7em; }
.post-card__readmore::after { content: '→'; }

/* Horizontal card variant */
.post-card--horizontal {
  flex-direction: row;
}

.post-card--horizontal .post-card__visual {
  width: 10rem;
  flex-shrink: 0;
  aspect-ratio: auto;
}

/* ============================================================
   QUOTE / MANIFESTO SECTION
   ============================================================ */
.manifesto {
  padding: var(--space-24) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.manifesto::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: var(--space-8);
  font-family: var(--font-display);
  font-size: 20rem;
  color: var(--text-ghost);
  line-height: 1;
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
}

.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 22ch;
}

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

.manifesto__attribution {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.manifesto__attribution-line {
  width: 2rem;
  height: 1px;
  background: var(--text-muted);
}

.manifesto__attribution-text {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  padding: var(--space-24) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-strip__content {}

.about-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
}

.about-strip__heading em { font-style: italic; color: var(--text-sub); }

.about-strip__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-sub);
  max-width: 50ch;
  margin-bottom: var(--space-8);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.btn--outline {
  border: 1px solid var(--border-light);
  color: var(--text-sub);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn--solid {
  background: var(--accent);
  color: var(--bg);
}

.btn--solid:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.about-strip__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.stat {
  background: var(--surface);
  padding: var(--space-8);
}

.stat__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.stat__num span { color: var(--accent); }

.stat__label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   AFFILIATE / PICK CARDS
   ============================================================ */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.pick-card {
  background: var(--bg);
  padding: var(--space-6);
  transition: background var(--duration) var(--ease);
  position: relative;
}

.pick-card:hover { background: var(--surface); }

.pick-card__img {
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  margin-bottom: var(--space-4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pick-card__img-placeholder {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--text-ghost);
}

.pick-card__brand {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.pick-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}

.pick-card__price {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-sub);
  margin-bottom: var(--space-4);
}

.pick-card__link {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: gap var(--duration) var(--ease);
}

.pick-card:hover .pick-card__link { gap: 0.8em; }
.pick-card__link::after { content: '→'; }

.pick-card__badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25em 0.6em;
  background: var(--accent);
  color: var(--bg);
  border-radius: 1px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-16) 0;
  text-align: center;
}

.newsletter__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.newsletter__eyebrow-line {
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.newsletter__title em { font-style: italic; color: var(--text-sub); }

.newsletter__sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin: 0 auto var(--space-8);
  line-height: 1.65;
}

.newsletter__form {
  display: flex;
  gap: var(--space-2);
  max-width: 28rem;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.75em 1em;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.newsletter__input::placeholder { color: var(--text-muted); }
.newsletter__input:focus { border-color: var(--accent); }

.newsletter__submit {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75em 1.5em;
  border-radius: 2px;
  transition: background var(--duration) var(--ease);
  cursor: pointer;
}

.newsletter__submit:hover { background: var(--accent-hover); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: var(--space-3);
}

.footer__brand-name span { color: var(--accent); }

.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 32ch;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social-link {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: all var(--duration) var(--ease);
}

.footer__social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer__col-title {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-sub);
  transition: color var(--duration) var(--ease);
  font-weight: 300;
}

.footer__link:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer__copy {
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal-link {
  font-size: 0.6875rem;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

.footer__legal-link:hover { color: var(--accent); }

/* ============================================================
   BLOG PAGE — Header
   ============================================================ */
.page-hero {
  padding: calc(var(--space-32) + 4rem) var(--space-8) var(--space-16);
  border-bottom: 1px solid var(--border);
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.page-hero__eyebrow-line {
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 14ch;
}

.page-hero__title em { font-style: italic; color: var(--text-sub); }

.page-hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 52ch;
  margin-top: var(--space-6);
}

/* ============================================================
   BLOG FILTERS
   ============================================================ */
.filters {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 56px;
  background: rgba(9,9,7,0.95);
  backdrop-filter: blur(16px);
  z-index: 50;
}

.filters__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  overflow-x: auto;
  scrollbar-width: none;
}

.filters__inner::-webkit-scrollbar { display: none; }

.filter-btn {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5em 1.2em;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--duration) var(--ease);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.filter-btn.active {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
}

/* ============================================================
   BLOG LISTING
   ============================================================ */
.blog-list {
  padding: var(--space-16) 0;
}

.blog-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}

.blog-list__featured {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}

.blog-list__featured .post-card:first-child .post-card__visual {
  aspect-ratio: 16 / 9;
}

/* ============================================================
   ARTICLE / POST DETAIL
   ============================================================ */
.article-hero {
  padding: calc(var(--space-32) + 2rem) var(--space-8) var(--space-16);
  border-bottom: 1px solid var(--border);
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 20ch;
}

.article-hero__sub {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-sub);
  margin-top: var(--space-4);
  max-width: 56ch;
}

.article-hero__footer {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.article-hero__author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-sub);
}

.article-hero__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.article-hero__read-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* Article body */
.article-body {
  padding: var(--space-16) 0 var(--space-24);
}

.article-body .container--narrow {
  max-width: 44rem;
}

.prose { font-family: var(--font-body); }
.prose p { font-size: 1.0625rem; line-height: 1.85; color: var(--text-sub); margin-bottom: var(--space-6); }
.prose p:first-child { font-size: 1.2rem; line-height: 1.7; color: var(--text); }
.prose h2 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 400; line-height: 1.2; color: var(--text); margin: var(--space-12) 0 var(--space-5); letter-spacing: -0.01em; }
.prose h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; line-height: 1.25; color: var(--text); margin: var(--space-8) 0 var(--space-4); }
.prose blockquote { border-left: 2px solid var(--accent); padding-left: var(--space-6); margin: var(--space-8) 0; }
.prose blockquote p { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--text); line-height: 1.45; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(59,130,246,0.25); transition: border-color var(--duration); }
.prose a:hover { border-color: var(--accent); }
.prose ul { margin: var(--space-6) 0; display: flex; flex-direction: column; gap: var(--space-3); }
.prose li { font-size: 1.0625rem; color: var(--text-sub); line-height: 1.7; padding-left: var(--space-6); position: relative; }
.prose li::before { content: '·'; position: absolute; left: 0; color: var(--accent); font-size: 1.25rem; line-height: 1.5; }

.affiliate-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  padding: var(--space-6);
  margin: var(--space-8) 0;
  border-radius: 0 2px 2px 0;
}

.affiliate-box__label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.affiliate-box__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.affiliate-box__brand {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  letter-spacing: 0.08em;
}

.affiliate-box__link {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

.affiliate-box__link::after { content: '→'; }

/* ============================================================
   IMPRESSUM
   ============================================================ */
.impressum-body {
  padding: var(--space-16) 0 var(--space-24);
}

.impressum-body .container--narrow { max-width: 44rem; }

.impressum-section {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border);
}

.impressum-section:last-child {
  border-bottom: none;
}

.impressum-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.impressum-section p,
.impressum-section address {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-sub);
  font-style: normal;
}

.impressum-section a {
  color: var(--accent);
  transition: color var(--duration);
}

.impressum-section a:hover { color: var(--accent-hover); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(2rem); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .post-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .picks-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .about-strip   { grid-template-columns: 1fr; gap: var(--space-10); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero { padding-bottom: var(--space-12); }
  .hero__roman { display: none; }
  .hero__footer { flex-direction: column; align-items: flex-start; gap: var(--space-6); }

  .post-grid--3,
  .post-grid--feature,
  .blog-list__featured { grid-template-columns: 1fr; }

  .post-grid--feature .post-card:first-child { grid-row: auto; }

  .picks-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .section__header { flex-direction: column; align-items: flex-start; }
  .newsletter__form { flex-direction: column; }
}

@media (max-width: 480px) {
  .picks-grid { grid-template-columns: 1fr; }
  .about-strip__stats { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Selection ─────────────────────────────────────────── */
::selection { background: rgba(59,130,246,0.2); color: var(--text); }
