/* ═══════════════════════════════════════════════════════════════════
   BRING NATURE INSIDE — Main Stylesheet
   Design system: moss greens, lime accent, editorial typography
   ═══════════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ───────────────────────────────────────────── */
:root {
  --moss:      #2e3d14;
  --lime:      #bfdc80;
  --pale-sage: #eef2e8;
  --yellow:    #e9cc7b;
  --off-white: #f8f7f2;
  --moss-mid:  #5a7a2e;
  --black:     #111111;
  --mid:       #888888;
  --border:    #dde5d4;

  --nav-height: 68px;
  --content-max: 1280px;
  --section-pad: 100px 80px;
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  padding-top: var(--nav-height);
}

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

a {
  color: inherit;
}

/* ── TYPOGRAPHY UTILITIES ────────────────────────────────────────── */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 24px;
}

.body-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 540px;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--yellow);
  margin-bottom: 28px;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--moss);
  color: var(--lime);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--moss-mid); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  padding: 13px 35px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--black); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--moss);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  text-decoration: none;
  border: 1px solid var(--moss);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--moss);
  color: var(--lime);
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 60px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--moss-mid); }

.nav-main-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* WordPress nav menu reset */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--moss-mid); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-cta:hover { color: var(--moss-mid); border-color: var(--moss-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.25s, opacity 0.25s;
}

/* ── STATS BAR ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--moss);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 44px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 8px;
}

/* ── HOMEPAGE: HERO ─────────────────────────────────────────────── */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.home-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 104px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 28px;
}

.home-hero__sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 420px;
  margin-bottom: 40px;
}
.home-hero__sub strong { font-weight: 500; color: var(--black); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.05em;
}

.home-hero__image {
  position: relative;
  overflow: hidden;
  background: var(--pale-sage);
  height: 100%;
  min-height: calc(100vh - var(--nav-height));
}
.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--off-white);
  padding: 20px 28px;
  border-bottom: 3px solid var(--yellow);
}
.hero-caption-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--moss);
}
.hero-caption-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}

/* ── HOMEPAGE: ABOUT ────────────────────────────────────────────── */
.home-about {
  background: var(--pale-sage);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.home-about__image {
  overflow: hidden;
  height: 100%;
  min-height: 520px;
}
.home-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-about__text {
  padding: 80px;
}
.home-about__text .body-text { max-width: 100%; }

/* ── HOMEPAGE: LINK CARDS ───────────────────────────────────────── */
.home-links {
  background: var(--pale-sage);
  padding: var(--section-pad);
}

.home-links__intro {
  margin-bottom: 56px;
}

.home-links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.home-link-card {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}
.home-link-card:last-child { border-right: none; }

.home-link-card--dark  { background: var(--moss); }
.home-link-card--light { background: var(--off-white); }

.home-link-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--lime);
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
}
.home-link-card--light .home-link-card__num {
  color: var(--mid);
  opacity: 1;
}

.home-link-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--lime);
}
.home-link-card--light .home-link-card__title {
  color: var(--black);
}

.home-link-card__divider {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 20px 0;
  flex-shrink: 0;
}
.home-link-card--light .home-link-card__divider {
  background: var(--yellow);
}

.home-link-card__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  flex: 1;
  margin-bottom: 32px;
}
.home-link-card--light .home-link-card__body {
  color: #666;
}

.home-link-card__cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(191,220,128,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
  align-self: flex-start;
}
.home-link-card__cta:hover { border-color: var(--lime); }

.home-link-card__cta--moss {
  color: var(--moss-mid);
  border-bottom-color: rgba(90,122,46,0.3);
}
.home-link-card__cta--moss:hover { border-color: var(--moss-mid); }

/* ── HOMEPAGE: NEWSLETTER ───────────────────────────────────────── */
.home-newsletter {
  background: var(--moss);
  padding: var(--section-pad);
}

.home-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.home-newsletter__text .hero-divider { margin-top: 8px; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
}

.newsletter-form__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  margin-top: 20px;
  display: block;
}
.newsletter-form__label:first-child { margin-top: 0; }

.newsletter-form__input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form__input::placeholder {
  color: rgba(255,255,255,0.2);
}
.newsletter-form__input:focus {
  border-color: var(--lime);
}

.newsletter-form__btn {
  margin-top: 24px;
  background: var(--lime);
  color: var(--moss);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}
.newsletter-form__btn:hover { opacity: 0.85; }

