/* =============================================
   CUSTOM PROPERTIES
============================================= */
:root {
  --color-purple:      #5B3FA0;
  --color-purple-dark: #2A1F5C;
  --color-purple-mid:  #7B54C4;
  --color-purple-tint: #F3EFFE;
  --color-green:       #3A7D2C;
  --color-green-mid:   #4FA03A;
  --color-green-tint:  #EDF6EA;
  --color-body:        #1A1A2E;
  --color-muted:       #5A5A72;
  --color-bg:          #FAFAFA;
  --color-white:       #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-card: 8px;
  --radius-btn:  4px;
  --transition:  all 0.2s ease;

  --container-max: 1100px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.75; }

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  line-height: 1.4;
}
.btn-primary {
  background: var(--color-purple);
  color: var(--color-white);
  border-color: var(--color-purple);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-purple-mid);
  border-color: var(--color-purple-mid);
}
.btn-outline {
  background: transparent;
  color: var(--color-purple);
  border-color: var(--color-purple);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--color-purple);
  color: var(--color-white);
}
.btn-white {
  background: var(--color-white);
  color: var(--color-purple);
  border-color: var(--color-white);
}
.btn-white:hover,
.btn-white:focus-visible {
  background: var(--color-purple-tint);
  border-color: var(--color-purple-tint);
}
.btn:focus-visible {
  outline: 3px solid var(--color-green);
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =============================================
   SCROLL FADE-IN ANIMATIONS
============================================= */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
  .fade-in-delay-4 { transition-delay: 0.4s; }
  .fade-in-delay-5 { transition-delay: 0.5s; }
  .fade-in-delay-6 { transition-delay: 0.6s; }
}

/* =============================================
   NAVIGATION
============================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--color-body);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-purple);
  transition: width 0.2s ease;
}
.nav-links a:hover { color: var(--color-purple); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:focus-visible {
  outline: 3px solid var(--color-green);
  outline-offset: 3px;
  border-radius: 2px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-body);
  font-size: 1.5rem;
  line-height: 1;
}
.hamburger:focus-visible {
  outline: 3px solid var(--color-green);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--color-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--color-purple-tint);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.7rem 0;
    width: 100%;
    border-bottom: 1px solid var(--color-purple-tint);
    font-size: 1rem;
  }
  .nav-links a::after { display: none; }
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--color-purple-dark);
  color: var(--color-white);
}
.footer-body {
  padding: 4.5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 3rem;
}
.footer-logo {
  width: 200px;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.875rem;
}
.footer-blurb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.footer-nav-links a:hover { color: var(--color-white); }
.footer-contact-item {
  margin-bottom: 0.75rem;
}
.footer-contact-item .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 0.2rem;
}
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.footer-contact-item a:hover { color: var(--color-white); }
.footer-service-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1rem;
  font-style: italic;
}
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bar p { margin-bottom: 0.5rem; }
.footer-bar p:last-child { margin-bottom: 0; }
.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-credit a { color: rgba(255, 255, 255, 0.35); }
.footer-credit a:hover { color: rgba(255, 255, 255, 0.6); }
.footer-credit img {
  height: 18px;
  width: auto;
  opacity: 0.4;
  display: inline-block;
  vertical-align: middle;
}
.footer-credit a:hover img { opacity: 0.7; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-body { padding: 3rem 0 2rem; }
}

/* =============================================
   PAGE HERO (shared pattern — purple tint bg)
============================================= */
.page-hero {
  background: var(--color-purple-tint);
  padding: 5rem 0 4rem;
}
.page-hero h1 {
  color: var(--color-purple-dark);
  margin-bottom: 1rem;
}
.page-hero .hero-subhead {
  color: var(--color-muted);
  font-size: 1.125rem;
  max-width: 620px;
}

/* Page hero with split image layout */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.page-hero-split .hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(42, 31, 92, 0.15);
}

