/* ═══════════════════════════════════════════════
   Beauty for Broken / North Georgia Functional Wellness
   Color system: Deep Forest Sage + Antique Gold
   ═══════════════════════════════════════════════ */

:root {
  /* Core brand — pulled directly from the logo */
  --sage-dark:    #3D4935;   /* hexagon border / "North Georgia" text */
  --sage-mid:     #5C6B52;   /* supporting sage */
  --sage:         #7A8E6E;   /* light sage accents */
  --sage-light:   #A8BA9A;   /* pale sage */
  --sage-pale:    #D4DFCE;   /* very light sage tint */
  --gold:         #C4A96B;   /* tree trunk / warm gold */
  --gold-light:   #D4BE8E;   /* lighter gold */
  --gold-muted:   #9A8F5E;   /* "FUNCTIONAL WELLNESS" subdued gold */
  --gold-dark:    #8A7540;   /* darker gold for hover */

  /* Neutrals */
  --cream:        #FAF8F4;
  --cream-dark:   #F0EDE6;
  --warm-gray:    #E2DDD6;
  --warm-gray-2:  #C8C3BB;

  /* Text */
  --text-dark:    #2A3024;
  --text-mid:     #4A5444;
  --text-light:   #7A8572;

  /* Utility */
  --white:        #FFFFFF;
}

/* ─── RESET & BASE ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--sage-dark);
}

a { text-decoration: none; color: inherit; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--warm-gray);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(61,73,53,0.12); }

.nav-logo img {
  height: 56px;
  display: block;
  /* Logo has a light textured bg — use mix-blend-mode to integrate */
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--sage-dark);
  position: relative; padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--sage-dark) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 2px;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sage-mid) !important; }
.nav-cta::after { display: none !important; }

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

/* ─── PAGE SWITCHING ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--white); color: var(--sage-dark);
  padding: 14px 32px; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); color: var(--text-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: white;
  padding: 14px 32px; border: 1.5px solid rgba(255,255,255,0.65);
  cursor: pointer; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-sage {
  background: var(--sage-dark); color: white;
  padding: 14px 32px; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.2s; display: inline-block;
}
.btn-sage:hover { background: var(--sage-mid); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold); color: var(--text-dark);
  padding: 14px 32px; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.2s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-dark); color: white; transform: translateY(-2px); }

/* Keep .btn-plum as alias for .btn-sage for backward compat */
.btn-plum {
  background: var(--sage-dark); color: white;
  padding: 14px 32px; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.2s; display: inline-block;
}
.btn-plum:hover { background: var(--sage-mid); transform: translateY(-2px); }

/* ─── LAYOUT ─── */
.section { padding: 6px 40px; }
.section-alt { background: var(--cream-dark); }
.section-sage { background: var(--sage-dark); }
.section-sage h2, .section-sage h3 { color: white; }

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }
.text-center { text-align: center; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 14px; display: block;
}
.section-sage .section-label { color: var(--gold-light); }

.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 48px; }
.section-sage .section-subtitle { color: rgba(255,255,255,0.75); }

/* ─── PAGE HEADERS ─── */
.page-header {
  background: var(--sage-dark);
  padding: 120px 40px 64px; text-align: center;
}
.page-header h1 {
  color: white; font-size: clamp(2.2rem,5vw,4rem); font-weight: 300; margin-bottom: 16px;
}
.page-header h1 em { color: var(--gold-light); }
.page-header p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #2A3024 0%, var(--sage-dark) 45%, #4A5A3E 80%, #5C6B52 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}

/* When backdrop image is present */
.hero.hero-backdrop {
  background: url('backdrop2.png') center top / cover no-repeat;
}

/* Dark overlay so text stays readable over photo */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 32, 18, 0.52) 0%,
    rgba(30, 45, 25, 0.68) 50%,
    rgba(20, 32, 18, 0.78) 100%
  );
}

.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='700' height='700' viewBox='0 0 700 700' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M350 0 L606 175 L606 525 L350 700 L94 525 L94 175 Z'/%3E%3C/g%3E%3C/svg%3E") center/700px repeat;
}
.hero-inner { position: relative; z-index: 2; max-width: 800px; }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 28px;
  border-bottom: 1px solid rgba(196,169,107,0.5); padding-bottom: 10px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 300;
  color: white; margin-bottom: 28px; line-height: 1.12;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 580px; margin: 0 auto 44px; font-weight: 300; line-height: 1.85;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── WELCOME SPLIT ─── */
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.welcome-image-box {
  background: var(--sage-dark);
  height: 480px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.welcome-image-box::after {
  content: ''; position: absolute; bottom: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold); border-radius: 4px; z-index: -1;
}
.welcome-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.credential-tag {
  background: var(--sage-dark); color: white;
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; padding: 6px 14px; border-radius: 2px;
}