.newsletter-form__note {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── HOMEPAGE: PILLARS ──────────────────────────────────────────── */
.home-pillars {
  background: var(--pale-sage);
  padding: var(--section-pad);
}

.home-pillars__intro {
  margin-bottom: 56px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.pillar-card {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  background: var(--off-white);
  transition: background 0.2s;
}
.pillar-card:last-child { border-right: none; }
.pillar-card:hover { background: #f0f4e8; }

.pillar-card--accent {
  background: var(--moss);
}
.pillar-card--accent:hover { background: var(--moss-mid); }
.pillar-card--accent .pillar-card__num { color: var(--lime); opacity: 0.6; }
.pillar-card--accent .pillar-card__title { color: var(--lime); }
.pillar-card--accent .pillar-card__divider { background: rgba(255,255,255,0.1); }
.pillar-card--accent .pillar-card__body { color: rgba(255,255,255,0.6); }
.pillar-card--accent .pillar-card__cta { color: var(--lime); }

.pillar-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--mid);
  margin-bottom: 20px;
}

.pillar-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 0;
}

.pillar-card__divider {
  width: 32px;
  height: 2px;
  background: var(--yellow);
  margin: 20px 0;
  flex-shrink: 0;
}

.pillar-card__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #666;
  flex: 1;
}

.pillar-card__cta {
  display: block;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss-mid);
}

/* ── HOMEPAGE: CONSULTATION CTA ─────────────────────────────────── */
.home-consult-cta {
  background: var(--moss);
  padding: var(--section-pad);
}

.home-consult-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.home-consult-cta__text .hero-divider {
  margin-top: 8px;
}

.btn-lime {
  display: inline-block;
  background: var(--lime);
  color: var(--moss);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  padding: 14px 36px;
  text-decoration: none;
  margin-top: 32px;
  transition: opacity 0.2s;
}
.btn-lime:hover { opacity: 0.85; }

.home-consult-cta__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}

.cta-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta-feature:last-child { border-bottom: none; }

.cta-feature__icon {
  font-size: 11px;
  font-weight: 600;
  color: var(--moss);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-feature strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2px;
}
.cta-feature p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

/* ── HOMEPAGE: DOWNLOADS ────────────────────────────────────────── */
.home-downloads {
  background: var(--off-white);
  padding: var(--section-pad);
}

.home-downloads__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.download-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.download-card {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}
.download-card:last-child { border-bottom: none; }

.download-card--muted {
  opacity: 0.5;
}

.download-card__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-mid);
  display: block;
  margin-bottom: 8px;
}

.download-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 6px;
}

.download-card__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: #777;
}

/* ── HOMEPAGE: POSTS ────────────────────────────────────────────── */
.home-posts {
  padding: var(--section-pad);
  background: var(--off-white);
}

.home-posts__header {
  margin-bottom: 56px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

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

.post-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.post-card:nth-child(3n) { border-right: none; }
/* remove bottom border from last row */
.post-card:nth-last-child(-n+3):nth-child(3n+1),
.post-card:nth-last-child(-n+3):nth-child(3n+1) ~ .post-card { border-bottom: none; }

.post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--pale-sage);
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card__image:hover img { transform: scale(1.03); }

.post-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.post-card__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-mid);
}

.post-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--black);
}
.post-card__title a {
  text-decoration: none;
  transition: color 0.2s;
}
.post-card__title a:hover { color: var(--moss-mid); }

.post-card__excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
  flex: 1;
}

.post-card__meta {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.home-posts__footer {
  text-align: center;
  margin-top: 56px;
}

/* ── HOMEPAGE: CTA SECTION ──────────────────────────────────────── */
.home-cta {
  background: var(--pale-sage);
  padding: var(--section-pad);
}

.home-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--content-max);
  margin: 0 auto;
}

.home-cta__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 8px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }

.feature-icon {
  font-size: 11px;
  font-weight: 600;
  color: var(--moss);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #666;
}

/* ── ARCHIVE / BLOG ─────────────────────────────────────────────── */
.archive-header {
  padding: 80px 80px 60px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.archive-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 16px;
}

.archive-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  margin-top: 16px;
}

.archive-body {
  padding: 64px 80px 100px;
  background: var(--off-white);
}

.no-posts {
  font-size: 16px;
  color: var(--mid);
  text-align: center;
  padding: 80px 0;
}

/* WordPress pagination */
.nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 64px;
}
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-links .page-numbers:hover {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--lime);
}
.nav-links .page-numbers.current {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--lime);
}
.nav-links .page-numbers.dots {
  border: none;
  background: none;
  color: var(--mid);
}

/* ── SINGLE POST ────────────────────────────────────────────────── */
.single-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}

.post-header {
  margin-bottom: 48px;
}

.post-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: 0.03em;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 20px;
}

