/* ═══════════════════════════════════════════════════════════════
   Deep Drift — Psychology, Philosophy & Human Behavior Blog
   Austin, TX
   Palette: White #FFFFFF · Ink #111827 · Blue #3B82F6
            Green #10B981 · Amber #F59E0B · Slate #F3F4F6
   Type: Outfit (all weights)
   Aesthetic: Flat editorial — no shadows, no gradients, strict grid
   Categories: Mind · Behavior · Philosophy · Neuroscience · Relationships · Society
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --ink:        #111827;
  --ink-mid:    #374151;
  --ink-soft:   #6B7280;
  --ink-pale:   #9CA3AF;
  --slate:      #F3F4F6;
  --slate-mid:  #E5E7EB;
  --slate-dark: #D1D5DB;
  --blue:       #3B82F6;
  --blue-dark:  #2563EB;
  --blue-xdark: #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-pale:  #DBEAFE;
  --green:      #10B981;
  --green-dark: #059669;
  --green-light:#ECFDF5;
  --amber:      #F59E0B;
  --amber-dark: #D97706;
  --amber-light:#FFFBEB;
  --red:        #EF4444;
  --purple:     #8B5CF6;
  --pink:       #EC4899;
  --teal:       #14B8A6;

  /* Category colours */
  --cat-mind:          #3B82F6;
  --cat-behavior:      #10B981;
  --cat-philosophy:    #8B5CF6;
  --cat-neuroscience:  #F59E0B;
  --cat-relationships: #EC4899;
  --cat-society:       #14B8A6;

  --font: 'Outfit', system-ui, sans-serif;
  --nav-h: 64px;
  --max:   1280px;
  --text-max: 740px;

  --t:     150ms linear;
  --t-mid: 220ms ease;
}

/* ── RESET ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
ul { list-style: none; }
::selection { background: var(--blue); color: var(--white); }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4 { font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--ink-soft); line-height: 1.75; }

.label {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); display: inline-block; margin-bottom: 12px;
}
.label.green  { color: var(--green); }
.label.amber  { color: var(--amber); }
.label.purple { color: var(--purple); }
.label.pink   { color: var(--pink); }
.label.teal   { color: var(--teal); }

/* Category badge */
.cat-badge {
  display: inline-block;
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; color: var(--white);
}
.cat-mind          { background: var(--cat-mind); }
.cat-behavior      { background: var(--cat-behavior); }
.cat-philosophy    { background: var(--cat-philosophy); }
.cat-neuroscience  { background: var(--cat-neuroscience); color: var(--ink); }
.cat-relationships { background: var(--cat-relationships); }
.cat-society       { background: var(--cat-society); }

/* ── LAYOUT ─────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.s-sm { padding: 48px 0; }
.s-lg { padding: 112px 0; }

/* ── NAVBAR ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  z-index: 900;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-weight: 900; font-size: 1.35rem; letter-spacing: -0.04em;
  color: var(--ink); display: flex; align-items: center; gap: 6px;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo-mark {
  width: 32px; height: 32px; background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 900;
  clip-path: polygon(0 0,100% 0,100% 75%,50% 100%,0 75%);
}
.nav-logo span { color: var(--blue); }

.nav-cats { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.nav-cats::-webkit-scrollbar { display: none; }
.nav-cats a {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft);
  padding: 4px 12px; border-bottom: 3px solid transparent;
  white-space: nowrap; transition: color var(--t), border-color var(--t);
}
.nav-cats a:hover { color: var(--ink); }
.nav-cats a.active { color: var(--blue); border-bottom-color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: all .28s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--ink);
  padding: 16px 24px 24px; z-index: 899;
  flex-direction: column; gap: 2px;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--slate-mid); transition: color var(--t); }
.mob-nav a:hover { color: var(--blue); }

@media(max-width: 860px) {
  .nav-cats, .nav-right { display: none; }
  .burger { display: flex; }
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font); font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 11px 24px; border: 2px solid transparent;
  cursor: pointer; transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-ink   { background: var(--ink);   color: var(--white); border-color: var(--ink); }
.btn-ink:hover { background: var(--ink-mid); }
.btn-blue  { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); }
.btn-amber { background: var(--amber); color: var(--ink);   border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-white { background: var(--white); color: var(--ink);   border-color: var(--white); }
.btn-white:hover { background: var(--slate); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-lg { padding: 15px 36px; font-size: 0.80rem; }
.btn-sm { padding: 8px 16px; font-size: 0.68rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  background: var(--ink);
  overflow: hidden; position: relative;
}
.hero-geo-1 { position: absolute; width: 500px; height: 500px; background: var(--blue); opacity: 0.08; top: -100px; right: -100px; transform: rotate(15deg); pointer-events: none; }
.hero-geo-2 { position: absolute; width: 200px; height: 200px; background: var(--amber); opacity: 0.10; bottom: 0; left: 12%; pointer-events: none; }

/* Masthead bar */
.hero-masthead {
  border-bottom: 2px solid rgba(255,255,255,.10);
  padding: 20px 0;
}
.hero-masthead-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.hero-name { font-weight: 900; font-size: clamp(2.8rem, 8vw, 7rem); letter-spacing: -0.05em; color: var(--white); line-height: 1; }
.hero-tagline { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,.30); text-align: right; max-width: 200px; }

