/* ============================================
   MIDWIFE DRU — PALMETTO BIRTH
   Custom Design System
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Primary Palette — Motherhood, Warmth, Safety, Nature */
  --color-sage: #8B9E7E;
  --color-sage-light: #A8B89D;
  --color-sage-dark: #6B7E5E;
  --color-cream: #FAF6F1;
  --color-warm-white: #FDFCFA;
  --color-linen: #F3EDE4;
  --color-terra: #C4956A;
  --color-terra-light: #D4AD8A;
  --color-terra-dark: #A47A52;
  --color-clay: #B08968;
  --color-charcoal: #2D2D2D;
  --color-soft-black: #3A3A3A;
  --color-muted-text: #6B6B6B;
  --color-blush: #E8D5C4;
  --color-dusty-rose: #C9A99A;
  --color-moss: #5A6B4A;
  --color-gold: #C4A265;
  --color-lavender-mist: #E8E0ED;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant', serif;

  /* Spacing rhythm */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft: 0 2px 15px rgba(0,0,0,0.04);
  --shadow-medium: 0 4px 25px rgba(0,0,0,0.08);
  --shadow-warm: 0 4px 20px rgba(196,149,106,0.12);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-soft-black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted-text);
  max-width: 68ch;
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-terra);
}

.text-sage { color: var(--color-sage); }
.text-terra { color: var(--color-terra); }
.text-charcoal { color: var(--color-charcoal); }

/* --- LINKS --- */
a {
  color: var(--color-terra);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-terra-dark);
}

a:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 3px;
}

.btn-primary {
  background-color: var(--color-sage);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-sage-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-terra);
  border: 2px solid var(--color-terra);
}

.btn-secondary:hover {
  background-color: var(--color-terra);
  color: white;
  transform: translateY(-1px);
}

.btn-warm {
  background-color: var(--color-terra);
  color: white;
}

.btn-warm:hover {
  background-color: var(--color-terra-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-blush);
}

.btn-ghost:hover {
  background-color: var(--color-linen);
  border-color: var(--color-terra-light);
}

/* --- NAVIGATION --- */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 158, 126, 0.1);
  transition: var(--transition-smooth);
}

.nav-main.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  letter-spacing: -0.02em;
}

.nav-brand-sub {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--color-terra);
  font-style: italic;
  display: block;
  line-height: 1;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-soft-black);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-sage);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-sage-dark);
}

.nav-cta {
  padding: 0.6rem 1.5rem !important;
  background-color: var(--color-sage);
  color: white !important;
  border-radius: var(--radius-full);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background-color: var(--color-sage-dark);
  color: white !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-charcoal);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: var(--color-warm-white);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem;
    transition: var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 98;
  }

  .nav-overlay.show {
    display: block;
  }
}

/* --- HERO SECTIONS --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(
    135deg,
    var(--color-cream) 0%,
    var(--color-linen) 40%,
    var(--color-blush) 100%
  );
}

.hero-inner {
  background: linear-gradient(
    to bottom,
    var(--color-cream),
    var(--color-linen)
  );
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background-color: rgba(139, 158, 126, 0.12);
  color: var(--color-sage-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--color-soft-black);
}

.hero p {
  font-size: 1.2rem;
  margin: 0 auto var(--space-lg);
  color: var(--color-muted-text);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Organic shape decorations */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--color-sage);
  top: -150px;
  right: -100px;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: var(--color-terra);
  bottom: -100px;
  left: -80px;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--color-gold);
  top: 50%;
  left: 10%;
}

/* --- SECTIONS --- */
.section {
  padding: var(--space-3xl) var(--space-lg);
}

.section-cream { background-color: var(--color-cream); }
.section-white { background-color: var(--color-warm-white); }
.section-linen { background-color: var(--color-linen); }
.section-sage { background-color: var(--color-sage); color: white; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header .overline {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-terra);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  margin: 0 auto;
}

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- CARDS --- */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: rgba(139, 158, 126, 0.1);
  color: var(--color-sage);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-xs);
}

.card p {
  font-size: 0.95rem;
}

/* Service cards */
.service-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-terra));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  opacity: 1;
}