.post-meta {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.post-meta__sep { opacity: 0.4; }

.post-featured-image {
  margin: -20px -40px 56px;
  overflow: hidden;
}
.post-featured-image img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* Post content typography */
.post-content {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: #333;
}
.post-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--black);
  margin: 56px 0 20px;
}
.post-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 40px 0 16px;
}
.post-content p { margin-bottom: 24px; }
.post-content strong { font-weight: 500; color: var(--black); }
.post-content em { font-style: italic; }
.post-content a {
  color: var(--moss-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content a:hover { color: var(--moss); }
.post-content ul,
.post-content ol {
  margin: 0 0 24px 24px;
}
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--yellow);
  padding: 16px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--black);
  background: var(--pale-sage);
}
.post-content img {
  width: 100%;
  height: auto;
  margin: 32px 0;
}
.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Post footer */
.post-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.post-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.post-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  background: var(--pale-sage);
  padding: 4px 12px;
  text-decoration: none;
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.post-nav__link:hover { border-color: var(--moss); }
.post-nav__link--next { text-align: right; }
.post-nav__dir {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.post-nav__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--black);
  line-height: 1.2;
}

/* Single post CTA */
.single-cta {
  background: var(--pale-sage);
  padding: var(--section-pad);
  text-align: center;
}
.single-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}
.single-cta .section-title { margin: 16px auto 24px; }
.single-cta .body-text { margin: 0 auto 32px; text-align: center; }
.single-cta .btn-primary { margin-top: 8px; }

/* ── ABOUT PAGE ─────────────────────────────────────────────────── */

/* Hero: image left, text right */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
}

.about-hero__image {
  overflow: hidden;
  position: relative;
}
.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--off-white);
}

.about-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 28px;
}

.about-hero__sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 480px;
}

/* Story: two-column blocks on pale-sage */
.about-story {
  background: var(--pale-sage);
  padding: var(--section-pad);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-story__block .body-text {
  max-width: 100%;
}

/* Philosophy quote */
.about-philosophy {
  background: var(--moss);
  padding: 80px;
}

.about-philosophy__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-philosophy__quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--lime);
  margin-bottom: 24px;
}

.about-philosophy__attr {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Story: single-column variant with facts sidebar */
.about-story--single { background: var(--pale-sage); padding: var(--section-pad); }

.about-story__single-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.about-story__single-text .body-text { max-width: 100%; }

.about-story__single-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.about-fact {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.about-fact:nth-child(2n) { border-right: none; }
.about-fact:nth-last-child(-n+2) { border-bottom: none; }

.about-fact__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.05em;
  color: var(--moss);
  line-height: 1;
  display: block;
}

.about-fact__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-top: 6px;
  line-height: 1.5;
}

/* Contact section */
.about-contact {
  background: var(--off-white);
  padding: var(--section-pad);
}

.about-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-contact__text .body-text { max-width: 100%; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
  display: block;
}

.contact-form__input {
  width: 100%;
  background: var(--pale-sage);
  border: 1px solid var(--border);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.contact-form__input::placeholder { color: var(--mid); }
.contact-form__input:focus { border-color: var(--moss); }

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__btn {
  margin-top: 24px;
  background: var(--moss);
  color: var(--lime);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.contact-form__btn:hover { background: var(--moss-mid); }

.contact-form__success {
  background: var(--pale-sage);
  border-left: 3px solid var(--moss);
  padding: 40px;
}
.contact-form__success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--moss);
  margin-bottom: 12px;
}
.contact-form__success-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
}
.contact-form__error {
  background: #fff8f0;
  border-left: 3px solid #c0392b;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #c0392b;
  margin-bottom: 24px;
}

/* What this is: text + two cards */
.about-what {
  background: var(--off-white);
  padding: var(--section-pad);
}

.about-what__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-what__text .body-text { max-width: 100%; }

.about-what__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.about-card {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}
.about-card:last-child { border-bottom: none; }

.about-card--dark  { background: var(--moss); border-color: rgba(255,255,255,0.08); }
.about-card--light { background: var(--pale-sage); }

.about-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--lime);
  opacity: 0.6;
  margin-bottom: 16px;
  display: block;
}
.about-card--light .about-card__num { color: var(--mid); opacity: 1; }

.about-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 0;
}
.about-card--light .about-card__title { color: var(--black); }

.about-card__divider {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 16px 0;
  flex-shrink: 0;
}
.about-card--light .about-card__divider { background: var(--yellow); }

.about-card__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  flex: 1;
  margin-bottom: 20px;
}
.about-card--light .about-card__body { color: #666; }

.about-card__cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(191,220,128,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
  align-self: flex-start;
}
.about-card__cta:hover { border-color: var(--lime); }
.about-card__cta--moss {
  color: var(--moss-mid);
  border-bottom-color: rgba(90,122,46,0.3);
}
.about-card__cta--moss:hover { border-color: var(--moss-mid); }

/* ── GENERIC PAGE ───────────────────────────────────────────────── */
.page-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}
.page-header { margin-bottom: 48px; }