/* Main hero grid */
.hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  border-top: 2px solid rgba(255,255,255,.10);
}
@media(max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-feature { padding: 48px 48px 48px 0; border-right: 2px solid rgba(255,255,255,.10); }
@media(max-width: 860px) { .hero-feature { border-right: none; padding: 36px 0 28px; border-bottom: 2px solid rgba(255,255,255,.10); } }

.hero-feature-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase;
  background: var(--blue); color: var(--white); padding: 5px 14px; margin-bottom: 20px;
}
.hero-feature h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.hero-feature-excerpt { font-size: 1.05rem; color: rgba(255,255,255,.60); line-height: 1.72; max-width: 500px; margin-bottom: 28px; }
.hero-feature-meta { font-size: 0.70rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-meta-dot { width: 3px; height: 3px; background: rgba(255,255,255,.25); flex-shrink: 0; }

.hero-sidebar { padding: 28px 0 28px 36px; display: flex; flex-direction: column; }
@media(max-width: 860px) { .hero-sidebar { padding: 28px 0; } }
.hero-side-item {
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  display: block; text-decoration: none; transition: all var(--t-mid);
}
.hero-side-item:first-child { padding-top: 0; }
.hero-side-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-side-item:hover { padding-left: 8px; }
.hero-side-item .cat { font-size: 0.60rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 7px; display: block; }
.hero-side-item h4 { font-size: 1rem; font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 6px; letter-spacing: -0.01em; }
.hero-side-item .meta { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.30); }

/* Number bar */
.hero-numbar {
  display: flex; gap: 0;
  border-top: 2px solid rgba(255,255,255,.10);
}
.hero-num-item {
  padding: 20px 32px; border-right: 2px solid rgba(255,255,255,.10);
  flex: 1; text-align: center;
}
.hero-num-item:last-child { border-right: none; }
.hero-num-val { font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--white); display: block; margin-bottom: 4px; }
.hero-num-val .accent { color: var(--blue); }
.hero-num-lbl { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.30); }

/* ── CATEGORY STRIP ─────────────────────────────────── */
.cat-strip { overflow-x: auto; scrollbar-width: none; border-bottom: 2px solid var(--ink); }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-strip-inner { display: flex; white-space: nowrap; }
.cat-tab {
  font-size: 0.70rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); padding: 14px 20px;
  border-bottom: 3px solid transparent; border-right: 1px solid var(--slate-mid);
  background: none; border-top: none; border-left: none;
  cursor: pointer; transition: all var(--t); white-space: nowrap;
  display: block; text-decoration: none;
}
.cat-tab:hover { color: var(--ink); background: var(--slate); }
.cat-tab.active { color: var(--ink); border-bottom-color: var(--ink); }
.cat-tab[data-cat="mind"]:hover,.cat-tab[data-cat="mind"].active { color: var(--cat-mind); border-bottom-color: var(--cat-mind); }
.cat-tab[data-cat="behavior"]:hover,.cat-tab[data-cat="behavior"].active { color: var(--cat-behavior); border-bottom-color: var(--cat-behavior); }
.cat-tab[data-cat="philosophy"]:hover,.cat-tab[data-cat="philosophy"].active { color: var(--cat-philosophy); border-bottom-color: var(--cat-philosophy); }
.cat-tab[data-cat="neuroscience"]:hover,.cat-tab[data-cat="neuroscience"].active { color: var(--cat-neuroscience); border-bottom-color: var(--cat-neuroscience); }
.cat-tab[data-cat="relationships"]:hover,.cat-tab[data-cat="relationships"].active { color: var(--cat-relationships); border-bottom-color: var(--cat-relationships); }
.cat-tab[data-cat="society"]:hover,.cat-tab[data-cat="society"].active { color: var(--cat-society); border-bottom-color: var(--cat-society); }

