/* =========================================================
   Digital Advertising Consultant — Global Styles
   Editorial / brutalist-refined. Bone + ink + acid accent.
   ========================================================= */

:root {
  --bone: #f3efe6;
  --bone-2: #ebe5d8;
  --cream: #f8f5ec;
  --ink: #17181b;
  --ink-2: #24252a;
  --paper: #ffffff;
  --rule: #1a1b1e;
  --accent: #3d1e6d;      /* deep purple */
  --accent-soft: #5b2ca8; /* brighter purple for hover states */
  --accent-2: #d6ff3f;    /* acid yellow-green */
  --muted: #6d6b65;

  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body: "Inter Tight", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

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

body {
  font-family: var(--f-body);
  background: var(--bone);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Marquee ===== */
.marquee {
  background: var(--ink);
  color: var(--bone);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid #000;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.marquee__track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  padding-left: 28px;
}
.marquee__track span { opacity: 0.88; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  background: rgba(243, 239, 230, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-size: 16px; line-height: 1;
  font-weight: 400;
  text-decoration: none;
}
.nav__logo em { font-style: italic; font-weight: 300; color: var(--accent); }
.nav__logo-bz {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-flex;
  position: relative;
  padding-right: 14px;
}
.nav__logo-bz .b { color: var(--ink); position: relative; z-index: 2; }
.nav__logo-bz .z { color: var(--accent); margin-left: -12px; opacity: 0.92; position: relative; z-index: 1; }
.nav__logo-divider { width: 1px; background: var(--ink); align-self: stretch; margin: 2px 0; }
.nav__logo-text {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 14px;
}
.nav__logo-text span:first-child { font-weight: 400; }
.nav__logo-text span:last-child { font-style: italic; font-weight: 300; color: var(--accent); }

.nav__links { display: flex; gap: 24px; font-size: 14px; font-weight: 500; }
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  font-family: var(--f-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  transition: transform .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
}
.btn--dark { background: var(--ink); color: var(--bone); }
.btn--dark:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--lg { padding: 18px 28px; font-size: 15px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) var(--pad) clamp(50px, 7vw, 90px);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(23,24,27,0.06) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  pointer-events: none;
}

.hero__grid { position: relative; max-width: var(--maxw); margin: 0 auto; }

.hero__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  margin-bottom: 40px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(61,30,109,0.22); }

.hero__h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(42px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  max-width: 17ch;
}
.hero__h1 em { font-style: italic; font-weight: 300; color: var(--ink-2); }

.hero__sub {
  max-width: 60ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  margin: 0 0 40px;
}

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.hero__stats > div {
  background: var(--bone);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero__stats strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stats span { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.hero__mark {
  position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%) rotate(-6deg);
  pointer-events: none;
  opacity: 0.7;
  display: none;
}
@media (min-width: 1200px) {
  .hero__mark { display: block; }
}
.hero__mark-inner {
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--f-display); font-style: italic;
  font-size: 22px; color: var(--accent);
}

/* ===== Sections ===== */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
  border-bottom: 1px solid var(--rule);
}
.section--bone { background: var(--bone); }
.section--cream { background: var(--cream); }
.section--black { background: var(--ink); color: var(--bone); }
.section--ink { background: var(--ink-2); color: var(--bone); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-block; margin-bottom: 20px;
  padding-bottom: 6px; border-bottom: 1px solid currentColor;
}
.eyebrow--light { color: var(--accent-2); }

.section__head { margin-bottom: 64px; max-width: 900px; }
.section__h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.section__h2 em { font-style: italic; font-weight: 300; }
.section__h2--light { color: var(--bone); }

.lede { font-size: 18px; line-height: 1.55; color: inherit; max-width: 55ch; }
.section--black .lede, .section--ink .lede { color: #cfcec8; }

.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 820px) { .grid-two { grid-template-columns: 1fr; } }

