/* ============================================================
   KAIZEN HEALTH & WELLNESS CENTER — Global Stylesheet
   Brand: Purple #8B2BE2 | Deep Purple #4A1875 | Charcoal #1A1A1A
   Fonts: Montserrat (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --purple:       #8B2BE2;
  --deep-purple:  #4A1875;
  --charcoal:     #1A1A1A;
  --white:        #FFFFFF;
  --sage:         #8FB89A;
  --sage-light:   #E8F2EB;
  --purple-light: #F0E8FC;
  --light-gray:   #F4F4F6;
  --font-head:    'Montserrat', Arial, sans-serif;
  --font-body:    'Inter', Arial, sans-serif;
  --radius:       8px;
  --shadow:       0 2px 16px rgba(0,0,0,0.09);
  --transition:   0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--charcoal); }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-purple { color: var(--purple); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 10px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-primary:hover { background: var(--deep-purple); border-color: var(--deep-purple); }
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-white { background: var(--white); color: var(--purple); border-color: var(--white); }
.btn-white:hover { background: var(--purple-light); }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ── Header / Navigation ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-wordmark {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 800;
  letter-spacing: 0.06em; color: var(--purple); line-height: 1;
}
.logo-sub {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1; margin-top: 3px;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--charcoal); padding: 8px 12px;
  border-radius: 6px; transition: color var(--transition), background var(--transition);
}
.site-nav a:hover, .site-nav a.active { color: var(--purple); background: var(--purple-light); }
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
  color: var(--charcoal); white-space: nowrap;
}
.header-phone:hover { color: var(--purple); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--purple) 100%);
  color: var(--white); padding: 96px 0 80px; position: relative; overflow: hidden;
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero-video-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(74,24,117,0.80) 0%, rgba(139,43,226,0.65) 100%);
  z-index: 1; pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero-inner {
  display: block; max-width: 700px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder { color: rgba(255,255,255,0.5); font-size: 0.85rem; font-family: var(--font-body); text-align: center; padding: 24px; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-badges {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-badge { text-align: center; }
.hero-badge-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-badge-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--purple);
  border-radius: 12px 0 0 12px; opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; background: var(--purple-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--purple);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: #555; margin-bottom: 0; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: var(--purple);
}
.service-card .learn-more:hover { text-decoration: underline; }

/* ── Split / About section ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--light-gray); display: flex; align-items: center; justify-content: center;
}
.split-img-placeholder { display: none; color: #aaa; font-size: 0.85rem; text-align: center; padding: 24px; font-family: var(--font-body); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.pillar { background: var(--purple-light); border-radius: var(--radius); padding: 20px 18px; }
.pillar h4 { color: var(--purple); font-size: 0.9rem; margin-bottom: 6px; }
.pillar p { font-size: 0.85rem; color: #555; margin-bottom: 0; }

/* ── Steps ── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step-card {
  text-align: center; padding: 32px 24px;
  background: var(--light-gray); border-radius: 12px; position: relative;
}
.step-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--purple); opacity: 0.18; position: absolute; top: 16px; right: 20px; line-height: 1;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; color: #555; margin-bottom: 0; }

/* ── Testimonials ── */
.testimonials-bg { background: var(--deep-purple); }
.testimonials-bg h2, .testimonials-bg .eyebrow { color: var(--white); }
.testimonials-bg .eyebrow { opacity: 0.7; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 28px 24px;
}
.stars { color: #FFC700; font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { color: rgba(255,255,255,0.9); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--purple), var(--deep-purple)); color: var(--white); text-align: center; padding: 72px 24px; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Blog Cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card { border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); transition: box-shadow var(--transition), transform var(--transition); }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; background: var(--light-gray); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { display: none; color: #bbb; font-size: 0.8rem; text-align: center; padding: 16px; font-family: var(--font-body); }
.blog-card-body { padding: 24px; }
.blog-tag { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); margin-bottom: 8px; display: block; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card p { font-size: 0.88rem; color: #666; margin-bottom: 14px; }
.blog-card .read-more { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--purple); }

/* ── Hours + Map ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.07); }
.hours-table td { padding: 10px 4px; font-size: 0.92rem; }
.hours-table td:last-child { text-align: right; color: var(--purple); font-weight: 600; font-family: var(--font-head); }
.hours-table tr:last-child { border-bottom: none; }
.map-embed { border-radius: 12px; overflow: hidden; height: 320px; background: var(--light-gray); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── Contact Form ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--charcoal); background: var(--white); transition: border-color var(--transition); appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Page Hero ── */
.page-hero { background: linear-gradient(135deg, var(--deep-purple), var(--purple)); color: var(--white); padding: 64px 0 56px; text-align: center; }
.page-hero .eyebrow { color: rgba(255,255,255,0.7); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }

/* ── Footer ── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-wordmark { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 12px; font-style: italic; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: background var(--transition); font-size: 0.9rem; }
.social-btn:hover { background: var(--purple); color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.65); }
.footer-col address a { color: var(--purple); }
.footer-col address a:hover { color: #b063f5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }
.agency-credit { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; transition: color var(--transition); }
.agency-credit::after { content: "Website by Rodas Mission Ready Media"; }
.agency-credit:hover { color: var(--purple); }

/* ── Accordion ── */
.accordion { margin-top: 16px; }
.accordion-item { border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.accordion-btn { width: 100%; text-align: left; background: var(--white); border: none; padding: 18px 20px; font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--transition); }
.accordion-btn:hover { background: var(--purple-light); }
.accordion-btn.open { background: var(--purple-light); color: var(--purple); }
.accordion-icon { font-size: 1.2rem; font-weight: 300; transition: transform var(--transition); flex-shrink: 0; margin-left: 12px; }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 20px 20px; font-size: 0.92rem; color: #555; line-height: 1.7; }
.accordion-body.show { display: block; }

/* Insurance */
.insurance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 24px; }
.insurance-badge { background: var(--light-gray); border-radius: var(--radius); padding: 14px 16px; font-size: 0.85rem; font-weight: 600; font-family: var(--font-head); text-align: center; color: var(--charcoal); }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card { border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); background: var(--white); }
.team-card-img { aspect-ratio: 3/4; background: var(--light-gray); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-body { padding: 20px; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; font-family: var(--font-head); font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .split-img { aspect-ratio: 16/9; max-width: 600px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  h1 { font-size: 1.9rem; } h2 { font-size: 1.5rem; }
  .hero { padding: 60px 0 48px; }
  .hero-badges { gap: 20px; flex-wrap: wrap; }
  .steps-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); padding: 16px; gap: 4px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; }
  .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ── Real logo image ── */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.site-footer .logo-img {
  height: 52px;
}
