/* === Living Wells - Health & Wellness === */
:root {
  --cream: #fdfbf7;
  --cream-alt: #f8f4ed;
  --green-900: #1b4332;
  --green-700: #2d6a4f;
  --green-500: #40916c;
  --green-200: #95d5b2;
  --green-100: #b7e4c7;
  --peach: #f4a261;
  --peach-light: #f8c291;
  --sand: #d4a373;
  --sand-light: #eaddcf;
  --warm: #3f3d56;
  --warm-light: #6c6a80;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(29,67,50,0.06);
  --shadow-lg: 0 16px 48px rgba(29,67,50,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--warm);
  line-height: 1.7;
}

/* === Header === */
header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-light);
}
.hd-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { text-decoration: none; font-size: 1.3rem; font-weight: 800; color: var(--green-900); letter-spacing: -0.5px; }
.logo span { color: var(--peach); }

.hd-nav { display: flex; align-items: center; gap: 28px; }
.hd-nav a { text-decoration: none; color: var(--warm); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.hd-nav a:hover { color: var(--green-700); }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 26px; border-radius: 30px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none;
  transition: all 0.25s ease; border: none; cursor: pointer;
}
.btn-primary { background: var(--green-700); color: var(--white); }
.btn-primary:hover { background: var(--green-500); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--warm); border: 1.5px solid var(--sand-light); }
.btn-outline:hover { border-color: var(--green-500); color: var(--green-700); }
.btn-sm { padding: 9px 22px; font-size: 0.82rem; }
.btn-ghost { background: transparent; color: var(--green-700); padding: 9px 22px; border-radius: 30px; font-weight: 500; font-size: 0.85rem; }

/* === Split Hero === */
.hero-split {
  display: flex; min-height: 90vh;
  max-width: 1100px; margin: 0 auto;
  padding: 120px 32px 60px; align-items: center; gap: 50px;
}
.hero-text { flex: 1; }
.hero-text .badge {
  display: inline-block; background: var(--green-100); color: var(--green-900);
  padding: 5px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 16px;
}
.hero-text h1 { font-size: 3.2rem; font-weight: 800; color: var(--green-900); line-height: 1.1; margin-bottom: 14px; letter-spacing: -1px; }
.hero-text h1 span { color: var(--peach); }
.hero-text p { font-size: 1rem; color: var(--warm-light); max-width: 440px; margin-bottom: 28px; }

.hero-visual {
  flex: 1; display: flex; justify-content: center; align-items: center;
}
.hero-visual .h-blob {
  width: 340px; height: 340px;
  background: linear-gradient(135deg, var(--green-200), var(--sand-light));
  border-radius: 42% 58% 70% 30% / 44% 34% 66% 56%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 42% 58% 70% 30% / 44% 34% 66% 56%; }
  33% { border-radius: 62% 38% 54% 46% / 33% 58% 42% 67%; }
  66% { border-radius: 36% 64% 40% 60% / 58% 36% 64% 42%; }
}
.hero-visual .h-blob-inner {
  color: var(--white); font-size: 3rem; font-weight: 700; text-align: center; line-height: 1.2;
}
.hl-stats { display: flex; gap: 24px; margin-bottom: 24px; }
.hl-stat { text-align: center; }
.hl-stat .n { font-size: 1.6rem; font-weight: 800; color: var(--green-700); }
.hl-stat .l { font-size: 0.75rem; color: var(--warm-light); text-transform: uppercase; letter-spacing: 1px; }

/* === Generic section === */
section { padding: 80px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--cream-alt); }
.section-center { text-align: center; }

h2 {
  font-size: 2rem; font-weight: 800; color: var(--green-900);
  letter-spacing: -0.5px; margin-bottom: 8px;
}
h2 .hl { color: var(--peach); }
.section-desc { color: var(--warm-light); font-size: 0.95rem; max-width: 500px; line-height: 1.7; margin: 0 auto 40px; }

/* === Services (3-accent) === */
.svc-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--sand-light);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 20%; width: 60%; height: 3px;
  background: var(--peach); border-radius: 2px;
  transition: width 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card:hover::after { width: 80%; left: 10%; }
.svc-card .s-icon { font-size: 2rem; margin-bottom: 14px; }
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-900); margin-bottom: 8px; }
.svc-card p { font-size: 0.88rem; color: var(--warm-light); line-height: 1.7; }

/* === Stats Strip === */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: var(--green-900); border-radius: 16px; padding: 40px 32px;
  color: var(--white); text-align: center;
}
.stats-strip .stat-cell .num { font-size: 2rem; font-weight: 800; }
.stats-strip .stat-cell .lbl { font-size: 0.8rem; color: var(--green-200); margin-top: 2px; }

/* === FAQ === */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand-light); }
.faq-q {
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; color: var(--warm); font-size: 0.95rem;
  user-select: none;
}
.faq-q .faq-toggle { font-size: 1.2rem; transition: transform 0.2s; color: var(--green-500); }
.faq-item.open .faq-q .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
  color: var(--warm-light); font-size: 0.88rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* === About === */