/* ===== Services (home) ===== */
.services { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid rgba(243,239,230,0.18); }
.svc {
  display: grid; grid-template-columns: 80px 1fr 2fr 40px; gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(243,239,230,0.18);
  align-items: start;
  transition: background .25s, padding-left .25s;
  position: relative;
}
.svc:hover { background: rgba(214,255,63,0.06); padding-left: 16px; }
.svc:hover .svc__arrow { transform: translateX(6px); color: var(--accent-2); }
.svc__num { font-family: var(--f-mono); font-size: 13px; color: var(--accent-2); letter-spacing: 0.1em; padding-top: 8px; }
.svc h3 {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2.4vw, 32px);
  margin: 0; line-height: 1.1; letter-spacing: -0.01em; color: var(--bone);
}
.svc p { margin: 0; color: #c2c1ba; max-width: 52ch; font-size: 15px; }
.svc__arrow { font-size: 22px; color: var(--bone); transition: transform .2s, color .2s; justify-self: end; padding-top: 6px; }
@media (max-width: 760px) {
  .svc { grid-template-columns: 60px 1fr; }
  .svc p, .svc__arrow { grid-column: 1 / -1; }
  .svc p { padding-left: 84px; }
  .svc__arrow { display: none; }
}

/* ===== Difference table ===== */
.diff { border-top: 1px solid var(--ink); }
.diff__row { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--ink); align-items: start; }
.diff__label { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding-top: 12px; }
.diff__vs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.diff__them, .diff__me { background: var(--cream); padding: 22px 24px; }
.diff__me { background: var(--ink); color: var(--bone); }
.diff__them span, .diff__me span {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-block; margin-bottom: 10px;
}
.diff__them span { color: var(--muted); }
.diff__me span { color: var(--accent-2); }
.diff__them p, .diff__me p { margin: 0; font-size: 15px; line-height: 1.5; }
@media (max-width: 820px) {
  .diff__row { grid-template-columns: 1fr; }
  .diff__vs { grid-template-columns: 1fr; }
}

/* ===== Quotes ===== */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 48px; border: 1px solid rgba(243,239,230,0.2); }
.quote {
  margin: 0; padding: 36px 32px;
  border-right: 1px solid rgba(243,239,230,0.2);
  border-bottom: 1px solid rgba(243,239,230,0.2);
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px;
}
.quote:nth-child(2n) { border-right: none; }
.quote:nth-last-child(-n+2) { border-bottom: none; }
.quote blockquote {
  margin: 0; font-family: var(--f-display); font-weight: 400; font-size: 22px; line-height: 1.3; font-style: italic; color: var(--bone);
}
.quote figcaption { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #cfcec8; }
.quote figcaption strong { color: var(--accent-2); font-weight: 600; letter-spacing: 0.08em; }
.quotes__foot { margin-top: 32px; font-size: 14px; color: #cfcec8; }
.quotes__foot a { color: var(--accent-2); border-bottom: 1px solid currentColor; }
@media (max-width: 760px) {
  .quotes { grid-template-columns: 1fr; }
  .quote { border-right: none; border-bottom: 1px solid rgba(243,239,230,0.2); }
  .quote:last-child { border-bottom: none; }
}

/* ===== Industries strip ===== */
.inds { display: flex; flex-wrap: wrap; gap: 10px; }
.ind {
  display: inline-flex; align-items: center;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-weight: 500; font-size: 15px;
  transition: background .18s, color .18s, transform .18s;
}
.ind:hover { background: var(--ink); color: var(--accent-2); transform: translateY(-2px); }

/* ===== CTA ===== */
.cta {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: ""; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; border: 1px solid rgba(214,255,63,0.15); pointer-events: none;
}
.cta::before { top: -120px; left: -120px; }
.cta::after { bottom: -160px; right: -160px; width: 520px; height: 520px; }
.cta h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(42px, 8vw, 110px); line-height: 0.96;
  letter-spacing: -0.02em; margin: 0 0 24px;
}
.cta h2 em { font-style: italic; font-weight: 300; color: var(--accent-2); }
.cta p { max-width: 60ch; margin: 0 auto 36px; font-size: 18px; line-height: 1.55; color: #cfcec8; }

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(243,239,230,0.12);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-size: 18px; font-weight: 400;
  margin-bottom: 16px;
}
.footer__logo em { font-style: italic; font-weight: 300; color: var(--accent-2); }
.footer__logo-mark {
  font-family: var(--f-display); font-style: italic;
  font-size: 30px; line-height: 1; letter-spacing: -0.04em;
  display: inline-flex; padding-right: 6px;
}
.footer__logo-mark .b { color: var(--bone); }
.footer__logo-mark .z { color: var(--accent-2); margin-left: -10px; opacity: 0.92; }
.footer__brand p { color: #bcbbb4; font-size: 14px; max-width: 42ch; }
.footer__brand a { color: var(--accent-2); border-bottom: 1px solid currentColor; }
.footer__addr { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; line-height: 1.7; }

.footer__col h4 {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2); margin: 0 0 18px;
}
.footer__col a {
  display: block; padding: 6px 0; font-size: 14px; color: #d9d7d0;
  transition: color .18s;
}
.footer__col a:hover { color: var(--accent); }

.footer__base {
  display: flex; justify-content: space-between; gap: 12px;
  padding-top: 24px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ===== Generic page utilities used on inner pages ===== */
.page-hero {
  padding: clamp(70px, 9vw, 130px) var(--pad) clamp(50px, 6vw, 90px);
  border-bottom: 1px solid var(--rule);
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-hero__kicker { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.02em;
  margin: 0 0 24px; max-width: 18ch;
}
.page-hero h1 em { font-style: italic; font-weight: 300; }
.page-hero p { font-size: 18px; max-width: 62ch; color: var(--ink-2); margin: 0 0 0; }

.prose { max-width: 72ch; }
.prose p { font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.prose h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 28px;
  letter-spacing: -0.01em; margin: 40px 0 14px; line-height: 1.1;
}
.prose a { border-bottom: 1px solid currentColor; color: var(--accent); }
.prose a:hover { background: var(--ink); color: var(--accent-2); }
.prose ul { padding-left: 1.1rem; margin: 0 0 18px; }
.prose ul li { margin: 0 0 8px; }

/* Service/industry detail blocks */
.block {
  border-top: 1px solid var(--ink);
  padding: 48px 0;
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
}
.block:last-child { border-bottom: 1px solid var(--ink); }
.block__num { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--accent); }
.block__num strong { display: block; font-family: var(--f-display); font-weight: 400; font-size: 56px; letter-spacing: -0.02em; line-height: 1; color: var(--ink); margin-bottom: 8px; }
.block h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px); margin: 0 0 16px; line-height: 1.08; letter-spacing: -0.01em;
}
.block p { font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 60ch; margin: 0 0 14px; }
.block ul { margin: 12px 0 0; padding-left: 18px; }
.block ul li { margin-bottom: 6px; font-size: 15px; color: var(--ink-2); }
@media (max-width: 800px) {
  .block { grid-template-columns: 1fr; gap: 18px; }
}

