/*
Theme Name: The Patient Analyst
Theme URI: https://thepatientanalyst.com
Author: The Patient Analyst
Author URI: https://thepatientanalyst.com
Description: A professional health advocacy theme for The Patient Analyst — editorial, authoritative, and distinctly human.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: patient-analyst
Tags: health, advocacy, professional, custom-colors, custom-logo, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --teal:         #0F6E56;
  --teal-mid:     #1D9E75;
  --teal-light:   #E1F5EE;
  --teal-dark:    #085041;
  --ink:          #1a1a18;
  --ink-soft:     #3d3d38;
  --muted:        #6b6b64;
  --cream:        #faf9f6;
  --warm:         #f4f1ea;
  --border:       #e2dfd8;
  --accent:       #993C1D;
  --accent-light: #FAECE7;
  --white:        #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;

  --max-width:  1200px;
  --section-pad: 5rem 3rem;
}

/* ============================================================
   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(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-mid); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.display-xl  { font-size: clamp(2.8rem, 5vw, 4.2rem); }
.display-lg  { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.display-md  { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.display-sm  { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.text-lg     { font-size: 1.15rem; }
.text-base   { font-size: 1rem; }
.text-sm     { font-size: 0.9rem; }
.text-xs     { font-size: 0.8rem; }
.text-xxs    { font-size: 0.72rem; }
.italic      { font-style: italic; }
.teal        { color: var(--teal); }
.muted       { color: var(--muted); }
.weight-300  { font-weight: 300; }
.weight-500  { font-weight: 500; }
.uppercase   { text-transform: uppercase; letter-spacing: 0.1em; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container      { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section        { padding: var(--section-pad); }
.grid-2         { display: grid; grid-template-columns: 1fr 1fr; }
.grid-3         { display: grid; grid-template-columns: repeat(3, 1fr); }
.gap-1          { gap: 1px; }
.gap-md         { gap: 1.5rem; }
.gap-lg         { gap: 3rem; }
.border-right   { border-right: 1px solid var(--border); }
.border-bottom  { border-bottom: 1px solid var(--border); }
.border-top     { border-top: 1px solid var(--border); }
.bg-cream       { background: var(--cream); }
.bg-warm        { background: var(--warm); }
.bg-ink         { background: var(--ink); color: var(--white); }
.bg-teal        { background: var(--teal); color: var(--white); }
.text-center    { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.btn-primary   { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-mid); color: var(--white); }
.btn-outline   { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-outline:hover { background: var(--teal-light); }
.btn-accent    { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #7a3016; color: var(--white); }
.btn-ghost     {
  background: transparent; color: var(--teal);
  border-bottom: 1px solid var(--teal);
  border-radius: 0; padding-left: 0; padding-right: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.site-logo span { font-style: italic; color: var(--ink); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-mid) !important; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  border-bottom: 1px solid var(--border);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem 3rem;
  border-right: 1px solid var(--border);
}
.hero-h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--warm);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.hero-quote-block {
  border-left: 3px solid var(--teal);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.hero-quote-attr {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.hero-stat {
  background: var(--cream);
  padding: 1.5rem;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--teal);
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.hero-deco {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 120px; height: 120px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}
.hero-deco-2 {
  position: absolute;
  top: 2.8rem; right: 2.8rem;
  width: 104px; height: 104px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker-bar {
  background: var(--teal);
  color: var(--white);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-block;
  padding: 0 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.ticker-item::after { content: "·"; margin-left: 2.5rem; opacity: 0.5; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: var(--section-pad); background: var(--cream); }
.section-header { margin-bottom: 3rem; }
.section-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.85;
  margin-top: 0.75rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  cursor: pointer;
}
.service-card:hover { background: var(--teal-light); }
.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--border);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.service-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--warm);
}
.about-teaser-left {
  padding: 5rem 3rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-teaser-right {
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-years-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  margin-bottom: 1.75rem;
  border-radius: var(--radius-sm);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-bio {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2rem;
}
.credential-timeline { display: flex; flex-direction: column; }
.credential-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.credential-item:last-child { border-bottom: none; padding-bottom: 0; }
.cred-dot {
  width: 9px; height: 9px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.cred-year {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  min-width: 36px;
  margin-top: 2px;
  flex-shrink: 0;
}
.cred-body {}
.cred-role {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.cred-org {
  font-size: 0.78rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.cred-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview { padding: var(--section-pad); background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.blog-card {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--teal); }
.blog-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
}
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
.blog-read-more {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--teal);
  padding: var(--section-pad);
  text-align: center;
  color: var(--white);
}
.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter-section p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.newsletter-btn {
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: #7a3016; }

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
.disclaimer-bar {
  background: var(--warm);
  border-top: 1px solid var(--border);
  padding: 1rem 3rem;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto;
}
.disclaimer-bar a { color: var(--teal); border-bottom: 1px solid transparent; }
.disclaimer-bar a:hover { border-bottom-color: var(--teal); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: block;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.page-header-banner {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  padding: 5rem 3rem 4rem;
}
.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: var(--muted); margin: 0 0.5rem; }
.page-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08;
  max-width: 700px;
  font-weight: 600;
}
.page-title em { font-style: italic; color: var(--teal); }
.page-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin-top: 1.25rem;
  line-height: 1.8;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote-band {
  background: var(--teal);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.pq-line {
  width: 3px;
  background: rgba(255,255,255,0.3);
  align-self: stretch;
  flex-shrink: 0;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.pull-quote-attr {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PHILOSOPHY GRID
   ============================================================ */
