/* ========================================
   Blooming Leaf Wellness — styles.css
   ======================================== */

:root {
  --green-dark: #2d5a3d;
  --green-mid: #4a7c59;
  --green-soft: #87a98f;
  --green-pale: #d9e6db;
  --cream: #faf9f6;
  --cream-warm: #f3efe6;
  --tan: #c9a97c;
  --gold: #b8945a;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.10);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.6rem; font-weight: 700; }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

a { color: var(--green-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; display: block; }

em { font-style: italic; color: var(--green-mid); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: 720px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.eyebrow-light { color: rgba(255,255,255,0.85); }

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.12);
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  height: 48px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  position: relative;
}

.main-nav a:hover { color: var(--green-dark); }

.main-nav a.nav-cta {
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.main-nav a.nav-cta:hover {
  background: var(--green-mid);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-pale) 100%);
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,124,89,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.hero h1 {
  margin-bottom: 1.4rem;
}

.hero .lede {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 580px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--green-dark);
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

.section-tinted {
  background: var(--cream-warm);
}

.section-accent {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
}

.section-accent h2 { color: var(--white); }
.section-accent p { color: rgba(255,255,255,0.92); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ========== TWO-COLUMN (About) ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.portrait {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.cred-line {
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* ========== APPROACH ========== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approach-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.approach-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.approach-card h3 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--green-mid);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}

.service-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.service-card p { color: var(--text); font-size: 1rem; }

/* ========== ASSESSMENT (LEAD MAGNET) ========== */
.assessment-cta {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.assessment-text h2 { color: var(--white); }
.assessment-text p { font-size: 1.1rem; margin-bottom: 1.8rem; }

.assessment-visual {
  position: relative;
  height: 360px;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  color: var(--green-dark);
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.card-1 { top: 10%; left: 12%; animation-delay: 0s; }
.card-2 { top: 30%; left: 50%; animation-delay: 1s; }
.card-3 { top: 55%; left: 10%; animation-delay: 2s; }
.card-4 { top: 70%; left: 45%; animation-delay: 3s; }
.card-5 { top: 25%; left: 75%; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== NEWSLETTER ========== */
.newsletter-card {
  background: var(--white);
  padding: 60px 50px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 1.5rem auto 0;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 2px solid var(--green-pale);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--text);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--green-mid);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--green-mid);
  min-height: 1.2em;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.contact-card {
  background: var(--cream-warm);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
}

.contact-card .btn {
  margin: 1rem 0;
}

.contact-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.94rem;
}
.footer-col a:hover { color: var(--white); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 30px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-disclaimer strong { color: rgba(255,255,255,0.8); }
.footer-disclaimer p { color: rgba(255,255,255,0.6); margin-bottom: 0.8rem; }
.footer-disclaimer p:last-child { margin-bottom: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--green-pale);
    padding: 20px 24px;
  }
  .main-nav.open ul { flex-direction: column; gap: 16px; align-items: flex-start; }
  .mobile-toggle { display: flex; }

  .hero { padding: 80px 0 90px; }
  .hero h1 { font-size: 2.2rem; }
  .hero .lede { font-size: 1.1rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }

  .section { padding: 70px 0; }

  .two-col, .assessment-cta, .contact-grid, .services-grid, .approach-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid { gap: 30px; }
  .assessment-visual { display: none; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .nav-wrap { padding: 12px 18px; }
  .logo { height: 40px; }
  .newsletter-card { padding: 40px 24px; }
}
