/* ============================================================
   Lauren Carter — Real. Measured. Matters.
   Tokens carried verbatim from the design system.
   Component styles transcribed from the DS bundle
   (Button, Card, Eyebrow, Input, PullQuote).
   ============================================================ */

:root {
  /* ── Base Palette ─────────────────────────────── */
  --color-warm-black:  #1A1A14;
  --color-ivory:       #F5F2EA;
  --color-crimson:         #6B1220; /* light surfaces only: Ivory, Warm White */
  --color-crimson-on-dark: #D5102A; /* dark surfaces only: Warm Black */
  --color-deep-forest: #5C6339; /* PAUSED — do not use */
  --color-stone:          #594D40; /* light surfaces */
  --color-stone-on-dark:  #C4B8AB; /* dark surfaces */
  --color-warm-white:  #FDFAF4;

  /* ── Surface Aliases ──────────────────────────── */
  --surface-dark:    var(--color-warm-black);
  --surface-primary: var(--color-ivory);
  --surface-white:   var(--color-warm-white);

  /* ── Text Aliases ─────────────────────────────── */
  --text-primary:   var(--color-warm-black);
  --text-on-dark:   var(--color-warm-white);
  --text-subtle:          var(--color-stone);
  --text-subtle-on-dark:  var(--color-stone-on-dark);
  --text-accent:          var(--color-crimson);
  --text-accent-on-dark:  var(--color-crimson-on-dark);

  /* ── Border Aliases ───────────────────────────── */
  --border-default: rgba(89, 77, 64, 0.30);
  --border-subtle:  rgba(89, 77, 64, 0.20);
  --border-strong:  var(--color-warm-black);
  --border-accent:         var(--color-crimson);
  --border-accent-on-dark: var(--color-crimson-on-dark);

  /* ── Families ─────────────────────────────────── */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* ── Weights ──────────────────────────────────── */
  --font-weight-light:   300;
  --font-weight-regular: 400;
  --font-weight-medium:  500;

  /* ── Line Heights ─────────────────────────────── */
  --leading-display:   1.0;
  --leading-heading:   1.15;
  --leading-body:      1.7;
  --leading-pullquote: 1.35;

  /* ── Letter Spacing ───────────────────────────── */
  --tracking-eyebrow: 0.18em;
  --tracking-caption: 0.10em;
  --tracking-nav:     0.10em;
  --tracking-wordmark:0.22em;

  /* ── Spacing ──────────────────────────────────── */
  --max-width-content: 960px;
  --max-width-article: 680px;

  /* ── Layout ───────────────────────────────────── */
  --pad-x: 56px;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-warm-black);
  background: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: var(--font-weight-light); }
img, video { display: block; }

.container { max-width: var(--max-width-content); margin: 0 auto; }
.serif { font-family: var(--font-serif); }

/* Visually hidden honeypot */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ── Components (from DS bundle) ──────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-medium);
  font-size: 13px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-stone);
}
.eyebrow--cognac { color: var(--color-crimson); }
.eyebrow--ivory  { color: var(--color-ivory); }

.card {
  background: var(--color-warm-white);
  border: 0.5px solid rgba(89, 77, 64, 0.2);
  padding: 28px;
}
.card--ivory { background: var(--color-ivory); border: 0.5px solid rgba(89, 77, 64, 0.2); }
.card--dark {
  background: var(--color-warm-black);
  border: 0.5px solid rgba(89, 77, 64, 0.15);
  color: var(--color-ivory);
}
.card--dark .card__title { color: var(--color-ivory); }
.card--dark .card__desc { color: rgba(245, 242, 234, 0.8); }
.card__tag {
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.16em;
  color: var(--color-crimson);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.card__tag--stone {
  color: var(--color-stone);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
  margin-bottom: 12px;
}
.card__desc { font-size: 15px; font-weight: var(--font-weight-light); line-height: 1.65; }

.pullquote { padding-left: 28px; border-left: 3px solid var(--color-crimson); }
.pullquote p {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: var(--font-weight-light);
  font-style: italic;
  line-height: var(--leading-pullquote);
  color: var(--color-warm-black);
  margin: 0 0 14px;
}
.pullquote__attr {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-caption);
  text-transform: uppercase;
  color: var(--color-stone);
}