/* ── 404 ────────────────────────────────────────────────────────── */
.error-404 {
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
}
.error-404 .archive-title { font-size: 120px; color: var(--border); }
.error-404 .hero-divider { margin: 0 auto 28px; }
.error-404 .body-text { margin: 0 auto; text-align: center; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--moss);
  padding: 60px 80px;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--lime);
  text-decoration: none;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  width: 100%;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* ── WORDPRESS ADMIN BAR COMPATIBILITY ───────────────────────────── */
/* Push fixed nav below the admin toolbar when logged in.
   WordPress already shifts html { margin-top: 32/46px } so the
   document content moves down automatically — we only move the nav.  */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-pad: 80px 48px; }

  .nav-inner { padding: 0 40px; }
  .home-hero__content { padding: 60px 48px; }
  .archive-header { padding: 60px 48px 48px; }
  .archive-body { padding: 48px 48px 80px; }
  .site-footer { padding: 48px 48px; }

  /* About page */
  .about-hero__text { padding: 60px 48px; }
  .about-story__inner { gap: 56px; }
  .about-what__inner { gap: 56px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 64px 24px; }

  /* Nav */
  .nav-inner { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-main-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 190;
  }
  .nav-main-links.is-open { transform: translateY(0); }
  .nav-menu { flex-direction: column; gap: 16px; }
  .nav-menu a { font-size: 15px; }

  /* Homepage hero */
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero__content { padding: 64px 24px 48px; }
  .home-hero__image { min-height: 360px; height: 360px; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  /* Post grid */
  .post-grid,
  .post-grid--wide { grid-template-columns: 1fr 1fr; }
  .post-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .post-card:nth-child(2n) { border-right: none; }
  .post-card:nth-last-child(-n+2):nth-child(2n+1),
  .post-card:nth-last-child(-n+2):nth-child(2n+1) ~ .post-card { border-bottom: none; }

  /* Homepage sections */
  .home-posts { padding: var(--section-pad); }
  .home-cta { padding: var(--section-pad); }
  .home-cta__inner { grid-template-columns: 1fr; gap: 48px; }

  /* About (homepage section) */
  .home-about { grid-template-columns: 1fr; }
  .home-about__image { min-height: 320px; }
  .home-about__text { padding: 48px 24px; }

  /* About page */
  .about-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-hero__image { min-height: 400px; }
  .about-hero__text { padding: 56px 24px; }
  .about-story__inner { grid-template-columns: 1fr; gap: 56px; }
  .about-story__single-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-philosophy { padding: 64px 24px; }
  .about-contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .about-what__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-card { padding: 36px 24px; }

  /* Link cards */
  .home-links { padding: var(--section-pad); }
  .home-links__grid { grid-template-columns: 1fr; }
  .home-link-card { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 24px; }
  .home-link-card--dark { border-bottom-color: rgba(255,255,255,0.08); }
  .home-link-card:last-child { border-bottom: none; }

  /* Newsletter */
  .home-newsletter { padding: var(--section-pad); }
  .home-newsletter__inner { grid-template-columns: 1fr; gap: 48px; }
  .newsletter-form { padding: 32px 24px; }

  /* Pillars */
  .home-pillars { padding: var(--section-pad); }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar-card:last-child { border-bottom: none; }

  /* Consultation CTA */
  .home-consult-cta { padding: var(--section-pad); }
  .home-consult-cta__inner { grid-template-columns: 1fr; gap: 48px; }

  /* Downloads */
  .home-downloads { padding: var(--section-pad); }
  .home-downloads__inner { grid-template-columns: 1fr; gap: 48px; }

  /* Archive */
  .archive-header { padding: 48px 24px 36px; }
  .archive-body { padding: 36px 24px 64px; }

  /* Single */
  .single-post { padding: 48px 24px 48px; }
  .post-featured-image { margin: -20px -24px 40px; }
  .post-nav { grid-template-columns: 1fr; }

  /* Page */
  .page-article { padding: 48px 24px 64px; }

  /* Footer */
  .site-footer { padding: 40px 24px; }
  .footer-nav { gap: 20px; }
}

@media (max-width: 600px) {
  .post-grid,
  .post-grid--wide { grid-template-columns: 1fr; }
  .post-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .post-card:last-child { border-bottom: none !important; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 32px 0; }
  .stat-num { font-size: 36px; }

  .home-hero__title { font-size: clamp(52px, 14vw, 72px); }
}
