/* ============================================================
   REALM OF GUIDANCE — MAIN STYLESHEET
   Light, airy, feminine, spiritual
   ============================================================ */

/* ── GOOGLE FONTS ────────────────────────────────────────────── */
/* Playfair Display — elegant serif for headings
   Lora           — warm serif for subheadings & pull quotes
   DM Sans        — clean humanist sans for body
   All imported via wp_enqueue in functions.php */

/* ── CSS VARIABLES ───────────────────────────────────────────── */
:root {
  /* Colours */
  --c-blush:        #f9f0ee;   /* blush white — main background  */
  --c-cream:        #fdf8f5;   /* warmer cream — card bg         */
  --c-petal:        #fce8e2;   /* soft petal pink — accents      */
  --c-rose:         #e8a99a;   /* muted rose — category labels   */
  --c-rose-dark:    #c97d6e;   /* deeper rose — hover            */
  --c-sage:         #b8cbb8;   /* sage green — secondary accent  */
  --c-lavender:     #d8d0e8;   /* lavender — decorative          */
  --c-gold:         #c9a96e;   /* warm gold — star accents       */
  --c-ink:          #2d1f1a;   /* deep ink — headings            */
  --c-body:         #5a3d35;   /* warm brown — body text         */
  --c-muted:        #8a6d65;   /* muted — secondary text         */
  --c-light:        #b8998f;   /* light — captions, meta         */
  --c-border:       #ecddd8;   /* border — cards, dividers       */
  --c-white:        #ffffff;
  --c-dark:         #1a0f0a;   /* footer background              */

  /* Typography */
  --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-serif:   'Lora', Georgia, serif;
  --f-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;
  --space-4xl:  128px;

  /* Layout */
  --max-width:       1160px;
  --max-width-text:  720px;
  --max-width-wide:  1360px;
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-full:     9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(45,31,26,.06), 0 1px 2px rgba(45,31,26,.04);
  --shadow-md:  0 4px 16px rgba(45,31,26,.08), 0 2px 6px rgba(45,31,26,.05);
  --shadow-lg:  0 16px 40px rgba(45,31,26,.10), 0 4px 12px rgba(45,31,26,.06);
  --shadow-xl:  0 32px 64px rgba(45,31,26,.12);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-med:    250ms ease;
  --t-slow:   400ms ease;
}

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

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

body {
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-body);
  background-color: var(--c-blush);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-rose-dark); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-rose); }

ul, ol { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(36px, 5.5vw, 62px); }
h2 { font-size: clamp(28px, 4.2vw, 48px); font-weight: 400; }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 15px; }

em { font-style: italic; }
strong { font-weight: 600; }

/* ── LAYOUT CONTAINERS ───────────────────────────────────────── */
.site-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.site-content { flex: 1; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ── SECTION TYPOGRAPHY ──────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.section-title em { font-style: italic; color: var(--c-rose-dark); }

.section-desc {
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: var(--space-2xl);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-med);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--c-rose-dark);
  color: var(--c-white);
  border-color: var(--c-rose-dark);
}
.btn--primary:hover {
  background-color: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn--outline:hover {
  background-color: var(--c-ink);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: rgba(255,255,255,0.15);
  color: var(--c-ink);
  border-color: var(--c-ink);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background-color: var(--c-white);
  color: var(--c-ink);
}

.btn--dark {
  background-color: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}
.btn--dark:hover {
  background-color: var(--c-rose-dark);
  border-color: var(--c-rose-dark);
}

.btn--sm  { padding: 10px 22px; font-size: 12px; }
.btn--lg  { padding: 18px 44px; font-size: 14px; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--c-petal) 0%, #f0e4f7 50%, var(--c-petal) 100%);
  text-align: center;
  padding: 10px var(--space-xl);
  font-size: 13px;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}