.input {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: var(--font-weight-light);
  padding: 17px 20px;
  min-height: 56px;
  background: var(--color-warm-white);
  border: 1px solid var(--color-stone);
  color: var(--color-warm-black);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.input:focus { border-color: var(--color-warm-black); }
.input::placeholder { color: var(--color-stone); opacity: 1; }

.btn {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
  font-size: 12px;
  letter-spacing: var(--tracking-caption);
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  transition: background 0.15s ease;
}
.btn:disabled { cursor: not-allowed; opacity: 0.4; }
.btn--primary { background: var(--color-warm-black); color: var(--color-ivory); }
.btn--primary:hover { background: #2a2a1f; }
.btn--inverted {
  background: var(--color-ivory);
  color: var(--color-warm-black);
  border: 0.5px solid rgba(89, 77, 64, 0.35);
}
.btn--inverted:hover { background: var(--color-warm-white); }
.btn--ghost {
  background: transparent;
  color: var(--color-warm-black);
  border: 1px solid var(--color-warm-black);
}
.btn--ghost:hover { background: rgba(26, 26, 20, 0.05); }

/* ── Rule ──────────────────────────────────────── */
.rule { height: 1px; background: var(--color-warm-black); width: 100%; border: none; }
.rule--stone { background: var(--color-stone); }
.rule--subtle { background: rgba(89, 77, 64, 0.30); }
.rule--crimson { width: 32px; background: var(--color-crimson); }

.link-cta {
  font-size: 11px;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-caption);
  text-transform: uppercase;
  color: var(--color-crimson);
}

/* ── Header ───────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 14px;
  gap: 24px;
  padding: 22px var(--pad-x);
  border-bottom: 1px solid rgba(89, 77, 64, 0.25);
}
.site-header--sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-ivory);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.wordmark__mark { height: 26px; width: 26px; display: block; }
.wordmark__divider { width: 0.5px; height: 24px; background: var(--color-stone); }
.wordmark__name {
  font-size: 26px;
  font-family: var(--font-serif);
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.02em;
  color: var(--color-warm-black);
  line-height: 1;
}
.site-nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.site-nav a {
  font-size: 11px;
  letter-spacing: var(--tracking-nav);
  color: var(--color-warm-black);
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--color-crimson); }
.site-nav--article { gap: 24px; }
.site-nav--article a { font-size: 10px; }

/* ── Home: hero ───────────────────────────────── */
.hero {
  height: 92vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}
.hero__text {
  background: var(--color-ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px 44px var(--pad-x);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: var(--font-weight-light);
  line-height: var(--leading-display);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero__kicker {
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.16em;
  color: var(--color-stone);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__lede {
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: var(--leading-body);
  max-width: 420px;
  color: var(--color-warm-black);
}
.hero__media { position: relative; overflow: hidden; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% top;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245, 242, 234, 0.14) 0%, transparent 25%);
}
.hero__subhead {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: var(--font-weight-light);
  color: var(--color-crimson);
  margin-bottom: 20px;
}
.hero__body { font-size: 16px; font-weight: var(--font-weight-light); line-height: var(--leading-body); max-width: 480px; margin-bottom: 28px; }
.hero__body p + p { margin-top: 14px; }
.hero__cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__caption { font-size: 11px; color: var(--color-stone); margin-top: 12px; }
.hero__loc {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: 9px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.16em;
  color: rgba(245, 237, 210, 0.55);
  text-transform: uppercase;
}
/* ── Bands & sections ─────────────────────────── */
.band--forest { background: var(--color-warm-black); padding: 88px var(--pad-x); }
.band--black  { background: var(--color-warm-black);  padding: 88px var(--pad-x); }

.section-title--forest {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.2;
  color: var(--color-ivory);
  max-width: 640px;
  margin: 18px 0 56px;
}
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.pillar__name {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: var(--font-weight-light);
  font-style: italic;
  color: var(--color-crimson-on-dark);
  margin-bottom: 16px;
}
.pillar p {
  font-size: 14px;
  font-weight: var(--font-weight-light);
  line-height: var(--leading-body);
  color: rgba(245, 242, 234, 0.82);
}

/* Home: about teaser */
.about-teaser { padding: 96px var(--pad-x); }
.about-teaser__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-teaser__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
.about-teaser__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.h2-section {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.25;
  margin: 16px 0 20px;
}
.about-teaser__copy {
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: 1.75;
  color: var(--color-warm-black);
  margin-bottom: 28px;
  max-width: 480px;
}

/* Home: stats */
.stats-section { padding: 0 var(--pad-x) 96px; }
.stats {
  border-top: 1px solid rgba(89, 77, 64, 0.3);
  border-bottom: 1px solid rgba(89, 77, 64, 0.3);
  padding: 48px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat__num { font-family: var(--font-serif); font-size: 40px; font-weight: var(--font-weight-light); margin-bottom: 10px; }
.stat__label { font-size: 11px; letter-spacing: var(--tracking-caption); color: var(--color-stone); text-transform: uppercase; }

/* Home: teaser sections */
.teaser-section { padding: 88px var(--pad-x) 96px; border-top: 1px solid rgba(89,77,64,0.25); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; }
.section-head .h2-section { margin: 14px 0 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.post-teaser { border-top: 1px solid var(--color-warm-black); padding-top: 18px; }
.post-teaser__date {
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.12em;
  color: var(--color-stone);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.post-teaser__title { font-family: var(--font-serif); font-size: 21px; font-weight: var(--font-weight-regular); line-height: 1.3; }

/* Home: newsletter */
.nl { max-width: 720px; margin: 0 auto; text-align: center; }
.nl .h2-section { color: var(--color-ivory); margin: 18px 0 16px; }
.nl__sub {
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: var(--leading-body);
  color: rgba(245, 242, 234, 0.72);
  margin-bottom: 36px;
}
.nl__form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; margin: 0 auto 20px; }
.nl__form .input { flex: 1; }
.nl__msg { font-size: 15px; font-weight: var(--font-weight-light); color: rgba(245, 242, 234, 0.85); margin: 0 auto 20px; max-width: 480px; }
.nl__archive {
  font-size: 11px;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-caption);
  text-transform: uppercase;
  color: var(--color-stone);
}

/* Home: contact */
.contact { padding: 96px var(--pad-x); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact__copy { font-size: 17px; font-weight: var(--font-weight-light); line-height: 1.75; max-width: 460px; }
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.contact__form .btn { margin-top: 8px; align-self: flex-start; }
.contact__msg { font-size: 15px; font-weight: var(--font-weight-light); line-height: 1.6; }

/* ── Footers ──────────────────────────────────── */
.footer-full { background: var(--color-warm-black); padding: 56px var(--pad-x); }
.footer-full__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(89, 77, 64, 0.25);
}
.footer-full__brand-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.04em;
  color: var(--color-ivory);
  margin-bottom: 10px;
}
.footer-full__brand-sub {
  font-size: 12px;
  font-weight: var(--font-weight-light);
  line-height: 1.6;
  color: var(--color-stone-on-dark);
  max-width: 220px;
}
.footer-full__col { display: flex; flex-direction: column; gap: 12px; }
.footer-full__col-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--color-stone-on-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-full__col a { font-size: 12px; color: rgba(245, 242, 234, 0.8); }
.footer-full__col a:hover { color: var(--color-ivory); }
.footer-full__bottom { display: flex; justify-content: space-between; padding-top: 24px; }
.footer-full__copyright { font-size: 11px; color: var(--color-stone-on-dark); }
.footer-full__tagline { font-size: 10px; letter-spacing: 0.14em; color: var(--color-stone-on-dark); text-transform: uppercase; }

.footer-simple {
  background: var(--color-warm-black);
  padding: 40px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-simple__brand { display: flex; align-items: center; gap: 10px; }
.footer-simple__mark { height: 16px; width: 16px; display: block; }
.footer-simple__divider { width: 0.5px; height: 14px; background: var(--color-stone-on-dark); }
.footer-simple__name { font-family: var(--font-serif); font-size: 15px; color: var(--color-ivory); }
.footer-simple__links { display: flex; gap: 24px; }
.footer-simple__links a, .footer-simple > a { font-size: 11px; color: var(--color-stone-on-dark); }
.footer-simple__links a:hover, .footer-simple > a:hover { color: var(--color-ivory); }

/* ── About page ───────────────────────────────── */
.about-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 72vh; }
.about-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px var(--pad-x);
}
.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.1;
  margin: 18px 0 24px;
  max-width: 560px;
}
.about-hero__lede { font-size: 17px; font-weight: var(--font-weight-light); line-height: 1.75; max-width: 520px; }
.about-hero__media { position: relative; overflow: hidden; }
.about-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bio { padding: 96px var(--pad-x); }
.bio__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.body-copy { font-size: 17px; font-weight: var(--font-weight-light); line-height: 1.75; }
.body-copy p + p { margin-top: 20px; }

