/* ============================================================
   The Standing Order — MHF Custom Ghost Theme
   Built on the MedHealthFitness design system
   ============================================================ */

:root {
  --mhf-black:        #000000;
  --mhf-surface-1:    #0A0A0A;
  --mhf-surface-2:    #111111;
  --mhf-surface-3:    #1A1A1A;
  --mhf-surface-4:    #222222;
  --mhf-fg-1:         #F5F5F0;
  --mhf-fg-2:         #C8C6BE;
  --mhf-fg-3:         #8A887F;
  --mhf-fg-4:         #58564F;
  --mhf-gold:         #C9A84C;
  --mhf-gold-deep:    #B8972E;
  --mhf-gold-soft:    #E4C878;
  --mhf-success:      #7FA65B;
  --mhf-warning:      #D9A441;
  --mhf-danger:       #B3423A;
  --mhf-border:       rgba(245,245,240,0.12);
  --mhf-border-strong:rgba(245,245,240,0.22);
  --mhf-border-gold:  rgba(201,168,76,0.55);
  --mhf-serif:        'Cormorant Garamond','Didot','Bodoni 72',Garamond,serif;
  --mhf-sans:         'DM Sans', system-ui, -apple-system, sans-serif;
  --ease:             cubic-bezier(0.16, 1, 0.3, 1);
  --content-max:      720px;
  --wide-max:         1100px;
  --gutter:           24px;
}

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

html, body {
  background: var(--mhf-black);
  color: var(--mhf-fg-1);
  font-family: var(--mhf-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--mhf-gold); text-decoration: underline; text-decoration-color: rgba(201,168,76,0.4); text-underline-offset: 3px; transition: text-decoration-color .25s var(--ease); }
a:hover { text-decoration-color: var(--mhf-gold); }

/* ============================================================
   SITE HEAD
   ============================================================ */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.is-scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--mhf-border);
}
.site-head__inner {
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-head__brand {
  text-decoration: none;
  flex-shrink: 0;
}
.site-head__logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1); /* publication logo was dark — invert for dark theme */
}
.site-head__brand-text {
  font-family: var(--mhf-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--mhf-fg-1);
}
.site-head__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-head__nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0; padding: 0;
}
.site-head__nav a {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mhf-fg-2);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.site-head__nav a:hover { color: var(--mhf-gold); }
.site-head__actions { display: flex; gap: 10px; align-items: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--mhf-border-strong);
  color: var(--mhf-fg-1);
  padding: 12px 22px;
  font-family: var(--mhf-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  transition: all .3s var(--ease);
}
.btn--gold {
  border-color: var(--mhf-gold);
  color: var(--mhf-gold);
}
.btn--gold:hover {
  border-width: 1.5px;
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.18);
}
.btn--gold:active {
  transform: translateY(1px);
  color: var(--mhf-gold-deep);
  border-color: var(--mhf-gold-deep);
}
.btn--ghost { border-color: var(--mhf-border); color: var(--mhf-fg-2); }
.btn--ghost:hover { border-color: var(--mhf-border-strong); color: var(--mhf-fg-1); }
.btn--lg { padding: 16px 32px; font-size: 12px; letter-spacing: 0.26em; }

/* ============================================================
   HOMEPAGE HERO — Full editorial cover, all HTML/CSS, responsive
   Uses publication cover as atmospheric backdrop only
   ============================================================ */
.home-hero {
  position: relative;
  padding: 120px var(--gutter) 100px;
  border-bottom: 1px solid var(--mhf-border);
  background: var(--mhf-black);
  text-align: center;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 0;
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.home-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mhf-sans);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mhf-gold);
  margin-bottom: 32px;
  flex-wrap: nowrap;
}
.home-hero__eyebrow .rule {
  width: clamp(20px, 4vw, 40px);
  height: 1px;
  background: var(--mhf-gold);
  flex-shrink: 0;
}
.home-hero__eyebrow .eyebrow-text {
  white-space: nowrap;
}

