/* ===================================
   ROOT VARIABLES - Updated Color Palette
   =================================== */
:root {
  /* Primary Colors - Psychology-appropriate calming tones */
  --primary-blue: #4A7C8B;
  --primary-green: #7A9D89;

  /* Secondary/Accent Colors */
  --accent-warm: #B89D7F;
  --accent-soft-blue: #A8C5D1;

  /* Neutral Palette */
  --text-primary: #1A2B35;
  --text-secondary: #4A5965;
  --text-muted: #6B7785;

  /* Background Colors */
  --bg-primary: #FDFEFE;
  --bg-secondary: #F7FAFB;
  --bg-warm: #FBF9F7;

  /* Legacy support */
  --bg: var(--bg-primary);
  --text: var(--text-primary);
  --muted: var(--text-muted);
  --line: #E5E9ED;
  --accent: var(--primary-blue);
  --accent-2: var(--primary-green);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 43, 53, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 43, 53, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 43, 53, 0.12);
  --shadow-xl: 0 12px 48px rgba(26, 43, 53, 0.16);
  --shadow: var(--shadow-md);

  /* Interactive States */
  --hover-overlay: rgba(74, 124, 139, 0.08);
  --focus-ring: rgba(74, 124, 139, 0.4);

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.333rem;
  --text-2xl: 1.777rem;
  --text-3xl: 2.369rem;
  --text-4xl: 3.157rem;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;

  /* Spacing */
  --radius: 14px;
  --maxw: 1120px;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  box-sizing: border-box;
}

/* Global Image Reset */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   ACCESSIBILITY
   =================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

*:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
   LAYOUT
   =================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 880px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(32px, 8vw, 56px);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(20px, 4vw, 28px);
  margin-bottom: 1rem;
}

h4 {
  font-size: 18px;
  margin-bottom: 0.75rem;
}

p {
  margin: 0 0 1.25rem 0;
}

p + p {
  margin-top: 1rem;
}

.lead {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  font-weight: 400;
}

.note {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.muted {
  color: var(--text-secondary);
}

.text-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.text-link:hover {
  border-bottom-color: var(--primary-blue);
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: clamp(48px, 7vw, 96px) 0;
  scroll-margin-top: 88px;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-secondary) 100%);
}

/* Subtle animated background ornaments */
.section::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(400px 200px at 10% 20%, rgba(74,124,139,0.08), transparent 60%),
              radial-gradient(360px 180px at 90% 30%, rgba(122,157,137,0.08), transparent 60%);
  animation: floatBlobs 28s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

@keyframes floatBlobs {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.9; }
  50%  { transform: translateY(12px) translateX(-6px) scale(1.02); opacity: 1; }
  100% { transform: translateY(-10px) translateX(8px) scale(1.04); opacity: 0.95; }
}

/* H2 subtle underline */
h2 {
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  border-radius: 2px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(247, 250, 251, 0.9);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  min-height: 72px;
}

.brand {
  flex: 1 1 auto;
  min-width: 0;
}

.logo {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2A5C6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: block;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
  font-size: 19px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}

.logo:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

/* Fallback for browsers that don't support background-clip */
@supports not (background-clip: text) {
  .logo {
    color: var(--primary-blue);
  }
}

.logo .logo-full {
  display: inline;
}

.logo .logo-short {
  display: none;
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 60;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
.site-nav {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 15px;
  transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--primary-blue);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .header-inner {
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    font-size: 17px;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: calc(100vh - 72px);
    background: #fff;
    flex-direction: column;
    padding: 24px;
    box-shadow: -4px 0 16px rgba(0,0,0,0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow-y: auto;
  }

  .site-nav.open {
    right: 0;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }
}

/* Mobile logo adjustments */
@media (max-width: 640px) {
  .logo {
    font-size: 18px;
  }

  .logo .logo-full {
    display: none;
  }

  .logo .logo-short {
    display: inline;
  }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(253,254,254,0.85), rgba(255,255,255,0.9)),
    url('images/hero/hero-pastel.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 65vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 500px at 10% 10%, rgba(74,124,139,0.12), transparent 60%),
              radial-gradient(1200px 600px at 90% -10%, rgba(122,157,137,0.15), transparent 60%);
  background-size: 120% 120%;
  animation: gradientShift 32s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(8px); }
}

.hero-inner {
  display: grid;
  place-items: center;
  min-height: 58vh;
  padding: 48px 0;
}

