/*
Theme Name: Lolli Sleep Solutions
Theme URI: https://lollisleepsolutions.com
Author: Lolli Sleep Solutions
Author URI: https://lollisleepsolutions.com
Description: A warm, empathy-first WordPress theme for Lolli Sleep Solutions — a virtual pediatric sleep consultancy. Image-driven layout with a celestial palette (caramel, sage, dusty rose) and editorial typography pairing (Cormorant Garamond + DM Sans).
Version: 1.4.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lolli-sleep-solutions
Tags: custom-menu, custom-logo, editor-style, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* ==========================================================================
   LOLLI SLEEP SOLUTIONS — THEME STYLES
   Palette: Warm caramel + sage CTA + dusty rose accents
   Typography: Cormorant Garamond (display) + DM Sans (body)
   ========================================================================== */

:root {
  --primary:        #C4956A;
  --primary-dark:   #A0634A;
  --primary-light:  #E8C9A8;
  --accent:         #D4898A;
  --accent-light:   #F0D4D4;
  --accent-deep:    #8B4455;
  --cta:            #6B8C6E;
  --cta-hover:      #4A6B4D;
  --cta-text:       #f5f0e8;
  --surface-warm:   #FDF6EE;
  --surface-alt:    #F5EDE0;
  --text-dark:      #3D2314;
  --text-muted:     #8B5E3C;
  --text-subtle:    #A07850;
  --border-warm:    #E8D5C0;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(61, 35, 20, 0.06);
  --shadow: 0 8px 28px rgba(61, 35, 20, 0.10);
  --shadow-lg: 0 20px 60px rgba(61, 35, 20, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--surface-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0 0 0.5em;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.015em; }

p { margin: 0 0 1.2em; }

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-deep); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta);
  color: var(--cta-text);
  border-color: var(--cta);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  color: var(--cta-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--cta);
  border-color: var(--cta);
}
.btn-secondary:hover {
  background: var(--cta);
  color: var(--cta-text);
  transform: translateY(-2px);
}

.btn-secondary.on-dark {
  color: var(--cta-text);
  border-color: var(--cta-text);
}
.btn-secondary.on-dark:hover {
  background: var(--cta-text);
  color: var(--text-dark);
  border-color: var(--cta-text);
}

.btn-lg { padding: 1.15rem 2.25rem; font-size: 1.05rem; }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 238, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border-warm);
  box-shadow: var(--shadow-sm);
}

.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
}
.site-brand:hover { color: var(--primary-dark); }
.site-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 0.2rem;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.primary-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.primary-nav a:hover { color: var(--primary-dark); }

.primary-nav .nav-cta a,
.primary-nav li.nav-cta > a {
  background: var(--cta);
  color: var(--cta-text);
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.primary-nav .nav-cta a:hover,
.primary-nav li.nav-cta > a:hover {
  background: var(--cta-hover);
  color: var(--cta-text);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}
.menu-toggle.toggled span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.toggled span:nth-child(2) { opacity: 0; }
.menu-toggle.toggled span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* Simplified header for landing pages */
.site-header.minimal .primary-nav,
.site-header.minimal .menu-toggle { display: none; }
.site-header.minimal .site-header-inner { justify-content: center; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--cta-text);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(160, 99, 74, 0.88) 0%,
    rgba(196, 149, 106, 0.78) 55%,
    rgba(212, 137, 138, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  width: 100%;
}
.hero-inner {
  max-width: 720px;
}
.hero h1 {
  color: var(--cta-text);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--cta-text);
  opacity: 0.96;
  max-width: 580px;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cta-text);
  opacity: 0.92;
  margin-bottom: 2.25rem;
}
.hero .btn-group { margin-bottom: 2.5rem; }
.hero .btn-primary { box-shadow: 0 12px 30px rgba(74, 107, 77, 0.35); }

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--cta-text);
  opacity: 0.94;
}
.hero-credentials span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: var(--primary);
  color: var(--cta-text);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: 0;
}
.page-hero.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(160, 99, 74, 0.82), rgba(196, 149, 106, 0.78));
  z-index: 1;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cta-text); margin-bottom: 1rem; }