.creds { background: var(--color-warm-black); padding: 80px var(--pad-x); }
.creds__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 32px; }
.creds__item { border-top: 1px solid rgba(245, 242, 234, 0.25); padding-top: 20px; }
.creds__item div {
  font-size: 17px;
  font-weight: var(--font-weight-light);
  line-height: 1.7;
  color: rgba(245, 242, 234, 0.85);
}

.press { padding: 80px var(--pad-x); }
.press__list { display: flex; flex-direction: column; margin-top: 24px; }
.press__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(89, 77, 64, 0.3);
}
.press__row:last-child { border-bottom: 1px solid rgba(89, 77, 64, 0.3); }
.press__title { font-family: var(--font-serif); font-size: 19px; font-weight: var(--font-weight-regular); }
.press__year { font-size: 11px; color: var(--color-stone); white-space: nowrap; margin-left: 24px; }

.engagements { padding: 0 var(--pad-x) 96px; }
.engagements__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; }
.engagements .card__desc { font-size: 16px; line-height: 1.7; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); }
.gallery img { width: 100%; height: 280px; object-fit: cover; object-position: center; }

/* ── Client / logo wall ───────────────────────── */
.client-wall {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.client-wall__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 16px;
}
.client-wall__item {
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-stone);
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-right: 0.5px solid rgba(89, 77, 64, 0.3);
  line-height: 1;
}
.client-wall__row .client-wall__item:last-child { border-right: none; padding-right: 0; }
.client-wall__row .client-wall__item:first-child { padding-left: 0; }