/* Testimonial cards */
.testimonial-card {
  background: var(--color-cream);
  border: none;
  box-shadow: none;
  position: relative;
  padding-top: var(--space-xl);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-sage-light);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card blockquote {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-soft-black);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-card cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-terra);
}

/* --- GRID SYSTEMS --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* --- SPLIT SECTION (Text + Image) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.split-content {
  padding: var(--space-lg) 0;
}

.split-content h2 {
  margin-bottom: var(--space-md);
}

.split-content p {
  margin-bottom: var(--space-md);
}

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: var(--color-linen);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .split, .split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .split-image {
    aspect-ratio: 16/10;
  }
}

/* --- IMAGE PLACEHOLDER --- */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--color-linen), var(--color-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-terra-light);
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* --- STATS / TRUST BAR --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding: var(--space-lg) 0;
}

.trust-stat {
  text-align: center;
}

.trust-stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  display: block;
  line-height: 1.1;
}

.trust-stat .label {
  font-size: 0.85rem;
  color: var(--color-muted-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* --- FORMS --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-soft-black);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--color-blush);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  background: white;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(139, 158, 126, 0.15);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-dusty-rose);
}

/* --- FAQ ACCORDION --- */
.faq-item {
  border-bottom: 1px solid var(--color-blush);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-soft-black);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--color-sage-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-sage);
  transition: var(--transition-smooth);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  font-size: 1rem;
  padding-right: 2rem;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
}

.footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--color-terra-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
  margin-top: var(--space-sm);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: var(--space-xl) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- LEAD CAPTURE / CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-moss) 100%);
  color: white;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin: 0 auto var(--space-lg);
}

.cta-banner .btn {
  background: white;
  color: var(--color-sage-dark);
}

.cta-banner .btn:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Lead capture form inline */
.lead-form-inline {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
}

.lead-form-inline input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
}

.lead-form-inline input::placeholder {
  color: rgba(255,255,255,0.5);
}

.lead-form-inline input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}

.lead-form-inline button {
  white-space: nowrap;
}

@media (max-width: 540px) {
  .lead-form-inline {
    flex-direction: column;
  }
}

/* --- DIVIDERS --- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--color-sage);
  margin: var(--space-md) 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- SKIP LINK (A11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-sage);
  color: white;
  padding: 0.75rem 1.5rem;
  z-index: 200;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
  top: 0;
}

/* --- PAGE HERO (Inner pages) --- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--space-3xl) + 80px) var(--space-lg) var(--space-3xl);
  background: linear-gradient(to bottom, var(--color-cream), var(--color-warm-white));
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero p {
  margin: 0 auto;
  font-size: 1.15rem;
}

/* --- BLOG CARDS --- */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-linen), var(--color-blush));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-body {
  padding: var(--space-md);
}

.blog-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(139, 158, 126, 0.1);
  color: var(--color-sage-dark);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-card p {
  font-size: 0.9rem;
}

.blog-card-meta {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-dusty-rose);
}

/* --- ICON LIST --- */
.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-muted-text);
}

.icon-list li svg,
.icon-list li .icon {
  flex-shrink: 0;
  color: var(--color-sage);
  margin-top: 0.15rem;
}

/* --- VALUE PROPS --- */
.value-prop {
  text-align: center;
  padding: var(--space-md);
}

.value-prop-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 158, 126, 0.1);
  border-radius: 50%;
  color: var(--color-sage);
  font-size: 1.5rem;
}

.value-prop h4 {
  margin-bottom: 0.5rem;
}

.value-prop p {
  font-size: 0.95rem;
  margin: 0 auto;
}

/* --- TIMELINE --- */
.timeline {
  list-style: none;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 2px;
  background: var(--color-blush);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  padding-bottom: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--color-sage);
  border-radius: 50%;
  border: 3px solid var(--color-cream);
}

.timeline-item h4 {
  margin-bottom: 0.25rem;
}

.timeline-item p {
  font-size: 0.95rem;
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* Body padding for fixed nav */
body {
  padding-top: 72px;
}

/* --- PRINT --- */
@media print {
  .nav-main, .footer, .cta-banner {
    display: none;
  }

  body {
    padding-top: 0;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 1rem;
  }
}