.page-hero p {
  color: var(--cta-text);
  opacity: 0.95;
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: 6rem 0;
}
.section-alt { background: var(--surface-alt); }
.section-dark {
  background: var(--primary-dark);
  color: var(--cta-text);
}
.section-dark h2, .section-dark h3 { color: var(--cta-text); }
.section-dark p { color: var(--cta-text); opacity: 0.92; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
}

/* Celestial divider */
.celestial-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  color: var(--primary);
  max-width: 200px;
}
.celestial-divider::before,
.celestial-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-warm);
}
.celestial-divider svg { width: 18px; height: 18px; }

/* ==========================================================================
   SOCIAL PROOF STRIP
   ========================================================================== */
.social-proof {
  background: var(--surface-alt);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-warm);
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: center;
}
.social-proof-item {
  text-align: center;
}
.social-proof-item .stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.social-proof-item blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-dark);
}
.social-proof-item cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 0.75rem;
}
.social-proof-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   SERVICES — TILES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-tile {
  background: var(--surface-warm);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-warm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-tile-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.service-tile-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 35, 20, 0) 55%, rgba(61, 35, 20, 0.2) 100%);
}
.service-tile-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.age-badge-newborn { background: var(--primary-light); color: var(--text-muted); }
.age-badge-baby    { background: var(--accent-light); color: var(--accent-deep); }
.age-badge-toddler { background: var(--surface-alt); color: var(--text-muted); }
.age-badge-popular { background: var(--cta); color: var(--cta-text); }

.service-tile h3 {
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}
.service-tile-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}
.service-tile p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-tile-link {
  font-weight: 500;
  color: var(--primary-dark);
  align-self: flex-start;
}
.service-tile-link:hover { color: var(--accent-deep); }

.service-tile-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin: 0 0 1rem;
  line-height: 1;
}
.service-tile-price strong { font-weight: 600; }

/* ==========================================================================
   Free Guide CTA — Floating pill + inline placements
   ========================================================================== */

/* Floating pill (bottom-right, site-wide) */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: stretch;
  background: var(--cta, #C4956A);
  color: var(--cta-text, #fff);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 4px 8px rgba(0, 0, 0, 0.08);
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: calc(100vw - 48px);
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.floating-cta-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem 0.85rem 1rem;
  color: inherit;
  text-decoration: none;
  border-radius: 999px 0 0 999px;
  transition: background 0.2s ease;
}
.floating-cta-link:hover {
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
}
.floating-cta-icon {
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.85;
}
.floating-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.floating-cta-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}
.floating-cta-headline {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
}
.floating-cta-arrow {
  font-size: 1.05rem;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}
.floating-cta-link:hover .floating-cta-arrow {
  transform: translateX(3px);
}
.floating-cta-dismiss {
  background: transparent;
  border: 0;
  color: inherit;
  opacity: 0.7;
  cursor: pointer;
  padding: 0 0.9rem;
  font-size: 1.2rem;
  line-height: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 999px 999px 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.floating-cta-dismiss:hover,
.floating-cta-dismiss:focus {
  opacity: 1;
  background: rgba(0, 0, 0, 0.08);
  outline: none;
}

/* Mobile — compact pill */
@media (max-width: 600px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
  }
  .floating-cta-eyebrow { display: none; }
  .floating-cta-link { padding: 0.7rem 0.85rem; gap: 0.55rem; }
  .floating-cta-headline { font-size: 0.92rem; }
  .floating-cta-dismiss { padding: 0 0.7rem; font-size: 1.05rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .floating-cta { transition: none; transform: none; }
  .floating-cta-arrow { transition: none; }
}

/* Inline card — used at end of About page and end of blog posts */
.fg-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  margin: 3rem 0;
  background: var(--accent-light, #f4ead8);
  border-left: 4px solid var(--accent, #C4956A);
  border-radius: var(--radius-sm, 8px);
}
.fg-card-body .eyebrow {
  margin-bottom: 0.5rem;
  display: block;
}
.fg-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}
.fg-card-body p {
  margin: 0;
  color: var(--text-muted);
}
.fg-card-cta {
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .fg-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 1.5rem 1.5rem 1.75rem;
  }
  .fg-card-cta .btn { width: 100%; }
}

