/* ═══════════════════════════════════════════════════════════════
   CENTER WELLNESS WITHIN
   Natalie Paffrath — Lymphatic Drainage Specialist
   Built by Signal Workshop

   Color palette matched to the live centerwellnesswithin.com
   Warm grays · Dusty mauve · Lavender · Thistle · Serif elegance
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── BRAND PALETTE ── */
  --mauve: #9B699F;              /* primary — her signature purple */
  --mauve-dark: #845A88;
  --mauve-soft: rgba(155, 105, 159, 0.10);
  --mauve-glow: rgba(155, 105, 159, 0.18);
  --lavender: #D8BFD8;           /* thistle — soft accent */
  --lavender-soft: rgba(216, 191, 216, 0.25);
  --navy: #232743;               /* deep ink — headings & buttons */
  --navy-soft: rgba(35, 39, 67, 0.08);

  /* ── BACKGROUNDS ── */
  --bg: #E8E4E0;                 /* warm light gray — her base */
  --bg-warm: #F0EDEA;            /* slightly lighter for alternating */
  --panel: #FFFFFF;              /* cards, form */
  --panel-soft: #FAF8F6;

  /* ── TEXT ── */
  --text: #090A11;               /* near-black — her body text */
  --text-soft: rgba(9, 10, 17, 0.72);
  --text-muted: rgba(9, 10, 17, 0.52);

  /* ── BORDERS & SHADOWS ── */
  --border: rgba(9, 10, 17, 0.08);
  --border-accent: rgba(155, 105, 159, 0.25);
  --shadow: 0 8px 40px rgba(9, 10, 17, 0.06);
  --shadow-lg: 0 20px 60px rgba(9, 10, 17, 0.08);
  --shadow-lift: 0 12px 32px rgba(9, 10, 17, 0.10);

  /* ── LAYOUT ── */
  --max-width: 1100px;
  --gutter: 24px;
  --radius: 16px;
  --radius-sm: 10px;

  /* ── TYPE ── */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--lavender); color: var(--navy); }


/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger service cards */
.services-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.35s; }
/* stagger benefit groups */
.benefits-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
/* stagger testimonials */
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.2s; }


/* ═══ LAYOUT ═══ */
.section-wrap {
  width: min(var(--max-width), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

.section-pad {
  padding: 88px 0;
}

.bg-warm { background: var(--bg-warm); }

.center { text-align: center; }


/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 6px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 52px;
}


/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  text-decoration: none;
}

.btn.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(35, 39, 67, 0.2);
}
.btn.primary:hover {
  background: #2e3356;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(35, 39, 67, 0.25);
}
.btn.primary:active { transform: translateY(0); }

.btn.secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn.secondary:hover {
  background: var(--navy);
  color: #fff;
}

.btn.full-width { width: 100%; }


/* ═══ HEADER / NAV ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(232, 228, 224, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}
.brand:hover { opacity: 0.8; }

.logo-shell {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-fallback { display: none; }
.logo-fallback-active .brand-logo { display: none; }
.logo-fallback-active .logo-fallback { display: block; }

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
}
.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mauve); }

.nav-cta {
  background: var(--mauve) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
  transition: all 0.3s !important;
  box-shadow: 0 2px 10px var(--mauve-glow);
}
.nav-cta:hover {
  background: var(--mauve-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--mauve-glow);
}

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(232, 228, 224, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px var(--gutter);
    gap: 14px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; width: 100%; display: block; }
}


/* ═══ HERO ═══ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--bg) 0%,
    #DDD5D0 30%,
    var(--lavender) 70%,
    var(--mauve) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(232, 228, 224, 0.5) 0%,
    rgba(232, 228, 224, 0) 40%,
    rgba(155, 105, 159, 0.08) 70%,
    rgba(232, 228, 224, 0.85) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
}

.hero-copy { max-width: 620px; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 12px 0 24px;
  color: var(--navy);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 34px;
  line-height: 1.75;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { min-height: 68vh; }
  .hero h1 br { display: none; }
  .hero-inner { padding: 80px 0 60px; }
}


/* ═══ MISSION STRIP ═══ */
.mission-strip {
  background: var(--navy);
  padding: 44px 0;
  text-align: center;
}

.mission-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(240, 241, 244, 0.9);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 10px;
}

.mission-author {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
}


/* ═══ HOW IT WORKS ═══ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 36px 24px 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.step-number {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: var(--mauve);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.step-icon {
  color: var(--mauve);
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 56px;
  color: var(--text-muted);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .step-card { max-width: 340px; width: 100%; }
  .step-connector { padding-top: 0; transform: rotate(90deg); }
}


/* ═══ SERVICES ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* mauve top accent bar on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender), var(--mauve), var(--lavender));
  transform: scaleX(0);
  transition: transform 0.35s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  color: var(--mauve);
  margin-bottom: 14px;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.08); }

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
}


/* ═══ PRICING ═══ */
.pricing-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pricing-card {
  text-align: center;
  padding: 30px 36px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 210px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.pricing-card.featured {
  border-color: var(--mauve);
  box-shadow: 0 4px 30px var(--mauve-glow);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mauve);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 16px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: -0.02em;
}

.pricing-save {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}