.announcement-bar a {
  color: var(--c-rose-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-med);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.site-header__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

/* Brand */
.site-header__logo-text {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.site-header__logo-main {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.site-header__logo-sub {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* Navigation */
.site-nav { display: flex; align-items: center; gap: var(--space-lg); }
.nav__list { display: flex; align-items: center; gap: var(--space-xs); }
.nav__item { position: relative; }

.nav__link {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  text-decoration: none;
}
.nav__link:hover,
.nav__item.current-menu-item .nav__link,
.nav__item.current-menu-ancestor .nav__link {
  color: var(--c-ink);
  background: var(--c-petal);
}

.nav__cta {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white);
  background-color: var(--c-rose-dark);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  transition: all var(--t-med);
  text-decoration: none;
}
.nav__cta:hover {
  background-color: var(--c-ink);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all var(--t-med);
}

/* ── DECORATIVE PETALS ───────────────────────────────────────── */
.petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.18;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.petal--1 { width: 180px; height: 180px; background: var(--c-rose); top: -40px; right: 8%;  animation-delay: 0s; }
.petal--2 { width: 120px; height: 120px; background: var(--c-lavender); top: 20%; left: 2%; animation-delay: 1.5s; }
.petal--3 { width: 220px; height: 220px; background: var(--c-petal); bottom: 10%; right: 0; animation-delay: 3s; border-radius: 0 50% 0 50%; }
.petal--4 { width: 80px;  height: 80px;  background: var(--c-sage); top: 50%; left: 30%; animation-delay: 2s; }
.petal--5 { width: 140px; height: 140px; background: var(--c-gold); bottom: 20%; left: 5%; animation-delay: 4s; opacity: 0.1; }
.petal--cta-1 { width: 300px; height: 300px; background: var(--c-rose); top: -60px; right: -40px; animation-delay: 0s; }
.petal--cta-2 { width: 200px; height: 200px; background: var(--c-lavender); bottom: -40px; left: -20px; animation-delay: 2s; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-12px) rotate(4deg); }
  66%      { transform: translateY(6px) rotate(-3deg); }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(90vh, 780px);
  background: linear-gradient(135deg, var(--c-blush) 0%, #f5eaf7 40%, #fce8e2 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-4xl) var(--space-xl);
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.hero__petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__inner { position: relative; z-index: 2; }

.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}
.hero__title em { font-style: italic; color: var(--c-rose-dark); }

.hero__desc {
  font-size: 18px;
  line-height: 1.75;
  color: var(--c-muted);
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-xl); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}

.hero__image-wrap { position: relative; z-index: 2; }

.hero__image-blob {
  position: relative;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-petal);
  box-shadow: var(--shadow-xl);
  animation: blob-morph 10s ease-in-out infinite;
}
.hero__image { width: 100%; height: 100%; object-fit: cover; }

@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%      { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  66%      { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--c-ink);
  padding: var(--space-xl) var(--space-xl);
}
.stats-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--c-rose);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about-section {
  padding: var(--space-4xl) var(--space-xl);
  background: var(--c-cream);
}
.about-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
}
.about-section__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-section__image { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-section__image-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
  border: 1px solid var(--c-border);
}

.about-quote {
  border-left: 2px solid var(--c-rose);
  padding: 12px 20px;
  margin: var(--space-lg) 0;
  font-family: var(--f-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--c-muted);
}
.about-credentials {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-light);
  margin-bottom: var(--space-xl);
}

/* ── SERVICES SECTION ────────────────────────────────────────── */
.services-section {
  padding: var(--space-4xl) var(--space-xl);
  background: var(--c-blush);
}
.services-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--t-med);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-petal);
}
.service-card--featured {
  background: linear-gradient(135deg, #fce8e2 0%, #f5eaf7 100%);
  border-color: var(--c-rose);
}
.service-card--mini { padding: var(--space-lg); }
.service-card__icon { font-size: 28px; margin-bottom: var(--space-md); display: block; }
.service-card__title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}
.service-card__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-rose-dark);
}
.service-card__link:hover { color: var(--c-ink); }
.services-section__cta { text-align: center; margin-top: var(--space-xl); }

/* ── BLOG PREVIEW ────────────────────────────────────────────── */
.blog-preview {
  padding: var(--space-4xl) var(--space-xl);
  background: var(--c-cream);
}
.blog-preview__inner { max-width: var(--max-width); margin: 0 auto; }
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.blog-preview__cta { text-align: center; }

