/*
Theme Name: Holistic Dr. Bright
Theme URI: https://holisticdrbright.com
Author: Custom design for Dr. Brandon Bright DAOM, LAc
Author URI: https://holisticdrbright.com
Description: Custom multi-modality holistic medicine theme for Dr. Brandon Bright DAOM, LAc — Tustin, Orange County practice. v2.0.0 — Aero accessibility pass + sticky CTA + Four Layers cornerstone + Modality Finder Quiz + service page templates.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: holistic-dr-bright
Tags: holistic, custom, business, medical, accessible
*/

/* Holistic Dr. Bright — Custom Theme Stylesheet
   Author: Custom design by Claude
   Color palette: Sage green + warm gold + cream
*/

:root {
  --sage-deep: #4a5d4a;
  --sage: #6b8268;
  --sage-light: #a3b39f;
  --sage-pale: #e8ede4;
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --gold: #b8945a;
  --gold-light: #d4b87f;
  --charcoal: #2d3a2d;
  --charcoal-soft: #4a554a;
  --text: #3d4a3d;
  --text-muted: #6b7568;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 18px 0;
  border-bottom: 1px solid rgba(74, 93, 74, 0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-name {
  font-size: 22px;
  color: var(--charcoal);
  font-weight: 600;
}

.logo-name span {
  color: var(--sage);
  font-style: italic;
  font-weight: 400;
}

.logo-creds {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-top: 3px;
}

footer .logo-name {
  color: var(--cream);
}

footer .logo-creds {
  color: rgba(250, 247, 242, 0.6);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--charcoal-soft);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active { color: var(--sage); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--sage);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 93, 74, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage);
}

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

/* Hero (homepage) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(184, 148, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-tag, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-tag { color: var(--sage-deep); margin-bottom: 32px; }
.section-tag { color: var(--gold); }

.hero-tag::before, .section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
}

.hero-tag::before { background: var(--gold); }
.section-tag::before { background: var(--gold); width: 24px; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--charcoal);
}

.hero h1 em {
  color: var(--sage);
  font-style: italic;
  font-weight: 400;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

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

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 240px 240px 24px 24px;
  overflow: hidden;
  background-color: var(--sage);
  background-image: url('https://holisticdrbright.com/wp-content/uploads/2026/05/dr-bright-headshot.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  box-shadow: 0 30px 80px rgba(74, 93, 74, 0.25);
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--cream);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.hero-badge-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.hero-badge-text { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.hero-badge-text strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}

/* Page hero (smaller hero for inner pages) */
.page-hero {
  padding: 200px 0 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(184, 148, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero h1 em { color: var(--sage); font-style: italic; font-weight: 400; }

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Section common */
section { padding: 120px 0; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
}

.section-title em { color: var(--sage); font-style: italic; font-weight: 400; }

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 64px;
}

/* About sections */
.about { background: var(--cream); }

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

.about-content p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 16px;
}

.about-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sage-pale);
}

.about-signature strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.about-signature span {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.about-credentials {
  background: var(--sage-pale);
  padding: 48px 40px;
  border-radius: 16px;
  border-left: 3px solid var(--sage);
}

.about-credentials h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--sage-deep);
}

.credential-list { list-style: none; }

.credential-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 93, 74, 0.1);
  color: var(--text);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.credential-list li:last-child { border-bottom: none; }
.credential-list li::before { content: '✦'; color: var(--gold); font-size: 14px; }

/* Services */
.services { background: var(--sage-pale); position: relative; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  padding: 40px 32px;
  border-radius: 12px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-light);
  box-shadow: 0 20px 50px rgba(74, 93, 74, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--sage-deep);
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--sage);
  color: var(--cream);
}

.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* Service detail (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--sage-pale);
  align-items: start;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--sage-deep);
  font-weight: 500;
}

.service-detail h2 { font-size: 32px; margin-bottom: 16px; }
.service-detail p { font-size: 16px; color: var(--text); margin-bottom: 16px; }
.service-detail .service-treats {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--sage-pale);
  border-radius: 12px;
  font-size: 14px;
}
.service-detail .service-treats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
}

/* Philosophy */
.philosophy {
  background: var(--charcoal);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(107, 130, 104, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(184, 148, 90, 0.15) 0%, transparent 50%);
}

.philosophy .container { position: relative; z-index: 1; }
.philosophy .section-tag { color: var(--gold-light); }

.philosophy h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 800px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.philosophy h2 em { color: var(--gold-light); font-style: italic; }

.philosophy-text {
  font-size: 18px;
  color: rgba(250, 247, 242, 0.8);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.pillar {
  border-top: 1px solid rgba(212, 184, 127, 0.3);
  padding-top: 24px;
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 12px;
}

.pillar h4 { color: var(--cream); font-size: 18px; margin-bottom: 8px; }
.pillar p { color: rgba(250, 247, 242, 0.6); font-size: 14px; }

/* Testimonial */
.testimonial { background: var(--cream); padding: 120px 0; }

.testimonial-card { max-width: 800px; margin: 0 auto; text-align: center; }

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 32px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 500;
}

.testimonial-author {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-author strong { color: var(--charcoal); font-weight: 600; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(184, 148, 90, 0.2) 0%, transparent 40%);
}

.cta .container { position: relative; z-index: 1; }
.cta .section-tag {
  color: var(--gold-light);
  justify-content: center;
  display: inline-flex;
}

.cta h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta h2 em { color: var(--gold-light); font-style: italic; }

.cta p {
  color: rgba(250, 247, 242, 0.85);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--cream);
  color: var(--sage-deep);
  padding: 18px 44px;
  font-size: 14px;
}

.cta-btn:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo-mark { background: var(--sage-light); color: var(--charcoal); }
.footer-brand .logo-text { color: var(--cream); }