/* ── Blog page ────────────────────────────────── */
.page-intro { padding: 80px var(--pad-x) 40px; }
.page-intro__title {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.1;
  margin: 18px 0 16px;
  max-width: 640px;
}
.page-intro__sub {
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: var(--leading-body);
  max-width: 520px;
  color: var(--color-warm-black);
}

.featured { padding: 0 var(--pad-x) 64px; }
.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 0.5px solid rgba(89, 77, 64, 0.25);
}
.featured__media { position: relative; overflow: hidden; min-height: 320px; }
.featured__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.featured__body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.featured__date {
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.12em;
  color: var(--color-stone);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.featured__title { font-family: var(--font-serif); font-size: 28px; line-height: 1.25; margin-bottom: 16px; }
.featured__desc { font-size: 16px; font-weight: var(--font-weight-light); line-height: 1.7; color: var(--color-warm-black); }

.post-list { padding: 0 var(--pad-x) 96px; }
.post-list__inner { display: flex; flex-direction: column; }
.post-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(89, 77, 64, 0.3);
  align-items: baseline;
}
.post-row:last-child { border-bottom: 1px solid rgba(89, 77, 64, 0.3); }
.post-row__date {
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.12em;
  color: var(--color-stone);
  text-transform: uppercase;
}
.post-row__title { font-family: var(--font-serif); font-size: 22px; font-weight: var(--font-weight-regular); margin-bottom: 8px; }
.post-row__desc { font-size: 14px; font-weight: var(--font-weight-light); color: var(--color-warm-black); }

