/* ─────────────────────────────────────────────
   Holistic Body Shop — Design System
   Brand: Green #0D9A48 · Gold #FFCA00 · Purple #5E00A4
   Philosophy: Chris Do — speak to the outcome,
   not the service. Premium positioning. White space.
   ───────────────────────────────────────────── */

:root {
  --green:        #0D9A48;
  --green-dark:   #09763a;
  --green-light:  #3dbb6e;
  --gold:         #FFCA00;
  --gold-dark:    #c9a000;
  --gold-light:   #ffe066;
  --purple:       #5E00A4;
  --purple-dark:  #440078;
  --purple-light: #8b3fd4;
  --off-white:    #f9f9f7;
  --white:        #ffffff;
  --ink:          #111111;
  --ink-mid:      #444444;
  --ink-light:    #888888;
  --border:       #e8e8e8;
}

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

body {
  font-family: 'Georgia', serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
}

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .logo img {
  height: 48px;
  width: auto;
  display: block;
}
.site-header .logo-text {
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}
.site-header .logo-text span { color: var(--green); }

/* ── NAV ── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.site-nav > a,
.site-nav .nav-parent {
  color: var(--ink-mid);
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.site-nav > a:hover,
.site-nav .nav-parent:hover { color: var(--green); background: rgba(13,154,72,0.06); }

.nav-dropdown { position: relative; }
.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 0 0 6px 6px;
  min-width: 210px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
}
.nav-dropdown:hover .nav-sub { display: block; }
.nav-sub a {
  display: block;
  color: var(--ink-mid);
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 20px;
  white-space: nowrap;
  transition: background 0.1s, color 0.1s;
}
.nav-sub a:hover { background: rgba(13,154,72,0.06); color: var(--green); }

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

.nav-answers-btn {
  background: var(--green);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-family: sans-serif;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nav-answers-btn:hover { background: var(--green-dark); }

.site-header .cta-btn {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-family: sans-serif;
  white-space: nowrap;
  transition: background 0.15s;
}
.site-header .cta-btn:hover { background: var(--gold-dark); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 8px;
}

@media (max-width: 900px) {
  .site-header { padding: 0 20px; height: 60px; }
  .site-nav, .header-actions { display: none; }
  .hamburger { display: block; }
  .site-header.nav-open {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 16px;
  }
  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 3;
    gap: 2px;
  }
  .site-header.nav-open .header-actions {
    display: flex;
    width: 100%;
    order: 4;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
  .nav-sub { position: static; box-shadow: none; border: none; border-top: none; padding: 4px 0 4px 16px; }
  .nav-dropdown:hover .nav-sub { display: none; }
  .nav-dropdown.open .nav-sub { display: block; }
  .site-header.nav-open .hamburger { order: 2; }
  .site-header.nav-open .logo { order: 1; }
}

/* ── HERO ── */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 72px 40px;
  text-align: center;
}
.hero h1 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 16px; }
.hero p  { font-size: 1.15rem; max-width: 640px; margin: 0 auto 28px; color: rgba(255,255,255,0.8); }
.hero .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  border-radius: 3px;
  padding: 4px 14px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: sans-serif;
  font-weight: 700;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 6px;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-dark); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 6px;
  transition: background 0.15s;
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 6px;
  transition: border-color 0.15s, background 0.15s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  display: inline-block;
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 6px;
  transition: background 0.15s;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

/* ── MAIN CONTENT ── */
.container { max-width: 860px; margin: 0 auto; padding: 72px 24px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 72px 24px; }

h2 { color: var(--ink); font-size: 1.9rem; margin-bottom: 14px; margin-top: 56px; line-height: 1.2; }
h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: 8px; margin-top: 32px; }
p  { margin-bottom: 18px; color: var(--ink-mid); }

blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--off-white);
  border-radius: 0 6px 6px 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
}

/* ── PILLAR GRID ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 36px 0;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  border-radius: 0 0 8px 8px;
  padding: 28px 24px;
}
.pillar-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.pillar-card h3 { margin-top: 0; font-size: 1.05rem; color: var(--ink); }
.pillar-card p  { font-size: 0.9rem; margin-bottom: 0; color: var(--ink-mid); }

/* ── PRICING TABLE ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 36px 0;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}
.price-card.featured {
  border: 2px solid var(--green);
  position: relative;
}
.price-card.featured::before {
  content: 'Most Recommended';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white;
  padding: 3px 16px; border-radius: 20px; font-size: 0.75rem;
  font-family: sans-serif; font-weight: 700; white-space: nowrap; letter-spacing: 0.03em;
}
.price-card .price { font-size: 2.4rem; color: var(--ink); font-weight: bold; }
.price-card .price-sub { font-size: 0.85rem; color: var(--ink-light); font-family: sans-serif; margin-bottom: 14px; }
.price-card h3 { margin-top: 0; color: var(--ink); }
.price-card ul { list-style: none; text-align: left; margin: 14px 0; }
.price-card ul li { padding: 5px 0; font-size: 0.9rem; color: var(--ink-mid); font-family: sans-serif; border-bottom: 1px solid var(--border); }
.price-card ul li::before { content: '✓ '; color: var(--green); font-weight: bold; }

/* ── CASE STUDY CARDS ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 36px 0;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  border-left: 5px solid var(--green);
}
.case-card .condition { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--purple); font-family: sans-serif; font-weight: 700; margin-bottom: 8px; }
.case-card h3 { margin-top: 0; font-size: 1.1rem; color: var(--ink); }
.case-card .outcome { background: var(--off-white); border-radius: 4px; padding: 12px 16px; margin-top: 14px; font-size: 0.9rem; }
.case-card .outcome strong { color: var(--green); }

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 { cursor: pointer; font-size: 1rem; color: var(--ink); margin: 0; display: flex; justify-content: space-between; align-items: center; }
.faq-item h3::after { content: '+'; font-size: 1.4rem; color: var(--green); font-weight: 300; }
.faq-item p { margin-top: 14px; margin-bottom: 0; font-size: 0.95rem; color: var(--ink-mid); }

/* ── STEP TIMELINE ── */
.steps { margin: 36px 0; }
.step { display: flex; gap: 24px; margin-bottom: 32px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--green); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: sans-serif; font-weight: 700; font-size: 1rem;
}
.step-content h3 { margin-top: 4px; color: var(--ink); }

/* ── CONDITION PILLS ── */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.pill {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--ink-mid);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: sans-serif;
  transition: border-color 0.1s, color 0.1s;
}
.pill:hover { border-color: var(--green); color: var(--green); }

/* ── CALLOUT BOX ── */
.callout {
  background: var(--ink);
  color: var(--white);
  padding: 48px 40px;
  border-radius: 8px;
  text-align: center;
  margin: 56px 0;
}
.callout h2 { color: var(--white); margin-top: 0; }
.callout p  { color: rgba(255,255,255,0.8); }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 36px 0; align-items: start; }
@media (max-width: 680px) {
  .two-col { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 20px; }
  .hero h1 { font-size: 1.9rem; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 48px 24px;
  font-family: sans-serif;
  font-size: 0.85rem;
  line-height: 2;
}
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-label {
  font-family: sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 700;
}
.section-label-gold {
  font-family: sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.section-label-purple {
  font-family: sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 10px;
  font-weight: 700;
}
table { width: 100%; border-collapse: collapse; margin: 28px 0; font-family: sans-serif; font-size: 0.9rem; }
th { background: var(--ink); color: white; padding: 12px 16px; text-align: left; font-weight: 600; letter-spacing: 0.03em; }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--ink-mid); }
tr:nth-child(even) td { background: var(--off-white); }
