/* SmartQMS — main.css
   Brand palette: PDF style guide (charcoal, coral, teal, taupe, soft grey, bright orange)
   Typography (hybrid): Fraunces display | Montserrat headings | Open Sans body | Lato callouts
*/

:root {
  /* Brand palette */
  --charcoal: #262626;
  --coral: #D4664A;
  --bright-orange: #EF4823;
  --teal: #82BEBF;
  --taupe: #B98371;
  --soft-grey: #9DA198;

  /* Site palette */
  --bg: #FFFFFF;              /* default page background — pure white */
  --surface: #FFFFFF;          /* cards / surfaces */
  --bg-tint-teal: #EFF7F7;     /* very pale on-brand teal — alternating section */
  --bg-tint-warm: #F7F5F2;     /* very pale warm neutral — alternating section */
  --bg-deep: #F2F0EC;          /* slightly more present warm tint — feature blocks */
  --text: var(--charcoal);
  --text-muted: #555555;       /* warm-neutral muted text */
  --text-soft: #8A8A8A;        /* warm-neutral soft text */
  --border: #E8E5E0;           /* warm-neutral border */
  --accent: var(--coral);
  --accent-emphasis: var(--bright-orange);
  --secondary: var(--teal);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-heading: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-callout: 'Lato', system-ui, sans-serif;

  /* Type scale */
  --fs-hero: clamp(2.6rem, 5.2vw + 0.5rem, 5.25rem);
  --fs-h1: clamp(2rem, 3vw + 0.75rem, 3.25rem);
  --fs-h2: clamp(1.5rem, 1.8vw + 1rem, 2.25rem);
  --fs-h3: 1.5rem;
  --fs-body: 1.0625rem;

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 5rem;
  --sp-7: 7rem;

  /* Layout */
  --container: 1320px;          /* wider for desktop, matching modern professional sites */
  --container-narrow: 920px;    /* article reading width */

  /* Radius */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;

  /* Shadow */
  --shadow-sm: 0 4px 16px rgba(38, 38, 38, 0.04);
  --shadow-md: 0 12px 36px rgba(38, 38, 38, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Skip nav ---------- */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--charcoal); color: #fff; padding: 0.5rem 0.75rem; border-radius: 4px; z-index: 999; }

/* ---------- Typography ---------- */
.display { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }

/* DM Serif Display only ships at weight 400 (it's a heavy display weight by design).
   Force 400 anywhere the display font is used so browsers don't synthesise fake bold. */
.section__title,
.hero__title,
.testimonials-split__title,
.post__title,
.blog-hero__title,
.final-cta h2,
.readiness__title,
.compliance__title,
.results__cta h2 {
  font-weight: 400;
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: var(--sp-2);
  padding-bottom: 0.35rem;
  border-bottom: 1.5px solid rgba(130, 190, 191, 0.45);
}
.callout { font-family: var(--font-callout); font-style: italic; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; width: 100%; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; width: 100%; }
@media (max-width: 560px) {
  .container, .container-narrow { padding: 0 20px; }
}
section { padding: var(--sp-6) 0; }

.section__head { max-width: 740px; margin-bottom: var(--sp-5); }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  margin-bottom: var(--sp-2);
}
.section__title .accent { color: var(--accent); font-style: italic; }
.section__sub { font-size: 1.125rem; color: var(--text-muted); max-width: 38em; }

