/* ── Big Hill Chiropractic & Massage — Wellness Template 01 ── */
:root {
  --forest: #2F4538;
  --forest-dark: #223028;
  --sand: #F4EFE6;
  --sand-light: #FAF7F1;
  --terracotta: #C97B4A;
  --terracotta-dark: #B3653A;
  --white: #ffffff;
  --text: #3E4A42;
  --muted: #7A8479;
  --border: #E5DFD1;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Work Sans', sans-serif; background: var(--sand-light); color: var(--text); line-height: 1.65; }

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 500; color: var(--forest); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--sand); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Work Sans', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); display: inline-block; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 1rem; left: 1rem; right: 1rem; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.7rem 1.2rem 0.7rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 24px rgba(47,69,56,0.08);
  max-width: 1140px; margin: 1rem auto 0;
}
.logo-img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--forest); transition: color 0.2s; }
.nav-link:hover { color: var(--terracotta); }
.btn-nav {
  background: var(--forest); color: var(--white); font-weight: 600; font-size: 0.85rem;
  padding: 0.65rem 1.5rem; border-radius: 999px; transition: background 0.2s;
}
.btn-nav:hover { background: var(--forest-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--forest); border-radius: 2px; }

.mobile-nav {
  display: none; position: fixed; top: 5.2rem; left: 1rem; right: 1rem; z-index: 99;
  background: var(--white); border-radius: 24px;
  padding: 1.5rem 2rem; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 12px 40px rgba(47,69,56,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--forest); }
.mobile-nav a:hover { color: var(--terracotta); }

/* ── HERO ── */
.hero {
  padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; top: -10%; right: -10%; width: 600px; height: 600px;
  background: var(--sand); border-radius: 50%;
  z-index: 0; opacity: 0.6;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-text p.lead { font-size: 1.1rem; max-width: 460px; margin: 1.4rem 0 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.btn-primary {
  background: var(--terracotta); color: var(--white); font-weight: 600; font-size: 0.95rem;
  padding: 1rem 2rem; border-radius: 999px; display: inline-block; transition: background 0.2s;
  box-shadow: 0 8px 24px rgba(201,123,74,0.3);
}
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-outline {
  border: 2px solid var(--forest); color: var(--forest); font-weight: 600; font-size: 0.95rem;
  padding: 1rem 2rem; border-radius: 999px; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: var(--forest); color: var(--white); }
.hero-trust { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 500; color: var(--forest); }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--terracotta); }
.hero-img-wrap { position: relative; border-radius: 32px; overflow: hidden; box-shadow: 0 30px 60px rgba(47,69,56,0.18); }
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(6px);
  border-radius: 18px; padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 0.8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.hero-badge-stars { color: var(--terracotta); font-size: 1.1rem; letter-spacing: 0.05em; }
.hero-badge-text { font-size: 0.78rem; font-weight: 600; color: var(--forest); line-height: 1.3; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.service-card {
  background: var(--white); border-radius: 24px; padding: 2.6rem 2rem;
  box-shadow: 0 4px 20px rgba(47,69,56,0.06); transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(47,69,56,0.12); }
.service-icon {
  width: 60px; height: 60px; border-radius: 18px; background: var(--sand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.service-icon svg { width: 28px; height: 28px; color: var(--terracotta); }
.service-card h3 { margin-bottom: 0.7rem; }
.service-card p { font-size: 0.92rem; }
.service-card .service-link { display: inline-block; margin-top: 1.2rem; font-size: 0.85rem; font-weight: 600; color: var(--terracotta); }

/* ── WHY CHOOSE ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-img { border-radius: 28px; overflow: hidden; }
.why-img img { width: 100%; height: 420px; object-fit: cover; }
.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  width: 32px; height: 32px; border-radius: 50%; background: var(--forest);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem; margin-top: 0.1rem;
}
.why-item-text h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.why-item-text p { font-size: 0.9rem; }

/* ── DIRECT BILLING BANNER ── */
.billing-banner {
  background: var(--forest); border-radius: 32px; padding: 3.5rem;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center;
  margin: 0 2rem;
}
.billing-banner h2 { color: var(--white); }
.billing-banner p { color: rgba(255,255,255,0.7); margin-top: 1rem; }
.billing-list { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.billing-pill {
  background: rgba(255,255,255,0.1); color: var(--white); font-size: 0.82rem; font-weight: 500;
  padding: 0.55rem 1.1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15);
}
.billing-cta { text-align: center; }
.billing-cta .btn-primary { width: 100%; text-align: center; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.testimonial-card { background: var(--white); border-radius: 24px; padding: 2.2rem; box-shadow: 0 4px 20px rgba(47,69,56,0.06); }
.testimonial-stars { color: var(--terracotta); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-card p.quote { font-size: 0.95rem; color: var(--text); font-style: italic; margin-bottom: 1.4rem; }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--forest); }

/* ── HOURS + LOCATION ── */
.hours-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
.hours-table { margin-top: 2rem; width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.9rem 0; font-size: 0.92rem; }
.hours-table td:first-child { font-weight: 600; color: var(--forest); }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.location-card {
  background: var(--white); border-radius: 24px; padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(47,69,56,0.06);
}
.location-detail { margin-bottom: 1.6rem; display: flex; gap: 1rem; align-items: flex-start; }
.location-icon {
  width: 44px; height: 44px; border-radius: 14px; background: var(--sand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-icon svg { width: 20px; height: 20px; color: var(--terracotta); }
.location-detail h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.location-detail p { font-size: 0.9rem; }
.location-detail a { color: var(--forest); font-weight: 600; }

/* ── FINAL CTA ── */
.final-cta { text-align: center; padding: 6rem 2rem; }
.final-cta h2 { max-width: 640px; margin: 0 auto 1.2rem; }
.final-cta p { max-width: 480px; margin: 0 auto 2.2rem; }

/* ── FOOTER ── */
.site-footer { background: var(--forest-dark); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 38px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1140px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy, .footer-credit { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-credit a { color: rgba(255,255,255,0.6); }
.footer-credit a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid, .why-grid, .hours-grid { grid-template-columns: 1fr; }
  .billing-banner { grid-template-columns: 1fr; padding: 2.5rem; margin: 0 1rem; }
  .services-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .site-header { left: 0.6rem; right: 0.6rem; padding: 0.6rem 0.6rem 0.6rem 1rem; }
  .hero { padding: 7.5rem 0 3rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .hero-img-wrap img { height: 320px; }
  .why-img img { height: 280px; }
  .billing-banner { margin: 0 1.25rem; padding: 2rem; }
}