.home-hero__sub {
  font-family: var(--mhf-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--mhf-fg-2);
  margin-bottom: 36px;
}

.home-hero__wordmark {
  font-family: var(--mhf-serif);
  font-weight: 500;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--mhf-fg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 32px);
  margin: 0;
}
.home-hero__wordmark .w {
  display: inline-block;
}
.home-hero__wordmark .dot {
  color: var(--mhf-gold);
  font-weight: 500;
  font-size: 0.7em;
  position: relative;
  top: -0.08em;
}

.home-hero__rule {
  width: 120px;
  height: 1px;
  background: var(--mhf-gold);
  margin: 36px 0 32px;
}

.home-hero__cta {
  margin-bottom: 44px;
}

.home-hero__tagline {
  font-family: var(--mhf-serif);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--mhf-fg-2);
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
}

.home-hero__byline {
  font-family: var(--mhf-sans);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mhf-fg-3);
}

/* ============================================================
   POST FEED (homepage list)
   ============================================================ */
.post-feed { padding: 56px var(--gutter); }
.post-feed__inner {
  max-width: var(--wide-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.post-card { border-bottom: 1px solid var(--mhf-border); padding-bottom: 36px; }
.post-card--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 56px;
  margin-bottom: 16px;
}
.post-card__image-wrap { display: block; overflow: hidden; }
.post-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.post-card--feature:hover .post-card__image { transform: scale(1.03); }

.post-card__body { display: flex; flex-direction: column; gap: 12px; }
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mhf-fg-3);
}
.post-card__tag { color: var(--mhf-gold); }
.post-card__title {
  font-family: var(--mhf-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
.post-card--feature .post-card__title { font-size: 44px; line-height: 1.05; letter-spacing: -0.018em; }
.post-card__title a { color: var(--mhf-fg-1); text-decoration: none; transition: color .25s var(--ease); }
.post-card__title a:hover { color: var(--mhf-gold); }
.post-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mhf-fg-2);
}
.post-card__author {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mhf-fg-3);
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-head { padding: 80px var(--gutter) 32px; }
.post-head__inner { max-width: var(--content-max); margin: 0 auto; }
.post-head__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mhf-gold);
  margin-bottom: 20px;
}
.post-head__eyebrow .rule { width: 28px; height: 1px; background: var(--mhf-gold); }

.post-head__title {
  font-family: var(--mhf-serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 22px;
  color: var(--mhf-fg-1);
}
.post-head__lede {
  font-family: var(--mhf-sans);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.55;
  color: var(--mhf-fg-2);
  margin-bottom: 36px;
  max-width: 680px;
}

.post-head__byline {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--mhf-border);
  background: var(--mhf-surface-1);
  margin-top: 24px;
}
.byline__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mhf-serif);
  font-size: 18px;
  color: var(--mhf-gold);
  background: linear-gradient(135deg, #2c2519, #100c07);
  border: 1px solid var(--mhf-border-gold);
  flex-shrink: 0;
  letter-spacing: 0.05em;
  overflow: hidden;
}
.byline__avatar img { width: 100%; height: 100%; object-fit: cover; }
.byline__avatar--lg { width: 72px; height: 72px; font-size: 24px; }
.byline__meta { display: flex; flex-direction: column; gap: 4px; }
.byline__by { font-family: var(--mhf-serif); font-size: 17px; color: var(--mhf-fg-1); }
.byline__by .name { color: var(--mhf-gold); text-decoration: none; }
.byline__by .name:hover { text-decoration: underline; text-decoration-color: var(--mhf-gold); }
.byline__stamp { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mhf-fg-3); margin-top: 4px; }

.post-feature {
  max-width: var(--wide-max);
  margin: 24px auto;
  padding: 0 var(--gutter);
}
.post-feature img { width: 100%; }
.post-feature figcaption {
  font-size: 12px; color: var(--mhf-fg-3);
  text-align: center; margin-top: 12px;
  font-style: italic;
}