/* ── POST CARDS ──────────────────────────────────────────────── */
.post-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-petal);
}

.post-card__image-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.post-card:hover .post-card__image { transform: scale(1.04); }

.post-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card__cat {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
  background: var(--c-petal);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: var(--space-sm);
  text-decoration: none;
  transition: all var(--t-fast);
}
.post-card__cat:hover { background: var(--c-rose); color: var(--c-white); }

.post-card__title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--c-rose-dark); }

.post-card__excerpt {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 12px;
  color: var(--c-light);
  letter-spacing: 0.04em;
  margin-top: auto;
}

/* Featured post card */
.post-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  max-height: 400px;
}
.post-card--featured__image-wrap {
  flex: 0 0 55%;
  display: block;
  overflow: hidden;
  aspect-ratio: unset;
}
.post-card--featured__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.post-card--featured:hover .post-card--featured__image { transform: scale(1.04); }

.post-card--featured__body {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-card--featured__title {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: var(--space-md);
}
.post-card--featured__title a { color: inherit; text-decoration: none; }
.post-card--featured__title a:hover { color: var(--c-rose-dark); }
.post-card--featured__excerpt {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* Post grid layout */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.post-grid .post-card--featured {
  grid-column: 1 / -1;
}

/* ── BOOKS SECTION ───────────────────────────────────────────── */
.books-section {
  padding: var(--space-4xl) var(--space-xl);
  background: var(--c-blush);
}
.books-section__inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  text-align: left;
}
.book-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--t-med);
}
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.book-card__spine {
  height: 4px;
  background: linear-gradient(90deg, var(--c-rose), var(--c-lavender));
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}
.book-card__spine--rose { background: linear-gradient(90deg, var(--c-lavender), var(--c-sage)); }
.book-card__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
}
.book-card__title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--c-ink);
}
.book-card__desc { font-size: 15px; color: var(--c-muted); line-height: 1.7; flex: 1; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-section {
  padding: var(--space-4xl) var(--space-xl);
  background: linear-gradient(135deg, #fce8e2 0%, #f5eaf7 100%);
}
.testimonials-section__inner { max-width: var(--max-width); margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.testimonial {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
}
.testimonial__petals {
  font-size: 32px;
  color: var(--c-rose);
  opacity: 0.4;
  margin-bottom: var(--space-md);
  line-height: 1;
}
.testimonial__body {
  font-family: var(--f-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--c-body);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.testimonial__author { border-top: 1px solid var(--c-border); padding-top: var(--space-md); }
.testimonial__name {
  display: block;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 2px;
}
.testimonial__detail {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
}

/* ── HOMEPAGE FINAL CTA ──────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) var(--space-xl);
  background: var(--c-cream);
  text-align: center;
}
.cta-section__inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-section__title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: var(--space-lg);
}
.cta-section__title em { color: var(--c-rose-dark); font-style: italic; }
.cta-section__desc {
  font-size: 18px;
  color: var(--c-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.cta-section__note {
  margin-top: var(--space-md);
  font-size: 13px;
  color: var(--c-light);
  letter-spacing: 0.04em;
}

/* ── ARCHIVE PAGE HEADER ─────────────────────────────────────── */
.archive-header {
  background: linear-gradient(135deg, var(--c-blush) 0%, #f5eaf7 100%);
  padding: var(--space-3xl) var(--space-xl);
  border-bottom: 1px solid var(--c-border);
}
.archive-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.archive-header__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
  margin-bottom: var(--space-sm);
}
.archive-header__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: var(--space-md);
}
.archive-header__desc {
  font-size: 18px;
  color: var(--c-muted);
  max-width: 560px;
}

/* Archive layout */
.archive-wrap {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  align-items: start;
}
.archive-wrap__inner { min-width: 0; }

/* ── SINGLE POST ─────────────────────────────────────────────── */

/* Post hero */
.post-hero {
  background: linear-gradient(135deg, var(--c-blush) 0%, #f5eaf7 60%, #fce8e2 100%);
  padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
  border-bottom: 1px solid var(--c-border);
}
.post-hero__inner {
  max-width: var(--max-width-text);
  margin: 0 auto;
}
.post-hero__meta-top { margin-bottom: var(--space-md); }
.post-hero__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}
.post-hero__excerpt {
  font-family: var(--f-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
  border-left: 2px solid var(--c-rose);
  padding-left: var(--space-lg);
}
.post-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--c-border);
}
.post-hero__author { display: flex; align-items: center; gap: var(--space-md); }
.post-hero__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.post-hero__author-name { display: block; font-size: 14px; font-weight: 500; color: var(--c-ink); }
.post-hero__date-read { font-size: 13px; color: var(--c-light); }
.post-hero__share { display: flex; align-items: center; gap: var(--space-sm); }
.post-hero__share-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-light); }
.post-hero__share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  transition: all var(--t-fast);
}
.post-hero__share-btn:hover {
  background: var(--c-rose-dark);
  border-color: var(--c-rose-dark);
  color: var(--c-white);
}