/* Inline tile — used as a promo slot inside the homepage blog grid */
.fg-tile {
  background: var(--cta, #C4956A);
  color: var(--cta-text, #fff);
  border-radius: var(--radius, 12px);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fg-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fg-tile-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.85rem;
}
.fg-tile h3 {
  color: inherit;
  font-size: 1.45rem;
  margin: 0 0 1.5rem;
  line-height: 1.25;
}
.fg-tile-link {
  align-self: flex-start;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.fg-tile-link:hover {
  color: inherit;
  opacity: 0.85;
}

/* Conversion recovery row */
.recovery-row {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
}
.recovery-row a {
  color: var(--accent-deep);
  font-weight: 600;
  margin-left: 0.4rem;
}

/* ==========================================================================
   LEAD MAGNET SECTION
   ========================================================================== */
.lead-magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lead-magnet-img {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.lead-magnet-form h2 { margin-bottom: 0.75rem; }
.lead-magnet-form p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.inline-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  flex-wrap: wrap;
}
.inline-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--surface-warm);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}
.inline-form input[type="email"]:focus {
  outline: none;
  border-color: var(--cta);
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin-top: 0.75rem;
}

/* ==========================================================================
   ABOUT / FOUNDER SECTION
   ========================================================================== */
.founder-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.founder-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.founder-content h2 { margin-bottom: 1.25rem; }
.founder-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
}
.founder-creds {
  margin: 1.75rem 0 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-alt);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.8;
}
.founder-creds strong { color: var(--primary-dark); }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--surface-warm);
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--primary-dark);
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.step:last-child .step-num {
  background: var(--cta);
  border-color: var(--cta);
  color: var(--cta-text);
}
.step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.step p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--surface-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -0.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--primary-light);
  line-height: 1;
}
.testimonial .stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text-dark);
  font-style: italic;
}
.testimonial cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: normal;
}

/* ==========================================================================
   BLOG PREVIEW
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--surface-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-card-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-card-link {
  align-self: flex-start;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Blog filter tabs */
.blog-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.blog-filter a {
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid var(--border-warm);
  background: var(--surface-warm);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.blog-filter a:hover,
.blog-filter a.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--cta-text);
}

/* ==========================================================================
   FOOTER CTA BAND
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--cta-text);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(240, 212, 212, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(232, 201, 168, 0.12) 0%, transparent 50%);
}
.cta-band > .container { position: relative; }
.cta-band h2 {
  color: var(--cta-text);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cta-band p {
  color: var(--cta-text);
  opacity: 0.94;
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}
.cta-band .btn-group { justify-content: center; }

/* ==========================================================================
   FAQ (Services page)
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-warm);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-warm); }
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.faq-item p {
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   SERVICE DETAIL (Services page)
   ========================================================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-warm);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.service-detail h2 { margin-bottom: 0.5rem; }
.service-detail .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.service-detail .who-for {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.service-detail .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary-dark);
  margin: 0 0 1.25rem;
  line-height: 1;
}
.service-detail .price strong { font-weight: 600; }

/* "This package is perfect for you if..." checklist */
.fits-block {
  background: var(--accent-light, #f4ead8);
  border-left: 4px solid var(--accent, #C4956A);
  border-radius: var(--radius-sm, 8px);
  padding: 1.25rem 1.5rem 1rem;
  margin: 0 0 2rem;
}
.fits-heading {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
  color: var(--primary-dark);
  margin: 0 0 0.65rem;
  font-weight: 600;
}
.fits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fits-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.75rem;
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.5;
}
.fits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.35rem;
  color: var(--accent, #C4956A);
  font-weight: 600;
}
.included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.included-list li {
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.98rem;
  border-bottom: 1px solid var(--border-warm);
}
.included-list li:last-child { border-bottom: none; }
.included-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--primary);
  font-size: 1rem;
}

