/*
Theme Name: Heart Sage
Theme URI: https://heartsagecounselling.ca
Author: Heart Sage Counselling
Description: Custom theme for Heart Sage Counselling — calm, attachment-informed counselling practice in Moose Jaw, SK. Sage Green / Warm Sand / Soft Beige design system, Lora + Inter (Noto Serif TC / Noto Sans TC for Traditional Chinese).
Version: 1.0.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: heart-sage
*/

/* ============================================================
   Heart Sage Counselling — design system
   Sage Green #4a5530 · Warm Sand #c8a951 · Soft Beige #f5f2ed
   Headings: Lora (serif) · Body: Inter (sans)
   ============================================================ */

:root {
  --sage: #4a5530;
  --sage-deep: #3a4326;
  --sage-soft: #6b8e3e;
  --sand: #c8a951;
  --beige: #f5f2ed;
  --ink: #333333;
  --ink-soft: #555555;
  --line: #e6e0d8;
  --white: #ffffff;
  --serif: "Lora", "Noto Serif TC", Georgia, serif;
  --sans: "Inter", "Noto Sans TC", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

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

/* Traditional Chinese pages (template adds .hs-zh to body) */
body.hs-zh { font-family: "Noto Sans TC", "Inter", sans-serif; }
body.hs-zh h1, body.hs-zh h2, body.hs-zh h3, body.hs-zh h4,
body.hs-zh .big-quote, body.hs-zh .soft-quote,
body.hs-zh .hero__tagline, body.hs-zh .site-footer__brand {
  font-family: "Noto Serif TC", "Lora", serif;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--sage);
  line-height: 1.3;
  margin: 0 0 16px 0;
  text-wrap: balance;
}

p { margin: 0 0 1.2em 0; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--sage); }

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

/* ---------- layout ---------- */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow { max-width: 800px; }

section { padding: 80px 0; }

.bg-beige { background: var(--beige); }
.bg-sage  { background: var(--sage); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand__mark {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sage);
  letter-spacing: 0.2px;
}

.brand__sub {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover { color: var(--sage); }

.site-nav a[aria-current="page"] {
  color: var(--sage);
  border-bottom-color: var(--sand);
}

.site-nav .nav-lang {
  font-size: 14px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
}

.site-nav .nav-lang:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.site-nav .nav-book {
  background: var(--sage);
  color: var(--white);
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: none;
  transition: background 0.25s;
}

.site-nav .nav-book:hover {
  background: var(--sand);
  color: var(--white);
}

/* ---------- nav dropdown ---------- */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown__caret {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  flex: none;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(40, 45, 25, 0.12);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 280px;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: flex;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  border-bottom: none;
  font-size: 15px;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover {
  background: var(--beige);
  color: var(--sage);
}

.nav-dropdown__menu a[aria-current="page"] {
  color: var(--sage);
  background: var(--beige);
  border-bottom: none;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 4px;
  background: var(--sage);
  color: var(--white);
  border: 1px solid var(--sage);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  cursor: pointer;
}

.btn:hover { background: var(--sand); border-color: var(--sand); }

.btn--outline {
  background: transparent;
  color: var(--sage);
}

.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
}

.btn--small { padding: 10px 22px; font-size: 14px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px;
  overflow: hidden;
  background: var(--beige);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 95% at 50% 55%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 55%, rgba(255, 255, 255, 0.42) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  pointer-events: none;
}

.hero__content a { pointer-events: auto; }

.hero h1 {
  font-size: 56px;
  color: #2c3418;
  margin-bottom: 18px;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.8);
}

.hero__subtitle {
  font-size: 24px;
  color: #222222;
  margin-bottom: 6px;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8);
}

.hero__subtitle--secondary {
  font-size: 18px;
  color: #3c3c3c;
  margin-bottom: 22px;
  font-weight: 400;
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: #6f5817;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.hero .btn {
  font-size: 17px;
  padding: 17px 38px;
}

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  text-align: center;
  padding: 88px 32px 72px;
  background: var(--beige);
}

.page-hero h1 { font-size: 46px; margin-bottom: 12px; }

.page-hero__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
}

/* ---------- section headings ---------- */

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: 36px; }
.section-head .section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- cards ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  padding: 30px;
  border-left: 4px solid var(--sand);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.value-card h3 { font-size: 21px; margin-bottom: 10px; }
.value-card p { color: var(--ink-soft); font-size: 15.5px; }

.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stage-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--sage);
  border-radius: 0 0 8px 8px;
  padding: 28px 25px;
}