/* ===== Post body — long-form prose ===== */
.post-body {
  max-width: var(--content-max);
  margin: 36px auto 0;
  padding: 0 var(--gutter);
}
.post-body > * { margin-bottom: 22px; }
.post-body p { color: var(--mhf-fg-2); }
.post-body h2 {
  font-family: var(--mhf-serif);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--mhf-fg-1);
  margin-top: 56px;
  margin-bottom: 18px;
}
.post-body h3 {
  font-family: var(--mhf-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--mhf-fg-1);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.post-body h4 {
  font-family: var(--mhf-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mhf-gold);
  margin-top: 32px;
  margin-bottom: 12px;
}
.post-body strong { color: var(--mhf-fg-1); font-weight: 500; }
.post-body em { font-style: italic; }
.post-body ul, .post-body ol { margin-left: 24px; color: var(--mhf-fg-2); }
.post-body li { margin-bottom: 10px; padding-left: 6px; }
.post-body li::marker { color: var(--mhf-gold); }

.post-body blockquote {
  border-left: 2px solid var(--mhf-gold);
  padding: 8px 0 8px 26px;
  margin: 36px 0;
  font-family: var(--mhf-serif);
  font-size: 26px;
  line-height: 1.35;
  color: var(--mhf-fg-1);
  letter-spacing: -0.01em;
}

.post-body hr {
  border: 0;
  height: 1px;
  background: var(--mhf-border);
  margin: 48px auto;
  max-width: 200px;
}

.post-body img { width: 100%; margin: 36px 0; }
.post-body figure { margin: 36px 0; }
.post-body figure figcaption { font-size: 12px; color: var(--mhf-fg-3); text-align: center; margin-top: 10px; font-style: italic; }

/* Koenig editor card widths — required by Ghost theme spec */
.post-body .kg-width-wide,
.post-body figure.kg-width-wide {
  max-width: 1040px;
  width: calc(100vw - 48px);
  margin-left: 50%;
  transform: translateX(-50%);
}
.post-body .kg-width-full,
.post-body figure.kg-width-full {
  max-width: 100vw;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.post-body .kg-width-wide img,
.post-body .kg-width-full img {
  width: 100%;
}
.post-body .kg-image-card { margin: 36px 0; }
.post-body .kg-gallery-card { margin: 36px 0; }
.post-body .kg-bookmark-card {
  display: flex;
  border: 1px solid var(--mhf-border);
  background: var(--mhf-surface-1);
  margin: 28px 0;
  text-decoration: none;
  transition: border-color .25s var(--ease);
}
.post-body .kg-bookmark-card:hover { border-color: var(--mhf-border-gold); }
.post-body .kg-bookmark-container { display: flex; width: 100%; padding: 20px 24px; gap: 16px; }
.post-body .kg-bookmark-content { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.post-body .kg-bookmark-title { font-family: var(--mhf-serif); font-size: 18px; color: var(--mhf-fg-1); }
.post-body .kg-bookmark-description { font-size: 13px; color: var(--mhf-fg-2); }
.post-body .kg-bookmark-metadata { font-size: 11px; color: var(--mhf-fg-3); letter-spacing: 0.04em; margin-top: auto; }
.post-body .kg-bookmark-thumbnail { width: 120px; flex-shrink: 0; }
.post-body .kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; margin: 0; }
.post-body .kg-callout-card { padding: 20px 24px; background: var(--mhf-surface-1); border-left: 2px solid var(--mhf-gold); margin: 28px 0; }
.post-body .kg-toggle-card { border: 1px solid var(--mhf-border); padding: 20px 24px; margin: 28px 0; }
.post-body .kg-toggle-heading { font-family: var(--mhf-serif); font-size: 18px; color: var(--mhf-fg-1); cursor: pointer; }

.post-body code {
  background: var(--mhf-surface-2);
  padding: 2px 6px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.88em;
  color: var(--mhf-fg-1);
}
.post-body pre {
  background: var(--mhf-surface-1);
  border: 1px solid var(--mhf-border);
  padding: 20px 24px;
  overflow-x: auto;
  margin: 24px 0;
}
.post-body pre code { background: transparent; padding: 0; font-size: 13px; line-height: 1.6; }

.post-body table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.post-body th { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mhf-fg-3); text-align: left; padding: 12px; border-bottom: 1px solid var(--mhf-border); font-weight: 500; }
.post-body td { padding: 14px 12px; font-size: 14px; border-bottom: 1px solid var(--mhf-border); color: var(--mhf-fg-2); }

.post-body sup { font-size: 0.7em; color: var(--mhf-gold); }

/* Post footer */
.post-foot { max-width: var(--content-max); margin: 64px auto 0; padding: 0 var(--gutter) 96px; }
.post-foot__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 40px; }
.post-foot__tags .tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mhf-fg-2);
  border: 1px solid var(--mhf-border);
  padding: 6px 12px;
  text-decoration: none;
  transition: all .25s var(--ease);
}
.post-foot__tags .tag:hover { border-color: var(--mhf-border-gold); color: var(--mhf-gold); }