/* Featured image */
.post-featured-image {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  transform: translateY(-24px);
}
.post-featured-image__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Post body layout */
.post-body {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl) var(--space-3xl);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* Table of contents */
.toc {
  position: sticky;
  top: 90px;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.toc__title {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
  margin-bottom: var(--space-md);
}
.toc__list { display: flex; flex-direction: column; gap: 6px; }
.toc__item { }
.toc__link {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--t-fast);
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
}
.toc__link:hover, .toc__link.active {
  color: var(--c-rose-dark);
  border-left-color: var(--c-rose);
}

/* Post content area */
.post-content {
  font-family: var(--f-sans);
  font-size: 18px;
  line-height: 1.85;
  color: var(--c-body);
  max-width: var(--max-width-text);
}

.post-content p { margin-bottom: 1.6em; }

.post-content h2 {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--c-ink);
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--c-border);
}

.post-content h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--c-ink);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.post-content a {
  color: var(--c-rose-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content a:hover { color: var(--c-ink); }

.post-content ul, .post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.6em;
  list-style: disc;
}
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5em; }
.post-content ul li::marker { color: var(--c-rose); }

.post-content blockquote {
  position: relative;
  border: none;
  background: linear-gradient(135deg, #fce8e2 0%, #f5eaf7 100%);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}
.post-content blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-xl);
  font-family: var(--f-display);
  font-size: 80px;
  color: var(--c-rose);
  opacity: 0.4;
  line-height: 1;
}
.post-content blockquote p {
  font-family: var(--f-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.post-content blockquote cite {
  font-family: var(--f-sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
}

.post-content hr {
  border: none;
  height: 1px;
  background: var(--c-border);
  margin: var(--space-2xl) 0;
}

.post-content figure {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.post-content img {
  border-radius: var(--radius-md);
}
.post-content figcaption {
  font-size: 13px;
  color: var(--c-light);
  text-align: center;
  font-style: italic;
  margin-top: 10px;
  padding: 0 var(--space-lg);
}

/* Gutenberg group blocks (about box, key takeaways) */
.post-content .wp-block-group {
  background: var(--c-cream) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--radius-md) !important;
  padding: var(--space-xl) !important;
  margin: var(--space-xl) 0 !important;
}

/* Post tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--c-border);
  margin-top: var(--space-xl);
}
.post-tag {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  transition: all var(--t-fast);
  text-decoration: none;
}
.post-tag:hover {
  background: var(--c-rose-dark);
  border-color: var(--c-rose-dark);
  color: var(--c-white);
}

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--c-border);
  margin-top: var(--space-xl);
}
.post-nav__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-lg);
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--t-med);
}
.post-nav__item:hover { border-color: var(--c-rose); background: var(--c-petal); }
.post-nav__item--next { text-align: right; }
.post-nav__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
}
.post-nav__title {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.3;
}

/* ── POST CTA BAND ───────────────────────────────────────────── */
.post-cta-band {
  background: linear-gradient(135deg, #fce8e2 0%, #f5eaf7 100%);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  border-top: 1px solid var(--c-petal);
  border-bottom: 1px solid var(--c-petal);
}
.post-cta-band__inner { max-width: 600px; margin: 0 auto; }
.post-cta-band__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-rose-dark);
  margin-bottom: var(--space-sm);
}
.post-cta-band__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: var(--space-md);
}
.post-cta-band__text {
  color: var(--c-muted);
  margin-bottom: var(--space-xl);
  font-size: 17px;
  line-height: 1.7;
}
.post-cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-rose-dark);
  color: var(--c-white);
  border-radius: var(--radius-full);
  padding: 16px 36px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t-med);
}
.post-cta-band__btn:hover {
  background: var(--c-ink);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── RELATED POSTS ───────────────────────────────────────────── */
.related-posts {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--c-cream);
}
.related-posts__inner { max-width: var(--max-width); margin: 0 auto; }
.related-posts__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: var(--space-xl);
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.related-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-med);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card__image-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.related-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.related-card:hover .related-card__image { transform: scale(1.04); }
.related-card__body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; gap: 6px; }
.related-card__title { font-family: var(--f-display); font-size: 17px; font-weight: 500; color: var(--c-ink); line-height: 1.35; flex: 1; }
.related-card__title a { color: inherit; text-decoration: none; }
.related-card__title a:hover { color: var(--c-rose-dark); }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: sticky;
  top: 90px;
}
.sidebar-widget {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.sidebar-widget--about { background: linear-gradient(135deg, #fce8e2 0%, #f5eaf7 100%); border-color: var(--c-petal); }
.sidebar-widget--cta   { background: var(--c-ink); border-color: var(--c-ink); }

.sidebar-about { text-align: center; }
.sidebar-about__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--c-white);
  box-shadow: var(--shadow-sm);
}
.sidebar-about__name { font-family: var(--f-display); font-size: 18px; color: var(--c-ink); margin-bottom: 8px; }
.sidebar-about__bio { font-size: 14px; color: var(--c-muted); line-height: 1.65; margin-bottom: var(--space-lg); }

.widget__title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--c-petal);
}