/* ─── DIFFERENTIATOR CARDS ─── */
.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; margin-top: 56px;
}
.diff-card {
  background: white; padding: 36px 28px; border-radius: 4px;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.diff-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,73,53,0.1); }
.diff-icon {
  width: 48px; height: 48px; background: var(--cream-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.diff-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.diff-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.7; }

/* ─── CONDITIONS ─── */
.conditions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; margin-top: 40px;
}
.condition-item {
  background: white; border: 1px solid var(--warm-gray);
  padding: 16px 20px; border-radius: 4px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.93rem; color: var(--text-dark);
  transition: border-color 0.2s, background 0.2s;
}
.condition-item:hover { border-color: var(--gold); background: #FDFAF4; }
.condition-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ─── PATHWAY ─── */
.pathway {
  display: flex; align-items: flex-start; flex-wrap: wrap;
  gap: 0; margin-top: 56px; justify-content: center;
}
.pathway-step { flex: 1; min-width: 160px; max-width: 220px; text-align: center; position: relative; }
.pathway-step::after {
  content: '→'; position: absolute; top: 22px; right: -16px;
  color: var(--gold-light); font-size: 1.4rem;
}
.pathway-step:last-child::after { display: none; }
.pathway-num {
  width: 52px; height: 52px; border: 2px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: white; font-weight: 500;
}
.pathway-step h4 {
  font-size: 0.92rem; font-family: 'Lato', sans-serif; font-weight: 700;
  color: rgba(255,255,255,0.9); line-height: 1.3; padding: 0 8px;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: white; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--warm-gray);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(61,73,53,0.12); }
.service-card-head {
  background: var(--sage-dark); padding: 28px 28px 24px; position: relative;
}
.service-card-head::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}
.service-card-head h3 { color: white; font-size: 1.4rem; font-weight: 400; margin-bottom: 6px; }
.service-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold-light); }
.service-card-body { padding: 24px 28px 28px; }
.service-card-body p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.7; }

.book-btn {
  background: var(--gold); color: var(--text-dark);
  padding: 9px 18px; border-radius: 2px; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.2s; display: inline-block; margin-top: 14px;
}
.book-btn:hover { background: var(--gold-dark); color: white; transform: translateY(-1px); }

/* Testing box */
.testing-box {
  background: var(--cream-dark); border: 1px solid var(--warm-gray);
  border-left: 4px solid var(--gold); padding: 36px 40px; border-radius: 4px; margin-top: 48px;
}
.testing-box h3 { margin-bottom: 12px; }
.testing-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 20px; }
.testing-item { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; }
.testing-item::before { content: '✦'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ─── FOUNDING ─── */
.founding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; align-items: start; }
.founding-card { background: white; border-radius: 4px; border: 1px solid var(--warm-gray); overflow: hidden; }
.founding-card-head { padding: 36px 36px 28px; text-align: center; }
.founding-card-head.featured { background: var(--sage-dark); }
.founding-card-head.featured h3, .founding-card-head.featured p { color: white; }
.founding-badge {
  display: inline-block; background: var(--gold); color: var(--text-dark);
  font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; padding: 5px 12px; border-radius: 2px;
  margin-bottom: 16px; text-transform: uppercase;
}
.founding-price { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--sage-dark); line-height: 1; margin-bottom: 8px; }
.founding-card-head.featured .founding-price { color: var(--gold-light); }
.founding-card-body { padding: 28px 36px 36px; }
.founding-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; padding: 9px 0; border-bottom: 1px solid var(--warm-gray); color: var(--text-mid); }
.founding-feature:last-child { border-bottom: none; }
.founding-check { color: var(--sage); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.founding-limited {
  background: var(--cream-dark); border: 1px solid var(--warm-gray);
  border-left: 4px solid var(--sage-dark); padding: 18px 22px; margin-top: 32px;
  font-size: 0.93rem; color: var(--text-mid); border-radius: 4px;
}

/* ─── FAQ ─── */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--warm-gray); }
.faq-question {
  width: 100%; text-align: left; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--sage-dark); gap: 20px;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold-muted); transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 24px; font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0; background: var(--cream-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact-detail p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.6; }
