/* =========================================================
   Calm Space Wellbeing — Main Stylesheet
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:        #6B9070;
  --sage-light:  #EAF2EB;
  --sage-dark:   #4A6A50;
  --lavender:    #8E7BB5;
  --lav-light:   #F0EDF8;
  --cream:       #FAF6F0;
  --warm:        #D4A96A;
  --text:        #2C2C2C;
  --text-muted:  #6B6B6B;
  --white:       #FFFFFF;
  --border:      #E5E0D8;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
  --transition:  .25s ease;
  --font-body:   'Lato', system-ui, sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;
  --max-w:       1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--sage); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout Utilities ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--white); }
.section--sage { background: var(--sage-light); }
.section--lav  { background: var(--lav-light); }
.section--dark { background: var(--sage-dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.85); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,144,112,.35);
}
.btn-outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-warm {
  background: var(--warm);
  color: var(--white);
  border-color: var(--warm);
}
.btn-warm:hover {
  background: #c09050;
  border-color: #c09050;
  color: var(--white);
  transform: translateY(-2px);
}
.btn + .btn { margin-left: 12px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,240,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--sage-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo span { color: var(--lavender); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}
.nav__links a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--sage); background: var(--sage-light); }
.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--lav-light) 60%, var(--cream) 100%);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(107,144,112,.12) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(142,123,181,.10) 0%, transparent 50%);
}
.hero__inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero__badge {
  display: inline-block;
  background: var(--white);
  color: var(--sage-dark);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--sage); }
.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-muted);
}
.hero__proof-item svg { color: var(--sage); flex-shrink: 0; }

/* ---------- Section Headers ---------- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.card__icon--sage    { background: var(--sage-light); }
.card__icon--lav     { background: var(--lav-light); }
.card__icon--warm    { background: #FDF3E3; }
.card h3 { margin-bottom: 10px; }
.card p  { color: var(--text-muted); font-size: .95rem; }

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__top {
  padding: 28px 28px 0;
}
.service-card__emoji {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card__body {
  padding: 16px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card p { color: var(--text-muted); font-size: .93rem; flex: 1; }
.service-card .btn { margin-top: 20px; align-self: flex-start; }

/* ---------- Benefit List ---------- */
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
}
.benefit-list li::before {
  content: '✓';
  min-width: 24px;
  height: 24px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--sage-light);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial__text {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  padding-top: 20px;
  margin-bottom: 20px;
}
.testimonial__author {
  font-weight: 700;
  font-size: .9rem;
  color: var(--sage-dark);
}
.testimonial__stars { color: #F5A623; font-size: .9rem; margin-bottom: 8px; }

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.pricing-card:hover,
.pricing-card--featured {
  border-color: var(--sage);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured { position: relative; }
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card__price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--sage-dark);
  margin: 16px 0 8px;
}
.pricing-card__price span { font-size: 1.1rem; }
.pricing-card__desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
}
.pricing-card ul li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sage); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); color: var(--sage); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer__inner { padding: 0 0 20px; color: var(--text-muted); font-size: .97rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 60%, #8aad8f 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,.06), transparent 60%);
}
.cta-banner__inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn + .btn { margin-left: 12px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
}
.contact-info__label { font-weight: 700; font-size: .85rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.contact-info__value { font-size: 1rem; color: var(--text); }
.contact-info__value a { color: var(--sage-dark); font-weight: 600; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- About ---------- */
.about-hero { padding: 80px 24px; background: linear-gradient(135deg, var(--lav-light) 0%, var(--sage-light) 100%); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-light), var(--lav-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.credential-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.credential-badge__icon { font-size: 1.8rem; margin-bottom: 8px; }
.credential-badge__name { font-weight: 700; font-size: .88rem; color: var(--sage-dark); }
.credential-badge__body { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 70px 24px 60px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--lav-light) 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto 28px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--sage); font-weight: 600; }
.breadcrumb span { margin: 0 8px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.step__num {
  counter-increment: step;
  min-width: 48px;
  height: 48px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step__num::before { content: counter(step); }
.step h4 { margin-bottom: 6px; }
.step p  { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ---------- Area Tags ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: #1E2820;
  color: rgba(255,255,255,.75);
  padding: 60px 24px 24px;
}
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.footer__tagline { font-size: .88rem; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: all var(--transition);
  text-decoration: none;
}
.footer__social a:hover { background: var(--sage); color: var(--white); }
.footer__col h4 { color: var(--white); font-family: var(--font-body); font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--white); }
.footer__col address { font-style: normal; font-size: .88rem; display: flex; flex-direction: column; gap: 8px; }
.footer__col address a { color: rgba(255,255,255,.65); }
.footer__col address a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
}
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--white); }

/* ---------- Hours Table ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: .9rem; }
.hours-table td:last-child { text-align: right; color: var(--sage-dark); font-weight: 600; }

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: var(--sage-light);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text); margin: 0; font-size: .97rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav.open .nav__cta {
    display: block;
    padding: 0 24px 16px;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    background: var(--cream);
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero { padding: 70px 24px 60px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn + .btn { margin-left: 0; }
}

@media (max-width: 480px) {
  :root { --max-w: 100%; }
  .card, .pricing-card, .contact-form { padding: 24px 20px; }
}