.about-block { max-width: 780px; margin: 0 auto; }
.about-block p { color: var(--warm-light); font-size: 0.92rem; margin-bottom: 14px; line-height: 1.8; }
.about-block .big-quote {
  font-size: 1.3rem; font-weight: 600; color: var(--green-700); line-height: 1.5;
  padding: 24px 0 24px 28px;
  border-left: 3px solid var(--peach);
  margin: 24px 0;
  font-style: italic;
}

/* === Values === */
.val-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.val-item { text-align: center; padding: 20px; }
.val-item .v-icon { font-size: 1.6rem; margin-bottom: 8px; }
.val-item h4 { font-size: 0.88rem; color: var(--green-900); margin-bottom: 4px; }
.val-item p { font-size: 0.8rem; color: var(--warm-light); line-height: 1.5; }

/* === Testimonials === */
.testi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testi-card { background: var(--white); border-radius: 16px; padding: 28px; border: 1px solid var(--sand-light); }
.testi-card .t-star { color: var(--peach); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.testi-card .t-text { font-size: 0.88rem; color: var(--warm-light); line-height: 1.7; margin-bottom: 14px; }
.testi-card .t-auth { font-weight: 600; font-size: 0.85rem; color: var(--warm); }
.testi-card .t-role { font-size: 0.78rem; color: var(--warm-light); }

/* === CTA === */
.cta-section {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white); text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: var(--green-200); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--peach); color: var(--green-900); }
.cta-section .btn-primary:hover { background: var(--peach-light); }

/* === Newsletter === */
.newsletter {
  background: var(--white); border: 1px solid var(--sand-light);
  border-radius: 16px; padding: 36px; text-align: center;
  max-width: 500px; margin: 0 auto;
}
.newsletter h4 { color: var(--green-900); margin-bottom: 4px; }
.newsletter p { color: var(--warm-light); font-size: 0.82rem; margin-bottom: 16px; }
.newsletter .nl-form { display: flex; gap: 8px; }
.newsletter .nl-form input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--sand-light);
  border-radius: 30px; font-size: 0.88rem; outline: none;
  background: var(--cream); color: var(--warm);
}
.newsletter .nl-form input:focus { border-color: var(--green-500); }
.newsletter .nl-form .btn-primary { border-radius: 30px; }

/* === Footer === */
footer { padding: 50px 32px 24px; }
.ft-inner { max-width: 1100px; margin: 0 auto; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.ft-col h4 { color: var(--green-900); font-size: 0.85rem; margin-bottom: 12px; }
.ft-col p { color: var(--warm-light); font-size: 0.82rem; line-height: 1.7; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 7px; }
.ft-col ul li a { color: var(--warm-light); text-decoration: none; font-size: 0.82rem; }
.ft-col ul li a:hover { color: var(--green-700); }
.ft-bot { padding-top: 18px; border-top: 1px solid var(--sand-light); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: var(--warm-light); }
.ft-bot a { color: var(--warm-light); text-decoration: none; }
.ft-bot a:hover { color: var(--green-500); }

/* === Sub-pages === */
.pagehd { padding: 120px 32px 40px; text-align: center; }
.pagehd h1 { font-size: 2.2rem; color: var(--green-900); }
.pagehd p { color: var(--warm-light); max-width: 480px; margin: 8px auto 0; }

.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.cf input, .cf textarea {
  width: 100%; padding: 14px 18px; background: var(--white);
  border: 1.5px solid var(--sand-light); border-radius: 30px;
  color: var(--warm); font-size: 0.92rem; margin-bottom: 14px; font-family: inherit;
  transition: border-color 0.2s;
}
.cf input:focus, .cf textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(45,106,79,0.06); }
.cf textarea { min-height: 120px; resize: vertical; }
.ci-card { background: var(--white); border: 1px solid var(--sand-light); border-radius: 16px; padding: 28px; }
.ci-card h4 { color: var(--green-700); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.ci-item { display: flex; gap: 12px; margin-bottom: 14px; }
.ci-item .ci-ico { width: 36px; height: 36px; background: var(--cream-alt); border-radius: 30px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-item .ci-l { color: var(--warm-light); font-size: 0.78rem; }
.ci-item .ci-v { color: var(--warm); font-size: 0.85rem; }

.privacy { max-width: 780px; margin: 0 auto; padding: 40px 20px; }
.privacy h3 { color: var(--green-900); font-size: 1.15rem; margin: 28px 0 10px; }
.privacy p { color: var(--warm-light); line-height: 1.8; margin-bottom: 10px; font-size: 0.9rem; }

@media (max-width: 900px) {
  .hd-nav { display: none; }
  .hero-split { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-text p { margin: 0 auto 24px; }
  .hero-visual .h-blob { width: 240px; height: 240px; }
  .svc-row { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .val-row { grid-template-columns: repeat(2,1fr); }
  .testi-row { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr; }
  .newsletter .nl-form { flex-direction: column; }
  .hl-stats { justify-content: center; }
}
