/* ==========================================================================
   Acupuncture 208 — stylesheet
   Palette derived from brand sage #b6c6be, extended into complementary
   deep forest greens and slate blues per client's nature/elements brief.
   ========================================================================== */

:root {
  /* Sage family (brand base) */
  --sage-100: #eef2ef;
  --sage-200: #dde6e0;
  --sage-300: #b6c6be; /* brand hex */
  --sage-400: #93a99c;
  --sage-500: #708b7a;

  /* Forest greens (headings, nav, primary CTA) */
  --forest-600: #4c6b58;
  --forest-700: #38513f;
  --forest-800: #263a2d;
  --forest-900: #182821;

  /* Slate / river blues (secondary accents) */
  --river-300: #c3d6d8;
  --river-500: #6f96a0;
  --river-600: #4c7480;
  --river-700: #365a63;

  /* Neutrals */
  --cream-50: #faf9f5;
  --cream-100: #f3f1e9;
  --stone-200: #e7e3d8;
  --ink-900: #1e2822;
  --ink-700: #3c473f;

  --font-serif: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  --font-sans: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-soft: 0 10px 40px -12px rgba(24, 40, 33, 0.25);
  --shadow-card: 0 4px 24px -8px rgba(24, 40, 33, 0.18);

  --radius-lg: 20px;
  --radius-md: 12px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--forest-800);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--river-700);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-head p { color: var(--ink-700); font-size: 1.05rem; }

section { padding: clamp(64px, 10vw, 120px) 0; }

.placeholder-flag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--river-700);
  background: var(--river-300);
  padding: 3px 9px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-700);
  color: var(--cream-50);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--forest-800); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(30, 40, 34, 0.25);
  color: var(--forest-800);
}
.btn-outline:hover { border-color: var(--forest-700); background: rgba(56, 81, 63, 0.06); }
.btn-light {
  background: var(--cream-50);
  color: var(--forest-800);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(24,40,33,0.08);
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream-50);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(15, 24, 20, 0.45);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
.logo span { color: var(--sage-300); transition: color 0.35s ease; }
.site-header.scrolled .logo {
  color: var(--forest-800);
  text-shadow: none;
}
.site-header.scrolled .logo span { color: var(--river-600); }

.nav-inner { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-50);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 1px 6px rgba(15, 24, 20, 0.4);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
.nav-link:hover { color: var(--sage-300); }
.site-header.scrolled .nav-link {
  color: var(--ink-900);
  text-shadow: none;
}
.site-header.scrolled .nav-link:hover { color: var(--forest-700); }

.site-header .btn-outline {
  border-color: rgba(250, 249, 245, 0.55);
  color: var(--cream-50);
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.site-header .btn-outline:hover { border-color: var(--cream-50); background: rgba(250, 249, 245, 0.12); }
.site-header.scrolled .btn-outline {
  border-color: rgba(30, 40, 34, 0.25);
  color: var(--forest-800);
}
.site-header.scrolled .btn-outline:hover { border-color: var(--forest-700); background: rgba(56, 81, 63, 0.06); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 300px;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega-menu a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--ink-900);
}
.mega-menu a:hover { background: var(--sage-100); color: var(--forest-800); }
.mega-menu a small { color: var(--river-700); font-weight: 600; margin-top: 2px; font-size: 0.72rem; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--cream-50);
  box-shadow: 0 1px 4px rgba(15, 24, 20, 0.4);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.35s ease;
}
.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after {
  background: var(--forest-800);
  box-shadow: none;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; box-shadow: none; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream-50);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}
.hero.loaded .hero-media img { transform: scale(1); }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,40,33,0.55) 0%, rgba(24,40,33,0.45) 45%, rgba(19,31,26,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  max-width: 720px;
}
.hero-content .eyebrow { color: var(--sage-300); }
.hero-content h1 {
  color: var(--cream-50);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 22px;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(250, 249, 245, 0.88);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(250, 249, 245, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(250,249,245,0.8), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }
.reveal-delay-4.is-visible { transition-delay: 0.4s; }

/* ---------- About ---------- */
.about { background: var(--cream-50); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-media-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(250,249,245,0.92);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  max-width: 240px;
  box-shadow: var(--shadow-card);
}
.about-media-tag strong { display: block; font-family: var(--font-serif); color: var(--forest-800); font-size: 1.05rem; }
.about-media-tag span { font-size: 0.8rem; color: var(--ink-700); }

.credentials { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.credential-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--sage-100);
  border: 1px solid var(--sage-200);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--forest-800);
  font-weight: 500;
}
.credential-pill svg { flex-shrink: 0; }