.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
}

/* About page specific */
.bio-section { background: var(--cream); padding: 120px 0; }

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

.bio-photo {
  aspect-ratio: 3/4;
  border-radius: 12px;
  background-color: var(--sage);
  background-image: url('https://holisticdrbright.com/wp-content/uploads/2026/05/dr-bright-headshot.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.bio-content h2 { font-size: clamp(2rem, 3.5vw, 2.5rem); margin-bottom: 24px; }
.bio-content h2 em { color: var(--sage); font-style: italic; font-weight: 400; }
.bio-content p { font-size: 16px; margin-bottom: 20px; color: var(--text); }
.bio-content p.lead { font-size: 18px; color: var(--charcoal); font-weight: 400; margin-bottom: 28px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 24px; }
.contact-info h2 em { color: var(--sage); font-style: italic; font-weight: 400; }

.contact-detail {
  margin-top: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sage-pale);
}

.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-detail-value {
  font-size: 18px;
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.contact-detail-sub { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

.contact-form {
  background: var(--sage-pale);
  padding: 48px;
  border-radius: 16px;
}

.contact-form h3 { font-size: 24px; margin-bottom: 24px; color: var(--sage-deep); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(74, 93, 74, 0.15);
  background: var(--cream);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 130, 104, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* Pricing/services tier */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--cream);
  padding: 48px 40px;
  border-radius: 16px;
  border: 1px solid var(--sage-pale);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid var(--sage);
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background: var(--gold);
  color: var(--cream);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.pricing-tier {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.pricing-card h3 { font-size: 28px; margin-bottom: 16px; }

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-amount span {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
}

.pricing-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--sage-pale);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✦'; color: var(--gold); flex-shrink: 0; }

/* Responsive */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--sage-pale);
    align-items: center;
  }
  .nav-links.open { display: flex; }
  .nav-links li { list-style: none; width: 100%; text-align: center; }
  .nav-links li a { padding: 10px 0; display: block; }
  .hero-grid, .about-grid, .bio-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .philosophy-pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; }
  .page-hero { padding: 140px 0 60px; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; padding: 12px 24px; background: var(--sage-deep); color: var(--white); text-decoration: none; font-weight: 500; }
.skip-link:focus { left: 16px; top: 16px; outline: 2px solid var(--white); outline-offset: 2px; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 32px; }
main#main-content { padding-top: 100px; min-height: 50vh; }

/* Sticky CTA Desktop */
.sticky-cta-desktop { position: fixed; top: 0; left: 0; right: 0; height: var(--sticky-cta-desktop-height); background: linear-gradient(90deg, var(--sage-deep) 0%, var(--sage) 100%); color: var(--cream); display: flex; align-items: center; justify-content: center; gap: 24px; font-size: 14px; font-weight: 500; z-index: 1100; transform: translateY(-100%); transition: transform 0.3s ease; }
.sticky-cta-desktop.visible { transform: translateY(0); }
.sticky-cta-desktop a { color: var(--cream); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.sticky-cta-desktop a:hover { color: var(--gold-light); }
.sticky-cta-desktop .cta-divider { opacity: 0.5; }
.sticky-cta-desktop .sticky-cta-dismiss { position: absolute; right: 16px; background: transparent; border: 0; color: var(--cream); font-size: 20px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.sticky-cta-desktop .sticky-cta-dismiss:hover { color: var(--gold-light); }
body.has-sticky-cta nav { top: var(--sticky-cta-desktop-height); }
body.has-sticky-cta main#main-content { padding-top: calc(100px + var(--sticky-cta-desktop-height)); }
@media (max-width: 768px) { .sticky-cta-desktop { display: none; } }

/* Sticky CTA Mobile */
.sticky-cta-mobile { position: fixed; bottom: -100px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--sage-pale); box-shadow: 0 -4px 16px rgba(45,58,45,0.1); padding: 12px 16px; display: none; gap: 8px; z-index: 1100; transition: bottom 0.3s ease; }
.sticky-cta-mobile.visible { bottom: 0; }
.sticky-cta-mobile a { flex: 1; padding: 12px 16px; border-radius: var(--radius-md); text-align: center; font-weight: 500; font-size: 15px; text-decoration: none; transition: transform 0.2s ease; }
.sticky-cta-mobile a:hover, .sticky-cta-mobile a:focus { transform: scale(0.98); }
.sticky-cta-mobile .cta-call { background: var(--cream-dark); color: var(--sage-deep); border: 1px solid var(--sage-pale); }
.sticky-cta-mobile .cta-schedule { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%); color: var(--cream); }
.sticky-cta-mobile .sticky-cta-dismiss { background: transparent; border: 0; color: var(--text-muted); font-size: 18px; padding: 0 8px; cursor: pointer; align-self: center; }
@media (max-width: 768px) { .sticky-cta-mobile { display: flex; } body.has-sticky-cta-mobile main#main-content { padding-bottom: calc(var(--sticky-cta-mobile-height) + 16px); } }

/* Navigation */
nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(250,247,242,0.95); backdrop-filter: blur(12px); z-index: 1000; padding: 18px 0; border-bottom: 1px solid rgba(74,93,74,0.08); transition: top 0.3s ease; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo img { height: 44px; width: auto; display: block; }
.logo-mark { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%); display: flex; align-items: center; justify-content: center; color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; }
.logo-text { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.02em; display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-size: 22px; color: var(--charcoal); font-weight: 600; }
.logo-creds { font-family: 'Inter', sans-serif; font-size: 10px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; margin: 0; padding: 0; }
.nav-links li { display: flex; }
.nav-links a { color: var(--charcoal-soft); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; padding: 8px 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links a:hover, .nav-links a:focus { color: var(--sage-deep); border-bottom-color: var(--gold); }
.nav-links a.current, .nav-links .current_page_item a { color: var(--sage-deep); border-bottom-color: var(--sage); }
.nav-links .btn-primary, .nav-links a.btn { background: var(--sage-deep); color: var(--cream); padding: 8px 18px; border-radius: var(--radius-pill); border: 0; }
.nav-links .btn-primary:hover { background: var(--sage); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: all 0.3s ease; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
@media (max-width: 900px) { .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 24px 32px; gap: 16px; box-shadow: 0 4px 16px rgba(45,58,45,0.1); } .nav-links.open { display: flex; } .menu-toggle { display: block; } }

/* Buttons */
.btn, button.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; letter-spacing: 0.02em; border-radius: var(--radius-pill); border: 0; cursor: pointer; text-decoration: none; transition: all 0.25s ease; line-height: 1; }
.btn-primary { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%); color: var(--cream); }
.btn-primary:hover, .btn-primary:focus { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(74,93,74,0.25); color: var(--cream); }
.btn-outline { background: transparent; color: var(--sage-deep); border: 1.5px solid var(--sage-deep); }
.btn-outline:hover { background: var(--sage-pale); }
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-gold { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); color: var(--charcoal); }