.bg-surface   { background: var(--surface); }
.bg-white     { background: #FFFFFF; }
.bg-tint-teal { background: var(--bg-tint-teal); }
.bg-tint-warm { background: var(--bg-tint-warm); }
.bg-deep      { background: var(--bg-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn--primary { background: var(--bright-orange); color: #fff; border-color: var(--bright-orange); }
.btn--primary:hover { background: #d83c1a; border-color: #d83c1a; color: #fff; }
.btn--ghost { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn--ghost:hover { background: #000; }
.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: #fff; }
.btn--inverse-primary { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn--inverse-primary:hover { background: var(--coral); color: #fff; border-color: var(--coral); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 74px;
}
.header__logo {
  /* Never let the logo absorb flex shrink: its height is fixed, so shrinking
     the box squashes the image horizontally rather than scaling it. */
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.header__logo .accent { color: var(--bright-orange); }
.header__logo img {
  height: 34px;
  width: auto;
  max-width: none;      /* the global img reset would cap width and distort it */
  display: block;
}
.footer .header__logo img { height: 48px; }
/* Below 600px the header cannot fit logo + full-length CTA + burger, so the
   button drops to its short label and the gaps tighten. */
.btn__short { display: none; }
@media (max-width: 600px) {
  .header__inner .btn__long { display: none; }
  .header__inner .btn__short { display: inline; }
  .header__inner > .btn { padding: 10px 14px; font-size: 13px; }
  .header__logo img { height: 26px; }
  .header__inner { height: 64px; gap: 20px; }
}
.nav { display: flex; align-items: center; gap: 30px; margin-left: 8px; }
.nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--charcoal);
  transition: color 0.15s ease;
  text-decoration: none;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--bright-orange); }
.header .btn {
  margin-left: auto;
  padding: 11px 18px;
  font-size: 14px;
}
@media (max-width: 820px) {
  .nav { display: none; }
}

/* ---------- Hero (two-column: copy + portrait, with stats strip) ---------- */
.hero {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-tint-warm) 100%);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero .hero__eyebrow, .hero .eyebrow.hero__eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: none;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0;
  text-wrap: balance;
}
.hero__title em, .hero__title .accent {
  font-style: italic;
  color: var(--bright-orange);
  font-weight: 400;
}
.hero__sub {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 26px 0 0;
  max-width: 54ch;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }
.hero__credibility {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin: 26px 0 0;
  line-height: 1.5;
}

/* Portrait column */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
  width: 100%;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* hero-portrait.jpg is already exported at 4:5, so cover is a no-op for it.
     The upward bias only matters if a taller photo is swapped in later —
     a centred crop would clip heads. */
  object-position: center 28%;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4), transparent 60%),
    linear-gradient(135deg, var(--teal) 0%, var(--taupe) 70%, var(--coral) 100%);
  display: block;
  box-shadow: 0 24px 60px rgba(38, 38, 38, 0.12);
}
.hero__badge {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(38, 38, 38, 0.22);
}
.hero__badge-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  color: var(--teal);
}
.hero__badge-small {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

/* Stats strip below the two-column */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
}
.hero__stat { display: flex; gap: 14px; align-items: flex-start; }
.hero__stat-icon { color: var(--teal); flex: 0 0 auto; margin-top: 3px; display: flex; }
.hero__stat-text { display: flex; flex-direction: column; gap: 3px; }
.hero__stat-big {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.hero__stat-small {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero__title { font-size: 60px; }
}
@media (max-width: 880px) {
  .hero { padding: 56px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 440px; margin: 0 auto; }
  .hero__stats { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
  .hero__title { font-size: 52px; }
}
@media (max-width: 560px) {
  .hero__title { font-size: 42px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__badge { left: 0; bottom: -18px; padding: 14px 18px; }
  .hero__badge-big { font-size: 36px; }
}

/* ---------- Trust strip ---------- */
.trust {
  padding: var(--sp-3) 0;
  background: var(--surface);
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3) var(--sp-5);
  text-align: center;
}
.trust__item {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust__item strong { color: var(--charcoal); font-weight: 700; }

/* ---------- Pathway cards ---------- */
.pathway-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 720px) { .pathway-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .pathway-grid { grid-template-columns: repeat(3, 1fr); } }
.pathway-card {
  display: block;
  background: var(--surface);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pathway-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 102, 74, 0.4);
}
.pathway-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--bg);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-3);
}
.pathway-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.pathway-card__title .new {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  background: var(--coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.pathway-card__desc { color: var(--text-muted); font-size: 0.9875rem; }
.pathway-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--sp-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
}

/* ---------- Method ---------- */
.method-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 880px) { .method-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .method-grid--pairs { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); } }
.method-card {
  background: var(--surface);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border-top: 4px solid var(--bright-orange);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.method-card:nth-child(2) { border-top-color: var(--teal); }
.method-card:nth-child(3) { border-top-color: var(--taupe); }
.method-card__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0.3rem 0.85rem;
  background: var(--bg);
  border-radius: 999px;
  margin-bottom: var(--sp-3);
}
.method-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: var(--sp-2);
  color: var(--charcoal);
  line-height: 1.3;
}
.method-card__list { list-style: none; padding: 0; }
.method-card__list li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.method-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--bright-orange);
}
.method-card:nth-child(2) .method-card__list li::before { background: var(--teal); }
.method-card:nth-child(3) .method-card__list li::before { background: var(--taupe); }