.stage-card__icon {
  height: 132px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
}

.stage-card__icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 50% 18%;
}

.stage-card h3 { font-size: 20px; margin-bottom: 10px; }
.stage-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* ---------- two-column feature ---------- */

.feature-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-2col h2 { font-size: 34px; }

/* ---------- quotes & callouts ---------- */

.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--sage);
  text-align: center;
  margin: 0 auto 32px;
  max-width: 760px;
  line-height: 1.5;
}

.soft-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 700px;
  margin: 48px auto 0;
}

.callout-box {
  background: var(--white);
  border-left: 4px solid var(--sand);
  padding: 25px 28px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--sage-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 32px;
  font-size: 15px;
}

.site-footer a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.site-footer a:hover { color: var(--sand); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer h4 {
  color: var(--sand);
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer__brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer__legal {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* ============================================================
   Page-specific styles
   ============================================================ */

/* ---------- About ---------- */

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.training-card {
  background: var(--white);
  padding: 28px;
  border-radius: 10px;
  border-left: 4px solid var(--sand);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.training-card h3 { font-size: 20px; margin-bottom: 12px; }

.training-card ul {
  color: var(--ink-soft);
  line-height: 1.8;
  padding-left: 18px;
  margin: 0;
  font-size: 14.5px;
}

.training-card ul li + li { margin-top: 6px; }

.sage-quote-band {
  background: var(--sage);
  text-align: center;
  padding: 72px 32px;
}

.sage-quote-band p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}

.therapist-quote {
  border-left: 4px solid var(--sand);
  margin: 24px 0;
  padding: 4px 0 4px 24px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
}

.therapist-quote .attribution {
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--sage);
  font-weight: 600;
}

/* ---------- Services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 32px 30px;
  border-radius: 8px;
  border-top: 3px solid var(--sage);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card__icon {
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
}

.service-card__icon img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: 50% 18%;
}

.service-card h3 { font-size: 22px; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 15.5px; }

.art-callout {
  background: var(--beige);
  border-radius: 10px;
  padding: 48px 44px;
  max-width: 980px;
  margin: 0 auto;
}

.art-callout h2 { font-size: 30px; margin-bottom: 4px; }

.art-callout .art-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sand);
  font-size: 18px;
  margin-bottom: 18px;
}

/* ---------- Fees & Booking ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.price-card h3 { font-size: 24px; margin-bottom: 18px; }

.price-card .price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--sage);
  line-height: 1.1;
}

.price-card .price-unit {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 6px 0 18px;
}

.price-card .details {
  font-size: 15px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.coverage-panel {
  background: var(--beige);
  border-radius: 8px;
  padding: 44px 48px;
  max-width: 880px;
  margin: 0 auto;
}

.coverage-panel h2 { text-align: center; font-size: 30px; }

.coverage-panel ul {
  margin: 18px 0;
  padding-left: 22px;
  line-height: 2;
}

.coverage-panel ul li::marker { color: var(--sage); }

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.insurance-col {
  padding: 24px 28px;
  border-left: 4px solid var(--sage);
  background: var(--white);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.insurance-col h3 { font-size: 21px; }
.insurance-col p { font-size: 15.5px; color: var(--ink-soft); }

.pay-block { max-width: 760px; margin: 0 auto; }
.pay-block h3 { font-size: 20px; margin-top: 28px; }

/* ---------- What is EFT ---------- */

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}

.stage-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
}

.stage-step__num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}

.stage-step h3 { font-size: 21px; margin-bottom: 10px; }
.stage-step p { color: var(--ink-soft); font-size: 15.5px; }

.eft-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}

.who-card {
  background: var(--white);
  border-left: 4px solid var(--sand);
  border-radius: 0 8px 8px 0;
  padding: 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.who-card h3 { font-size: 20px; margin-bottom: 8px; }

.who-card .who-sub {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 12px;
}

.who-card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Focusing-Oriented Art Therapy ---------- */

.session-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.session-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--sage);
  border-radius: 0 0 8px 8px;
  padding: 26px 24px;
}

.session-step__num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 12px;
}

.session-step h3 { font-size: 19px; margin-bottom: 8px; }
.session-step p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; }

.helps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 36px auto 0;
}

