/* ===========================
   Herb4Us & Acupuncture
   Shared stylesheet
   =========================== */

:root {
  --color-sage: #899277;
  --color-sage-dark: #6b7460;
  --color-rose: #ebc9b0;
  --color-rose-light: #f5e3d3;
  --color-plum: #593e59;
  --color-plum-dark: #402d40;
  --color-cream: #fdfbf8;
  --color-white: #ffffff;
  --color-text: #343434;
  --color-text-light: #6b6b6b;
  --color-border: #e6e1d8;

  --font-display: 'Amiri', 'Amiri Fallback', Georgia, serif;
  --font-body: 'Jost', 'Jost Fallback', Arial, sans-serif;
  --font-heading-alt: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;

  --max-width: 1160px;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(89, 62, 89, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-plum);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Underline links in body/prose content (mirrors original site) */
main p a,
main li a,
main blockquote a {
  text-decoration: underline;
}

main p a:hover,
main li a:hover {
  opacity: 0.8;
}

:focus-visible {
  outline: 3px solid var(--color-sage);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-plum-dark);
}

h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); text-wrap: balance; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: 0.6em; text-wrap: balance; }
h3 { font-size: 1.2rem; margin-bottom: 0.4em; font-weight: 400; text-wrap: balance; }

/* Body text balance — prevents short orphaned lines */
p { text-wrap: pretty; }

p { margin-bottom: 1em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-sage-dark);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-plum);
  color: var(--color-plum);
}
.btn-outline:hover {
  background: var(--color-plum);
  color: var(--color-white);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-plum-dark);
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}

.main-nav a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius);
  display: block;
  white-space: nowrap;
}

.main-nav a:hover {
  background: var(--color-rose-light);
  text-decoration: none;
  color: var(--color-plum-dark);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  list-style: none;
  padding: 6px;
  z-index: 10;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

.dropdown a {
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-plum-dark);
  line-height: 1;
  padding: 4px 6px;
}

/* Desktop nav arrow indicator */
.main-nav .arrow {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.main-nav .has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* ===== Mobile drawer ===== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 84vw);
  height: 100vh;
  background: var(--color-plum);
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 48px;
  transform: translateX(110%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

.mobile-drawer.open {
  transform: translateX(0);
  pointer-events: all;
}

/* Top-level mobile list */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Top-level links */
.mobile-nav-list > li > a {
  display: block;
  padding: 15px 28px;
  color: var(--color-white);
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}

.mobile-nav-list > li > a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-rose-light);
}

/* Parent button (for items with sub-pages) */
.mobile-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 28px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.mobile-parent:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-rose-light);
}

.mobile-arrow {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.mobile-parent[aria-expanded="true"] .mobile-arrow {
  transform: rotate(180deg);
}

/* Sub-page list */
.mobile-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0,0,0,0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.mobile-sub.open {
  max-height: 400px;
}

.mobile-sub li a {
  display: block;
  padding: 12px 28px 12px 40px;
  color: var(--color-rose-light);
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-sub li a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--color-white);
}

/* Call Us + Book buttons at bottom of drawer */
.mobile-drawer-actions {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 8px;
}

.mobile-drawer-actions .btn {
  width: 100%;
  justify-content: center;
}

.mobile-drawer-actions .btn-primary {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-white);
}

.mobile-call {
  border-color: rgba(255,255,255,0.5) !important;
  color: var(--color-white) !important;
}

.mobile-call:hover {
  background: rgba(255,255,255,0.1) !important;
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.nav-overlay.open {
  display: block;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; }
}

/* ===== Promo banner ===== */
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.promo-banner {
  background: var(--color-plum);
  color: var(--color-rose-light);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
  z-index: 99;
}

.promo-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.promo-banner:hover .promo-track {
  animation-play-state: paused;
}

.promo-item {
  display: inline-block;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding-right: 40px;
}

.promo-item strong {
  color: var(--color-white);
  font-weight: 700;
}

.promo-item a {
  color: var(--color-rose);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.15s ease;
}

.promo-item a:hover {
  color: var(--color-white);
}




/* ===== Artful overlapping image layouts ===== */
.img-overlap {
  position: relative;
}

/* Standard: big left, small right overlapping */
.img-overlap .img-big {
  display: block;
  width: 78%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(89,62,89,0.15);
  position: relative;
  z-index: 1;
}

.img-overlap .img-small {
  display: block;
  width: 48%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 32px rgba(89,62,89,0.18);
  position: absolute;
  bottom: -28px;
  right: 0;
  z-index: 2;
  border: 4px solid var(--color-cream);
}