/* ---------- Case cards ---------- */
.cases-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 760px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
.case-card {
  background: var(--surface);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.case-card__tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-2);
}
.case-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.0625rem;
  margin-bottom: var(--sp-2);
  line-height: 1.4;
  color: var(--charcoal);
}
.case-card__list { list-style: none; padding: 0; }
.case-card__list li {
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.case-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

/* ---------- Compliance bar ---------- */
.compliance { background: var(--charcoal); color: #fff; padding: var(--sp-5) 0; }
.compliance__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--sp-3);
}
.compliance__grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 720px) { .compliance__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .compliance__grid { grid-template-columns: repeat(5, 1fr); } }
.compliance__item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: #fff;
}
.compliance__item p { color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; line-height: 1.55; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 880px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--surface);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.testimonial__quote {
  font-family: var(--font-callout);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--sp-3);
  color: var(--text);
  flex: 1;
}
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--taupe));
  flex-shrink: 0;
}
.testimonial__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--charcoal);
}
.testimonial__role { color: var(--text-muted); font-size: 0.8125rem; line-height: 1.4; }

/* ---------- Testimonial split (heading left, one card right) ---------- */
.testimonials-split {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
  align-items: center;
  padding: var(--sp-3) 0;
}
@media (min-width: 880px) {
  .testimonials-split {
    grid-template-columns: 1fr 1.35fr;
    gap: var(--sp-6);
  }
}

.testimonials-split__intro { max-width: 32em; }
.testimonials-split__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
}
.testimonials-split__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.testimonials-split__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.testimonials-split__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .testimonials-split__nav { justify-content: center; }
}
.t-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--charcoal);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.t-nav:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(130, 190, 191, 0.08);
}
.t-nav:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}
.t-nav__count {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-muted);
  min-width: 3.2em;
  text-align: center;
}

.testimonials-split__card-area {
  position: relative;
  display: grid;
  min-height: 320px;
}
.t-quote {
  grid-area: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.t-quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}
.t-quote__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--teal);
  opacity: 0.4;
  margin-bottom: var(--sp-2);
  user-select: none;
}
.t-quote__text {
  font-family: var(--font-callout);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
  flex: 1;
}
.t-quote__author {
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
}
.t-quote__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.t-quote__role {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

@media (max-width: 600px) {
  .testimonials-split__card-area { min-height: 360px; }
  .t-quote { padding: var(--sp-4); }
  .t-quote__mark { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .t-quote { transition: opacity 0.15s ease; transform: none; }
  .t-quote.is-active { transform: none; }
}

/* ---------- Founder ---------- */
.founder { background: var(--bg-deep); padding: var(--sp-6) 0; }
.founder__grid { display: grid; gap: var(--sp-5); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) { .founder__grid { grid-template-columns: 1fr 1.7fr; } }
.founder__photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35), transparent 60%),
    linear-gradient(135deg, var(--teal), var(--coral));
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.founder__photo-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}
.founder__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}
.founder__role {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--sp-3);
}
.founder__bio { font-size: 1.0625rem; line-height: 1.7; margin-bottom: var(--sp-2); color: var(--text); }
.team-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.team-mini__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.team-mini__item { font-family: var(--font-heading); font-size: 0.875rem; color: var(--text-muted); }

/* ---------- Newsletter sign-up ---------- */
/* Posts to Substack with a plain GET form — no JavaScript and no third-party
   embed, so it works with scripts disabled and cannot be blocked by privacy
   extensions. The email field arrives at Substack as ?email=... */