@media (max-width: 768px) {
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-split .hero-image { display: none; }
}

/* =============================================
   HOME HERO
============================================= */
.home-hero {
  background: var(--color-white);
  padding: 5rem 0;
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-hero-text h1 {
  color: var(--color-purple-dark);
  margin-bottom: 1.25rem;
}
.home-hero-text .hero-subhead {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 2.25rem;
}
.home-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.home-hero-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(42, 31, 92, 0.14);
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-hero { padding: 3rem 0; }
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .home-hero-visual { order: -1; }
}

/* =============================================
   SECTION HEADERS (centered)
============================================= */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  color: var(--color-purple);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* =============================================
   GRID LAYOUTS
============================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

@media (max-width: 768px) {
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* =============================================
   CHECK CARDS ("You're in the right place")
============================================= */
.check-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.check-card:hover {
  box-shadow: 0 6px 20px rgba(91, 63, 160, 0.1);
  transform: translateY(-2px);
}
.check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--color-green);
  margin-top: 1px;
}
.check-card p {
  font-size: 0.975rem;
  color: var(--color-body);
  line-height: 1.55;
}

/* =============================================
   SERVICE SNAPSHOT CARDS (home)
============================================= */
.service-snap {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.service-snap:hover {
  box-shadow: 0 6px 24px rgba(91, 63, 160, 0.1);
  transform: translateY(-2px);
}
.service-snap-icon {
  width: 40px;
  height: 40px;
  color: var(--color-purple);
  margin-bottom: 0.25rem;
}
.service-snap h4 { color: var(--color-purple); }
.service-snap p { font-size: 0.9rem; color: var(--color-muted); }

/* Featured callout */
.featured-callout {
  background: var(--color-green-tint);
  border-left: 4px solid var(--color-green);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 2.5rem;
  margin-top: 2rem;
}
.featured-callout h3 {
  color: var(--color-green);
  margin-bottom: 0.75rem;
}
.featured-callout p { color: var(--color-body); }

/* =============================================
   "PERSONAL ATTENTION" SECTION (home)
============================================= */
.personal-text h2 {
  color: var(--color-purple-dark);
  margin-bottom: 1.25rem;
}
.personal-text > p {
  color: var(--color-muted);
  margin-bottom: 1.75rem;
}
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.bullet-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.bullet-item svg {
  flex-shrink: 0;
  color: var(--color-green);
  margin-top: 3px;
}
.bullet-item span { font-size: 0.975rem; color: var(--color-body); }
.inline-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(42, 31, 92, 0.12);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-purple-tint);
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-body);
  margin-bottom: 1.25rem;
  padding-top: 1.75rem;
  font-size: 0.975rem;
  line-height: 1.7;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-purple);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: var(--color-purple);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.25rem;
}

@media (max-width: 768px) {
  .cta-banner { padding: 3.5rem 0; }
}

/* =============================================
   SERVICES — PACKAGE CARDS
============================================= */
.package-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.package-card:hover {
  box-shadow: 0 10px 36px rgba(91, 63, 160, 0.12);
  transform: translateY(-3px);
}
.package-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.5rem;
}
.package-card h3 {
  color: var(--color-purple);
  margin-bottom: 0.625rem;
}
.package-best-for {
  font-size: 0.875rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-purple-tint);
}
.package-includes {
  flex-grow: 1;
  margin-bottom: 2rem;
}
.package-includes li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-purple-tint);
  color: var(--color-body);
}
.package-includes li svg {
  flex-shrink: 0;
  color: var(--color-green);
  margin-top: 3px;
}