/* Categories */
.sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.sidebar-cats__item { }
.sidebar-cats__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  transition: color var(--t-fast);
}
.sidebar-cats__link:hover { color: var(--c-rose-dark); }
.sidebar-cats__count {
  font-size: 12px;
  background: var(--c-petal);
  color: var(--c-rose-dark);
  border-radius: var(--radius-full);
  padding: 2px 8px;
}

/* Recent posts */
.sidebar-recent { display: flex; flex-direction: column; gap: var(--space-md); }
.sidebar-recent__item { display: flex; gap: var(--space-md); align-items: flex-start; }
.sidebar-recent__thumb-link { flex: 0 0 70px; }
.sidebar-recent__thumb {
  width: 70px; height: 55px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.sidebar-recent__body { flex: 1; }
.sidebar-recent__title {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.35;
  margin-bottom: 4px;
  text-decoration: none;
}
.sidebar-recent__title:hover { color: var(--c-rose-dark); }
.sidebar-recent__date { font-size: 12px; color: var(--c-light); }

/* CTA widget */
.sidebar-cta__eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-rose); margin-bottom: 8px; }
.sidebar-cta__title { font-family: var(--f-display); font-size: 20px; font-weight: 400; color: var(--c-white); margin-bottom: var(--space-sm); }
.sidebar-cta__text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: var(--space-lg); }

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination { margin-top: var(--space-2xl); }
.pagination__list { display: flex; gap: var(--space-sm); flex-wrap: wrap; align-items: center; }
.pagination__item a,
.pagination__item .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--c-muted);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  text-decoration: none;
  transition: all var(--t-fast);
}
.pagination__item a:hover {
  background: var(--c-rose-dark);
  border-color: var(--c-rose-dark);
  color: var(--c-white);
}
.pagination__item .current {
  background: var(--c-rose-dark);
  border-color: var(--c-rose-dark);
  color: var(--c-white);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--c-dark); }

.footer-widgets { padding: var(--space-3xl) var(--space-xl); }
.footer-widgets__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
}