/* Flipped: big right, small left overlapping */
.img-overlap.flip .img-big {
  margin-left: auto;
}

.img-overlap.flip .img-small {
  left: 0;
  right: auto;
}

/* Hero overlap — constrain width so it matches the two-col sections visually */
.hero .img-overlap {
  max-width: 560px;
}

@media (max-width: 700px) {
  .img-overlap .img-big { width: 100%; }
  .img-overlap .img-small {
    position: relative;
    width: 55%;
    bottom: auto;
    right: auto;
    margin-top: 12px;
    margin-left: auto;
    border: 3px solid var(--color-cream);
  }
  .img-overlap { padding-bottom: 0 !important; }
  .hero .img-overlap { max-width: 100%; }
}

/* two-col sections need padding-bottom to show the hanging small image */
.two-col .img-overlap {
  padding-bottom: 40px;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-cream) 60%);
  padding: 64px 0 56px;
}

.hero-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 0.5em;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--color-text);
  max-width: 640px;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.hero-images img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ===== Sections ===== */
/* ── Section background palette ──
   Pattern repeats: pink → cream → green → cream
   .s-pink  = tannish pink  (positions 1, 5, 9…)
   .s-cream = nav-bar cream (positions 2, 4, 6, 8…)
   .s-green = sage green    (positions 3, 7, 11…)
*/
/* ── Section palette: rose-light → cream → green → cream → repeat
   Direction alternates each position: 135° → 315° → 135° → 315°
   s-pink  pos 1: 135deg (top-left rose → bottom-right light)
   s-cream pos 2: 315deg (bottom-right cream → top-left lighter)
   s-green pos 3: 135deg (top-left green → bottom-right light)
   s-cream pos 4: 315deg (same cream, opposite direction)
*/
.s-pink {
  padding: 64px 0;
  background: linear-gradient(135deg, #f5e3d3 0%, #fdf9f6 100%);
}

.s-cream {
  padding: 64px 0;
  background: linear-gradient(315deg, #fdfbf8 0%, #f5f2ee 100%);
}

.s-green {
  padding: 64px 0;
  background: linear-gradient(135deg, #e4ece0 0%, #f4f7f2 100%);
}

/* Legacy aliases */
.section      { padding: 64px 0; background: linear-gradient(315deg, #fdfbf8 0%, #f5f2ee 100%); }
.section-alt  { padding: 64px 0; background: linear-gradient(135deg, #f5e3d3 0%, #fdf9f6 100%); }
.section-sage { padding: 64px 0; background: linear-gradient(135deg, #e4ece0 0%, #f4f7f2 100%); }

.section-header {
  max-width: 880px;
  margin-bottom: 40px;
}

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

/* Body paragraph text — wider container prevents 1-2 word orphan lines */
main .container p {
  max-width: 860px;
}

main .container.two-col p {
  max-width: 100%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.image-pair img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .two-col.reverse { direction: ltr; }
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card h3 {
  color: var(--color-plum-dark);
}

.card p {
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  border-color: var(--color-sage);
  box-shadow: var(--shadow);
}

.service-card a {
  color: var(--color-plum-dark);
  font-weight: 600;
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ===== Condition cards (with images) ===== */
.condition-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}

.condition-card:hover {
  box-shadow: var(--shadow);
}

.condition-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.condition-card .content {
  padding: 22px;
}

.condition-card .links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.condition-card .links a {
  font-size: 0.82rem;
  background: var(--color-rose-light);
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--color-plum-dark);
}
.condition-card .links a:hover {
  background: var(--color-rose);
  text-decoration: none;
}

/* ===== Divider (signature element) ===== */
.divider {
  width: 100%;
  height: 32px;
  display: block;
  margin: 0 auto;
}

/* ===== FAQ accordion ===== */
.faq-group {
  margin-bottom: 40px;
}

.faq-group h3 {
  margin-bottom: 18px;
  color: var(--color-sage-dark);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  font-weight: 700;
}

details.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

details.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-plum-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-sage);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

details.faq-item p {
  margin-top: 14px;
  color: var(--color-text);
}

/* ===== Testimonial slider ===== */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-card .stars {
  color: var(--color-sage);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card .author img {
  width: 22px;
  height: 22px;
}

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

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--color-plum);
  color: var(--color-white);
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
}

.cta-banner p {
  color: var(--color-rose-light);
  max-width: 600px;
  margin: 0 auto 1.5em;
}

.cta-banner .btn-row {
  justify-content: center;
}

.cta-banner .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}
.cta-banner .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-plum);
}

/* ===== Footer ===== */
/* ===== Footer ===== */
.site-footer {
  background: var(--color-plum-dark);
  color: var(--color-rose-light);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--color-white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-grid p {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 6px;
  line-height: 1.55;
}

/* Contact block with icons */
.footer-contact-block {
  margin-bottom: 16px;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-rose-light);
  font-size: 0.88rem;
  margin-bottom: 10px;
  opacity: 0.85;
  text-decoration: none;
  line-height: 1.45;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.footer-contact-line svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-contact-line:hover {
  opacity: 1;
  color: var(--color-white);
  text-decoration: underline;
}

/* Quick links */
.footer-grid > div > a {
  color: var(--color-rose-light);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 9px;
  opacity: 0.82;
  text-decoration: none;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.footer-grid > div > a:hover {
  opacity: 1;
  color: var(--color-white);
  text-decoration: underline;
}

/* Logo */
.footer-logo {
  height: 38px;
  margin-bottom: 18px;
  display: block;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--color-rose-light) !important;
  opacity: 0.85 !important;
  transition: background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
}

.social-btn:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.6) !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

/* CTA column */
.footer-cta-col .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

.footer-book-btn {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-white) !important;
  opacity: 1 !important;
  font-size: 0.88rem !important;
  padding: 11px 18px;
  display: flex !important;
}

.footer-book-btn:hover {
  background: var(--color-sage-dark) !important;
  border-color: var(--color-sage-dark) !important;
  text-decoration: none !important;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.65;
}

.footer-bottom a {
  color: var(--color-rose-light);
  transition: opacity 0.15s ease;
}

.footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Google Reviews Card ===== */
.reviews-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-cream);
}

.reviews-header h3 {
  font-size: 1.15rem;
  margin: 0;
  font-family: var(--font-body);
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-score {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-plum-dark);
}

.reviews-count {
  color: var(--color-text);
  font-size: 0.9rem;
}

/* Scrollable area — shows 2-3 reviews, rest scrollable */
.reviews-scroll {
  max-height: 380px;
  overflow-y: auto;
  padding: 0 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-sage) transparent;
}