/* ── Article page ─────────────────────────────── */
.article-main { max-width: var(--max-width-content); margin: 0 auto; padding: 64px var(--pad-x) 80px; }
.article-meta {
  font-size: 9px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.20em;
  color: var(--color-stone);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(89, 77, 64, 0.3);
  display: flex;
  justify-content: space-between;
}
.article-title {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-bottom: 48px;
}
.article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.footer-article {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 40px var(--pad-x) 56px;
  border-top: 1px solid rgba(89, 77, 64, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-body { max-width: var(--max-width-article); margin: 0 auto; }
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
  margin: 48px 0 20px;
}
.article-body .pullquote { margin: 40px 0; }
.article-cta {
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: 1.75;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(89,77,64,0.3);
}
.article-closing {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: var(--font-weight-light);
  line-height: 1.5;
  margin-top: 32px;
  color: var(--color-crimson);
}
.draft-banner {
  background: var(--color-warm-black);
  color: var(--color-ivory);
  text-align: center;
  padding: 12px var(--pad-x);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.faq { max-width: var(--max-width-article); margin: 64px auto 0; padding-top: 48px; border-top: 1px solid rgba(89,77,64,0.3); }
.faq__item { padding: 24px 0; border-top: 1px solid rgba(89,77,64,0.25); }
.faq__item:first-of-type { border-top: none; }
.faq__q { font-family: var(--font-serif); font-size: 19px; margin-bottom: 10px; }
.faq__a { font-size: 15px; font-weight: var(--font-weight-light); line-height: 1.7; color: var(--color-warm-black); }

.footer-article__name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.04em;
}

/* ── Content Library page ─────────────────────── */
.filter-row { padding: 0 var(--pad-x); }
.filter-row__inner {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid rgba(89, 77, 64, 0.3);
  padding-bottom: 16px;
}
.filter-row__item {
  font-size: 11px;
  letter-spacing: var(--tracking-caption);
  text-transform: uppercase;
  color: var(--color-stone);
}
.filter-row__item--active { color: var(--color-warm-black); }
.library-grid-section { padding: 48px var(--pad-x) 96px; }
.card .link-cta { display: inline-block; }
.card__desc--spaced { margin-bottom: 18px; }

/* ── Legal pages ──────────────────────────────── */
.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { max-width: 720px; margin: 0 auto; padding: 80px var(--pad-x); flex: 1; width: 100%; }
.legal-kicker {
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.12em;
  color: var(--color-stone);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal-title { font-family: var(--font-serif); font-size: 40px; margin-bottom: 12px; }
.legal-date { font-size: 12px; color: var(--color-stone); margin-bottom: 48px; }

/* ── Announcement bar ─────────────────────────── */
.announce {
  background: var(--color-warm-black);
  color: var(--color-ivory);
  text-align: center;
  padding: 9px var(--pad-x);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.announce a { color: var(--color-ivory); text-decoration: underline; text-underline-offset: 2px; margin-left: 8px; white-space: nowrap; }
.announce a:hover { color: var(--color-crimson-on-dark); }

/* ── Utility nav (secondary row) ──────────────── */
.util-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.util-nav a { font-size: 10px; letter-spacing: var(--tracking-nav); color: var(--color-stone); text-transform: uppercase; white-space: nowrap; }
.util-nav a:hover { color: var(--color-warm-black); }
.site-header__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.btn--nav { padding: 9px 18px; font-size: 11px; white-space: nowrap; }

/* ── Generic body lists ───────────────────────── */
.body-copy ul, .list-plain {
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: var(--leading-body);
  margin: 0;
  padding-left: 20px;
}
.body-copy ul li + li, .list-plain li + li { margin-top: 8px; }

/* ── Select input ─────────────────────────────── */
.select {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: var(--font-weight-light);
  padding: 15px 18px;
  background: var(--color-warm-white);
  border: 1px solid var(--color-stone);
  color: var(--color-warm-black);
  outline: none;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239E9B8E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.select:focus { border-color: var(--color-warm-black); }
label.field-label {
  display: block;
  font-size: 11px;
  letter-spacing: var(--tracking-caption);
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 6px;
}

/* ── Mechanism / four-up grid ─────────────────── */
.mech-section { padding: 96px var(--pad-x); }
.mech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 40px; }
.mech-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mech-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mech__title { font-family: var(--font-serif); font-size: 23px; margin-bottom: 12px; }
.mech__desc { font-size: 17px; font-weight: var(--font-weight-light); line-height: 1.7; color: var(--color-warm-black); }

/* ── Recurring-problem / signal rows ──────────── */
.signal-section { padding: 96px var(--pad-x) 96px; border-top: 1px solid rgba(89,77,64,0.25); }
.signal-section .body-copy { max-width: 720px; }
.signal-section .body-copy p + p { margin-top: 18px; }

/* ── Recognition field ─────────────────────────── */
.recog { background: var(--color-warm-white); padding: 88px var(--pad-x); border-top: 1px solid rgba(89,77,64,0.25); border-bottom: 1px solid rgba(89,77,64,0.25); }
.recog__list { display: flex; flex-direction: column; margin-top: 32px; max-width: 760px; }
.recog__row { padding: 18px 0; border-top: 1px solid rgba(89,77,64,0.3); font-size: 15px; font-weight: var(--font-weight-light); line-height: 1.65; }
.recog__row:last-child { border-bottom: 1px solid rgba(89,77,64,0.3); }

/* ── RMM statement block ──────────────────────── */
.rmm-block { padding: 88px var(--pad-x); text-align: center; }
.rmm-block__inner { max-width: 680px; margin: 0 auto; }
.rmm-block .h2-section { margin-top: 16px; }
.rmm-block p { font-size: 17px; font-weight: var(--font-weight-light); line-height: 1.75; margin-top: 20px; }

/* ── Diagnostic hub cards ─────────────────────── */
.diag-card { border-top: 2px solid var(--color-crimson); padding: 32px 0 0; }
.diag-card__eyebrow { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-stone); margin-bottom: 10px; }
.diag-card__title { font-family: var(--font-serif); font-size: 26px; margin-bottom: 14px; }
.diag-card__desc { font-size: 16px; font-weight: var(--font-weight-light); line-height: 1.7; margin-bottom: 20px; max-width: 520px; }

/* ── Quote grid (testimonials) ────────────────── */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 40px; }

/* ── Media / speaking lists ───────────────────── */
.speaking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 32px; }
.media-list { display: flex; flex-direction: column; margin-top: 24px; }
.media-list__row { padding: 16px 0; border-top: 1px solid rgba(89,77,64,0.3); font-size: 17px; font-weight: var(--font-weight-light); }
.media-list__row a { color: var(--color-crimson); }
.media-list__row a:hover { text-decoration: underline; }
.media-list__row:last-child { border-bottom: 1px solid rgba(89,77,64,0.3); }
.booking-note { font-size: 13px; font-weight: var(--font-weight-light); color: var(--color-stone); margin-top: 8px; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1020px) {
  :root { --pad-x: 32px; }
  .mech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .hero__text { padding: 72px var(--pad-x) 56px; }
  .hero__media { height: 68vh; min-height: 400px; }

  .about-hero { grid-template-columns: 1fr; min-height: 0; }
  .about-hero__media { height: 56vh; min-height: 340px; }

  .about-teaser__grid, .bio__grid, .article-grid, .contact__grid,
  .engagements__grid, .featured__grid { grid-template-columns: 1fr; }
  .about-teaser__grid, .contact__grid { gap: 40px; }
  .bio__grid, .article-grid { gap: 40px; }

  .footer-full__grid { grid-template-columns: 1fr 1fr; }
  .footer-full__brand { grid-column: 1 / -1; }

  .mech-grid, .mech-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .quote-grid, .speaking-grid { grid-template-columns: 1fr; }
  .who-is-lauren-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .client-wall__row { justify-content: flex-start; }
  .client-wall__item { border-right: none; padding: 0 0 0 0; margin-right: 16px; }
}