/* Hero */
.hero { padding: clamp(48px, 8vw, 96px) 0; background: linear-gradient(135deg, var(--cream) 0%, var(--sage-pale) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-eyebrow, .hero-tag { display: inline-block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-deep); font-weight: 500; margin-bottom: 24px; padding: 6px 14px; background: rgba(107,130,104,0.1); border-radius: var(--radius-pill); }
.hero h1 { margin-bottom: 24px; }
.hero p.hero-subhead, .hero p.lead { font-size: clamp(1.0625rem, 1.6vw, 1.1875rem); color: var(--charcoal-soft); margin-bottom: 32px; max-width: 540px; }
.hero-cta, .hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust-signals { display: flex; flex-wrap: wrap; gap: 24px; font-size: 13px; color: var(--text-muted); }
.hero-trust-signals .stars { color: var(--gold); letter-spacing: 1px; margin-right: 4px; }
.hero-visual-wrap { position: relative; }
/* (v1's primary .hero-visual rule at line 279 owns the headshot background-image — using the live WP URL — and is intentionally left in place.) */
.hero-badge { position: absolute; bottom: -24px; left: -24px; background: var(--white); padding: 16px 20px; border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(45,58,45,0.12); display: flex; align-items: center; gap: 12px; }
.hero-badge-stars { color: var(--gold); font-size: 13px; }
.hero-badge-text strong { display: block; font-size: 13px; color: var(--charcoal); }
.hero-badge-text { font-size: 11px; color: var(--text-muted); }

/* Section utilities */
section { padding: clamp(48px, 8vw, 96px) 0; }
.section-tag, .section-eyebrow { display: inline-block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.section-title { margin-bottom: 16px; }
.section-intro { font-size: 1.0625rem; color: var(--charcoal-soft); margin-bottom: 48px; max-width: 720px; }

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-content p { margin-bottom: 20px; }
.about-signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--sage-pale); }
.about-signature strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--charcoal); }
.about-signature span { font-size: 12px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }
.about-credentials { background: var(--cream); padding: 32px; border-radius: var(--radius-lg); }
.about-credentials h3 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.credential-list, .credentials-list { list-style: none; padding: 0; }
.credential-list li { padding: 10px 0; border-bottom: 1px solid var(--sage-pale); font-size: 14px; color: var(--charcoal-soft); }
.credentials-list .credential-item { padding: 16px 0; border-bottom: 1px solid var(--sage-pale); }
.credentials-list .credential-item h3 { font-size: 16px; margin-bottom: 4px; border-bottom: 0; padding: 0; }
.credentials-list .credential-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Services / Modalities grid */
.services, .modalities-section { background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%); }
.services-grid, .modality-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card, .modality-card { background: var(--white); padding: 32px 28px; border-radius: var(--radius-lg); text-decoration: none; color: inherit; transition: all 0.3s ease; border: 1px solid transparent; display: block; }
.service-card:hover, .modality-card:hover, .service-card:focus, .modality-card:focus { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,58,45,0.1); border-color: var(--sage-pale); }
.service-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--sage-pale); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--sage-deep); margin-bottom: 20px; }
.modality-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.modality-card p { font-size: 14px; margin-bottom: 16px; color: var(--text); }
.modality-card a, .modality-card-link { font-size: 14px; font-weight: 500; color: var(--sage-deep); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.modality-card a:hover { color: var(--gold); }

/* Philosophy / Four Layers */
.philosophy { background: var(--charcoal); color: var(--cream); }
.philosophy h2, .philosophy h3, .philosophy h4 { color: var(--cream); }
.philosophy h2 em { color: var(--gold-light); font-style: italic; }
.philosophy-lead, .philosophy-text { font-size: 1.0625rem; color: rgba(250,247,242,0.8); margin-bottom: 48px; max-width: 720px; }
.philosophy-pillars, .four-layers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pillar, .layer-card { padding: 28px 24px; background: rgba(250,247,242,0.05); border-radius: var(--radius-md); border-left: 3px solid var(--gold); }
.pillar-num, .layer-number { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: var(--gold); display: block; margin-bottom: 8px; line-height: 1; }
.layer-card h3, .pillar h4 { margin-bottom: 8px; color: var(--cream); }
.layer-card p, .pillar p { font-size: 14px; color: rgba(250,247,242,0.75); }

/* Modality Finder Quiz */
.modality-quiz-cta { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); padding: 32px; border-radius: var(--radius-lg); text-align: center; margin: 48px auto; max-width: 720px; color: var(--charcoal); }
.modality-quiz-cta p { font-size: 1.1rem; margin-bottom: 16px; color: var(--charcoal); }
.modality-quiz-cta .btn { background: var(--charcoal); color: var(--cream); }
.modality-quiz-cta .btn:hover { background: var(--sage-deep); color: var(--cream); }
.quiz-container { max-width: 720px; margin: 0 auto; background: var(--white); padding: 48px; border-radius: var(--radius-lg); box-shadow: 0 8px 32px rgba(45,58,45,0.08); }
.quiz-progress { height: 4px; background: var(--sage-pale); border-radius: var(--radius-pill); margin-bottom: 32px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--sage) 0%, var(--sage-deep) 100%); transition: width 0.4s ease; border-radius: var(--radius-pill); }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h2 { margin-bottom: 24px; font-size: 1.5rem; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.quiz-option { padding: 14px 18px; background: var(--cream); border: 1.5px solid transparent; border-radius: var(--radius-md); cursor: pointer; font-size: 15px; text-align: left; transition: all 0.2s ease; font-family: 'Inter', sans-serif; color: var(--text); }
.quiz-option:hover, .quiz-option:focus { border-color: var(--sage); background: var(--white); }
.quiz-option.selected { border-color: var(--sage-deep); background: var(--sage-pale); color: var(--sage-deep); font-weight: 500; }
.quiz-nav { display: flex; justify-content: space-between; gap: 12px; }
.quiz-result { display: none; }
.quiz-result.active { display: block; }
.quiz-result-modalities { margin: 24px 0; }
.quiz-result-modality { background: var(--cream); padding: 16px 20px; border-radius: var(--radius-md); margin-bottom: 12px; border-left: 3px solid var(--sage); }
.quiz-result-modality strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--charcoal); margin-bottom: 4px; }
.quiz-result-modality span { font-size: 14px; color: var(--text-muted); }