.newsletter {
  margin-top: var(--sp-6);
  padding: var(--sp-5) var(--sp-4);
  background: var(--surface);
  border: 1.5px solid var(--teal);
  border-radius: var(--r-md);
}
.newsletter__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.newsletter__sub {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: var(--sp-3);
}
.newsletter__form { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: stretch; }
.newsletter__form input[type="email"] {
  flex: 1 1 15rem;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.newsletter__form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(130, 190, 191, 0.22);
}
.newsletter__form .btn { flex: 0 0 auto; }
@media (max-width: 480px) {
  .newsletter__form .btn { width: 100%; justify-content: center; }
}
.newsletter__note {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: var(--text-soft);
  margin-top: var(--sp-2);
}

/* ---------- Mission → Vision continuum (about page) ---------- */
.mv-continuum {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 880px) {
  .mv-continuum {
    grid-template-columns: 1fr 40px 1fr;
    gap: var(--sp-3);
  }
}
.mv-continuum__pane {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mv-continuum__pane--to {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.mv-continuum__head {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0;
}
.mv-continuum__pane--to .mv-continuum__head { color: #fff; }
.mv-continuum__body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}
.mv-continuum__pane--to .mv-continuum__body { color: rgba(255, 255, 255, 0.82); }
.mv-continuum__rule {
  position: relative;
  min-height: 1px;
  align-self: center;
}
@media (min-width: 880px) {
  .mv-continuum__rule {
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--teal), var(--charcoal));
    border-radius: 999px;
  }
  .mv-continuum__rule::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid var(--charcoal);
  }
}

/* ---------- Core values (definition-list feel) ---------- */
.values {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.values__row {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: 1fr;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) {
  .values__row { grid-template-columns: 240px 1fr; gap: var(--sp-4); align-items: baseline; }
}
.values__term {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0;
}
.values__def {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 42em;
}

/* ---------- Team grid ---------- */
.team-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-member {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.team-member__photo {
  width: 120px;
  height: 120px;
  margin-bottom: 0.5rem;
}
.team-member__photo image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.team-member__role {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.35rem;
}
.team-member__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0;
}
.team-member__bio {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Mobile nav toggle ---------- */
/* CSS-only: a visually hidden checkbox drives the panel, so the site keeps
   working with JavaScript disabled. The checkbox stays in the tab order
   (sr-only, not hidden) so the menu is keyboard-operable. */
.nav-toggle { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  /* The booking button is white-space:nowrap, so as a flex sibling it will
     squeeze the burger below a usable tap target. Refuse to shrink. */
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: var(--r-sm);
  color: var(--charcoal);
  cursor: pointer;
}
.nav-burger:hover { background: rgba(38, 38, 38, 0.05); }
.nav-toggle:focus-visible + .nav-burger { outline: 3px solid var(--teal); outline-offset: 2px; }
.nav-burger .nav-burger__close,
.nav-toggle:checked + .nav-burger .nav-burger__open { display: none; }
.nav-toggle:checked + .nav-burger .nav-burger__close { display: block; }

@media (max-width: 820px) {
  .nav-burger { display: inline-flex; }
  .nav-toggle:checked ~ .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: var(--sp-3) 32px var(--sp-4);
    margin: 0;
  }
  .nav-toggle:checked ~ .nav a { font-size: 1rem; padding: 0.4rem 0; }
}
@media (max-width: 560px) {
  .nav-toggle:checked ~ .nav { padding-left: 20px; padding-right: 20px; }
}

/* ---------- Tables in article bodies ---------- */
/* Ported WordPress tables are wider than a phone screen. The wrapper scrolls
   on its own so the article around it does not shift sideways. */
.post__body .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--sp-3) 0;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.post__body table {
  border-collapse: collapse;
  width: 100%;
  min-width: 34rem;
  font-size: 0.95rem;
}
.post__body th,
.post__body td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  text-align: left;
  vertical-align: top;
}
.post__body thead th,
.post__body tr:first-child td strong { background: var(--bg-tint-teal); }
.post__body table p { margin: 0; }