/* ── ARTICLE CARDS ──────────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 2px solid var(--ink); }
@media(max-width: 960px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 560px)  { .articles-grid { grid-template-columns: 1fr; } }

.art-card {
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: background var(--t-mid);
  position: relative; overflow: hidden;
}
.articles-grid > .art-card:nth-child(3n) { border-right: none; }
.articles-grid > .art-card:nth-last-child(-n+3) { border-bottom: none; }
@media(max-width: 960px) {
  .articles-grid > .art-card:nth-child(2n) { border-right: none; }
  .articles-grid > .art-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media(max-width: 560px) {
  .articles-grid > .art-card { border-right: none; }
  .articles-grid > .art-card:last-child { border-bottom: none; }
}
.art-card:hover { background: var(--slate); }
.art-card.featured { grid-column: span 2; flex-direction: row; }
@media(max-width: 960px) { .art-card.featured { grid-column: span 1; flex-direction: column; } }

.ac-thumb {
  aspect-ratio: 16/9; background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden;
  flex-shrink: 0;
}
.art-card.featured .ac-thumb { aspect-ratio: auto; flex: 0 0 45%; min-height: 220px; border-bottom: none; border-right: 2px solid var(--ink); }
@media(max-width: 960px) { .art-card.featured .ac-thumb { flex: 0; aspect-ratio: 16/9; border-right: none; border-bottom: 2px solid var(--ink); } }

/* Colored top accent bar by category */
.ac-thumb::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.art-card[data-cat="mind"] .ac-thumb::before { background: var(--cat-mind); }
.art-card[data-cat="behavior"] .ac-thumb::before { background: var(--cat-behavior); }
.art-card[data-cat="philosophy"] .ac-thumb::before { background: var(--cat-philosophy); }
.art-card[data-cat="neuroscience"] .ac-thumb::before { background: var(--cat-neuroscience); }
.art-card[data-cat="relationships"] .ac-thumb::before { background: var(--cat-relationships); }
.art-card[data-cat="society"] .ac-thumb::before { background: var(--cat-society); }

.ac-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.art-card.featured .ac-body { padding: 28px; }
.ac-meta { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-pale); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.ac-dot { width: 3px; height: 3px; background: var(--slate-dark); }
.ac-title { font-size: 1.05rem; font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 10px; }
.art-card.featured .ac-title { font-size: 1.5rem; }
.ac-excerpt { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.68; flex: 1; margin-bottom: 16px; }
.ac-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 2px solid var(--slate-mid); }
.ac-author { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; color: var(--ink-pale); text-transform: uppercase; }
.ac-read { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); transition: letter-spacing var(--t); }
.art-card:hover .ac-read { letter-spacing: 0.20em; }

/* ── ARTICLE DETAIL ─────────────────────────────────── */
.post-hero {
  padding-top: var(--nav-h);
  background: var(--ink);
  border-bottom: 4px solid var(--blue);
}
.post-hero-inner { padding: 48px 0 0; max-width: 900px; }
.post-hero-badge { display: inline-block; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 14px; margin-bottom: 18px; }
.post-hero h1 { color: var(--white); margin-bottom: 18px; font-size: clamp(2rem, 5vw, 3.5rem); }
.post-hero-deck { font-size: 1.15rem; color: rgba(255,255,255,.60); max-width: 680px; line-height: 1.70; }
.post-hero-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 24px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.post-hero-img {
  width: 100%; margin-top: 28px;
  background: var(--ink-mid);
  aspect-ratio: 21/8; display: flex; align-items: center; justify-content: center;
  font-size: 7rem; overflow: hidden;
}