.post-foot__author { display: flex; gap: 20px; padding: 28px 0; border-top: 1px solid var(--mhf-border); border-bottom: 1px solid var(--mhf-border); margin-bottom: 48px; }
.author-card__name { font-family: var(--mhf-serif); font-size: 20px; color: var(--mhf-fg-1); margin-bottom: 4px; }
.author-card__role { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mhf-gold); margin-bottom: 10px; }
.author-card__link { font-size: 13px; color: var(--mhf-fg-3); }

.post-foot__cta { border: 1px solid var(--mhf-border-gold); padding: 36px 38px; background: linear-gradient(155deg, #1a1410, #050403); margin-top: 16px; }
.cta__eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mhf-gold); margin-bottom: 12px; }
.cta__title { font-family: var(--mhf-serif); font-weight: 500; font-size: 28px; line-height: 1.2; color: var(--mhf-fg-1); margin-bottom: 12px; letter-spacing: -0.012em; }
.cta__body { color: var(--mhf-fg-2); margin-bottom: 24px; }

/* ============================================================
   AUTHOR + TAG HERO
   ============================================================ */
.author-hero, .tag-hero { padding: 96px var(--gutter) 56px; border-bottom: 1px solid var(--mhf-border); }
.author-hero__inner, .tag-hero__inner { max-width: var(--content-max); margin: 0 auto; display: flex; align-items: flex-start; gap: 32px; }
.author-hero__avatar { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, #2c2519, #100c07); border: 1px solid var(--mhf-border-gold); flex-shrink: 0; overflow: hidden; display: grid; place-items: center; font-family: var(--mhf-serif); font-size: 36px; color: var(--mhf-gold); }
.author-hero__avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-hero__eyebrow, .tag-hero__inner .tag-hero__eyebrow { display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mhf-gold); margin-bottom: 16px; }
.author-hero__eyebrow .rule, .tag-hero__inner .rule { width: 28px; height: 1px; background: var(--mhf-gold); }
.author-hero__name, .tag-hero__name { font-family: var(--mhf-serif); font-weight: 500; font-size: 48px; line-height: 1.05; letter-spacing: -0.018em; margin-bottom: 16px; }
.author-hero__bio, .tag-hero__desc { font-size: 17px; line-height: 1.55; color: var(--mhf-fg-2); margin-bottom: 16px; max-width: 600px; }
.author-hero__meta { display: flex; gap: 16px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mhf-fg-3); }
.author-hero__meta a { color: var(--mhf-fg-3); text-decoration: none; }
.author-hero__meta a:hover { color: var(--mhf-gold); }

.tag-hero__inner { flex-direction: column; gap: 16px; align-items: flex-start; }

/* ============================================================
   RELATED + SECTION
   ============================================================ */
