/* ═══════════════════════════════════════════════════════════
   CHIROPRACTIC LIFE CENTER — DESIGN TOKENS
   To change the look of the entire site, edit values here.
   Claude can update any token on request.
═══════════════════════════════════════════════════════════ */
:root {
  /* ── Brand Colors ── */
  --cream:      #F7F4EF;   /* page background                   */
  --sage:       #A5B3A5;   /* borders, muted text               */
  --gold:       #C8A66B;   /* CTA buttons only                  */
  --charcoal:   #645A57;   /* main text, headings               */
  --deep-sage:  #3D5449;   /* dark sections, decorative accents */
  --light-sage: #E4EDE4;   /* light green section backgrounds   */
  --dark-brown: #3A3430;   /* footer background                 */

  /* ── Accent (green-forward, feminine) ── */
  --accent:     var(--deep-sage); /* labels, lines, stars, dashes  */

  /* ── Typography ── */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Lato', sans-serif;

  /* ── Layout ── */
  --nav-height:  80px;
  --max-width:   1300px;
  --content-max: 860px;
}

/* ─────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(247, 244, 239, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(165, 179, 165, 0.2);
  height: var(--nav-height);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 70px; width: auto; transform: translateY(-12px); }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 300;
  color: var(--charcoal); letter-spacing: 0.08em;
}
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links .cta {
  background: var(--deep-sage) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem; border-radius: 2px;
}
.nav-links .cta:hover,
.nav-links .cta.active {
  background: var(--gold) !important;
  color: #fff !important;
}

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

/* Mobile nav drawer */
.nav-mobile {
  display: none; flex-direction: column;
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--cream); padding: 1.5rem 40px 2rem;
  border-bottom: 1px solid rgba(165, 179, 165, 0.2);
  z-index: 998; box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-body); font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); padding: 0.85rem 0;
  border-bottom: 1px solid rgba(165, 179, 165, 0.2);
  transition: color 0.3s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }
.nav-mobile .cta-mobile {
  margin-top: 1rem; border-bottom: none !important;
  color: var(--deep-sage) !important; font-weight: 700;
}

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #2C4038 0%, var(--deep-sage) 40%, #4A6358 70%, var(--deep-sage) 100%);
  position: relative; overflow: hidden;
  padding: calc(var(--nav-height) + 60px) 40px 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,166,107,0.08) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem;
}
.hero h1 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 6.5rem); color: var(--cream);
  letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.15rem; color: rgba(247,244,239,0.82);
  max-width: 560px; margin: 0 auto 3rem;
  font-weight: 300; line-height: 1.75;
}
.hero-logo {
  position: absolute; left: 50%; top: 36%; transform: translate(-50%, -50%);
  opacity: 0.12; height: 600px; pointer-events: none; z-index: 0;
}
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(247,244,239,0.4); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(200,166,107,0.6), transparent); }

/* ─────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2.75rem; border: 1.5px solid;
  cursor: pointer; border-radius: 2px; transition: all 0.3s;
}
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: var(--cream); border-color: rgba(247,244,239,0.55); }
.btn-outline:hover { background: var(--cream); color: var(--deep-sage); }

/* ─────────────────────────────────────────────────────────
   TYPOGRAPHY & SECTION UTILITIES
───────────────────────────────────────────────────────── */
section { padding: 100px 60px; }
.section-label {
  display: block; font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.gold-line { width: 60px; height: 1px; background: var(--accent); margin: 1rem auto 2rem; }
.gold-line-left { margin-left: 0; }
h2 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem); color: var(--charcoal);
  letter-spacing: 0.02em; line-height: 1.2; margin-bottom: 1.5rem;
}
h3 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: 1.75rem; color: var(--charcoal); margin-bottom: 1.25rem;
}
p { font-size: 1.0625rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
.center { text-align: center; }
.max-720 { max-width: 720px; margin-left: auto; margin-right: auto; }
.max-860 { max-width: 860px; margin-left: auto; margin-right: auto; }
.link-gold {
  display: inline-block; color: var(--accent); font-family: var(--font-body);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px; margin-top: 2rem;
  transition: opacity 0.3s;
}
.link-gold:hover { opacity: 0.7; }

/* ─────────────────────────────────────────────────────────
   INNER PAGE BANNER (all pages except home)
───────────────────────────────────────────────────────── */
.inner-banner {
  background: var(--deep-sage);
  padding: calc(var(--nav-height) + 60px) 60px 80px;
  text-align: center;
}
.inner-banner h1 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem); color: var(--cream);
}
.inner-banner p { color: rgba(247,244,239,0.72); max-width: 580px; margin: 1rem auto 0; font-size: 1.05rem; }