.helps-card {
  background: var(--white);
  border-left: 4px solid var(--sand);
  border-radius: 0 8px 8px 0;
  padding: 26px 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.helps-card h3 { font-size: 18px; margin-bottom: 8px; }
.helps-card p { color: var(--ink-soft); font-size: 15px; }

.myth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.myth-card {
  background: var(--white);
  border-left: 4px solid var(--sand);
  border-radius: 0 8px 8px 0;
  padding: 26px 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.myth-card h3 { font-size: 18px; margin-bottom: 8px; }
.myth-card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-row .icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-row .label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-row .value {
  font-size: 18px;
  color: var(--sage);
  font-weight: 500;
  text-decoration: none;
}

.contact-row .value:hover { text-decoration: underline; }

.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.booking-card h3 { font-size: 22px; }
.booking-card p { color: var(--ink-soft); font-size: 15.5px; max-width: 340px; }

.formats-panel {
  background: var(--beige);
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--ink-soft);
}

/* ============================================================
   Blog (designed to match — not part of the prototype bundle)
   ============================================================ */

/* leaf-banner hero variant (blog index + single posts) */

.page-hero--leaf {
  position: relative;
  overflow: hidden;
}

.page-hero--leaf .page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--leaf .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--leaf .page-hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 95% at 50% 55%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 55%, rgba(255, 255, 255, 0.5) 100%);
  pointer-events: none;
}

.page-hero--leaf .page-hero__content {
  position: relative;
  z-index: 2;
}

.post-list {
  display: grid;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.post-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.25s, transform 0.25s;
}

.post-card:hover {
  box-shadow: 0 14px 30px rgba(40, 45, 25, 0.1);
  transform: translateY(-2px);
}

.post-card__thumb {
  display: block;
  min-height: 230px;
  background: var(--beige);
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card__body {
  padding: 30px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.post-card__meta {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 8px;
}

.post-card__title {
  font-size: 26px;
  margin-bottom: 10px;
}

.post-card__title a {
  color: var(--sage);
  text-decoration: none;
}

.post-card__title a:hover { color: var(--sage-soft); }

.post-card__excerpt {
  color: var(--ink-soft);
  font-size: 15.5px;
}

.post-card__excerpt p { margin-bottom: 14px; }

.post-card__more {
  font-size: 15px;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
}

.post-card__more:hover { color: var(--sand); }

.post-pagination {
  text-align: center;
  margin-top: 48px;
  font-family: var(--sans);
}

.post-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.post-pagination .page-numbers {
  display: inline-block;
  min-width: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
}

.post-pagination .page-numbers.current {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.post-pagination .page-numbers:hover:not(.current) {
  border-color: var(--sage);
  color: var(--sage);
}

/* single post */

.post-hero {
  text-align: center;
  padding: 80px 32px 60px;
  background: var(--beige);
}

.post-hero h1 {
  font-size: 42px;
  max-width: 860px;
  margin: 0 auto 14px;
}

.post-hero__meta {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
}

.post-content h2 { font-size: 30px; margin-top: 44px; }
.post-content h3 { font-size: 23px; margin-top: 36px; }

.post-content img {
  border-radius: 10px;
  margin: 28px auto;
}

.post-content figure {
  margin: 32px 0 36px;
}

.post-content figure img {
  margin: 0 auto;
}

.post-content figcaption {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  padding-top: 10px;
}

.post-content blockquote {
  border-left: 4px solid var(--sand);
  margin: 28px 0;
  padding: 4px 0 4px 24px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
}

.post-content ul, .post-content ol {
  padding-left: 24px;
  margin: 0 0 1.2em;
  line-height: 1.9;
}

.post-content li::marker { color: var(--sage); }

.post-footer-nav {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 15px;
}

.post-footer-nav a {
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
}

.post-footer-nav a:hover { color: var(--sand); }

/* generic page fallback (e.g. Bookly booking page) */

.page-plain {
  max-width: 860px;
  margin: 0 auto;
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero h1 { font-size: 42px; }
  .values-grid { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-2col { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-nav { gap: 16px; flex-wrap: wrap; }
  .site-header__inner { height: auto; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .stages-grid, .eft-who-grid { grid-template-columns: 1fr; }
  .session-steps { grid-template-columns: repeat(2, 1fr); }
  .myth-grid, .helps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; }
  .pricing-grid, .insurance-grid { grid-template-columns: 1fr; }
  .coverage-panel { padding: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-card__thumb { min-height: 0; height: 190px; }
}

@media (max-width: 600px) {
  .stage-grid { grid-template-columns: 1fr; }
  .session-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 34px; }
  .post-hero h1 { font-size: 30px; }
  .section-head h2 { font-size: 29px; }
  .post-card__body { padding: 24px 24px 28px; }
}