.related-feed { padding: 64px var(--gutter); border-top: 1px solid var(--mhf-border); background: var(--mhf-surface-1); }
.related-feed__inner { max-width: var(--wide-max); margin: 0 auto; }
.section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.section-head .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mhf-fg-3); }
.section-head .rule { flex: 1; height: 1px; background: var(--mhf-border); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.related-grid .post-card { border-bottom: 0; padding-bottom: 0; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { max-width: var(--wide-max); margin: 32px auto 0; padding: 32px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--mhf-border); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; }
.pagination a { color: var(--mhf-gold); text-decoration: none; }
.pagination a:hover { color: var(--mhf-gold-soft); }
.pagination .page-number { color: var(--mhf-fg-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { padding: 64px var(--gutter) 40px; border-top: 1px solid var(--mhf-border); margin-top: 96px; background: var(--mhf-black); }
.site-foot__inner { max-width: var(--wide-max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
.site-foot__brand-text { font-family: var(--mhf-serif); font-size: 24px; color: var(--mhf-fg-1); letter-spacing: 0.02em; margin-bottom: 8px; }
.site-foot__brand-sub { font-size: 13px; color: var(--mhf-fg-3); }
.site-foot__brand-sub a { color: var(--mhf-gold); }
.site-foot__nav ul { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.site-foot__nav a { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mhf-fg-2); text-decoration: none; }
.site-foot__nav a:hover { color: var(--mhf-gold); }
.site-foot__bottom { grid-column: 1 / -1; padding-top: 32px; margin-top: 24px; border-top: 1px solid var(--mhf-border); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mhf-fg-4); }
.site-foot__meta { display: flex; gap: 24px; }
.site-foot__meta a { color: var(--mhf-fg-3); text-decoration: none; }
.site-foot__meta a:hover { color: var(--mhf-gold); }

/* ============================================================
   GHOST PORTAL OVERRIDES
   ============================================================ */
:root {
  --gh-accent-color: var(--mhf-gold);
  --portal-color: var(--mhf-gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .site-head__inner { gap: 16px; padding: 18px var(--gutter); }
  .site-head__nav { display: none; }
  .home-hero { padding: 80px var(--gutter) 64px; }
  .home-hero__eyebrow { gap: 8px; margin-bottom: 24px; }
  .home-hero__eyebrow .rule { width: 16px; }
  .home-hero__eyebrow .eyebrow-text { white-space: normal; text-align: center; }
  .home-hero__sub { margin-bottom: 24px; }
  .home-hero__wordmark { gap: 8px 14px; }
  .home-hero__rule { margin: 24px 0; }
  .home-hero__cta { margin-bottom: 32px; }
  .home-hero__tagline { margin-bottom: 40px; }
  .post-feed__inner { grid-template-columns: 1fr; gap: 36px; }
  .post-card--feature { grid-column: 1; grid-template-columns: 1fr; gap: 20px; padding-bottom: 36px; }
  .post-card--feature .post-card__title { font-size: 32px; }
  .post-head { padding: 56px var(--gutter) 24px; }
  .post-head__title { font-size: 36px; }
  .post-head__lede { font-size: 18px; }
  .post-body h2 { font-size: 26px; margin-top: 40px; }
  .post-body h3 { font-size: 20px; }
  .post-body blockquote { font-size: 20px; padding-left: 20px; }
  .author-hero__inner { flex-direction: column; gap: 20px; }
  .author-hero__name { font-size: 36px; }
  .related-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-foot__inner { grid-template-columns: 1fr; gap: 32px; }
  .site-foot__nav ul { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .home-hero { padding: 56px 16px 48px; }
  .home-hero__eyebrow { font-size: 9px; letter-spacing: 0.22em; gap: 6px; }
  .home-hero__eyebrow .rule { width: 12px; }
  .home-hero__sub { font-size: 17px; }
  .home-hero__wordmark { font-size: 32px; gap: 4px 10px; }
  .home-hero__wordmark .dot { font-size: 0.6em; }
  .home-hero__rule { width: 80px; }
  .home-hero__tagline { font-size: 14px; line-height: 1.55; }
  .home-hero__byline { font-size: 9px; letter-spacing: 0.22em; }
}