/* Testimonial */
.testimonial { background: var(--white); padding: 80px 0; }
.testimonial-card { max-width: 800px; margin: 0 auto; text-align: center; padding: 48px 32px; background: var(--cream); border-radius: var(--radius-lg); border: 1px solid var(--sage-pale); }
.testimonial-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.125rem, 2vw, 1.5rem); font-style: italic; color: var(--charcoal); margin-bottom: 24px; line-height: 1.5; }
.testimonial-author { font-size: 13px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }

/* CTA */
.cta, .final-cta { background: linear-gradient(135deg, var(--sage-deep) 0%, var(--charcoal) 100%); color: var(--cream); text-align: center; }
.cta h2, .final-cta h2 { color: var(--cream); margin-bottom: 24px; }
.cta h2 em, .final-cta h2 em { color: var(--gold-light); font-style: italic; }
.cta p, .cta-lead { font-size: 1.0625rem; margin-bottom: 32px; color: rgba(250,247,242,0.85); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-benefits { max-width: 600px; margin: 0 auto 32px; text-align: left; background: rgba(250,247,242,0.06); padding: 24px 28px; border-radius: var(--radius-md); }
.cta-benefits strong { color: var(--gold-light); display: block; margin-bottom: 12px; font-family: 'Cormorant Garamond', serif; font-size: 18px; }
.cta-benefits ul { list-style: none; padding: 0; font-size: 14px; }
.cta-benefits li { padding: 6px 0; padding-left: 24px; position: relative; color: rgba(250,247,242,0.85); }
.cta-benefits li::before { content: "→"; color: var(--gold); position: absolute; left: 0; }
.cta-btn, .btn-primary-large { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); color: var(--charcoal); padding: 18px 36px; font-size: 16px; font-weight: 600; }
.cta-btn:hover, .btn-primary-large:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,148,90,0.3); color: var(--charcoal); }
.cta-reassurance { margin-top: 24px; font-size: 12px; color: rgba(250,247,242,0.6); letter-spacing: 1px; }