.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; padding: 48px 0 96px; }
@media(max-width: 1000px) { .post-layout { grid-template-columns: 1fr; } .post-sidebar { display: none; } }

.post-body { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.85; max-width: var(--text-max); }
.post-body h2 { font-size: 1.9rem; color: var(--ink); margin: 48px 0 16px; padding-top: 40px; border-top: 2px solid var(--ink); }
.post-body h3 { font-size: 1.3rem; color: var(--ink); margin: 32px 0 12px; }
.post-body p { margin-bottom: 22px; }
.post-body ul,.post-body ol { margin: 0 0 22px 22px; display: flex; flex-direction: column; gap: 8px; }
.post-body li { font-size: 1rem; color: var(--ink-mid); line-height: 1.72; }
.post-body ul li::marker { color: var(--blue); }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body em { font-style: italic; }
.post-body blockquote { border-left: 4px solid var(--blue); padding: 16px 24px; margin: 32px 0; background: var(--blue-light); }
.post-body blockquote p { font-size: 1.05rem; color: var(--ink-mid); margin-bottom: 0; font-style: italic; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 2px solid var(--ink); }
.post-tag { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-mid); border: 2px solid var(--slate-dark); padding: 4px 12px; transition: all var(--t); }
.post-tag:hover { border-color: var(--blue); color: var(--blue); }
.post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-top: 28px; transition: gap var(--t); }
.post-back:hover { gap: 14px; }

.post-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.sb-card { border: 2px solid var(--ink); padding: 20px; margin-bottom: 16px; }
.sb-head { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink-soft); padding-bottom: 12px; border-bottom: 2px solid var(--ink); margin-bottom: 16px; }
.sb-link { display: block; padding: 10px 0; border-bottom: 1px solid var(--slate-mid); text-decoration: none; }
.sb-link:last-child { border-bottom: none; padding-bottom: 0; }
.sb-link span { font-size: 0.92rem; font-weight: 700; color: var(--ink); display: block; margin-bottom: 2px; line-height: 1.3; transition: color var(--t); }
.sb-link:hover span { color: var(--blue); }
.sb-link small { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-pale); }

/* ── NEWSLETTER ─────────────────────────────────────── */
.newsletter {
  background: var(--blue); padding: 72px 0; position: relative; overflow: hidden;
}
.newsletter::before { content: ''; position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; background: rgba(0,0,0,.10); }
.nl-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width: 760px) { .nl-inner { grid-template-columns: 1fr; gap: 32px; } }
.nl-copy .label { color: rgba(255,255,255,.70); }
.nl-copy h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 12px; }
.nl-copy p { color: rgba(255,255,255,.72); font-size: 1rem; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-form input[type=email] { font-family: var(--font); font-size: 0.95rem; font-weight: 500; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25); color: var(--white); padding: 13px 16px; outline: none; width: 100%; transition: border-color var(--t), background var(--t); }
.nl-form input[type=email]::placeholder { color: rgba(255,255,255,.40); }
.nl-form input[type=email]:focus { border-color: var(--white); background: rgba(255,255,255,.18); }
.nl-check { display: flex; align-items: flex-start; gap: 10px; }
.nl-check input { accent-color: var(--white); margin-top: 3px; flex-shrink: 0; }
.nl-check label { font-size: 0.78rem; color: rgba(255,255,255,.55); line-height: 1.55; }
.nl-check a { color: rgba(255,255,255,.80); text-decoration: underline; }
.nl-success { display: none; text-align: center; padding: 28px; background: rgba(255,255,255,.10); border: 2px solid rgba(255,255,255,.20); }
.nl-success p { color: var(--white); font-weight: 700; }