/* Industries grid on industries page */
.ind-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--ink);
  background: var(--paper);
  transition: transform .22s, background .22s, color .22s;
  height: 100%;
}
.ind-card:hover { background: var(--ink); color: var(--bone); transform: translateY(-3px); }
.ind-card:hover h3 { color: var(--accent-2); }
.ind-card__kicker { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.ind-card h3 { font-family: var(--f-display); font-size: 26px; font-weight: 400; margin: 10px 0 12px; letter-spacing: -0.01em; transition: color .22s; }
.ind-card p { font-size: 15px; line-height: 1.55; margin: 0; }

.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ind-grid { grid-template-columns: 1fr; } }

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-form { display: grid; gap: 18px; }
.contact-form label {
  display: grid; gap: 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--f-body); font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  background: var(--paper); color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .18s, background .18s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent); background: #fffdf6;
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-side {
  border: 1px solid var(--ink);
  padding: 32px;
  background: var(--cream);
}
.contact-side h3 { font-family: var(--f-display); font-weight: 400; font-size: 26px; margin: 0 0 16px; letter-spacing: -0.01em; }
.contact-side p { font-size: 15px; color: var(--ink-2); margin: 0 0 14px; }
.contact-side a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ink); border: 1px solid var(--ink); margin-top: 48px; }
.process__step { background: var(--bone); padding: 28px; }
.process__step strong { font-family: var(--f-display); font-size: 40px; font-weight: 400; line-height: 1; display: block; margin-bottom: 12px; }
.process__step h4 { font-family: var(--f-display); font-weight: 400; font-size: 20px; margin: 0 0 10px; }
.process__step p { font-size: 14px; margin: 0; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* About timeline */
.timeline { border-top: 1px solid var(--ink); }
.timeline__row { display: grid; grid-template-columns: 180px 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--ink); align-items: start; }
.timeline__year { font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.08em; color: var(--accent); padding-top: 4px; }
.timeline__body h4 { font-family: var(--f-display); font-weight: 400; font-size: 22px; margin: 0 0 8px; letter-spacing: -0.01em; }
.timeline__body p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 60ch; }
@media (max-width: 700px) { .timeline__row { grid-template-columns: 1fr; gap: 6px; } }

/* Pull-quote */
.pull {
  padding: 80px 0;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.pull p {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 3.6vw, 44px); line-height: 1.22;
  max-width: 22ch; margin: 0 auto;
  letter-spacing: -0.01em;
}
.pull span { display: block; font-family: var(--f-mono); font-style: normal; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 20px; }

/* Related links (internal linking) */
.related {
  background: var(--bone-2);
  padding: 60px 0;
  border-bottom: 1px solid var(--rule);
}
.related h3 { font-family: var(--f-display); font-weight: 400; font-size: 24px; margin: 0 0 24px; }
.related__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related__list a {
  padding: 18px 20px; border: 1px solid var(--ink); background: var(--paper);
  font-weight: 500; font-size: 15px;
  display: flex; justify-content: space-between; gap: 12px;
  transition: background .18s, color .18s;
}
.related__list a:hover { background: var(--ink); color: var(--accent-2); }
.related__list a span { opacity: 0.5; font-family: var(--f-mono); font-size: 12px; }
@media (max-width: 780px) { .related__list { grid-template-columns: 1fr; } }

