/* ═══════════════════════════════════════════════════════
   HUMBOLDT ACUPUNCTURE — Modern Redesign
   Earthy, calm, nature-forward. Redwoods & Pacific.
   ═══════════════════════════════════════════════════════ */

:root {
  /* Palette — inspired by Humboldt: forest greens, ocean blues, warm earth */
  --forest-deep:    #1a3a2a;
  --forest:         #2d5a3f;
  --forest-light:   #3d7a55;
  --sage:           #7a9e7e;
  --sage-light:     #b5c9b7;
  --ocean:          #3a6b7e;
  --ocean-light:    #5a9bb5;
  --sand:           #e6ede0;
  --sand-dark:      #d4ddcc;
  --cream:          #eef2ea;
  --bark:           #4a3728;
  --bark-light:     #6b5240;
  --white:          #ffffff;
  --text:           #2c2c2c;
  --text-light:     #5a5a5a;
  --text-muted:     #8a8a8a;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 5rem 0;
  --container-width: 1140px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--forest-light); }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════
   TOP BAR
   ═══════════════════════════════ */
.top-bar {
  background: var(--forest-deep);
  color: var(--sage-light);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar-phone:hover { color: var(--sage-light); }
.top-bar-phone svg { flex-shrink: 0; }

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.navbar {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 48px; width: auto; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.15;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--forest);
  background: var(--sand);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 180px;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Redwood forest background — swap with Chelsea's photo when available */
  background:
    url('../images/hero-coast.jpg')
    center/cover no-repeat fixed;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 58, 42, 0.55) 0%,
    rgba(26, 58, 42, 0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.92;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 90, 63, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-secondary {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.btn-secondary:hover {
  background: var(--ocean-light);
  border-color: var(--ocean-light);
  color: var(--white);
}
.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 6px;
}
.btn-small:hover {
  background: var(--forest-light);
  color: var(--white);
}

/* ═══════════════════════════════
   SECTIONS (general)
   ═══════════════════════════════ */
.section {
  padding: var(--section-pad);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--forest-deep);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ═══════════════════════════════
   WELCOME
   ═══════════════════════════════ */
.welcome { background: #ccdbbd; } /* deeper sage per Chelsea — logo is a sage-matted transparent PNG, blends seamlessly */
.welcome-image { display: flex; justify-content: center; }
.welcome-image img { max-width: 360px; width: 100%; height: auto; }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.welcome-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--forest-deep);
  margin-bottom: 1.25rem;
}
.welcome-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.image-placeholder {
  background: var(--sand);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-style: italic;
  border: 2px dashed var(--sand-dark);
}

/* ═══════════════════════════════
   SERVICES
   ═══════════════════════════════ */
.services { background: var(--sand); }
.services .section-subtitle { margin-bottom: 1.25rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.service-icon {
  margin-bottom: 1rem;
  color: var(--forest);
}
.service-icon svg {
  width: 56px;
  height: 56px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ═══════════════════════════════
   ABOUT / TEAM
   ═══════════════════════════════ */
.about-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  text-align: left;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.team-photo {
  margin-bottom: 0;
  flex-shrink: 0;
}
.team-photo img {
  width: 160px;
  height: 240px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid var(--sage-light);
}
.photo-placeholder {
  width: 160px;
  height: 240px;
  border-radius: 10px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.85rem;
  border: 3px solid var(--sage-light);
  flex-shrink: 0;
}
.team-bio { flex: 1; }
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--forest-deep);
  margin-bottom: 0.6rem;
}
.team-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: none;
  margin: 0;
}

/* ═══════════════════════════════
   VETERANS
   ═══════════════════════════════ */
.veterans {
  background: linear-gradient(135deg, var(--forest-deep), var(--ocean));
  padding: 3rem 0;
}
.veterans-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--white);
}
.veterans-icon { font-size: 3.5rem; flex-shrink: 0; }
.veterans-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.veterans-text p {
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
.testimonials { background: var(--sand); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-card cite {
  color: var(--forest);
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
}

/* ═══════════════════════════════
   PARALLAX BREAK (ocean)
   ═══════════════════════════════ */
.parallax-break {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/ocean-coast.jpg') center/cover no-repeat fixed;
  color: var(--white);
}
.parallax-break .parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 58, 42, 0.5) 0%,
    rgba(58, 107, 126, 0.6) 100%
  );
}
.parallax-break .parallax-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 2rem;
}
.parallax-break blockquote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.parallax-break cite {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  opacity: 0.8;
}

/* Mobile: disable fixed attachment (iOS doesn't support it) */
@media (max-width: 768px) {
  .hero,
  .parallax-break {
    background-attachment: scroll;
  }
}

/* ═══════════════════════════════
   PHARMACY
   ═══════════════════════════════ */