/* ── ABOUT / WRITERS ─────────────────────────────────── */
.writer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 2px solid var(--ink); }
@media(max-width: 900px) { .writer-grid { grid-template-columns: 1fr 1fr; } }
.writer-card { padding: 28px 22px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transition: background var(--t-mid); }
.writer-card:nth-child(4n) { border-right: none; }
.writer-card:hover { background: var(--blue-light); }
.writer-avatar { width: 60px; height: 60px; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; margin-bottom: 14px; }
.writer-name { font-weight: 800; font-size: 1rem; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; }
.writer-title { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.writer-bio { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.65; }

/* ── FEATURED STRIP ─────────────────────────────────── */
.feat-strip { display: grid; grid-template-columns: repeat(4,1fr); border: 2px solid var(--ink); }
@media(max-width: 900px) { .feat-strip { grid-template-columns: 1fr 1fr; } }
.strip-item { padding: 24px; border-right: 2px solid var(--ink); display: block; text-decoration: none; color: inherit; transition: background var(--t-mid); }
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--slate); }
.strip-num { font-size: 2.8rem; font-weight: 900; color: var(--slate-mid); letter-spacing: -0.05em; line-height: 1; margin-bottom: 12px; }
.strip-item .cat { font-size: 0.60rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 7px; display: block; }
.strip-item h4 { font-size: 0.95rem; font-weight: 800; color: var(--ink); line-height: 1.25; margin-bottom: 6px; letter-spacing: -0.01em; transition: color var(--t-mid); }
.strip-item:hover h4 { color: var(--blue); }
.strip-item .rt { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-pale); }

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--ink);
  border-bottom: 4px solid var(--blue);
  padding-bottom: 56px;
}
.page-hero-inner { padding-top: 56px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.28); transition: color var(--t); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb sep { color: rgba(255,255,255,.15); }
.breadcrumb .curr { color: rgba(255,255,255,.60); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.55); max-width: 600px; line-height: 1.72; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { border-top: 2px solid var(--ink); max-width: 760px; }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 0; text-align: left; cursor: pointer; font-family: var(--font); font-size: 1rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; transition: color var(--t); }
.faq-q:hover, .faq-q.open { color: var(--blue); }
.faq-icon { width: 30px; height: 30px; border: 2px solid var(--ink); background: none; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 300; color: var(--ink-soft); flex-shrink: 0; transition: all var(--t-mid); }
.faq-q.open .faq-icon { background: var(--blue); border-color: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .45s ease, padding .2s; }
.faq-ans.open { max-height: 500px; padding-bottom: 18px; }
.faq-ans p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.78; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0; border: 2px solid var(--ink); }
@media(max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--ink); padding: 48px; }
.contact-info h2 { color: var(--white); margin-bottom: 28px; font-size: 2rem; }
.ci-entry { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.ci-entry:last-of-type { border-bottom: none; }
.ci-lbl { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.ci-val { font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,.65); line-height: 1.55; }
.ci-val a { color: rgba(255,255,255,.75); transition: color var(--t); }
.ci-val a:hover { color: var(--blue); }
.contact-form-panel { padding: 48px; background: var(--white); border-left: 2px solid var(--ink); }
@media(max-width: 860px) { .contact-form-panel { border-left: none; border-top: 2px solid var(--ink); padding: 36px 24px; } }

/* ── FORMS ───────────────────────────────────────────── */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width: 520px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.form-input,.form-select,.form-textarea { width: 100%; font-family: var(--font); font-size: 0.95rem; font-weight: 500; color: var(--ink); background: var(--slate); border: 2px solid var(--slate-dark); padding: 11px 14px; outline: none; transition: border-color var(--t), background var(--t); appearance: none; }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color: var(--blue); background: var(--white); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-color: var(--slate); padding-right: 40px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { accent-color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.55; cursor: pointer; }
.form-check a { color: var(--blue); text-decoration: underline; }
.form-err { display: none; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; color: var(--red); margin-top: 4px; }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); }