.footer-col--brand { }
.footer-logo { display: inline-block; margin-bottom: var(--space-lg); text-decoration: none; }
.footer-logo__main {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 4px;
}
.footer-logo__tagline {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-bio { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: var(--space-lg); }

.footer-social { display: flex; gap: var(--space-sm); }
.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: all var(--t-fast);
  text-decoration: none;
}
.footer-social__link:hover {
  background: var(--c-rose-dark);
  border-color: var(--c-rose-dark);
  color: var(--c-white);
}

.footer-col__title {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-nav li a:hover { color: var(--c-rose); }

.footer-cta-text { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: var(--space-lg); }
.footer-cta-btn {
  display: inline-block;
  background: var(--c-rose-dark);
  color: var(--c-white);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: var(--space-md);
  transition: all var(--t-med);
}
.footer-cta-btn:hover { background: var(--c-white); color: var(--c-ink); }
.footer-cta-note { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) var(--space-xl);
}
.footer-bottom__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-copyright, .footer-legal { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copyright a, .footer-legal a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-copyright a:hover, .footer-legal a:hover { color: var(--c-rose); }

/* ── COMMENTS ────────────────────────────────────────────────── */
.post-comments { background: var(--c-cream); }
.post-comments__inner { max-width: var(--max-width-text); margin: 0 auto; padding: var(--space-3xl) var(--space-xl); }

.comments-area h2 { font-family: var(--f-display); font-size: 28px; font-weight: 400; color: var(--c-ink); margin-bottom: var(--space-xl); }

.comment { padding: var(--space-lg) 0; border-bottom: 1px solid var(--c-border); }
.comment-author .avatar { border-radius: 50%; width: 44px; height: 44px; }
.comment-metadata { font-size: 13px; color: var(--c-light); }

#respond { margin-top: var(--space-xl); }
#respond h3 { font-family: var(--f-display); font-size: 24px; font-weight: 400; color: var(--c-ink); margin-bottom: var(--space-lg); }

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--c-body);
  background: var(--c-white);
  transition: border-color var(--t-fast);
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--c-rose);
}
.comment-form textarea { min-height: 140px; resize: vertical; }

.comment-form input[type="submit"] {
  width: auto;
  background: var(--c-rose-dark);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-med);
}
.comment-form input[type="submit"]:hover { background: var(--c-ink); }

/* ── UTILITIES ───────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

::selection { background: rgba(232,169,154,0.3); color: var(--c-ink); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-cream); }
::-webkit-scrollbar-thumb { background: var(--c-rose); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-rose-dark); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--c-rose-dark);
  outline-offset: 3px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin: 0 auto var(--space-xl); }
  .hero__trust { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__image-wrap { max-width: 400px; margin: 0 auto; }

  .footer-widgets__inner { grid-template-columns: 1fr 1fr; }

  .about-section__inner { grid-template-columns: 1fr; }
  .about-section__image-col { max-width: 480px; margin: 0 auto; }

  .post-body { grid-template-columns: 1fr; }
  .post-body__sidebar { display: none; }
  .post-content { max-width: 100%; }

  .archive-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

@media (max-width: 900px) {
  :root { --space-xl: 28px; --space-2xl: 48px; --space-3xl: 64px; --space-4xl: 80px; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .post-card--featured { flex-direction: column; max-height: unset; }
  .post-card--featured__image-wrap { flex: unset; aspect-ratio: 16/9; }
  .post-card--featured__body { padding: var(--space-xl); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .related-posts__grid { grid-template-columns: 1fr 1fr; }
  .footer-widgets__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
}

@media (max-width: 640px) {
  :root { --space-xl: 20px; }

  .site-header__inner { padding: 0 var(--space-xl); }
  .nav__list, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* Mobile nav open state */
  .nav__list.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--c-cream);
    border-top: 1px solid var(--c-border);
    padding: var(--space-xl);
    gap: var(--space-sm);
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }
  .nav__list.is-open + .nav__cta {
    display: block;
    text-align: center;
    margin-top: var(--space-sm);
  }

  .hero { padding: var(--space-2xl) var(--space-xl); min-height: unset; }
  .hero__image-wrap { max-width: 300px; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .services-grid { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .related-posts__grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .announcement-bar { font-size: 12px; padding: 8px var(--space-md); }

  .footer-widgets { padding: var(--space-2xl) var(--space-xl); }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
}