/* Cornerstone */
.cornerstone { padding: 64px 0; }
.cornerstone-hero { background: linear-gradient(135deg, var(--cream) 0%, var(--sage-pale) 100%); padding: 80px 0 48px; text-align: center; }
.cornerstone-hero h1 { max-width: 800px; margin: 0 auto 20px; }
.cornerstone-hero .lead { font-size: 1.125rem; color: var(--charcoal-soft); max-width: 720px; margin: 0 auto; }
.cornerstone-toc { background: var(--cream); padding: 32px; border-radius: var(--radius-lg); margin: 48px auto; max-width: 720px; border-left: 4px solid var(--gold); }
.cornerstone-toc h2 { font-size: 1.25rem; margin-bottom: 16px; }
.cornerstone-toc ol { padding-left: 24px; }
.cornerstone-toc li { margin: 8px 0; font-size: 15px; }
.cornerstone-body { max-width: 760px; margin: 0 auto; font-size: 1.0625rem; line-height: 1.8; }
.cornerstone-body h2 { margin-top: 48px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.cornerstone-body h3 { margin-top: 32px; margin-bottom: 12px; }
.cornerstone-body p { margin-bottom: 20px; }
.cornerstone-body ul, .cornerstone-body ol { margin: 16px 0 20px 32px; }
.cornerstone-body li { margin-bottom: 8px; }
.cornerstone-body .layer-callout { background: var(--cream); padding: 24px 28px; border-radius: var(--radius-md); margin: 24px 0; border-left: 4px solid var(--sage); }
.cornerstone-body .layer-callout h3 { margin-top: 0; font-size: 1.25rem; }
.cornerstone-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.cornerstone-body th { background: var(--sage-deep); color: var(--cream); padding: 12px; text-align: left; }
.cornerstone-body td { padding: 10px 12px; border: 1px solid var(--sage-pale); }
.cornerstone-body tr:nth-child(even) td { background: var(--cream); }
.cornerstone-body blockquote { border-left: 4px solid var(--gold); padding: 12px 24px; margin: 24px 0; background: var(--cream); font-style: italic; color: var(--charcoal-soft); }
.cornerstone-body .disclaimer { margin-top: 48px; padding: 20px 24px; background: var(--cream); border-radius: var(--radius-md); font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Service detail page */
.service-hero { background: linear-gradient(135deg, var(--cream) 0%, var(--sage-pale) 100%); padding: 80px 0 48px; }
.service-hero h1 { margin-bottom: 16px; }
.service-hero .lead { font-size: 1.125rem; color: var(--charcoal-soft); max-width: 720px; }
.service-section { padding: 64px 0; border-bottom: 1px solid var(--sage-pale); }
.service-section:last-child { border-bottom: 0; }
.service-section h2 { margin-bottom: 24px; }
.service-conditions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin: 24px 0; }
.service-condition { background: var(--cream); padding: 16px 20px; border-radius: var(--radius-md); border-left: 3px solid var(--sage); }
.service-condition strong { display: block; font-size: 14px; color: var(--charcoal); margin-bottom: 4px; }
.service-condition span { font-size: 13px; color: var(--text-muted); }

/* Forms */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 500; color: var(--charcoal); }
.form-field .required { color: var(--error); margin-left: 2px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text); background: var(--white); border: 1.5px solid var(--sage-pale); border-radius: var(--radius-md); transition: border-color 0.2s ease; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--sage-deep); outline: none; }
.form-field .help-text { display: block; margin-top: 4px; font-size: 13px; color: var(--text-muted); }
.form-field .error-message { display: block; margin-top: 6px; font-size: 13px; color: var(--error); font-weight: 500; }
.form-field .error-message[hidden] { display: none; }

/* Footer */
footer { background: var(--charcoal); color: rgba(250,247,242,0.7); padding: 64px 0 32px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 17px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(250,247,242,0.15); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(250,247,242,0.75); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-col p, .footer-col address { font-size: 13px; line-height: 1.6; font-style: normal; }
.footer-newsletter input[type="email"] { background: rgba(250,247,242,0.1); border: 1px solid rgba(250,247,242,0.2); color: var(--cream); padding: 10px 12px; font-size: 14px; border-radius: var(--radius-md); width: 100%; margin-bottom: 8px; }
.footer-newsletter input[type="email"]::placeholder { color: rgba(250,247,242,0.4); }
.footer-newsletter button { background: var(--gold); color: var(--charcoal); border: 0; padding: 10px 18px; font-size: 14px; font-weight: 500; border-radius: var(--radius-md); cursor: pointer; transition: background 0.2s ease; }
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-blog-feed { list-style: none; padding: 0; }
.footer-blog-feed li { padding: 8px 0; border-bottom: 1px solid rgba(250,247,242,0.08); }
.footer-blog-feed li:last-child { border-bottom: 0; }
.footer-blog-feed a { font-size: 13px; line-height: 1.4; display: block; }
.footer-bottom { border-top: 1px solid rgba(250,247,242,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; color: rgba(250,247,242,0.5); letter-spacing: 1px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; background: rgba(250,247,242,0.08); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--cream); text-decoration: none; font-size: 14px; transition: background 0.2s ease; }
.footer-social a:hover { background: var(--gold); color: var(--charcoal); }
.footer-credentials { font-size: 11px; color: rgba(250,247,242,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease; display: block; text-decoration: none; color: inherit; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,58,45,0.08); }
.blog-card-image { aspect-ratio: 16/9; background: var(--sage-pale); }
.blog-card-body { padding: 24px; }
.blog-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.blog-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.blog-card .meta { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
article.single-post .post-content { font-size: 1.0625rem; line-height: 1.8; max-width: 760px; margin: 0 auto; }
article.single-post h2 { margin-top: 40px; margin-bottom: 16px; }
article.single-post h3 { margin-top: 32px; margin-bottom: 12px; }
article.single-post p { margin-bottom: 20px; }
article.single-post .post-meta { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }

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

/* Print */
@media print { nav, footer, .sticky-cta-desktop, .sticky-cta-mobile, .skip-link { display: none; } main#main-content { padding-top: 0; } }

/* =============================================================
   v2.0 SUPPLEMENTAL STYLES — new patterns introduced in v2
   ============================================================= */

/* --- Hero infographic & trust strip --- */
.hero-infographic { max-width: 100%; height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 8px 32px rgba(74, 93, 74, 0.15)); }
.hero-meta { font-size: 13px; color: var(--text-muted); margin-top: 20px; letter-spacing: 0.5px; }
.trust-strip { background: var(--sage-pale); padding: 32px 0; border-top: 1px solid rgba(107, 130, 104, 0.12); border-bottom: 1px solid rgba(107, 130, 104, 0.12); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--sage-deep); font-weight: 500; line-height: 1; margin-bottom: 6px; }
.trust-item span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 700px) { .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* --- Service-grid wide card spans 2 cols on desktop --- */
.service-card-wide { grid-column: span 2; }
.card-link { display: inline-block; margin-top: 12px; color: var(--sage-deep); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
@media (max-width: 900px) { .service-card-wide { grid-column: span 1; } }

/* --- Anchor nav on services --- */
.services-anchor-nav { background: var(--cream); border-bottom: 1px solid var(--sage-pale); padding: 14px 0; position: sticky; top: 0; z-index: 50; }
.services-anchor-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 22px; justify-content: center; }
.services-anchor-nav a { color: var(--sage-deep); font-size: 13px; letter-spacing: 0.04em; text-decoration: none; padding: 6px 4px; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.services-anchor-nav a:hover, .services-anchor-nav a:focus-visible { border-color: var(--gold); }

/* --- Equipment cards --- */
.equipment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.equipment-card { background: var(--cream); padding: 24px; border-radius: 12px; border: 1px solid var(--sage-pale); }
.equipment-card h3 { font-size: 18px; margin-bottom: 8px; }
.equipment-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .equipment-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .equipment-grid { grid-template-columns: 1fr; } }

/* --- Visit types (appointments) --- */
.visit-types { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.visit-card { background: var(--cream); padding: 48px 40px; border-radius: 16px; border: 1px solid var(--sage-pale); }
.visit-card.featured { border: 2px solid var(--sage); background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%); }
.visit-tier { font-size: 12px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; }
.visit-card h3 { font-size: 28px; margin-bottom: 16px; }
.visit-card h3 em { color: var(--sage); font-style: italic; font-weight: 400; }
.visit-rates { list-style: none; margin: 24px 0; padding: 24px 0; border-top: 1px solid var(--sage-pale); border-bottom: 1px solid var(--sage-pale); }
.visit-rates li { padding: 10px 0; display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; }
.visit-rates li:not(:last-child) { border-bottom: 1px dashed var(--sage-pale); }
.visit-rates strong { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--charcoal); }
.visit-rates span { color: var(--text-muted); font-size: 14px; }
.booking-widget { padding: 20px; background: var(--sage-pale); border-radius: 12px; border: 1px dashed var(--sage-light); margin-top: 24px; }
.booking-widget-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-deep); font-weight: 600; margin-bottom: 12px; text-align: center; }
@media (max-width: 900px) { .visit-types { grid-template-columns: 1fr; } }