.philosophy-section {
  background: var(--ink);
  padding: var(--section-pad);
  color: var(--white);
}
.philosophy-section .eyebrow { color: var(--teal-mid); }
.philosophy-section .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 3rem;
}
.philosophy-section .section-h2 em { font-style: italic; color: var(--teal-mid); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.philosophy-card {
  background: var(--ink);
  padding: 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: border-top-color 0.2s;
}
.philosophy-card:hover { border-top-color: var(--teal-mid); }
.phil-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(255,255,255,0.1);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.phil-title { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
.phil-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; font-weight: 300; }

/* ============================================================
   SCOPE (DO / DON'T)
   ============================================================ */
.scope-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.scope-do { padding: 4rem 3rem; border-right: 1px solid var(--border); background: var(--cream); }
.scope-dont { padding: 4rem 3rem; background: var(--warm); }
.scope-h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.scope-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; font-weight: 300; }
.scope-list { display: flex; flex-direction: column; }
.scope-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.scope-item:last-child { border-bottom: none; padding-bottom: 0; }
.scope-icon-yes, .scope-icon-no {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
}
.scope-icon-yes { background: var(--teal); color: var(--white); }
.scope-icon-yes::after { content: '✓'; font-size: 11px; }
.scope-icon-no { background: var(--accent-light); color: var(--accent); }
.scope-icon-no::after { content: '×'; }

/* ============================================================
   SINGLE POST / PAGE CONTENT
   ============================================================ */
.entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.entry-content h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.entry-content h3 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.entry-content p  { margin-bottom: 1.5rem; font-size: 1rem; color: var(--ink-soft); line-height: 1.9; font-weight: 300; }
.entry-content ul, .entry-content ol { margin: 0 0 1.5rem 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; font-size: 1rem; color: var(--ink-soft); line-height: 1.8; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote {
  border-left: 3px solid var(--teal);
  padding: 1rem 1.5rem;
  background: var(--teal-light);
  margin: 2rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.entry-content blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 4rem 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border); padding: 4rem 2rem; }
  .hero-right { padding: 3rem 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-left { border-right: none; border-bottom: 1px solid var(--border); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .scope-section { grid-template-columns: 1fr; }
  .scope-do { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1.25rem; }
  .nav-menu.is-open { display: flex; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .pull-quote-band { padding: 2rem 1.5rem; }
  .disclaimer-bar { padding: 1rem 1.5rem; }
  .site-footer { padding: 3rem 1.5rem 2rem; }
}

/* ============================================================
   LOGO IMAGE STYLES
   ============================================================ */
.site-logo-link,
a.site-logo { display: inline-flex; align-items: center; text-decoration: none; }
.site-logo img { height: 44px; width: auto; display: block; }

/* Footer logo sizing */
.site-footer img { height: 72px; width: auto; display: block; }

/* Prevent logo distortion at all breakpoints */
@media (max-width: 768px) {
  .site-logo img { height: 36px; }
}
