/* ===================================================
   LANSING FAMILY HEALTH & WELLNESS
   Static Site Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* --- VARIABLES --- */
:root {
  --pine: #2D4A3E;
  --pine-deep: #1B332A;
  --sage: #7A9B8A;
  --sage-light: #B8CFC2;
  --cream: #F5F0E8;
  --cream-warm: #EDE6D8;
  --bark: #6B5344;
  --rust: #B85C3A;
  --rust-hover: #A04E30;
  --white: #FEFDFB;
  --text: #2C2A26;
  --text-light: #5A5650;
  --max-width: 1100px;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rust); }

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--pine-deep);
  line-height: 1.3;
}
h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- LAYOUT --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 2rem; }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--pine-deep);
  color: var(--cream);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p, .section--dark li { color: var(--sage-light); }
.section--dark a { color: var(--sage-light); }
.section--dark a:hover { color: var(--white); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

/* --- ANNOUNCEMENT BAR --- */
.announce {
  background: var(--rust);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.announce a { color: var(--white); text-decoration: underline; }
.announce-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* --- NAVIGATION --- */
nav {
  background: var(--pine-deep);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}
.nav-brand-icon {
  width: 36px; height: 36px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pine-deep);
}
.nav-brand span {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--sage-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cream);
  background: rgba(255,255,255,0.08);
}
.nav-phone {
  color: var(--white) !important;
  background: var(--rust) !important;
  font-weight: 600 !important;
}
.nav-phone:hover { background: var(--rust-hover) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--rust); color: var(--white); }
.btn-primary:hover { background: var(--rust-hover); color: var(--white); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--pine);
  border: 2px solid var(--pine);
}
.btn-outline:hover { background: var(--pine); color: var(--white); }

/* --- HERO --- */
.hero {
  background: linear-gradient(165deg, var(--pine-deep) 0%, var(--pine) 40%, var(--sage) 100%);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { font-size: 2.8rem; color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--sage-light); }
.hero p { font-size: 1.15rem; color: var(--sage-light); max-width: 480px; line-height: 1.7; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.1);
  aspect-ratio: 16/10;
  background: var(--pine-deep);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: relative;
  top: -16px;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  color: var(--pine-deep);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* --- INFO BAR --- */
.info-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-warm);
  padding: 1.25rem 2rem;
}
.info-bar .section-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-light);
}
.info-icon {
  width: 36px; height: 36px;
  background: var(--sage-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.info-item strong { color: var(--text); }

/* --- SECTION LABELS --- */
.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section--dark .section-label { color: var(--sage); }
.section-title { margin-bottom: 0.75rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.section--dark .section-subtitle { color: var(--sage-light); }

/* --- FEATURE CARDS --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid var(--cream-warm);
  transition: all 0.3s;
}
.section--cream .feature-card { background: var(--white); }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,74,62,0.08);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--pine);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}
.feature-card h3 { font-size: 1.15rem; color: var(--pine-deep); margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.65; }

/* --- STORY / QUOTE --- */
.story-quote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--sage-light);
  text-align: center;
}
.story-attr {
  font-size: 0.95rem;
  color: var(--sage);
  font-weight: 500;
  text-align: center;
}
.story-text {
  margin-top: 2.5rem;
  font-size: 1.02rem;
  color: var(--sage-light);
  line-height: 1.8;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* --- SERVICES LIST --- */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow 0.25s;
}
.section--cream .service-item { background: var(--white); }
.service-item:hover { box-shadow: 0 6px 20px rgba(45,74,62,0.07); }
.service-dot {
  width: 10px; height: 10px;
  background: var(--sage);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.service-item h3 { font-size: 1.05rem; font-weight: 600; color: var(--pine-deep); margin-bottom: 0.3rem; font-family: 'Source Sans 3', sans-serif; }
.service-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* --- DONATE CTA --- */
.donate-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-deep) 100%);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.donate-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(122,155,138,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.donate-box h2 { color: var(--cream); position: relative; }
.donate-box p { color: var(--sage-light); max-width: 500px; margin: 0 auto 2rem; position: relative; }
.donate-box .btn { position: relative; font-size: 1.05rem; padding: 1rem 2.5rem; }
.donate-tax { margin-top: 1.25rem; font-size: 0.82rem; color: var(--sage); position: relative; }

/* --- PAGE HEADER --- */
.page-header {
  padding: 4rem 2rem 3rem;
}
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
}
.page-header.section--dark p { color: var(--sage-light); }
.page-header.section--cream p { color: var(--text-light); }

/* --- CONTENT BLOCKS --- */
.content-block { margin-bottom: 3rem; }
.content-block:last-child { margin-bottom: 0; }
.content-block p {
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 720px;
}
.content-block.centered { text-align: center; }
.content-block.centered p { margin-left: auto; margin-right: auto; }

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
}
.team-card h3 { margin-top: 1rem; font-size: 1.15rem; }
.team-card .role { color: var(--sage); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.92rem; color: var(--text-light); text-align: left; }

/* --- RESOURCE LIST --- */
.resource-group { margin-bottom: 2.5rem; }
.resource-group:last-child { margin-bottom: 0; }
.resource-group h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pine);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sage-light);
}
.resource-group p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}
.resource-group strong { color: var(--text); }

/* --- CONTACT GRID --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-details h3 { margin-bottom: 1rem; }
.contact-details p { font-size: 1rem; line-height: 1.8; }
.contact-map {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.contact-map iframe { width: 100%; height: 400px; border: 0; }

/* --- FOOTER --- */
footer {
  background: var(--pine-deep);
  color: var(--sage-light);
  padding: 3rem 2rem 2rem;
  border-top: 3px solid var(--sage);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: var(--sage); max-width: 320px; }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--sage);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--sage);
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: var(--cream); }

/* --- TWO COL TEXT --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3.5rem 1.25rem; }
  .hero .section-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-image { display: none; }
  .nav-links { 
    display: none; 
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--pine-deep);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; font-size: 1rem; }
  .nav-toggle { display: block; }
  .info-bar .section-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .donate-box { padding: 2.5rem 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
}