/* ---------- Readiness CTA panel ---------- */
.readiness {
  background: linear-gradient(135deg, var(--teal) 0%, #4a7d80 100%);
  color: #fff;
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  margin: var(--sp-5) auto;
  max-width: var(--container);
  position: relative;
  overflow: hidden;
}
.readiness::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(212, 102, 74, 0.25), transparent 60%);
  pointer-events: none;
}
.readiness__inner {
  display: grid;
  gap: var(--sp-3);
  align-items: center;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) { .readiness__inner { grid-template-columns: 1.6fr 1fr; gap: var(--sp-5); } }
.readiness__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
  color: #fff;
}
.readiness__sub { color: rgba(255, 255, 255, 0.88); margin-bottom: 0; font-size: 1rem; line-height: 1.6; }
.readiness__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-of-type { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: var(--sp-3) 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--charcoal);
  transition: color 0.15s ease;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 var(--sp-3); color: var(--text-muted); line-height: 1.7; max-width: 56em; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--charcoal); color: #fff; padding: var(--sp-6) 0; text-align: center; }
.final-cta .eyebrow { color: rgba(255, 255, 255, 0.5); }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--sp-3);
  color: #fff;
}
.final-cta p { color: rgba(255, 255, 255, 0.78); max-width: 38em; margin: 0 auto var(--sp-3); font-size: 1.125rem; line-height: 1.6; }
.final-cta__email { font-size: 0.9375rem; margin-top: var(--sp-3); color: rgba(255, 255, 255, 0.6); }
.final-cta__email a { color: var(--coral); border-bottom: 1px solid rgba(212, 102, 74, 0.4); }
.final-cta__email a:hover { color: var(--bright-orange); border-color: var(--bright-orange); }

