/* =========================================
   NURTURE — Global Stylesheet
   welcometonurture.com
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- TOKENS ---- */
:root {
  --sage:        #8aab8e;
  --sage-light:  #c8deca;
  --sage-pale:   #eef4ef;
  --blush:       #e8c4b4;
  --blush-deep:  #c9896a;
  --cream:       #faf7f2;
  --warm-white:  #fffdf9;
  --charcoal:    #2c2a27;
  --mid:         #6b6661;
  --border:      rgba(44,42,39,0.1);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', sans-serif;
  --nav-h:       68px;
  --section-px:  72px;
  --section-py:  100px;
}

/* ---- BASE ---- */
html  { scroll-behavior: smooth; }
body  {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
}
h1   { font-size: clamp(48px, 5vw, 76px); }
h2   { font-size: clamp(34px, 3.5vw, 52px); }
h3   { font-size: clamp(20px, 2vw, 26px); }
h4   { font-size: 18px; }
em   { font-style: italic; color: var(--blush-deep); }
p    { font-size: 15px; line-height: 1.8; color: var(--mid); font-weight: 300; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--charcoal); color: var(--cream);
  padding: 14px 30px; border-radius: 40px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.25s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--charcoal); font-size: 14px; font-weight: 400;
  text-decoration: none; border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.btn-secondary:hover { color: var(--sage); border-color: var(--sage); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  padding: 14px 30px; border-radius: 40px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background 0.25s, color 0.25s;
  background: transparent; cursor: pointer;
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,253,249,0.8);
  padding: 14px 30px; border-radius: 40px;
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fffdf9; }

/* ---- NAV ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--section-px); height: var(--nav-h);
}
.nav-logo {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: 0.02em; color: var(--charcoal); text-decoration: none;
}
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-cta {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  background: var(--charcoal); color: var(--cream);
  padding: 10px 22px; border-radius: 40px; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--sage); }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); transition: all 0.3s;
}
.nav-mobile {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--cream); z-index: 99;
  flex-direction: column; padding: 40px var(--section-px);
  gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 20px;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--sage); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--sage-pale);
  padding: 80px var(--section-px) 72px;
  border-bottom: 1px solid rgba(138,171,142,0.2);
}
.page-hero .eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.page-hero .eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--sage);
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p  { max-width: 580px; font-size: 16px; }

/* ---- SECTION UTILITIES ---- */
.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage);
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--sage); }
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.light  { color: var(--sage-light); }
.section-eyebrow.light::before { background: var(--sage-light); }

section         { padding: var(--section-py) var(--section-px); }
.bg-warm-white  { background: var(--warm-white); }
.bg-cream       { background: var(--cream); }
.bg-sage-pale   { background: var(--sage-pale); }
.bg-charcoal    { background: var(--charcoal); }
.bg-blush       { background: var(--blush); }
.text-center    { text-align: center; }

/* ---- CARDS ---- */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(44,42,39,0.06); }

.card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage-pale); border: 1px solid rgba(138,171,142,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}