@media (max-width: 700px) {
  :root { --pad-x: 24px; }

  .site-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .site-nav { gap: 20px; }

  .pillars, .stats, .creds__grid, .grid-3 { grid-template-columns: 1fr; }
  .pillars { gap: 36px; }
  .pillars > div + div { border-top: 1px solid rgba(245, 242, 234, 0.2); padding-top: 32px; }
  .stats { gap: 32px; }
  .creds__grid { gap: 24px; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 220px; }

  .post-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }

  .band--forest, .band--black { padding-top: 64px; padding-bottom: 64px; }
  .about-teaser, .contact, .bio { padding-top: 64px; padding-bottom: 64px; }
  .creds, .press { padding-top: 56px; padding-bottom: 56px; }
  .stats-section, .teaser-section, .engagements, .post-list { padding-bottom: 64px; }
  .page-intro { padding-top: 56px; }
  .legal-main { padding-top: 56px; padding-bottom: 56px; }

  .page-intro__title { font-size: 34px; }
  .article-title { font-size: 36px; margin-bottom: 36px; }
  .legal-title { font-size: 34px; }
  .h2-section { font-size: 28px; }
  .section-title--forest { font-size: 28px; margin-bottom: 40px; }
  .featured__title { font-size: 24px; }
  .featured__body { padding: 32px 28px; }
  .press__title { font-size: 17px; }
  .press__row { align-items: flex-start; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }

  .article-main { padding-top: 48px; }

  .footer-full__bottom { flex-wrap: wrap; gap: 8px; }
  .footer-simple { flex-wrap: wrap; gap: 16px; }
  .filter-row__inner { flex-wrap: wrap; gap: 16px 28px; }
}

@media (max-width: 480px) {
  .nl__form { flex-direction: column; }
  .footer-full__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .mech-grid, .mech-grid--3, .mech-grid--2 { grid-template-columns: 1fr; }
  .mech-section, .recog, .rmm-block { padding-top: 56px; padding-bottom: 56px; }
  .signal-section { padding-bottom: 56px; }
  .announce { font-size: 10px; padding: 10px 16px; }
  .announce a { display: block; margin: 4px 0 0; }
  .util-nav { flex-wrap: wrap; gap: 14px; }
  .site-header__actions { flex-wrap: wrap; gap: 14px; }
}