/* ---------- Footer ---------- */
.footer { background: var(--bg); padding: var(--sp-5) 0 var(--sp-3); border-top: 3px solid var(--teal); }
.footer__grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; padding-bottom: var(--sp-4); }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--sp-2);
  font-weight: 700;
}
.footer__col ul { list-style: none; padding: 0; }
.footer__col li { margin-bottom: 0.45rem; }
.footer__col a { color: var(--text); font-size: 0.9375rem; }
.footer__col a:hover { color: var(--accent); }
.footer__brand p { color: var(--text-muted); margin-top: var(--sp-2); max-width: 28em; font-size: 0.9375rem; line-height: 1.6; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.8125rem;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.muted { color: var(--text-muted); }
.center { text-align: center; }
.mt-2 { margin-top: var(--sp-3); }
.mt-3 { margin-top: var(--sp-4); }

/* ====================================================================
   BLOG — index page (blog.html) and individual posts (blog/*.html)
   ==================================================================== */

/* ---------- Blog hero ---------- */
.blog-hero {
  padding: var(--sp-6) 0 var(--sp-4);
  border-bottom: 1px solid var(--border);
  background: var(--bg-tint-teal);
}

/* ---------- Blog list grid ---------- */
.blog-list { padding: var(--sp-6) 0; }
.blog-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.blog-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card__link {
  display: block;
  padding: var(--sp-4);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-card__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(130, 190, 191, 0.15);
  color: #1f6060;
  margin-bottom: var(--sp-3);
}
.blog-card__tag--9001    { background: rgba(239, 72, 35, 0.10);  color: #b83015; }
.blog-card__tag--13485,
.blog-card__tag--medtech { background: rgba(212, 102, 74, 0.14); color: #8a3f25; }
.blog-card__tag--17025   { background: rgba(130, 190, 191, 0.18); color: #1f6060; }
.blog-card__tag--42001   { background: rgba(185, 131, 113, 0.16); color: #6b4536; }
.blog-card__tag--general { background: rgba(157, 161, 152, 0.18); color: #4a4d46; }

.blog-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.blog-card__excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}
.blog-card__meta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.blog-card__sep { color: var(--border); }

/* ---------- Blog CTA strip ---------- */
.blog-cta {
  background: var(--charcoal);
  color: #fff;
  padding: var(--sp-6) 0;
  text-align: center;
}
.blog-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.blog-cta__sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 38em;
  margin: 0 auto var(--sp-4);
}

/* ====================================================================
   POST page (individual blog post)
   ==================================================================== */

.post { padding: var(--sp-6) 0 var(--sp-7); }

/* Post header */
.post__head { margin-bottom: var(--sp-5); }
.post__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(130, 190, 191, 0.15);
  color: #1f6060;
  margin-bottom: var(--sp-3);
}
.post__tag--9001    { background: rgba(239, 72, 35, 0.10);  color: #b83015; }
.post__tag--13485   { background: rgba(212, 102, 74, 0.14); color: #8a3f25; }
.post__tag--17025   { background: rgba(130, 190, 191, 0.18); color: #1f6060; }
.post__tag--42001   { background: rgba(185, 131, 113, 0.16); color: #6b4536; }
.post__tag--general { background: rgba(157, 161, 152, 0.18); color: #4a4d46; }

.post__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
}
.post__subtitle {
  font-family: var(--font-callout);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.post__meta {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.post__meta a { color: var(--charcoal); text-decoration: none; border-bottom: 1px dotted var(--border); }
.post__meta a:hover { border-bottom-color: var(--teal); color: var(--teal); }
.post__sep { color: var(--border); }

/* TL;DR / key takeaways */
.post__tldr {
  background: rgba(130, 190, 191, 0.08);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-5);
}
.post__tldr-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1f6060;
  margin-bottom: var(--sp-2);
}
.post__tldr ul { list-style: none; padding: 0; margin: 0; }
.post__tldr li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.55;
}
.post__tldr li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
}

/* Body */
.post__body { font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.75; color: var(--text); }
.post__body > * + * { margin-top: var(--sp-3); }
.post__lede { font-size: 1.18rem; line-height: 1.65; color: var(--text); }
.post__body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  color: var(--charcoal);
  margin-top: var(--sp-5) !important;
  margin-bottom: var(--sp-2);
  line-height: 1.25;
}
.post__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-top: var(--sp-4) !important;
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.post__body ul,
.post__body ol { padding-left: 1.5rem; }
.post__body li { margin-bottom: 0.5rem; }
.post__body strong { color: var(--charcoal); }
.post__body a { color: var(--bright-orange); text-decoration: none; border-bottom: 1.5px solid rgba(239, 72, 35, 0.35); }
.post__body a:hover { border-bottom-color: var(--bright-orange); }

/* Inline callout box */
.post__callout {
  background: var(--bg-deep);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-5) 0 !important;
  border-left: 4px solid var(--bright-orange);
}
.post__callout p { margin: 0 !important; font-size: 0.98rem; }

/* FAQ */
.post__faq { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--border); }
.post__faq h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
}
.post__faq details {
  border-bottom: 1px solid var(--border);
  padding: var(--sp-2) 0;
}
.post__faq details:first-of-type { border-top: 1px solid var(--border); }
.post__faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: var(--sp-2) 0;
  list-style: none;
  position: relative;
  padding-right: var(--sp-4);
}
.post__faq summary::-webkit-details-marker { display: none; }
.post__faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.2s ease;
}
.post__faq details[open] summary::after { content: "−"; }
.post__faq details > div {
  padding: 0 0 var(--sp-2);
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Author bio */
.post__author {
  margin-top: var(--sp-6);
  padding: var(--sp-4);
  background: var(--bg-deep);
  border-radius: var(--r-md);
}
.post__author h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.post__author p { font-size: 0.95rem; line-height: 1.65; color: var(--text-muted); margin-bottom: var(--sp-2); }
.post__author p:last-child { margin-bottom: 0; }
.post__author a { color: var(--bright-orange); }

/* Final CTA on post */
.post__cta {
  margin-top: var(--sp-6);
  padding: var(--sp-5) var(--sp-4);
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--r-md);
  text-align: center;
}
.post__cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.post__cta p { color: rgba(255, 255, 255, 0.78); font-size: 1rem; line-height: 1.6; margin-bottom: var(--sp-3); }

.post__back {
  margin-top: var(--sp-5);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}
.post__back a {
  color: var(--text-muted);
  text-decoration: none;
}
.post__back a:hover { color: var(--teal); }

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