/* --- Prepare grid (appointments) --- */
.prepare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 24px; }
.prepare-step { background: var(--cream); padding: 32px; border-radius: 12px; border: 1px solid rgba(107, 130, 104, 0.12); }
.prepare-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; color: var(--gold); font-weight: 500; line-height: 1; margin-bottom: 12px; }
.prepare-step h3 { font-size: 22px; margin-bottom: 10px; }
.prepare-step p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin: 0; }
@media (max-width: 900px) { .prepare-grid { grid-template-columns: 1fr; } }

/* --- FAQ details/summary --- */
.faq-section { background: var(--cream); padding: 100px 0; }
.faq-list { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--sage-pale); padding: 0; }
.faq-item summary { padding: 24px 0; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 28px; color: var(--sage); font-family: 'Cormorant Garamond', serif; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary h3 { font-size: 20px; margin: 0; color: var(--charcoal); font-family: 'Cormorant Garamond', serif; font-weight: 500; display: inline; }
.faq-item p { color: var(--text-muted); font-size: 15px; line-height: 1.7; padding: 0 0 24px; margin: 0; }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* --- Contact fallback form --- */
.hdb-fallback-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; }
.form-row input, .form-row select, .form-row textarea { padding: 12px 14px; border: 1px solid var(--sage-pale); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 15px; background: var(--cream); color: var(--charcoal); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; border-color: var(--sage); }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* --- Map embed --- */
.map-embed { max-width: 900px; margin: 0 auto; }
.map-embed iframe { display: block; }

/* --- Stats / testimonials grid --- */
.testimonial-stats { background: var(--charcoal); color: var(--cream); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--gold-light); font-weight: 500; line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(250, 247, 242, 0.7); font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 60px; }
.tcard { background: var(--cream); border-radius: 16px; padding: 32px; border: 1px solid var(--sage-pale); display: flex; flex-direction: column; }
.tcard.featured { background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%); border: 2px solid var(--sage); grid-column: span 2; text-align: center; padding: 48px; }
.tcard-stars { color: var(--gold); font-size: 16px; letter-spacing: 4px; margin-bottom: 18px; }
.tcard-condition { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 14px; }
.tcard-quote { font-family: 'Cormorant Garamond', serif; font-size: 17px; line-height: 1.55; color: var(--charcoal); margin: 0 0 22px; font-style: italic; flex: 1; }
.tcard.featured .tcard-quote { font-size: 22px; }
.tcard-author { padding-top: 18px; border-top: 1px solid var(--sage-pale); display: flex; align-items: center; gap: 12px; }
.tcard.featured .tcard-author { justify-content: center; border-top: none; padding-top: 0; }
.tcard-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--sage-light), var(--sage-deep)); display: flex; align-items: center; justify-content: center; color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; flex-shrink: 0; }
.tcard-author-info strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--charcoal); font-weight: 500; }
.tcard-author-info span { color: var(--text-muted); font-size: 12px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; } .testimonials-grid { grid-template-columns: 1fr; } .tcard.featured { grid-column: span 1; } }

/* --- Blog list --- */
.blog-list-item { margin-bottom: 60px; padding-bottom: 40px; border-bottom: 1px solid var(--sage-pale); }
.blog-list-thumb { display: block; margin-bottom: 24px; }
.blog-list-img { width: 100%; border-radius: 12px; height: auto; }
.blog-list-meta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 12px; }
.blog-list-title { font-size: 28px; margin-bottom: 12px; }
.blog-list-title a { color: var(--charcoal); }
.blog-list-title a:hover { color: var(--sage-deep); }
.blog-list-excerpt { color: var(--text-muted); margin-bottom: 16px; }
.blog-pagination { text-align: center; margin-top: 40px; }
.blog-pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--sage-pale); border-radius: 6px; margin: 0 4px; color: var(--sage-deep); display: inline-block; }
.blog-pagination .page-numbers.current { background: var(--sage); color: var(--cream); border-color: var(--sage); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured-card { background: var(--cream); border-radius: 12px; padding: 20px; border: 1px solid var(--sage-pale); text-decoration: none; color: inherit; display: block; }
.featured-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74, 93, 74, 0.08); }
.featured-thumb { width: 100%; border-radius: 8px; margin-bottom: 12px; height: auto; }
.featured-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--charcoal); }
.featured-card p { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; } }