.reviews-scroll::-webkit-scrollbar {
  width: 5px;
}
.reviews-scroll::-webkit-scrollbar-thumb {
  background: var(--color-sage);
  border-radius: 10px;
}

.review-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: start;
}

.review-item:last-child {
  border-bottom: none;
}

.review-g-icon img {
  width: 32px;
  height: 32px;
}

.review-meta {
  color: var(--color-text);
  font-size: 0.82rem;
  margin-bottom: 3px;
}

.review-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.review-stars-right {
  color: #fbbc04;
  font-size: 1rem;
  white-space: nowrap;
  letter-spacing: 1px;
}

.reviews-card-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--color-border);
  background: var(--color-cream);
  text-align: center;
}


/* ===== Form ===== */
.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--color-plum-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-sage);
  border-color: var(--color-sage);
}

.form-status {
  font-size: 0.9rem;
  margin-top: 8px;
}
.form-status.success { color: var(--color-sage-dark); }
.form-status.error { color: #b3514a; }

/* ===== Misc page bits ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.team-card h3 { margin-bottom: 2px; }
.team-card .role {
  color: var(--color-sage-dark);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 12px;
  display: block;
}
.team-card p {
  font-size: 0.92rem;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.affiliation-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.affiliation-block img {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
@media (max-width: 700px) {
  .affiliation-block { grid-template-columns: 1fr; }
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 20px;
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--color-sage-dark); }

/* Hero two-col layout for service/specialty pages */
.hero .two-col {
  align-items: center;
}

.hero .two-col > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero img-overlap needs padding-bottom to show hanging small image */
.hero .img-overlap {
  padding-bottom: 36px;
  /* Remove the max-width constraint when inside two-col — it has its own column width */
}

.hero .two-col .img-overlap {
  max-width: none;
}

/* ===== Conditions page hero two-col ===== */
.conditions-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.conditions-hero img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(89,62,89,0.15);
}
@media(max-width:760px){ .conditions-hero{grid-template-columns:1fr;} }

/* FAQ boxes with stronger contrast on pink background */
.faq-full .faq-item {
  background: #fff !important;
  border: 1px solid var(--color-rose) !important;
}
.faq-full .faq-item summary {
  color: var(--color-plum-dark);
}

/* ===== Article page related posts ===== */
.pg-btn {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer; font-size: .9rem;
  color: var(--color-plum-dark);
  transition: background .15s, color .15s;
  display: inline-flex; align-items: center; justify-content: center;
}
.pg-btn:hover, .pg-btn.active {
  background: var(--color-plum-dark);
  color: #fff;
  border-color: var(--color-plum-dark);
}
