/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(75, 96, 86, 0.12);
  color: var(--terracotta);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { width: 16px; height: 16px; color: var(--success); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #3a5033 0%, #2a3b27 50%, #1c281a 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(28, 40, 26, 0.25);
}

/* Real clinic photo fills the panel */
.hero-visual .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Subtle scrim for depth + so the bottom card grounds cleanly on the photo */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28, 40, 26, 0.10) 0%, transparent 30%, transparent 62%, rgba(28, 40, 26, 0.28) 100%);
}

.visual-card { z-index: 2; }

.visual-card {
  position: absolute;
  background: var(--paper);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(28, 40, 26, 0.2);
  font-size: 0.85rem;
}

/* Cards sit low so they never cover the faces in the hero photo:
   services mid-left, hours bottom-right. */
.vc-1 { top: 46%; left: 4%; width: 49%; }
.vc-1 .label { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.vc-1 .rating { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.vc-1 .stars { color: #f4a030; font-size: 0.95rem; }
.vc-1 .rating-text { font-weight: 600; color: var(--ink); }

.vc-2 { bottom: 5%; right: 4%; width: 54%; }
.vc-2 .label { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.vc-2 .vc-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.vc-2 .vc-name { font-weight: 600; color: var(--ink); }
.vc-2 .vc-spec { color: var(--terracotta); font-size: 0.85rem; }

/* ---------- Mobile hero refinements ---------- */
@media (max-width: 620px) {
  /* Trim the oversized top gap so the hero doesn't start so far down. */
  .hero { padding: 28px 0 52px; }
  /* Keep the long "Now welcoming ... Burlington, ON" eyebrow on one line. */
  .hero .eyebrow { font-size: 0.78rem; padding: 6px 12px; letter-spacing: 0; }
  /* The two floating info cards are a desktop flourish: on a narrow photo they
     overlap and clip. Show the photo clean on phones; the same hours and
     services live in the sections below and in the footer. */
  .visual-card { display: none; }
  .hero-visual { aspect-ratio: 4 / 4; }
}

/* ---------- Who we help ---------- */
.who {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

@media (max-width: 900px) {
  .persona-grid { grid-template-columns: 1fr; }
}

.persona {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.persona:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 59, 39, 0.08);
}

.persona-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(75, 96, 86, 0.12);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.persona-icon svg { width: 26px; height: 26px; }

.persona h3 { color: var(--forest-dark); margin-bottom: 10px; }
.persona p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 18px; flex-grow: 1; }

.persona-link {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.persona-link:hover { gap: 10px; text-decoration: none; }

/* "See the conditions we help with" link under the who-we-help intro. Mirrors
   the .persona-link arrow style; inherits the section-intro's left alignment. */
.who-more-link { margin-top: 18px; margin-bottom: 0; }
.who-more-link a {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.who-more-link a:hover { gap: 10px; text-decoration: underline; }

/* ---------- Our services ---------- */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: block;
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta);
  box-shadow: 0 12px 32px rgba(42, 59, 39, 0.08);
  text-decoration: none;
}
.service-card h3 { color: var(--forest-dark); font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.service-card .service-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--terracotta-ink);
  font-weight: 600;
  font-size: 0.9rem;
}
.service-card:hover .service-more { text-decoration: underline; }

/* ---------- Doctors ---------- */
.doctors { background: var(--cream); }

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 12px;
}

@media (max-width: 800px) {
  .doctor-grid { grid-template-columns: 1fr; }
}

.doctor-card {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.doctor-photo {
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, #3a5033 0%, #2a3b27 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.doctor-photo.emily {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(143, 179, 161, 0.45), transparent 55%),
    linear-gradient(135deg, #3a5033 0%, #2a3b27 100%);
}
.doctor-photo.cole {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(234, 217, 192, 0.35), transparent 55%),
    linear-gradient(135deg, #2a3b27 0%, #3a5033 100%);
}

.doctor-photo img {
  max-height: 110%;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
  margin-bottom: -4%;
}

.doctor-body { padding: 28px; }

.specialty-tag {
  display: inline-block;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.doctor-body h3 {
  font-size: 1.5rem;
  color: var(--forest-dark);
  margin-bottom: 14px;
}

.credentials {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.doctor-body p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.doctor-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tag {
  font-size: 0.8rem;
  padding: 5px 11px;
  border-radius: 6px;
  background: rgba(42, 59, 39, 0.06);
  color: var(--forest-dark);
  font-weight: 500;
}

.team-more { text-align: center; margin-top: 36px; }

/* ---------- Also at the clinic ---------- */
.also {
  background: var(--cream);
  padding-top: 20px;
  padding-bottom: 80px;
}

.also-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}
.also-intro h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.also-intro p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.also-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .also-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

.also-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(143, 179, 161, 0.5), transparent 60%),
    linear-gradient(135deg, #3a5033 0%, #2a3b27 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--terracotta-soft);
}

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

.also-content .tag-line {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.also-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.also-content .credentials {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.also-content p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ---------- Approach ---------- */
.approach {
  background: var(--forest-dark);
  color: var(--cream);
}
.approach h2 { color: var(--cream); }
.approach .section-eyebrow { color: var(--terracotta-soft); }
.approach .section-intro p { color: rgba(250, 248, 243, 0.75); }

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

@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  position: relative;
}

.step-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.6rem;
  color: var(--terracotta-soft);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
}

.step h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step p {
  color: rgba(250, 248, 243, 0.75);
  font-size: 0.95rem;
}

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) { .pricing-layout { grid-template-columns: 1fr; gap: 36px; } }

.pricing-intro p {
  color: var(--ink-soft);
  margin-top: 14px;
}

.pricing-table {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.pricing-row:last-child { border-bottom: none; }

.pricing-row .service { flex: 1; }
.pricing-row .service-name { font-weight: 600; color: var(--ink); }
.pricing-row .service-duration { color: var(--muted); font-size: 0.85rem; margin-top: 2px; }
.pricing-row .price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  color: var(--forest-dark);
  font-weight: 600;
  white-space: nowrap;
}
.pricing-row .price .hst {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-section-header {
  background: rgba(42, 59, 39, 0.04);
  padding: 10px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insurance-note {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(47, 122, 74, 0.08);
  border-left: 3px solid var(--success);
  border-radius: 4px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.insurance-note strong { color: var(--forest-dark); }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.rating-summary .big-score {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  color: var(--forest-dark);
  font-weight: 600;
  line-height: 1;
}
.rating-summary .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rating-summary .stars { color: #f4a030; font-size: 1.1rem; letter-spacing: 1px; }
.rating-summary .count { color: var(--muted); font-size: 0.85rem; }

/* Live Google review summary ([wsc_review_stats]) - subtle, sits opposite the
   heading in .review-header and wraps beneath it on small screens. */
.review-stats {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
}
.review-stats .review-stars {
  color: #f4a030;
  font-size: 1.02rem;
  letter-spacing: 2px;
  line-height: 1;
}
.review-stats .review-stats-text {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.review-stats .review-stats-text strong {
  color: var(--forest-dark);
  font-weight: 700;
}
@media (max-width: 560px) {
  .review-stats { padding-bottom: 0; }
  .review-stats .review-stats-text { font-size: 0.9rem; }
}

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

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: #f4a030; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 18px;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.review-author .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--terracotta-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-dark);
  font-weight: 600;
  font-size: 0.78rem;
}
.review-author .name { font-weight: 600; color: var(--ink); }
.review-author .date { color: var(--muted); }

.reviews-footer {
  margin-top: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Story ---------- */
.story {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) { .story-layout { grid-template-columns: 1fr; } }

.story-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.story-quote {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--terracotta);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  color: var(--forest-dark);
  font-size: 1.1rem;
}
.story-quote .attribution {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.timeline {
  background: var(--paper);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 30px rgba(42, 59, 39, 0.06);
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 36px;
  width: 2px;
  height: calc(100% - 10px);
  background: var(--line);
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--terracotta);
  flex-shrink: 0;
  margin-top: 4px;
  z-index: 1;
}

.timeline-content .year {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  color: var(--forest-dark);
  font-weight: 600;
}
.timeline-content .event {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* ---------- Location & hours ---------- */
.location { background: var(--paper); }

.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

.map-embed {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  width: 100%;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hours-box {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.address-block {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.address-block .label {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.address-block .value {
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2px;
}
.address-block a { font-weight: 500; }

.hours-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--muted); }
.hours-list .time { color: var(--ink); font-weight: 500; }
.hours-list .closed { color: var(--muted); font-style: italic; }

.hours-heading {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hours-note {
  font-size: 0.87rem;
  color: var(--ink-soft);
  background: rgba(75, 96, 86, 0.08);
  padding: 12px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--terracotta);
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }

.faq .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform 0.2s;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--forest-dark);
  color: var(--cream);
  text-align: center;
  padding: 96px 24px;
}
.final-cta h2 {
  color: var(--cream);
  max-width: 720px;
  margin: 0 auto 20px;
}
.final-cta p {
  max-width: 600px;
  margin: 0 auto 36px;
  color: rgba(250, 248, 243, 0.78);
  font-size: 1.08rem;
}
.final-cta .btn-primary {
  font-size: 1.05rem;
  padding: 14px 28px;
}
.final-cta .sub {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(250, 248, 243, 0.6);
}
.final-cta .sub a { color: var(--terracotta-soft); }

/* ---------- From the blog (recent posts) ---------- */
.blog-teaser { background: var(--cream); }
.blog-teaser-grid { margin-top: 8px; }
.blog-teaser-grid .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 860px) {
  .blog-teaser-grid .wp-block-post-template { grid-template-columns: 1fr; }
}
.blog-teaser-grid .wp-block-post { list-style: none; margin: 0; }
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { box-shadow: 0 12px 30px rgba(20, 30, 25, 0.08); transform: translateY(-3px); }
.blog-card .wp-block-post-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.25;
  margin: 0 0 10px;
}
.blog-card .wp-block-post-title a { color: var(--forest-dark); text-decoration: none; }
.blog-card .wp-block-post-title a:hover { color: var(--terracotta); }
.blog-card .blog-card-date { color: var(--muted); font-size: 0.8rem; margin-bottom: 12px; }
.blog-card .wp-block-post-excerpt { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.blog-card .wp-block-post-excerpt__excerpt { margin: 0; }
.blog-card .wp-block-post-excerpt__more-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: none;
}
.blog-card .wp-block-post-excerpt__more-link:hover { text-decoration: underline; }
.blog-teaser-more { text-align: center; margin-top: 36px; }

/* ---------- Reviews feed (Smash Balloon), matched to the site ----------
   The [reviews-feed] plugin renders these real classes (sb-post-item-wrap,
   sb-item-text, sb-feed-header-*, sb-btn). Scoped to .reviews; !important is
   needed to beat the plugin's own inline styles. */

/* Kill the plugin's large top padding/margin (it stacks 80px on .sbr-feed,
   .sb-feed-container AND .sb-feed-posts) so the cards sit directly under our
   "Reviews from our patients." heading instead of a tall empty band. */
.reviews .sbr-feed,
.reviews .sb-feed-container,
.reviews .sb-feed-posts { padding-top: 0 !important; padding-bottom: 0 !important; margin-top: 0 !important; margin-bottom: 0 !important; }

/* Stack the feed so the review cards come first and the button row sits below. */
.reviews .sb-feed-container { display: flex !important; flex-direction: column !important; }
.reviews .sb-feed-posts { order: 1; }
.reviews .sb-feed-header { order: 2; }

/* Hide the plugin's duplicate "Reviews" heading + rating summary (we already
   show our own heading); keep only the button row, centered below the cards. */
.reviews .sb-feed-header,
.reviews .sb-feed-header-content,
.reviews .sb-feed-header-bottom {
  padding: 0 !important; margin: 0 !important; min-height: 0 !important;
  background: none !important; border: 0 !important;
}
.reviews .sb-feed-header-content > *:not(.sb-feed-header-bottom) { display: none !important; }
.reviews .sb-feed-header-bottom { display: flex !important; justify-content: center !important; margin-top: 30px !important; }

/* Replace the plugin's JS masonry (absolute-positioned cards + a fixed inline
   height, plus its own 80px top/bottom padding and a phantom grid row from the
   hidden 4th review) with a plain flex row we control, matching the site's own
   card grids. Flex ignores display:none items, so no phantom row/gap remains.
   !important beats the plugin's non-important inline styles even when its
   masonry JS re-runs on resize. */
.reviews .sb-feed-posts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  height: auto !important;
  padding: 0 !important;
  position: static !important;
  align-items: stretch !important;
}
.reviews .sb-post-item-wrap {
  position: static !important;
  flex: 1 1 calc(33.333% - 16px) !important;
  width: auto !important; max-width: none !important;
  left: auto !important; top: auto !important;
}
@media (max-width: 900px) { .reviews .sb-post-item-wrap { flex-basis: calc(50% - 12px) !important; } }
@media (max-width: 600px) { .reviews .sb-post-item-wrap { flex-basis: 100% !important; } }

/* Each review becomes a card, matching .service-card */
.reviews .sb-post-item-wrap {
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-card) !important;
  padding: 22px !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease;
}
.reviews .sb-post-item-wrap:hover { border-color: var(--terracotta) !important; }
.reviews .sb-post-item { padding: 0 !important; border: 0 !important; box-shadow: none !important; }

/* Text + author in the site's type + colours */
.reviews .sb-item-text { color: var(--ink-soft) !important; font-size: 0.96rem !important; line-height: 1.62 !important; }
.reviews .sb-item-author-name { color: var(--forest-dark) !important; font-weight: 600 !important; }
.reviews .sb-item-author-date { color: var(--muted) !important; }
.reviews .sb-more, .reviews .sb-expand { color: var(--terracotta-ink) !important; font-weight: 600 !important; }

/* Google review stars -> gold (matches the site's rating accent, warmer than blue) */
.reviews .sb-item-rating svg, .reviews .sb-item-rating-icon svg,
.reviews .sb-item-rating svg *, .reviews .sb-item-rating-icon svg * {
  color: #f4a030 !important; fill: #f4a030 !important; stroke: #f4a030 !important;
}

/* "Write a Review" -> the site's secondary (outlined) button */
.reviews .sb-btn.sb-feed-header-btn {
  background: transparent !important;
  color: var(--forest-dark) !important;
  border: 1.5px solid var(--forest) !important;
  border-radius: var(--radius-pill) !important;
  padding: 10px 18px !important;
  font-weight: 600 !important; font-size: 0.92rem !important;
  box-shadow: none !important; transition: all 0.2s ease;
}
.reviews .sb-btn.sb-feed-header-btn:hover { background: var(--forest) !important; color: #fff !important; }
.reviews .sb-btn.sb-feed-header-btn svg, .reviews .sb-btn.sb-feed-header-btn path,
.reviews .sb-btn-icon svg, .reviews .sb-btn-icon path { fill: currentColor !important; color: currentColor !important; }

/* ---------- Self-hosted review cards ([wsc_reviews]) ----------
   Used when we have live Google review text; mirrors the Smash Balloon card
   look above so the section is identical whichever source renders. */
.wsc-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.wsc-review-card {
  flex: 1 1 calc(33.333% - 16px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.wsc-review-card:hover { border-color: var(--terracotta); }
@media (max-width: 900px) { .wsc-review-card { flex-basis: calc(50% - 12px); } }
@media (max-width: 600px) { .wsc-review-card { flex-basis: 100%; } }
.wsc-review-stars { color: #f4a030; letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 12px; }
.wsc-review-text { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.62; margin: 0 0 16px; }
.wsc-review-meta { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.wsc-review-author { color: var(--forest-dark); font-weight: 600; }
.wsc-review-when { color: var(--muted); font-size: 0.85rem; }

/* ---------- Self-hosted, theme-aware map ([wsc_map]) ----------
   Cached light/dark static images swapped by the device colour scheme, so the
   map matches dark mode with no per-visitor Google call. */
.map-static > a { display: block; width: 100%; height: 100%; }
.map-static .map-img { display: block; width: 100%; height: 100%; object-fit: cover; }
.map-static .map-img--dark { display: none; }
@media (prefers-color-scheme: dark) {
  .map-static .map-img--light { display: none; }
  .map-static .map-img--dark { display: block; }
}

/* ---------- Dark mode: keep the always-dark panels dark ----------
   .approach and .final-cta use --forest-dark (bg) + --cream (text) as a fixed
   dark panel. Those tokens flip in dark mode, so without this the panels invert
   to a light background with light (invisible) text. This block lives in
   homepage.css on purpose: it loads after style.css and so wins the cascade. */
@media (prefers-color-scheme: dark) {
  .approach, .final-cta { background: #0e140b; }
  .approach h2, .final-cta h2, .step h3 { color: #eef2ef; }
  .approach .section-intro p, .step p, .final-cta p { color: rgba(238, 242, 239, 0.82); }
  .approach .section-eyebrow { color: var(--terracotta-soft); }
  .final-cta .sub { color: rgba(238, 242, 239, 0.72); }
  .final-cta .sub a { color: var(--terracotta-soft); }
}