/* --- Single post --- */
.single-post-hero { padding: 180px 0 40px; background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%); text-align: center; }
.post-meta-top { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.single-post-title { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; margin-bottom: 18px; max-width: 900px; margin-left: auto; margin-right: auto; }
.single-post-excerpt { font-size: 19px; color: var(--text-muted); max-width: 700px; margin: 0 auto 20px; line-height: 1.55; }
.single-post-byline { font-size: 13px; color: var(--text-muted); }
.single-post-thumb { background: var(--cream); padding: 0 0 40px; }
.single-post-thumb-img { width: 100%; max-width: 900px; margin: 0 auto; display: block; border-radius: 12px; height: auto; }
.single-post-body { background: var(--cream); padding: 40px 0 120px; }
.post-content { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.8; }
.post-content h2 { font-size: 32px; margin: 48px 0 18px; }
.post-content h3 { font-size: 24px; margin: 36px 0 14px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 24px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { border-left: 4px solid var(--gold); padding: 12px 24px; margin: 32px 0; background: var(--sage-pale); border-radius: 0 8px 8px 0; font-style: italic; }
.post-takeaways { max-width: 720px; margin: 48px auto; padding: 32px; background: var(--sage-pale); border-radius: 16px; border-left: 5px solid var(--gold); }
.post-takeaways h2 { font-size: 24px; margin-top: 0; margin-bottom: 16px; }
.post-takeaways ul { margin: 0 0 0 22px; }
.post-takeaways li { margin-bottom: 10px; }
.post-tags { max-width: 720px; margin: 32px auto; padding-top: 24px; border-top: 1px solid var(--sage-pale); font-size: 14px; }
.tags-label { color: var(--text-muted); margin-right: 8px; }
.post-tag { color: var(--sage-deep); margin-right: 8px; text-decoration: none; }
.post-tag:hover { text-decoration: underline; }
.author-card { max-width: 720px; margin: 48px auto; padding: 32px; background: var(--sage-pale); border-radius: 16px; display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: center; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%); display: flex; align-items: center; justify-content: center; color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; }
.author-name { font-size: 20px; margin-bottom: 4px; }
.author-info p { font-size: 14px; color: var(--text-muted); margin: 0 0 8px; }
.related-posts { max-width: 900px; margin: 60px auto 0; padding-top: 40px; border-top: 1px solid var(--sage-pale); }
.related-posts h2 { font-size: 26px; margin-bottom: 24px; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: var(--cream); border: 1px solid var(--sage-pale); border-radius: 12px; padding: 20px; text-decoration: none; color: inherit; display: block; }
.related-card:hover { border-color: var(--sage); }
.related-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--charcoal); }
.related-card p { font-size: 14px; color: var(--text-muted); margin: 0 0 12px; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }

/* --- Generic page body --- */
.generic-page-body { background: var(--cream); padding: 60px 0 120px; }

/* --- Cornerstone --- */
.cornerstone-hero { padding: 180px 0 60px; background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%); text-align: center; }
.cornerstone-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 20px; max-width: 900px; margin-left: auto; margin-right: auto; }
.cornerstone-lede { font-size: 20px; color: var(--text-muted); max-width: 720px; margin: 0 auto 20px; line-height: 1.6; }
.cornerstone-byline { font-size: 13px; color: var(--text-muted); }
.cornerstone-body { background: var(--cream); padding: 60px 0 120px; }
.cornerstone-container { display: grid; grid-template-columns: 260px 1fr; gap: 48px; max-width: 1100px; }
.cornerstone-toc { position: sticky; top: 100px; align-self: start; background: var(--sage-pale); padding: 24px; border-radius: 12px; border-left: 4px solid var(--gold); }
.cornerstone-toc h2 { font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-deep); margin: 0 0 12px; }
.cornerstone-toc ol { margin: 0; padding-left: 20px; font-size: 14px; line-height: 1.6; }
.cornerstone-toc a { color: var(--sage-deep); text-decoration: none; }
.cornerstone-toc a:hover { text-decoration: underline; }
.cornerstone-content { font-size: 17px; line-height: 1.8; }
.cornerstone-content h2 { font-size: 32px; margin: 48px 0 16px; scroll-margin-top: 100px; }
.cornerstone-figure { margin: 0 0 32px; }
.cornerstone-figure img { width: 100%; max-width: 600px; height: auto; display: block; margin: 0 auto; }
.cornerstone-figure figcaption { font-size: 13px; color: var(--text-muted); text-align: center; font-style: italic; margin-top: 12px; }
@media (max-width: 900px) { .cornerstone-container { grid-template-columns: 1fr; } .cornerstone-toc { position: static; } }