/* ---- GRID HELPERS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--charcoal);
  display: flex; align-items: stretch;
}
.stat-item {
  flex: 1; padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: #fffdf9; letter-spacing: -0.01em;
}
.stat-label { font-size: 12px; color: rgba(255,253,249,0.45); letter-spacing: 0.08em; }

/* ---- DIVIDER ---- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ---- TAGS / PILLS ---- */
.pill {
  display: inline-block;
  background: rgba(255,253,249,0.9);
  border: 1px solid rgba(138,171,142,0.3);
  border-radius: 40px; padding: 6px 14px;
  font-size: 11px; font-weight: 400; color: var(--mid);
  letter-spacing: 0.06em;
}
.pill-sage {
  background: var(--sage-pale);
  border-color: var(--sage-light);
  color: #4a6e4e;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--blush); padding: var(--section-py) var(--section-px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner-bg {
  position: absolute; font-family: var(--serif); font-size: 260px;
  font-weight: 300; color: rgba(255,255,255,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -0.02em;
}
.cta-banner .section-eyebrow { justify-content: center; color: rgba(44,42,39,0.55); }
.cta-banner .section-eyebrow::before { background: rgba(44,42,39,0.3); }
.cta-banner h2 { color: var(--charcoal); margin-bottom: 16px; }
.cta-banner p  { max-width: 480px; margin: 0 auto 36px; color: rgba(44,42,39,0.65); }
.cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- FOOTER ---- */
footer {
  background: #1e1d1a;
  padding: 64px var(--section-px) 0;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 14px; color: var(--cream); }
.footer-brand p { font-size: 13px; color: rgba(255,253,249,0.35); line-height: 1.75; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,253,249,0.4); margin-bottom: 16px; font-weight: 500;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,253,249,0.55);
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.2s; font-weight: 300;
}
.footer-col a:hover { color: rgba(255,253,249,0.9); }
.footer-bottom {
  background: #1e1d1a; padding: 24px var(--section-px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,253,249,0.25); }

/* ---- FORM ELEMENTS ---- */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--charcoal); background: var(--warm-white);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 16px; transition: border-color 0.2s; outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- QUOTE BLOCK ---- */
.quote-block {
  background: var(--warm-white);
  border-left: 3px solid var(--sage);
  padding: 36px 40px; border-radius: 0 16px 16px 0;
  position: relative;
}
.quote-mark {
  font-family: var(--serif); font-size: 80px; line-height: 0.6;
  color: var(--sage-light); position: absolute; top: 24px; left: 20px;
  font-weight: 300; pointer-events: none;
}
.quote-text {
  font-family: var(--serif); font-size: 21px; font-style: italic;
  font-weight: 300; line-height: 1.65; color: var(--charcoal);
  margin-bottom: 16px; padding-top: 16px;
}
.quote-attr { font-size: 11px; color: var(--mid); letter-spacing: 0.12em; text-transform: uppercase; }

/* ---- TESTIMONIAL CARD (dark bg) ---- */
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px;
}
.testi-stars { color: var(--blush); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-family: var(--serif); font-size: 17px; font-weight: 300;
  font-style: italic; line-height: 1.65;
  color: rgba(255,253,249,0.85); margin-bottom: 18px;
}
.testi-name { font-size: 11px; color: rgba(255,253,249,0.38); letter-spacing: 0.12em; text-transform: uppercase; }

/* ---- PRICING CARD ---- */
.pricing-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 36px;
}
.pricing-card.featured {
  background: var(--charcoal); border-color: var(--charcoal);
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured p { color: var(--cream); }
.pricing-card.featured .price-note { color: rgba(255,253,249,0.5); }
.pricing-card.featured li { color: rgba(255,253,249,0.75); border-color: rgba(255,255,255,0.08); }
.price {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  color: var(--charcoal); line-height: 1;
}
.price sup { font-size: 24px; vertical-align: super; }
.price-note { font-size: 12px; color: var(--mid); margin-top: 4px; letter-spacing: 0.06em; }
.pricing-card ul { list-style: none; margin: 24px 0; }
.pricing-card li {
  font-size: 14px; color: var(--mid); font-weight: 300;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.pricing-card li::before { content: '✓'; color: var(--sage); font-weight: 500; font-size: 13px; }

/* ---- ACCORDION ---- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--charcoal);
}
.accordion-trigger .icon {
  font-size: 20px; color: var(--sage); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.accordion-content p { padding: 0 0 24px; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--mid); margin-bottom: 20px;
}
.breadcrumb a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb span { color: var(--sage-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-px: 40px; }
}
@media (max-width: 768px) {
  :root { --section-px: 24px; --section-py: 60px; }
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  footer { grid-template-columns: 1fr 1fr; padding: 40px 24px 0; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
}