.pharmacy {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.pharmacy::before {
  content: '草药';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  font-weight: 700;
  color: var(--sage-light);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}
.pharmacy .container { position: relative; z-index: 1; }
.pharmacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pharmacy-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--forest-deep);
  margin-bottom: 1.25rem;
}
.pharmacy-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.pharmacy-list {
  margin: 1rem 0 1.5rem 1.25rem;
  list-style: disc;
}
.pharmacy-list li {
  color: var(--text-light);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* ═══════════════════════════════
   FORMS
   ═══════════════════════════════ */
.forms { background: var(--sand); }
.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: block;
  color: var(--text);
}
.form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  color: var(--text);
}
.form-card.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.form-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}
.form-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-download {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ═══════════════════════════════
   CLINIC INFO
   ═══════════════════════════════ */
.clinic-info { background: var(--white); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.info-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
}
.info-card p, .info-card li {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.info-card ul { list-style: none; }
.info-card a.btn-small { margin-top: 0.75rem; display: inline-block; }

/* ═══════════════════════════════
   ARTICLES
   ═══════════════════════════════ */
.articles { background: var(--sand); }
.article-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.article-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
}
.article-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.article-link {
  font-weight: 600;
  color: var(--forest);
}
.article-link:hover { color: var(--ocean); }
.articles-archive {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.articles-archive h4 {
  font-family: var(--font-heading);
  color: var(--forest-deep);
  margin-bottom: 1rem;
}
.archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
.archive-list a {
  font-size: 0.9rem;
  color: var(--ocean);
}
.archive-list a:hover { color: var(--forest); }
.archive-list .missing-article {
  color: var(--text-muted);
  font-style: italic;
  cursor: default;
}
.archive-list .missing-article:hover { color: var(--text-muted); }

/* ═══════════════════════════════
   CONTACT
   ═══════════════════════════════ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  margin-bottom: 1.5rem;
}
.contact-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--forest-deep);
  margin-bottom: 0.3rem;
}
.contact-item a {
  color: var(--ocean);
  font-weight: 500;
}
.contact-item p {
  color: var(--text-light);
}

/* Contact Form */
.contact-form {
  background: var(--sand);
  border-radius: 12px;
  padding: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 90, 63, 0.1);
}

/* ═══════════════════════════════
   MAP
   ═══════════════════════════════ */
.map-section {
  line-height: 0;
}
.map-section iframe {
  filter: grayscale(30%) contrast(1.05);
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  background: var(--forest-deep);
  color: var(--sage-light);
  padding: 3rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-resources ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-resources a {
  color: var(--sage-light);
  font-size: 0.9rem;
}
.footer-resources a:hover { color: var(--white); }
.footer-logo {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: block;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-contact a {
  color: var(--sage-light);
  font-size: 0.9rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-location { display: none; }
  .top-bar-inner { justify-content: center; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
  .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
  }
  .has-dropdown:hover .dropdown { display: block; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2rem; }

  .welcome-grid,
  .pharmacy-grid,
  .contact-grid,
  .team-grid,
  .testimonial-grid { grid-template-columns: 1fr; gap: 2rem; }

  .team-grid { max-width: 460px; }

  .services-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }

  .veterans-card { flex-direction: column; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}

/* ═══════════════════════════════
   CHINESE CHARACTER DIVIDER
   ═══════════════════════════════ */
.cn-divider {
  text-align: center;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--sage);
  opacity: 0.4;
  letter-spacing: 0.15rem;
  user-select: none;
}

/* ═══════════════════════════════
   ANIMATIONS (subtle)
   ═══════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content {
  animation: fadeInUp 0.8s var(--ease) both;
}
.service-card,
.team-card,
.info-card,
.form-card,
.testimonial-card {
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease) both;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

/* ─── 2026-06 revisions: logo-less nav + hero quote ─── */
.nav-inner { justify-content: center; }
.hero-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: #f4efe6;
  margin: 0.4rem 0 0.6rem;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════
   JUNE 2026 ADDITIONS
   ═══════════════════════════════ */

/* Text Us (Square texting) */
.top-bar-text-us {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest-light);
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
}
.top-bar-text-us:hover { background: var(--sage); color: var(--white); }
.btn-text-us {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-text-us:hover { background: var(--forest-light); color: var(--white); }
/* .contact-item a outranks .btn-text-us on specificity — force white text */
.contact-item a.btn-text-us { color: var(--white); }
.contact-item a.btn-text-us:hover { color: var(--white); }

/* Zodiac wheel beside the featured article */
.article-card-zodiac {
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 2rem;
  border: 1px solid var(--sand-dark);
}
.article-zodiac { flex: 0 0 260px; }
.article-zodiac img { width: 100%; height: auto; display: block; }
.article-body { flex: 1; }

/* Acupuncture model photo in services */
.services-photo {
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.services-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Find Us — Carson Block Building */
.findus { background: var(--cream); }
.findus-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.findus-photo { margin: 0; }
.findus-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.photo-credit {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  opacity: 0.75;
}
.photo-credit a { color: inherit; text-decoration: underline; }
.findus-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
}
.findus-text p { color: var(--text-light); margin-bottom: 1rem; }

@media (max-width: 768px) {
  .nav-inner { justify-content: flex-end; } /* hamburger to the right */
  .top-bar-text-us span { display: none; }
  .article-card-zodiac { flex-direction: column; gap: 1.25rem; }
  .article-zodiac { flex-basis: auto; max-width: 240px; }
  .findus-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  .team-bio { width: 100%; }
}