/* --- Quiz --- */
.quiz-container { max-width: 720px; margin: 0 auto; }
.hdb-quiz { background: var(--cream); border: 1px solid var(--sage-pale); border-radius: 16px; padding: 48px; }
.quiz-step { display: flex; flex-direction: column; gap: 24px; }
.quiz-step h2 { font-size: 28px; margin: 0; line-height: 1.2; }
.quiz-step > p { margin: 0; color: var(--text-muted); line-height: 1.65; }
.quiz-progress { position: relative; height: 6px; background: var(--sage-pale); border-radius: 3px; overflow: visible; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--sage), var(--gold)); border-radius: 3px; transition: width 0.4s ease; }
.quiz-progress-label { position: absolute; top: 12px; right: 0; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.quiz-disclaimer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.quiz-disclaimer-list li { padding-left: 24px; position: relative; color: var(--text-muted); font-size: 15px; }
.quiz-disclaimer-list li::before { content: '✓'; color: var(--sage); position: absolute; left: 0; top: 0; font-weight: bold; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; border: 0; padding: 0; margin: 0; }
.quiz-options label { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--cream); border: 1px solid var(--sage-pale); border-radius: 10px; cursor: pointer; transition: all 0.15s; font-size: 16px; }
.quiz-options label:hover { border-color: var(--sage); background: var(--sage-pale); }
.quiz-options input[type="radio"] { width: 18px; height: 18px; accent-color: var(--sage-deep); flex-shrink: 0; }
.quiz-options label:has(input:checked) { border-color: var(--sage-deep); background: var(--sage-pale); }
.quiz-options.needs-answer { animation: shake 0.4s; }
.quiz-options.needs-answer::after { content: 'Please choose one to continue.'; color: #c25a3e; font-size: 13px; margin-top: 8px; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.quiz-result h2 { font-size: 26px; }
.quiz-result-card { background: var(--sage-pale); border-radius: 12px; padding: 24px; margin-bottom: 16px; border-left: 5px solid var(--sage); }
.quiz-result-card.primary { border-left-color: var(--gold); background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%); }
.quiz-result-rank { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.quiz-result-card h3 { font-size: 22px; margin: 0 0 8px; }
.quiz-result-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin: 0 0 12px; }
.quiz-result-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.quiz-disclaimer { font-size: 13px; color: var(--text-muted); border-top: 1px dashed var(--sage-pale); padding-top: 16px; }
@media (max-width: 600px) { .hdb-quiz { padding: 28px 20px; } .quiz-step h2 { font-size: 22px; } }

/* --- Service detail page (individual service templates) --- */
.service-detail-page { background: var(--cream); padding: 60px 0 100px; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; max-width: 1100px; }
.service-detail-content { font-size: 17px; line-height: 1.8; }
.service-detail-content h2 { font-size: 30px; margin: 40px 0 16px; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p { margin-bottom: 16px; }
.service-detail-content ul { margin: 0 0 24px 22px; }
.service-detail-content li { margin-bottom: 10px; }
.service-detail-aside { background: var(--sage-pale); border-radius: 16px; padding: 28px; align-self: start; position: sticky; top: 100px; border-left: 4px solid var(--gold); }
.service-detail-aside h3 { font-size: 18px; margin: 0 0 16px; letter-spacing: 0.04em; }
.service-facts { margin: 0 0 24px; }
.service-facts dt { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-deep); font-weight: 600; margin-top: 14px; }
.service-facts dt:first-child { margin-top: 0; }
.service-facts dd { margin: 4px 0 0; font-size: 14px; color: var(--charcoal); line-height: 1.55; }
.service-aside-cta { width: 100%; text-align: center; display: block; }
.service-aside-phone { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 12px; }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } .service-detail-aside { position: static; } }

/* --- Hero CTA / btn variants --- */
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.btn-outline-light { background: transparent; color: var(--cream); border: 2px solid rgba(250, 247, 242, 0.4); }
.btn-outline-light:hover, .btn-outline-light:focus-visible { background: rgba(250, 247, 242, 0.1); border-color: var(--cream); }
.nav-cta { background: var(--sage); color: var(--cream); padding: 8px 16px; border-radius: 6px; }
.nav-cta:hover { background: var(--sage-deep); }
.text-link { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; font-weight: 500; }
.text-link:hover, .text-link:focus-visible { color: var(--gold); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* --- Footer newsletter --- */
.footer-newsletter form { display: flex; flex-direction: column; gap: 8px; }
.footer-newsletter input[type="email"] { padding: 10px 12px; border: 1px solid rgba(250, 247, 242, 0.2); background: rgba(250, 247, 242, 0.08); color: var(--cream); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 14px; }
.footer-newsletter input[type="email"]::placeholder { color: rgba(250, 247, 242, 0.5); }
.footer-newsletter input[type="email"]:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-newsletter button { padding: 10px 16px; background: var(--gold); color: var(--charcoal); border: 0; border-radius: 6px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; cursor: pointer; letter-spacing: 0.04em; }
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-blog-feed { list-style: none; padding: 0; margin: 0; }
.footer-blog-feed li { margin-bottom: 10px; font-size: 13px; line-height: 1.5; }
.footer-blog-feed a { color: var(--cream); opacity: 0.85; }
.footer-blog-feed a:hover { opacity: 1; color: var(--gold-light); }

/* --- Sticky CTA body padding when active --- */
body.has-sticky-cta-mobile { padding-bottom: 64px; }
body.has-sticky-cta-desktop { padding-top: 48px; }

/* --- v2.0.1: headshot wiring --- */
/* (removed in v2.0.3: a stale .bio-photo override here was using the `background:` shorthand,
   which reset the background-image, background-size, and background-position set by v1's
   primary .bio-photo rule at line 739. That's why the homepage hero showed the headshot
   correctly but the About bio-photo only showed the blurred bokeh background — the image
   was being loaded but positioned/scaled wrong.) */

/* --- v2.0.2: bio-photo and hero-visual use the headshot URL from v1 CSS by default;
   the inline-style override in page-about.php means HDB_HEADSHOT_URL in functions.php
   is the single source of truth (edit the constant if the URL ever changes). --- */

/* --- v2.0.4: bio-photo defensive sizing fallback ---
   If `aspect-ratio` is overridden or unsupported, ensure the div always has a
   minimum height so the background-image has somewhere to render. This is the
   single source of truth for the bio-photo block on the About page. */
.bio-photo { min-height: 480px; }
@media (max-width: 900px) { .bio-photo { min-height: 380px; } }