/* ─────────────────────────────────────────────────────────
   HOME — Section backgrounds
───────────────────────────────────────────────────────── */
.sec-dance { background: var(--light-sage); }
.italic-close {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.35rem; color: var(--deep-sage); margin-top: 1.5rem;
}
.sec-nsa { background: var(--light-sage); }

/* Two-column comparison */
.sec-compare { padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.compare-col { padding: 100px 80px; }
.compare-left { background: var(--cream); }
.compare-right { background: var(--deep-sage); }
.compare-right h3 { color: var(--cream); }
.compare-list { list-style: none; }
.compare-list li { padding: 0.8rem 0; border-bottom: 1px solid rgba(165,179,165,0.3); color: var(--charcoal); font-size: 1rem; }
.compare-list li:last-child { border-bottom: none; }
.compare-right .compare-list li { color: rgba(247,244,239,0.85); border-color: rgba(247,244,239,0.18); }

/* Philosophy */
.sec-phil { background: var(--light-sage); }

/* Quote */
.sec-quote { background: var(--deep-sage); padding: 100px 60px; text-align: center; }
.blockquote {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem); font-weight: 300; color: var(--cream);
  max-width: 900px; margin: 0 auto 1.5rem; line-height: 1.55;
}
.cite { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

/* About grid */
.sec-about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.img-frame { position: relative; }
.img-frame::before {
  content: ''; position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid var(--gold); z-index: 0;
}
.img-frame img { position: relative; z-index: 1; width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.img-placeholder {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #C8D4C8 0%, #B5C4B5 50%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.75rem;
}
.img-placeholder span { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(61,84,73,0.6); }
.cred-list { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(165,179,165,0.35); }
.cred-item { display: flex; gap: 0.75rem; margin-bottom: 0.65rem; font-size: 0.9375rem; color: var(--charcoal); }
.cred-dash { color: var(--accent); flex-shrink: 0; }

/* Who this is for */
.sec-who { background: var(--light-sage); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 820px; margin: 2.5rem auto 0; }
.who-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: #fff; border-left: 3px solid var(--accent); }
.who-star { color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }
.who-item span { color: var(--charcoal); font-size: 0.9375rem; }

/* Final CTA */
.sec-cta { background: var(--charcoal); text-align: center; }
.sec-cta h2 { color: var(--cream); font-size: clamp(2.2rem, 4vw, 3.75rem); margin-bottom: 0.75rem; }
.sec-cta > p { color: rgba(247,244,239,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────
   SCHEDULE PAGE
───────────────────────────────────────────────────────── */
.booking-box { background: #fff; border: 1px solid rgba(165,179,165,0.3); max-width: var(--content-max); margin: 0 auto; padding: 3rem; }
.booking-placeholder-box { background: var(--light-sage); border: 2px dashed var(--sage); border-radius: 8px; padding: 4rem 2rem; text-align: center; }
.booking-placeholder-box h4 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 300; color: var(--deep-sage); margin-bottom: 0.75rem; }
.booking-placeholder-box p { color: var(--sage); font-style: italic; font-size: 0.9rem; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: var(--content-max); margin: 3rem auto 0; }
.info-card { text-align: center; }
.info-card h4 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.info-card p { font-size: 0.9375rem; line-height: 1.7; }

/* ─────────────────────────────────────────────────────────
   RESOURCES PAGE
───────────────────────────────────────────────────────── */
.resource-list { max-width: var(--content-max); margin: 0 auto; }
.resource-item {
  border-bottom: 1px solid rgba(165,179,165,0.3); padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.resource-item:last-child { border-bottom: none; }
.resource-tag {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--light-sage); color: var(--accent);
  padding: 0.2rem 0.7rem; border-radius: 20px; display: inline-block; margin-bottom: 0.5rem;
}
.resource-item h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 0.35rem; }
.resource-item p { font-size: 0.875rem; color: var(--sage); margin: 0; }

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS PAGE
───────────────────────────────────────────────────────── */
.testimonial-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.testimonial-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.testimonial-card { background: #fff; border-bottom: 3px solid var(--accent); padding: 2.5rem; }
.testimonial-card.alt { background: var(--light-sage); border-bottom: none; }
.testimonial-quote-mark { font-family: var(--font-heading); font-size: 4rem; font-weight: 300; color: rgba(200,166,107,0.25); line-height: 1; margin-bottom: 0; }
.testimonial-text { font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-attribution { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin: 0; }

/* ─────────────────────────────────────────────────────────
   COACHING PAGE
───────────────────────────────────────────────────────── */
.coaching-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.coaching-card { background: #fff; border: 1px solid rgba(165,179,165,0.35); padding: 2.5rem; }
.coaching-card.dark { background: var(--deep-sage); border-color: var(--deep-sage); }
.coaching-card.dark h3 { color: var(--cream); }
.coaching-card.dark p { color: rgba(247,244,239,0.8); }
.coaching-num { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 300; color: rgba(200,166,107,0.28); line-height: 1; margin-bottom: 1rem; }
.coaching-card.dark .coaching-num { color: rgba(200,166,107,0.4); }
.coaching-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.coaching-card p { font-size: 0.9375rem; }

/* ─────────────────────────────────────────────────────────
   EXPERIENCE PAGE
───────────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; text-align: left; }
.step-card { padding: 2.5rem 2rem; border-top: 3px solid var(--accent); }
.step-card.light { background: #fff; }
.step-card.dark { background: var(--deep-sage); }
.step-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 300; color: rgba(200,166,107,0.3); line-height: 1; margin-bottom: 1rem; }
.step-card.dark .step-num { color: rgba(200,166,107,0.4); }
.step-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.step-card.dark h3 { color: var(--cream); }
.step-card p { font-size: 0.9375rem; }
.step-card.dark p { color: rgba(247,244,239,0.8); }

/* NSA two-col grid */
.nsa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: start; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
footer { background: var(--dark-brown); padding: 60px 60px 30px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 300; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-tagline { font-family: var(--font-heading); font-style: italic; color: var(--gold) !important; margin-top: 1rem; }
footer p { color: rgba(247,244,239,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(247,244,239,0.58); font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-address { color: rgba(247,244,239,0.58); font-size: 0.9rem; line-height: 1.8; font-style: normal; }
.footer-address a { color: rgba(247,244,239,0.58); transition: color 0.3s; }
.footer-address a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(247,244,239,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(247,244,239,0.3); margin: 0; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 80px 24px; }
  .inner-banner { padding: calc(var(--nav-height) + 30px) 24px 60px; }
  .sec-compare { grid-template-columns: 1fr; }
  .compare-col { padding: 60px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nsa-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .who-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .coaching-grid { grid-template-columns: 1fr; }
  .testimonial-grid-3 { grid-template-columns: 1fr; }
  .testimonial-grid-2 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer { padding: 60px 24px 30px; }
  .hero-logo { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .sec-quote { padding: 80px 24px; }
}

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