/* Small helpers */
.mt-0 { margin-top: 0 !important; }
.text-mono { font-family: var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; }

/* ===== BLOG ===== */
.blog-hero { padding: clamp(60px, 8vw, 110px) var(--pad) clamp(40px, 5vw, 70px); border-bottom: 1px solid var(--rule); background: var(--bone); }
.blog-hero h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(42px, 7vw, 92px); line-height: 0.98; letter-spacing: -0.02em;
  margin: 0 0 16px; max-width: 18ch;
}
.blog-hero h1 em { font-style: italic; font-weight: 300; color: var(--accent); }
.blog-hero p { font-size: 18px; max-width: 62ch; color: var(--ink-2); margin: 0; }

.post-list { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.post-card {
  display: grid; grid-template-columns: 130px 1fr 80px; gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--ink);
  align-items: start;
  transition: padding-left .22s ease;
}
.post-card:hover { padding-left: 16px; }
.post-card:hover .post-card__arrow { transform: translateX(8px); color: var(--accent); }
.post-card__date { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); padding-top: 8px; }
.post-card__body h2 {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2.6vw, 34px);
  margin: 0 0 10px; line-height: 1.1; letter-spacing: -0.01em;
}
.post-card__body h2 a { color: var(--ink); transition: color .2s; }
.post-card__body h2 a:hover { color: var(--accent); }
.post-card__body p { font-size: 16px; color: var(--ink-2); margin: 0 0 10px; max-width: 62ch; line-height: 1.55; }
.post-card__meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.post-card__arrow { font-size: 22px; color: var(--ink); padding-top: 8px; transition: transform .22s, color .22s; justify-self: end; }
@media (max-width: 760px) {
  .post-card { grid-template-columns: 1fr; gap: 10px; }
  .post-card__arrow { display: none; }
}

/* Post article */
.post-hero {
  padding: clamp(70px, 8vw, 110px) var(--pad) clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--rule);
  background: var(--bone);
  text-align: center;
}
.post-hero__meta { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.post-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.post-hero__meta span::after { content: "·"; opacity: 0.5; margin-left: 12px; }
.post-hero__meta span:last-child::after { display: none; }
.post-hero h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(36px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 auto 20px; max-width: 22ch;
}
.post-hero h1 em { font-style: italic; font-weight: 300; color: var(--accent); }
.post-hero__dek { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: 20px; line-height: 1.4; color: var(--ink-2); max-width: 62ch; margin: 0 auto; }

.post-body {
  padding: clamp(50px, 6vw, 80px) var(--pad) clamp(60px, 8vw, 120px);
  background: var(--bone);
}
.post-body__inner {
  max-width: 68ch;
  margin: 0 auto;
}
.post-body__inner p {
  font-family: var(--f-body);
  font-size: 18px; line-height: 1.65;
  color: var(--ink);
  margin: 0 0 22px;
}
.post-body__inner p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 4.2em; font-weight: 400;
  float: left; line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--accent);
}
.post-body__inner h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15; letter-spacing: -0.01em;
  margin: 48px 0 18px;
}
.post-body__inner h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 22px; letter-spacing: -0.005em;
  margin: 32px 0 12px;
}
.post-body__inner a { color: var(--accent); border-bottom: 1px solid currentColor; font-weight: 500; }
.post-body__inner a:hover { background: var(--ink); color: var(--accent-2); border-bottom-color: var(--accent-2); }
.post-body__inner ul, .post-body__inner ol { padding-left: 1.2em; margin: 0 0 22px; }
.post-body__inner ul li, .post-body__inner ol li { font-size: 18px; line-height: 1.65; margin-bottom: 10px; }
.post-body__inner blockquote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 24px; margin: 28px 0;
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.45; color: var(--ink-2);
}
.post-body__inner strong { font-weight: 600; color: var(--ink); }

.post-nav {
  background: var(--bone-2); padding: 60px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.post-nav__inner { max-width: 68ch; margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.post-nav h3 { font-family: var(--f-display); font-weight: 400; font-size: 28px; margin: 0 0 12px; }
.post-nav p { margin: 0 0 24px; color: var(--ink-2); }

.author-card {
  max-width: 68ch; margin: 48px auto 0; padding: 28px;
  border: 1px solid var(--ink); background: var(--cream);
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: center;
}
.author-card__mark {
  font-family: var(--f-display); font-style: italic; font-size: 44px;
  line-height: 1; letter-spacing: -0.04em;
  display: inline-flex; justify-self: center;
}
.author-card__mark .b { color: var(--ink); }
.author-card__mark .z { color: var(--accent); margin-left: -12px; opacity: 0.92; }
.author-card p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.author-card strong { font-family: var(--f-display); font-size: 18px; font-weight: 400; color: var(--ink); display: block; margin-bottom: 4px; }