.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero .lead {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero .note {
  color: var(--text-muted);
  margin-top: 16px;
}

/* Secondary hero for internal pages */
.hero-secondary {
  min-height: 35vh;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-warm) 100%);
}

.hero-secondary .hero-inner {
  min-height: 35vh;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  min-height: 48px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
  background: #fff;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 14px 30px;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Tertiary Button (Text link style) */
.btn-tertiary {
  background: none;
  color: var(--primary-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px 16px;
  font-weight: 600;
  box-shadow: none;
}

.btn-tertiary:hover {
  color: var(--primary-green);
  transform: none;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* ===================================
   TRUST INDICATORS
   =================================== */
.trust-indicators {
  padding: 48px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-indicators::before {
  display: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.trust-item {
  padding: 20px;
}

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  font-size: 28px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  opacity: 0.95;
  box-shadow: var(--shadow-md);
}

.trust-item h4 {
  font-size: var(--text-lg);
  margin-bottom: 6px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-item .muted {
  font-size: var(--text-sm);
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .trust-item h4 {
    font-size: var(--text-base);
  }
}

/* ===================================
   PROCESS STEPS
   =================================== */
.process-section {
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(7, 1fr);
  }

  .step {
    grid-column: span 1;
  }

  .step-connector {
    grid-column: span 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-connector::before {
    content: '→';
    font-size: 28px;
    color: var(--primary-blue);
    opacity: 0.4;
  }
}

@media (max-width: 767px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
}

.step h4 {
  font-size: var(--text-lg);
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.step p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: var(--leading-normal);
}

/* ===================================
   CARDS
   =================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Gradient accent on top of card */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.card ul {
  margin: 16px 0 0 20px;
  padding: 0;
}

.card li {
  margin: 10px 0;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--text-base);
  transition: color 0.2s ease;
}

.card-link:hover {
  color: var(--primary-green);
}

/* Service Cards */
.service-card {
  background: linear-gradient(135deg, #fff 0%, var(--bg-secondary) 100%);
}

.service-card h3 {
  color: var(--primary-blue);
}

@media (max-width: 768px) {
  .card {
    padding: 22px;
  }
}

/* ===================================
   PRICING
   =================================== */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 740px) {
  .pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.price-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.price-card h3 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.amount {
  font-size: 42px;
  font-weight: 700;
  margin: 16px 0 8px 0;
  color: var(--primary-blue);
  font-family: "Playfair Display", serif;
}

.amount span {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 6px;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 32px;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-wrapper h2,
.map-wrapper h3 {
  margin-bottom: 24px;
}

.contact-details {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.contact-details .lead {
  margin-bottom: 24px;
  font-size: var(--text-lg);
}

.detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.detail:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.contact-details a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.contact-details a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .detail {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.office-hours {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.office-hours h3 {
  margin-bottom: 12px;
  font-size: var(--text-xl);
}

.map-wrapper {
  position: relative;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ Section */
.faq-section {
  margin-top: 64px;
}

.faq-section h2 {
  margin-bottom: 32px;
  text-align: center;
}

.faq-section .card h4 {
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.faq-section .card p {
  margin: 0;
}

.faq-section .card a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
}

.faq-section .card a:hover {
  text-decoration: underline;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: var(--shadow-md);
}

.cta-box h2 {
  display: block;
  margin: 0 auto 16px;
}

.cta-box h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===================================
   STICKY MOBILE CTA
   =================================== */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 100;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sticky-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  /* Add bottom padding to main content so sticky CTA doesn't cover it */
  main {
    padding-bottom: 80px;
  }
}

/* ===================================
   RICH TEXT
   =================================== */
.rich-text p {
  font-size: 1.05rem;
  line-height: var(--leading-relaxed);
}

.rich-text p + p {
  margin-top: 1rem;
}

.rich-text strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* ===================================
   CHECKLIST
   =================================== */
.checklist {
  margin: 16px 0 0 20px;
  padding-left: 0;
  list-style: none;
}

.checklist li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

/* ===================================
   BIO SECTION (LANDING PAGE)
   =================================== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 880px) {
  .bio-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.bio-image-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

/* Decorative background shape */
.bio-image-wrapper::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 100%;
  height: 100%;
  background: var(--primary-green);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  transform: rotate(-5deg);
}

.bio-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 8px solid #fff;
}

.bio-content h2 {
  margin-bottom: 24px;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.grid-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 880px) {
  .grid-two {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* ===================================
   ACCESSIBILITY - REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .site-header,
  .site-footer,
  .sticky-cta,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    page-break-inside: avoid;
  }
}