.contact-detail strong { display: block; color: var(--sage-dark); font-weight: 700; margin-bottom: 2px; }

.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block; font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: 8px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--warm-gray); border-radius: 3px;
  background: white; font-family: 'Lato', sans-serif;
  font-size: 0.93rem; color: var(--text-dark); outline: none; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about-image-box {
  background: var(--cream-dark); min-height: 500px; border-radius: 4px;
  display: flex; align-items: flex-start; justify-content: center;
  position: relative; border: 1px solid var(--warm-gray);
  overflow: hidden;
}
.about-image-box img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; min-height: 480px;
  border-radius: 4px;
}
.credentials-block { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }
.cred-item { background: var(--cream-dark); padding: 16px 20px; border-radius: 4px; border-left: 3px solid var(--gold); }
.cred-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.cred-item p { font-size: 0.85rem; color: var(--text-mid); }

/* ─── RESOURCES ─── */
.resource-featured {
  background: white; border-radius: 4px; border: 1px solid var(--warm-gray);
  padding: 56px; text-align: center; margin-top: 56px; position: relative; overflow: hidden;
}
.resource-featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sage-dark), var(--gold), var(--sage-light));
}
.resource-tag {
  display: inline-block; background: var(--sage-pale); color: var(--sage-dark);
  font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; padding: 5px 12px; border-radius: 2px;
  margin-bottom: 20px; text-transform: uppercase;
}
.coming-soon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.coming-soon-item { background: var(--cream-dark); padding: 28px; border-radius: 4px; text-align: center; border: 1px solid var(--warm-gray); }
.coming-soon-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
.coming-soon-item p { font-size: 0.85rem; color: var(--text-light); }

/* ─── FOOTER ─── */
footer { background: #1E2419; color: rgba(255,255,255,0.78); padding: 64px 40px 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
  max-width: 1100px; margin: 0 auto; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer h4 {
  color: white; font-family: 'Lato', sans-serif; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; margin-bottom: 20px;
}
footer p, footer a { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.65); }
footer a:hover { color: var(--gold-light); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer-logo { height: 52px; mix-blend-mode: luminosity; opacity: 0.55; }

/* ─── DISCLAIMER ─── */
.disclaimer {
  background: var(--cream-dark); border-top: 1px solid var(--warm-gray);
  padding: 20px 40px; font-size: 0.8rem; color: var(--text-light); text-align: center; line-height: 1.6;
}

/* ══════════════════════════════════════════
   BOOKING MODAL
   ══════════════════════════════════════════ */
.booking-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(20, 28, 18, 0.7);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.booking-overlay.open { display: flex; }

.booking-modal {
  background: var(--cream); border-radius: 6px;
  width: 100%; max-width: 760px; max-height: 92vh; overflow-y: auto;
  position: relative; box-shadow: 0 32px 80px rgba(20,28,18,0.4);
}
.booking-modal-head {
  background: var(--sage-dark); padding: 32px 40px 28px;
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.booking-modal-head h2 { color: white; font-size: 1.8rem; font-weight: 300; margin-bottom: 4px; }
.booking-modal-head p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.booking-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.65); font-size: 1.6rem; line-height: 1; padding: 0; margin-left: 20px; flex-shrink: 0; transition: color 0.2s; }
.booking-close:hover { color: white; }

/* Progress */
.booking-progress {
  display: flex; align-items: center; padding: 22px 40px;
  border-bottom: 1px solid var(--warm-gray); background: white; gap: 0;
}
.bprog-step { display: flex; align-items: center; gap: 10px; flex: 1; }
.bprog-step:last-child { flex: 0; }
.bprog-dot {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--warm-gray);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--text-light); transition: all 0.3s;
}
.bprog-dot.active { border-color: var(--sage-dark); background: var(--sage-dark); color: white; }
.bprog-dot.done  { border-color: var(--gold); background: var(--gold); color: white; }
.bprog-label {
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light);
  white-space: nowrap; display: none;
}
.bprog-step.active .bprog-label { color: var(--sage-dark); display: block; }
.bprog-step.done  .bprog-label { color: var(--gold-muted); display: block; }
.bprog-line { flex: 1; height: 2px; background: var(--warm-gray); margin: 0 8px; transition: background 0.3s; }
.bprog-line.done { background: var(--gold); }