/* ==========================================================================
   VALUES (About page)
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  color: var(--primary-dark);
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
}

/* Pull quote */
.pull-quote {
  max-width: 720px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--primary-dark);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-expect {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.contact-expect h3 { margin-bottom: 1.25rem; }
.contact-expect ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.contact-expect li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-warm);
}
.contact-expect li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 20px;
  height: 20px;
  color: var(--cta);
  font-weight: bold;
}
.contact-expect li:last-child { border-bottom: none; }
.contact-expect .reassure {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary-dark);
  font-size: 1.15rem;
  margin-top: 1rem;
}

.contact-form-wrap {
  background: var(--surface-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap .wpcf7-form input,
.contact-form-wrap .wpcf7-form select,
.contact-form-wrap .wpcf7-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--surface-warm);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cta);
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.contact-direct {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-warm);
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-direct a { color: var(--primary-dark); font-weight: 500; }

.calendly-embed {
  min-height: 320px;
  background: var(--surface-alt);
  border: 1.5px dashed var(--border-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-subtle);
  text-align: center;
  padding: 2rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   FREE GUIDE LANDING
   ========================================================================== */
.guide-landing {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--surface-warm);
}
.guide-visual {
  align-self: stretch;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  position: relative;
}
.guide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 149, 106, 0.35), rgba(212, 137, 138, 0.3));
}
.guide-content {
  padding: 5rem 4rem;
}
.guide-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.guide-content .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.benefit-list li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.55;
}
.benefit-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--accent);
  font-size: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--text-dark);
  color: var(--cta-text);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cta-text);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.footer-tagline {
  color: var(--cta-text);
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 340px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--cta-text);
  opacity: 0.78;
  font-size: 0.95rem;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 1; color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(232, 201, 168, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--cta-text);
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--cta-text); opacity: 0.8; }
.footer-bottom a:hover { opacity: 1; }

/* Minimal footer for landing pages */
.site-footer.minimal {
  padding: 2rem 0;
  text-align: center;
}
.site-footer.minimal .footer-grid { display: none; }
.site-footer.minimal .footer-bottom {
  border: none;
  padding: 0;
  justify-content: center;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .section { padding: 4.5rem 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
  .lead-magnet,
  .founder-split,
  .contact-grid,
  .service-detail { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail.reverse { direction: ltr; }
  .guide-landing { grid-template-columns: 1fr; }
  .guide-visual { min-height: 300px; }
  .guide-content { padding: 3rem 2rem; }
}

@media (max-width: 900px) {
  .services-grid,
  .blog-grid,
  .values-grid { grid-template-columns: 1fr; }
  .social-proof-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-warm);
    border-top: 1px solid var(--border-warm);
    box-shadow: var(--shadow);
    display: none;
  }
  .primary-nav.toggled { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
  }
  .primary-nav li { border-bottom: 1px solid var(--border-warm); }
  .primary-nav li:last-child { border: none; }
  .primary-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
  .primary-nav .nav-cta a,
  .primary-nav li.nav-cta > a {
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.9rem 1.35rem;
  }
  .menu-toggle { display: block; }

  .hero { min-height: auto; padding: 3rem 0; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-credentials { gap: 1rem; flex-direction: column; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }

  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .service-tile-body { padding: 1.5rem 1.35rem 1.75rem; }
  .testimonial { padding: 2rem 1.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