.about-copy p { color: var(--ink-700); font-size: 1.03rem; }
.about-signoff {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-200);
}
.about-signoff strong { font-family: var(--font-serif); font-size: 1.15rem; color: var(--forest-800); display: block; }
.about-signoff span { color: var(--river-700); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; }

/* ---------- Services ---------- */
.services { background: var(--sage-100); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage-300), var(--river-500));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--cream-50);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-700); font-size: 0.95rem; flex-grow: 1; }
.service-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px dashed var(--stone-200);
  font-size: 0.85rem;
}
.service-meta .price { font-family: var(--font-serif); font-size: 1.1rem; color: var(--forest-800); font-weight: 600; }
.service-meta .duration { color: var(--river-700); font-weight: 600; letter-spacing: 0.03em; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 12px; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--sage-300);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--ink-700); font-size: 0.92rem; }
.process-step:not(:last-child) {
  border-right: 1px solid var(--stone-200);
  padding-right: 24px;
}

/* ---------- Benefits ---------- */
.benefits { background: var(--forest-800); color: var(--cream-50); }
.benefits .section-head h2 { color: var(--cream-50); }
.benefits .section-head p { color: rgba(250,249,245,0.75); }
.benefits .eyebrow { color: var(--sage-300); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
  background: rgba(250, 249, 245, 0.06);
  border: 1px solid rgba(250, 249, 245, 0.12);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
}
.benefit-card h3 { color: var(--cream-50); font-size: 1.15rem; }
.benefit-card p { color: rgba(250, 249, 245, 0.72); font-size: 0.94rem; margin: 0; }
.benefit-icon { color: var(--river-300); margin-bottom: 18px; }

/* ---------- Pricing ---------- */
.pricing-note {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-table {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pricing-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  align-items: center;
  padding: 22px 32px;
  gap: 12px;
}
.pricing-row:not(:last-child) { border-bottom: 1px solid var(--stone-200); }
.pricing-row.head {
  background: var(--forest-700);
  color: var(--cream-50);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 32px;
}
.pricing-row .name { font-family: var(--font-serif); font-size: 1.08rem; color: var(--forest-800); }
.pricing-row .name small { display: block; font-family: var(--font-sans); font-size: 0.82rem; color: var(--ink-700); font-weight: 400; margin-top: 3px; }
.pricing-row .duration { color: var(--river-700); font-weight: 600; font-size: 0.92rem; }
.pricing-row .price { font-weight: 700; color: var(--forest-800); font-size: 1.05rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}
.gallery-grid img[src*="mountain-view"] {
  object-position: center 85%;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-50); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--stone-200);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--forest-800);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sage-400);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--forest-700);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-icon { background: var(--forest-700); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--cream-50); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p { color: var(--ink-700); padding-bottom: 22px; padding-right: 48px; margin: 0; font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 320px; }

/* ---------- Contact / Booking ---------- */
.contact {
  background: var(--forest-900);
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(182,198,190,0.12), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(76,116,128,0.18), transparent 50%);
}
.contact .container { position: relative; z-index: 1; }
.contact-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.contact-head .eyebrow { color: var(--sage-300); }
.contact-head h2 { color: var(--cream-50); }
.contact-head p { color: rgba(250,249,245,0.75); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  background: rgba(250,249,245,0.06);
  border: 1px solid rgba(250,249,245,0.14);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
}
.contact-card .icon-wrap {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(182, 198, 190, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-300);
}
.contact-card h3 { color: var(--cream-50); font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p { color: rgba(250,249,245,0.7); font-size: 0.92rem; margin-bottom: 16px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(250,249,245,0.14);
}
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.15) saturate(1.1); }

.site-footer {
  background: var(--forest-900);
  border-top: 1px solid rgba(250,249,245,0.1);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer p { margin: 0; color: rgba(250,249,245,0.55); font-size: 0.82rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(250,249,245,0.65); font-size: 0.82rem; }
.footer-links a:hover { color: var(--sage-300); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .process-step:nth-child(2n) { border-right: none; padding-right: 0; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    box-shadow: -20px 0 60px rgba(24,40,33,0.2);
    gap: 22px;
    z-index: 99;
  }
  .nav-links.open .mega-menu { display: none; }
  .services-grid, .benefits-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; padding-right: 0 !important; }
  .pricing-row { grid-template-columns: 1.6fr 1fr 1fr; padding: 18px; font-size: 0.9rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .site-footer .container { flex-direction: column; text-align: center; }
}