.booking-body { padding: 36px 40px 40px; }
.booking-step { display: none; }
.booking-step.active { display: block; }
.booking-step h3 { font-size: 1.5rem; margin-bottom: 6px; }
.booking-step > p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 28px; }

/* Service grid */
.bsvc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bsvc-item {
  border: 2px solid var(--warm-gray); border-radius: 4px; padding: 16px 18px;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: flex-start; gap: 12px;
}
.bsvc-item:hover { border-color: var(--gold); background: #FDFAF4; }
.bsvc-item.selected { border-color: var(--sage-dark); background: #F4F6F2; }
.bsvc-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--warm-gray); flex-shrink: 0;
  margin-top: 2px; transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.bsvc-item.selected .bsvc-radio { border-color: var(--sage-dark); background: var(--sage-dark); }
.bsvc-item.selected .bsvc-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: white; }
.bsvc-info h4 { font-size: 1rem; font-family: 'Cormorant Garamond', serif; color: var(--sage-dark); margin-bottom: 3px; }
.bsvc-info p { font-size: 0.82rem; color: var(--text-light); }
.bsvc-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold-muted); font-weight: 500; margin-left: auto; flex-shrink: 0; }

/* Calendar */
.bdate-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
.bcalendar { border: 1.5px solid var(--warm-gray); border-radius: 4px; overflow: hidden; }
.bcal-head {
  background: var(--sage-dark); color: white; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
}
.bcal-nav { background: none; border: none; color: white; cursor: pointer; font-size: 1.2rem; padding: 0 6px; }
.bcal-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 10px; }
.bcal-dow { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); padding: 8px 2px; }
.bcal-day {
  text-align: center; padding: 8px 2px; font-size: 13px; cursor: pointer;
  border-radius: 50%; transition: all 0.15s; color: var(--text-dark);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.bcal-day:hover:not(.disabled):not(.empty) { background: var(--cream-dark); }
.bcal-day.selected { background: var(--sage-dark) !important; color: white !important; }
.bcal-day.today { font-weight: 700; color: var(--sage-dark); }
.bcal-day.disabled, .bcal-day.empty { color: var(--text-light); cursor: default; opacity: 0.35; }

.btime-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btime-item {
  border: 1.5px solid var(--warm-gray); border-radius: 4px;
  padding: 11px; text-align: center; cursor: pointer;
  font-size: 0.88rem; transition: all 0.15s; color: var(--text-dark);
}
.btime-item:hover:not(.unavailable) { border-color: var(--gold); background: #FDFAF4; }
.btime-item.selected { border-color: var(--sage-dark); background: var(--sage-dark); color: white; }
.btime-item.unavailable { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.btime-note { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; font-style: italic; }

/* Info form */
.binfo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.binfo-full { grid-column: span 2; }
.bform-group label { display: block; font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 7px; }
.bform-group input, .bform-group select, .bform-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--warm-gray); border-radius: 3px; background: white;
  font-family: 'Lato', sans-serif; font-size: 0.93rem; color: var(--text-dark);
  outline: none; transition: border-color 0.2s;
}
.bform-group input:focus, .bform-group select:focus, .bform-group textarea:focus { border-color: var(--gold); }
.bform-group textarea { resize: vertical; min-height: 90px; }

/* Confirm */
.bconfirm-box { background: white; border: 1.5px solid var(--warm-gray); border-radius: 4px; overflow: hidden; margin-bottom: 22px; }
.bconfirm-head { background: var(--cream-dark); padding: 18px 24px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--warm-gray); }
.bconfirm-head h4 { font-size: 1.1rem; }
.bconfirm-head p { font-size: 0.85rem; color: var(--text-mid); }
.bconfirm-rows { padding: 6px 0; }
.bconfirm-row { display: flex; padding: 11px 24px; border-bottom: 1px solid var(--warm-gray); font-size: 0.88rem; }
.bconfirm-row:last-child { border-bottom: none; }
.bconfirm-row strong { width: 130px; flex-shrink: 0; color: var(--sage-dark); }
.bconfirm-row span { color: var(--text-mid); }
.bconfirm-notice { background: #F2F5F0; border: 1px solid var(--sage-pale); border-radius: 4px; padding: 16px 20px; font-size: 0.85rem; color: var(--text-mid); margin-bottom: 22px; display: flex; gap: 12px; align-items: flex-start; }

/* Success */
.bsuccess { text-align: center; padding: 40px 20px; }
.bsuccess-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; }
.bsuccess h3 { font-size: 2rem; margin-bottom: 12px; }
.bsuccess p { color: var(--text-mid); max-width: 400px; margin: 0 auto 12px; line-height: 1.8; }