/* =============================================
   SERVICES — SPECIALTY CARDS
============================================= */
.specialty-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}
.specialty-card:hover {
  box-shadow: 0 6px 20px rgba(91, 63, 160, 0.08);
  transform: translateY(-2px);
}
.specialty-card h4 {
  color: var(--color-green);
  margin-bottom: 0.5rem;
}
.specialty-card p {
  font-size: 0.925rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* =============================================
   SERVICES — FLEXIBLE ENGAGEMENT
============================================= */
.engagement-section h2 {
  color: var(--color-purple-dark);
  margin-bottom: 1rem;
}
.engagement-section .lead {
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 640px;
}
.engagement-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.engagement-bullet {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.engagement-bullet svg {
  flex-shrink: 0;
  color: var(--color-green);
  margin-top: 3px;
}
.engagement-bullet strong {
  display: block;
  color: var(--color-body);
  font-size: 0.975rem;
  margin-bottom: 0.15rem;
}
.engagement-bullet span {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* =============================================
   ABOUT — FOUNDER PROFILE
============================================= */
.founder-photo-placeholder {
  background: var(--color-purple-tint);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.875rem;
  gap: 0.5rem;
}
.founder-photo-placeholder svg {
  opacity: 0.3;
  width: 48px;
  height: 48px;
  color: var(--color-purple);
}
.founder-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.25rem;
}
.founder-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-purple-dark);
  margin-bottom: 0.25rem;
}
.founder-headline {
  font-size: 1rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 1.75rem;
}
.founder-bio p {
  color: var(--color-body);
  margin-bottom: 1rem;
  font-size: 0.975rem;
}

/* =============================================
   ABOUT — "HOW WE WORK"
============================================= */
.approach-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.approach-card:hover {
  box-shadow: 0 6px 24px rgba(91, 63, 160, 0.1);
  transform: translateY(-2px);
}
.approach-icon {
  width: 44px;
  height: 44px;
  color: var(--color-green);
  margin-bottom: 1rem;
}
.approach-card h3 {
  color: var(--color-purple);
  margin-bottom: 0.625rem;
}
.approach-card p {
  font-size: 0.925rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* =============================================
   ABOUT — STATS STRIP
============================================= */
.stats-strip {
  background: var(--color-purple);
  padding: 4rem 0;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-strip { padding: 3rem 0; }
  .stats-strip .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 1.5rem 1rem; }
}

/* =============================================
   CONTACT FORM
============================================= */
.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-body);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #D0C8E8;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-body);
  background: var(--color-white);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A5A72' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(91, 63, 160, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-turnstile { margin: 1.25rem 0; }
.form-submit { margin-top: 0.5rem; }
.form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-card);
  margin-top: 1.25rem;
  font-size: 0.925rem;
}
.form-status.success {
  display: block;
  background: var(--color-green-tint);
  color: var(--color-green);
  border: 1px solid #b8e0b0;
}
.form-status.error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}
.contact-info-panel h3 {
  color: var(--color-purple);
  margin-bottom: 1.5rem;
}
.contact-detail {
  margin-bottom: 1.25rem;
}
.contact-detail .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 0.25rem;
}
.contact-detail a,
.contact-detail p {
  color: var(--color-body);
  font-size: 0.975rem;
}
.contact-detail a:hover { color: var(--color-purple); }
.contact-assurance {
  background: var(--color-green-tint);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  margin-top: 2rem;
}
.contact-assurance p {
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.65;
}
.contact-assurance strong { color: var(--color-green); }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   FAQ
============================================= */
.faq-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.faq-card h4 {
  color: var(--color-purple);
  margin-bottom: 0.625rem;
}
.faq-card p {
  font-size: 0.925rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* =============================================
   UTILITY — BACKGROUND COLORS
============================================= */
.bg-white        { background: var(--color-white); }
.bg-purple-tint  { background: var(--color-purple-tint); }
.bg-green-tint   { background: var(--color-green-tint); }
.bg-purple       { background: var(--color-purple); }

/* =============================================
   MOBILE SECTION PADDING
============================================= */
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .cta-banner { padding: 3.5rem 0; }
  .stats-strip { padding: 3rem 0; }
  .home-hero { padding: 3rem 0; }
}