/* ═══ BENEFITS ═══ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-group {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mauve-soft);
  color: var(--mauve);
  margin-bottom: 16px;
}

.benefit-group h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.benefit-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-group li {
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.benefit-group li:last-child { border-bottom: none; }


/* ═══ ABOUT ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

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

.headshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #F0ECE8, #E8E4E0);
  border: 2px dashed rgba(155, 105, 159, 0.3);
  box-shadow: var(--shadow-lg);
  gap: 12px;
}

.placeholder-text {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: #9B699F;
  opacity: 0.7;
  letter-spacing: 0.03em;
}

.about-copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 18px;
}

.about-copy p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 12px;
  line-height: 1.75;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mauve-dark);
  background: var(--mauve-soft);
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-accent);
}

.badge svg { flex-shrink: 0; color: var(--mauve); }

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image img { aspect-ratio: 16/10; }
}


/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  margin: 0;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.stars {
  color: #D4A843;
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.testimonial-card footer {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mauve);
  font-style: normal;
  letter-spacing: 0.02em;
}


/* ═══ FAQ ═══ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] {
  border-color: var(--border-accent);
  box-shadow: 0 4px 20px var(--mauve-glow);
}

.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--mauve);
  flex-shrink: 0;
  margin-left: 14px;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item summary:hover { color: var(--mauve-dark); }

.faq-answer {
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
}


/* ═══ CONTACT ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.75;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.contact-details li svg { color: var(--mauve); flex-shrink: 0; }
.contact-details a {
  color: var(--text);
  transition: color 0.2s;
}
.contact-details a:hover { color: var(--mauve); }

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text-muted);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.social-links a:hover {
  color: var(--mauve);
  border-color: var(--border-accent);
  background: var(--mauve-soft);
  transform: translateY(-2px);
}

/* ── CTA Panel ── */
/* ── Contact Form Panel ── */
.contact-form-panel {
  background: var(--panel);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.5;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group .required {
  color: var(--mauve);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mauve);
  box-shadow: 0 0 0 3px var(--mauve-soft);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8b4b0;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.intake-form .btn {
  margin-top: 4px;
}

.intake-form .btn.primary {
  background: var(--mauve);
  box-shadow: 0 4px 16px var(--mauve-glow);
}
.intake-form .btn.primary:hover {
  background: var(--mauve-dark);
  box-shadow: 0 6px 20px var(--mauve-glow);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-panel { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}


/* ═══ FOOTER ═══ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
  text-align: center;
}

.footer-inner {
  padding: 32px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.built-by {
  margin-top: 4px;
  font-size: 0.75rem;
}
.built-by a {
  color: var(--text-soft);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.built-by a:hover { color: var(--mauve); }


/* ═══════════════════════════════════════════════════════════════
   BLOG & SERVICE AREA PAGES
   ═══════════════════════════════════════════════════════════════ */

/* ── Blog Article ── */
.blog-article { background: var(--bg); }

.article-wrap {
  max-width: 720px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.back-link {
  color: var(--mauve);
  font-weight: 600;
  transition: color 0.2s;
}
.back-link:hover { color: var(--mauve-dark); }

.blog-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--navy);
}

.h1-sub {
  display: block;
  font-size: 0.65em;
  color: var(--mauve);
  font-weight: 400;
  margin-top: 4px;
}

.article-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 36px;
  border-left: 3px solid var(--mauve);
  padding-left: 20px;
}

.blog-article h2 {
  font-size: 1.35rem;
  margin: 40px 0 16px;
  text-align: left;
}

.blog-article h3 {
  font-size: 1.1rem;
  margin: 28px 0 12px;
}

.blog-article p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.blog-article ul,
.blog-article ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.blog-article li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.inline-quote {
  background: var(--bg-warm);
  border-left: 3px solid var(--mauve);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 28px 0;
  font-style: italic;
}

.inline-quote p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
}

.inline-quote footer {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-style: normal;
  color: var(--mauve);
  font-weight: 600;
  margin-top: 8px;
}

.article-cta {
  margin-top: 48px;
  padding: 36px;
  background: var(--panel);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.article-cta h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 8px;
}

.article-cta p {
  text-align: center;
  margin-bottom: 20px;
}


/* ── Blog Index ── */
.blog-hero-lead {
  text-align: center;
  max-width: 560px;
  margin: -32px auto 0;
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.blog-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender), var(--mauve), var(--lavender));
  transform: scaleX(0);
  transition: transform 0.35s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.blog-card:hover::after { transform: scaleX(1); }

.blog-card-icon {
  color: var(--mauve);
  margin-bottom: 14px;
}

.blog-card time {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.blog-card h2 {
  font-size: 1.15rem;
  margin: 10px 0 10px;
  text-align: left;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mauve);
  transition: color 0.2s;
}
.blog-card:hover .read-more { color: var(--mauve-dark); }


/* ── Service Area Pages ── */
.area-hero-lead {
  text-align: center;
  max-width: 600px;
  margin: -32px auto 0;
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .area-grid {
    grid-template-columns: 1fr;
  }
}

.area-content h2 {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.area-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 12px;
}

.area-content p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}

.area-services-list {
  padding-left: 0;
  list-style: none;
}

.area-services-list li {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.7;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.area-services-list li:last-child { border-bottom: none; }

.area-services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--mauve);
  border-radius: 50%;
}

.area-pricing {
  background: var(--panel);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 16px;
}

.area-pricing p {
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.area-cta-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
  text-align: center;
}

.area-cta-panel h3 {
  text-align: center;
  margin-bottom: 10px;
}

.area-cta-panel p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.area-cta-panel .btn { margin-bottom: 10px; }

.area-cta-details {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.area-cta-details p { margin-bottom: 4px; }


/* ── Homepage Blog Preview ── */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.blog-preview-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-decoration: none;
}
.blog-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.blog-preview-card time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-preview-card h3 {
  font-size: 1rem;
  margin: 6px 0 8px;
  line-height: 1.3;
}

.blog-preview-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}