/* Booking nav */
.booking-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--warm-gray); }

/* Floating button */
.fab-book {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--sage-dark); color: white; border: none; cursor: pointer;
  border-radius: 32px; padding: 14px 24px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(61,73,53,0.4);
  transition: all 0.25s;
}
.fab-book:hover { background: var(--sage-mid); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(61,73,53,0.45); }
.fab-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ─── RESPONSIVE ─── */

/* ══════════════════════════════════════════
   COMPONENT ADDITIONS
   ══════════════════════════════════════════ */

/* Welcome name block (credentials inline) */
.welcome-name-block {
  margin-top: 16px;
  text-align: center;
}
.welcome-name-block h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--sage-dark);
}
.welcome-credentials { display: none; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .conditions-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Nav ── */
  nav { padding: 0 16px; height: 70px; }
  .nav-logo img { height: 46px; max-width: 200px; object-fit: contain; }
  .nav-links { display: none !important; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--cream);
    padding: 16px 20px 20px;
    gap: 0;
    border-bottom: 2px solid var(--warm-gray);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    z-index: 1001;
  }
  .nav-links.open li { border-bottom: 1px solid var(--warm-gray); }
  .nav-links.open li:last-child { border-bottom: none; padding-top: 8px; }
  .nav-links.open a {
    display: block; padding: 13px 4px;
    font-size: 14px; color: var(--sage-dark);
  }
  .nav-links.open a::after { display: none; }
  .nav-links.open .nav-cta {
    display: inline-block !important;
    margin-top: 6px; width: auto;
    padding: 11px 20px !important;
  }
  .nav-hamburger { display: flex !important; }

  /* ── Layout ── */
  .section { padding: 52px 20px; }
  .section-alt { padding: 52px 20px; }
  .hero { padding: 90px 20px 56px; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; }
  .hero p { font-size: 0.96rem; }
  .hero-inner img { width: 75vw !important; max-width: 300px !important; }
  .page-header { padding: 90px 20px 40px; }
  .page-header h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* ── Grids → single column ── */
  .welcome-grid,
  .about-grid,
  .founding-grid,
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .credentials-block { grid-template-columns: 1fr 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* ── Images ── */
  .welcome-image-box { height: 280px; }
  .about-image-box img { min-height: 260px !important; }

  /* ── Pathway ── */
  .pathway { flex-direction: column; align-items: center; gap: 16px; }
  .pathway-step { max-width: 100%; min-width: 0; width: 100%; }
  .pathway-step::after { display: none; }

  /* ── Footer ── */
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom p { font-size: 0.75rem; }

  /* ── Cards ── */
  .founding-card-body { padding: 20px; }
  .founding-card-head { padding: 24px 20px; }
  .founding-price { font-size: 2.8rem; }
  .testing-box { padding: 24px 18px; }
  .resource-featured { padding: 28px 18px; }

  /* ── Booking modal ── */
  .booking-modal-head { padding: 20px; }
  .booking-progress { padding: 14px 16px; }
  .bprog-label { display: none !important; }
  .booking-body { padding: 20px 16px 24px; }
  .bsvc-grid { grid-template-columns: 1fr; }
  .bdate-grid { grid-template-columns: 1fr; }
  .binfo-grid { grid-template-columns: 1fr; }
  .binfo-full { grid-column: span 1; }

  /* ── Floating book button ── */
  .fab-book { bottom: 14px; right: 14px; padding: 11px 16px; font-size: 11px; border-radius: 28px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 420px)
   ══════════════════════════════════════════ */
@media (max-width: 420px) {
  nav { height: 64px; padding: 0 12px; }
  .nav-logo img { height: 40px; }
  .nav-links.open { top: 64px; }
  .section { padding: 40px 16px; }
  .hero { padding: 80px 16px 48px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .credentials-block { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns button { width: 100%; max-width: 280px; }
  .bsvc-price { font-size: 1.1rem; }
}