/* ── MODAL ───────────────────────────────────────────── */
.modal-ov { position: fixed; inset: 0; background: rgba(17,24,39,.82); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity var(--t-mid), visibility var(--t-mid); }
.modal-ov.open { opacity: 1; visibility: visible; }
.modal-box { background: var(--white); border: 2px solid var(--ink); border-top: 6px solid var(--blue); max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; transform: translateY(20px) scale(.97); transition: transform var(--t-mid); }
.modal-ov.open .modal-box { transform: none; }
.modal-head { padding: 24px 24px 18px; border-bottom: 2px solid var(--ink); display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.modal-head h3 { font-size: 1.4rem; }
.modal-head p { font-size: 0.84rem; color: var(--ink-soft); margin-top: 4px; }
.modal-close { width: 34px; height: 34px; border: 2px solid var(--ink); background: none; font-size: 1rem; color: var(--ink-soft); cursor: pointer; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.modal-close:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.modal-body { padding: 24px; }

/* ── COOKIE ──────────────────────────────────────────── */
.cookie-bar { position: fixed; bottom: 16px; left: 16px; right: 16px; background: var(--ink); border: 2px solid var(--blue); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; z-index: 1500; transform: translateY(130%); transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 0.82rem; color: rgba(255,255,255,.70); flex: 1; min-width: 200px; line-height: 1.55; }
.cookie-bar a { color: var(--blue); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--ink); border-top: 4px solid var(--blue); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.06); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-logo { font-weight: 900; font-size: 1.3rem; letter-spacing: -0.04em; color: var(--white); }
.footer-logo span { color: var(--blue); }
.footer-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.28); }
.footer-main { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding: 48px 0 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
@media(max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width: 480px)  { .footer-main { grid-template-columns: 1fr; } }
.footer-about p { font-size: 0.84rem; color: rgba(255,255,255,.38); line-height: 1.72; max-width: 260px; margin-top: 10px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.footer-contact-list div { font-size: 0.82rem; color: rgba(255,255,255,.42); display: flex; gap: 8px; }
.footer-contact-list a { color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-contact-list a:hover { color: var(--blue); }
.footer-col-head { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.86rem; font-weight: 500; color: rgba(255,255,255,.45); transition: color var(--t); }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 18px 0; }
.footer-copy { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,.20); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.24); transition: color var(--t); }
.footer-legal a:hover { color: var(--blue); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.04); padding: 14px 0; }
.footer-disclaimer p { font-size: 0.66rem; color: rgba(255,255,255,.18); text-align: center; line-height: 1.65; max-width: 900px; margin: 0 auto; }

/* ── LEGAL ───────────────────────────────────────────── */
.legal-body { max-width: 800px; }
.legal-eff { background: var(--blue-light); border-left: 4px solid var(--blue); padding: 12px 16px; font-size: 0.80rem; font-weight: 600; color: var(--blue-xdark); margin-bottom: 40px; }
.legal-body h2 { font-size: 1.4rem; margin: 40px 0 14px; border-top: 2px solid var(--ink); padding-top: 36px; }
.legal-body h3 { font-size: 1.05rem; margin: 22px 0 10px; }
.legal-body p { font-size: 0.95rem; margin-bottom: 14px; line-height: 1.80; }
.legal-body ul { margin: 0 0 16px 22px; display: flex; flex-direction: column; gap: 6px; list-style: disc; }
.legal-body ul li { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.65; }
.legal-body ul li::marker { color: var(--blue); }
.legal-body a { color: var(--blue); text-decoration: underline; }

/* ── ABOUT SPECIFICS ─────────────────────────────────── */
.mission-split { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--ink); }
@media(max-width: 860px) { .mission-split { grid-template-columns: 1fr; } }
.mission-text { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; border-right: 2px solid var(--ink); }
@media(max-width: 860px) { .mission-text { border-right: none; padding: 40px 24px; border-bottom: 2px solid var(--ink); } }
.mission-visual { background: var(--ink); display: flex; align-items: center; justify-content: center; min-height: 400px; position: relative; overflow: hidden; font-size: 8rem; }
.mission-visual::before { content: ''; position: absolute; width: 300px; height: 300px; background: var(--blue); opacity: 0.12; transform: rotate(30deg); top: -60px; right: -60px; }
.mission-feature { padding: 18px 0; border-bottom: 2px solid var(--ink); display: flex; gap: 16px; align-items: flex-start; }
.mission-feature:last-child { border-bottom: none; }
.mf-num { font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--slate-dark); flex-shrink: 0; line-height: 1; }
.mf-title { font-size: 0.95rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.mf-desc { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.65; }

/* ── UTILITIES ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .50s ease, transform .50s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .06s; } .d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; } .d4 { transition-delay: .24s; }
.text-center { text-align: center; }
.blue { color: var(--blue) !important; }
.green { color: var(--green) !important; }
.amber { color: var(--amber) !important; }
.white { color: var(--white) !important; }
.mt-4  { margin-top: 16px; } .mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; } .mt-10 { margin-top: 40px; }
.mb-6  { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
