@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap");

:root {
  --radius: 0.875rem;
  --background: oklch(0.99 0.005 300);
  --foreground: oklch(0.22 0.04 290);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.04 290);
  --primary: oklch(0.58 0.16 295);
  --primary-foreground: oklch(0.99 0.005 300);
  --secondary: oklch(0.96 0.02 300);
  --muted: oklch(0.97 0.012 300);
  --muted-foreground: oklch(0.5 0.04 290);
  --accent: oklch(0.92 0.05 300);
  --accent-foreground: oklch(0.3 0.1 290);
  --border: oklch(0.92 0.02 300);
  --input: oklch(0.94 0.02 300);
  --ring: oklch(0.7 0.12 295);
  --gradient-soft: linear-gradient(135deg, oklch(0.97 0.02 300) 0%, oklch(0.93 0.05 295) 100%);
  --gradient-hero: linear-gradient(160deg, oklch(0.98 0.015 300) 0%, oklch(0.9 0.07 295) 100%);
  --shadow-soft: 0 8px 30px -10px oklch(0.58 0.16 295 / 0.18);
  --shadow-glow: 0 20px 60px -20px oklch(0.58 0.16 295 / 0.35);
}

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4, h5 {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Layout */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.min-h-screen { min-height: 100vh; }
.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.sticky { position: sticky; top: 0; z-index: 40; }

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}
.header-inner { display: flex; height: 10rem; align-items: center; justify-content: space-between; }
.header-inner img { height: 9rem; width: auto; }
.nav { display: none; gap: 2rem; font-size: 0.875rem; font-weight: 500; }
.nav a { color: var(--muted-foreground); transition: color 0.15s; }
.nav a:hover, .nav a.active { color: var(--foreground); }
@media (min-width: 768px) { .nav { display: flex; align-items: center; } }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  background: var(--primary); color: var(--primary-foreground);
  font-size: 0.875rem; font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s;
  border: 0; cursor: pointer;
}
.btn-primary:hover { transform: scale(1.02); }
.btn-primary.glow { box-shadow: var(--shadow-glow); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 70%, transparent);
  font-size: 0.875rem; font-weight: 500;
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--background); }
.btn-sm { height: 2.5rem; padding: 0 1.25rem; }

/* Hero */
.hero { background: var(--gradient-hero); }
.hero-grid {
  display: grid; gap: 3rem; padding: 5rem 0;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; padding: 7rem 0; }
}
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 60%, transparent);
  backdrop-filter: blur(8px);
  font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground);
}
.pill svg { color: var(--primary); width: 0.75rem; height: 0.75rem; }
h1.display {
  margin-top: 1.25rem;
  font-size: 2.5rem; font-weight: 600; line-height: 1.05;
}
@media (min-width: 768px) { h1.display { font-size: 3rem; } }
.hero p.lead {
  margin-top: 1.5rem; max-width: 28rem;
  font-size: 1.125rem; color: var(--muted-foreground);
}
.cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }

.hero-image-wrap { position: relative; }
.hero-image-wrap .glow {
  position: absolute; inset: -1rem; border-radius: 2rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  filter: blur(40px);
}
.hero-image-wrap img {
  position: relative; width: 100%; border-radius: 2rem;
  object-fit: cover; box-shadow: var(--shadow-glow);
}

/* Sections */
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }
section h2.h2 { font-size: 1.875rem; font-weight: 600; }
@media (min-width: 768px) { section h2.h2 { font-size: 2.25rem; } }
h2.h2.center { text-align: center; }
.lead-block { max-width: 48rem; margin: 0 auto; text-align: center; padding-top: 5rem; }
.lead-block p { margin-top: 0; font-size: 1.125rem; line-height: 1.7; color: var(--muted-foreground); }
.lead-block p + p { margin-top: 1rem; }
.eyebrow {
  font-size: 0.875rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--primary);
}

/* Cards grid */
.cards-3 { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.cards-2 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .cards-2 { grid-template-columns: 1fr 1fr; } }
.cards-4 { display: grid; gap: 2rem; }
@media (min-width: 640px) { .cards-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  border-radius: 1rem; border: 1px solid var(--border);
  background: var(--card); padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-soft); }
.card .icon-pill {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: var(--accent); color: var(--primary);
}
.card h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 600; }
.card p.body { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }

/* Gallery */
.gallery { padding-bottom: 2rem; }
.gallery .cards-2 img {
  width: 100%; height: 18rem; object-fit: cover;
  border-radius: 1.5rem; box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .gallery .cards-2 img { height: 24rem; } }

/* Profile block */
.profile {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: var(--card); padding: 2rem;
}
@media (min-width: 768px) { .profile { padding: 3rem; } }
.profile h2 { font-size: 1.875rem; font-weight: 600; }
@media (min-width: 768px) { .profile h2 { font-size: 2.25rem; } }
.profile .role { margin-top: 0.5rem; color: var(--muted-foreground); }
.profile .body { margin-top: 1.5rem; max-width: 48rem; }
.profile .body p { color: var(--muted-foreground); line-height: 1.7; }
.profile .body p + p { margin-top: 1rem; }

/* Location */
.location-wrap {
  border-radius: 1.5rem; padding: 2.5rem; overflow: hidden;
  background: var(--gradient-soft);
}
@media (min-width: 768px) { .location-wrap { padding: 3.5rem; } }
.location-wrap h2 { font-size: 1.875rem; font-weight: 600; }
.location-wrap p.body { margin-top: 1rem; max-width: 36rem; color: var(--muted-foreground); line-height: 1.7; }

/* Footer */
.site-footer { border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); background: color-mix(in oklab, var(--muted) 40%, transparent); }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid h3 { font-size: 1.125rem; font-weight: 600; font-family: "Sora", sans-serif; }
.footer-grid .tag { margin-top: 0.5rem; max-width: 18rem; font-size: 0.875rem; font-style: italic; color: var(--muted-foreground); }
.footer-grid .label { font-weight: 500; font-size: 0.875rem; }
.footer-grid .value { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-bottom { border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); padding: 1.25rem 0; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }

/* Services page */
.services-hero { padding: 5rem 0 2rem; }
@media (min-width: 768px) { .services-hero { padding-top: 7rem; } }
h1.xl {
  margin-top: 0.75rem; max-width: 48rem;
  font-size: 3rem; font-weight: 600; letter-spacing: -0.02em;
}
@media (min-width: 768px) { h1.xl { font-size: 3.75rem; } }

.svc-card {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: var(--card); padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.svc-card .icon-pill-lg {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--primary);
}
.svc-card h2 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 600; }
.svc-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }

.experience {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: var(--card); padding: 2rem;
}
@media (min-width: 768px) { .experience { padding: 3rem; } }
.experience p { font-size: 1rem; line-height: 1.7; }
.experience p + p { margin-top: 1.25rem; }
.experience p.muted { color: var(--muted-foreground); }

.corp {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  padding: 2rem;
}
@media (min-width: 768px) { .corp { padding: 3rem; } }
.corp .icon-pill-lg { background: var(--card); }
.corp h2 { margin-top: 1.5rem; font-size: 1.5rem; font-weight: 600; }
.corp p { margin-top: 0.75rem; color: var(--muted-foreground); }
.corp ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.corp li { display: flex; align-items: center; gap: 0.75rem; }
.dot { display: inline-block; width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--primary); }

.contact-grid { display: grid; gap: 2rem; margin-top: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-card {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: var(--card); padding: 2rem;
}
.info-card h3 { font-size: 1.125rem; font-weight: 600; }
.info-rows { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.info-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.info-row svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.info-row p, .info-row a { font-size: 0.875rem; color: var(--muted-foreground); }
.info-row a:hover { color: var(--primary); }

/* About page */
.about-hero { padding: 5rem 0; text-align: center; }
@media (min-width: 768px) { .about-hero { padding: 7rem 0; } }
.about-hero .eyebrow { display: block; }
.about-hero h1 { margin-top: 1rem; font-size: 2.5rem; font-weight: 600; letter-spacing: -0.02em; }
@media (min-width: 768px) { .about-hero h1 { font-size: 3rem; } }
.about-hero p { margin: 1.5rem auto 0; max-width: 36rem; font-size: 1.125rem; line-height: 1.7; color: var(--muted-foreground); }

.bullet-list { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .bullet-list { grid-template-columns: 1fr 1fr; } }
.bullet-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.bullet-list .dot { margin-top: 0.6rem; flex-shrink: 0; }
.bullet-list span.txt { color: var(--muted-foreground); }

.outcomes {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: color-mix(in oklab, var(--primary) 5%, transparent);
  padding: 2rem; text-align: center;
}
@media (min-width: 768px) { .outcomes { padding: 3rem; } }
.outcomes h2 { font-size: 1.5rem; font-weight: 600; }
.outcomes .grid {
  margin: 1.5rem auto 0; max-width: 48rem;
  display: grid; gap: 1rem;
}
@media (min-width: 640px) { .outcomes .grid { grid-template-columns: 1fr 1fr; } }
.outcomes .item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  border-radius: 0.75rem; background: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 1rem; text-align: left;
}
.outcomes .item .dot { margin-top: 0.55rem; flex-shrink: 0; }
.outcomes .item p { font-size: 0.875rem; color: var(--muted-foreground); }

.therapist-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .therapist-grid { grid-template-columns: 1fr 1.2fr; } }
.therapist-img-wrap { position: relative; }
.therapist-img-wrap .glow {
  position: absolute; inset: -1rem; border-radius: 2rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent); filter: blur(40px);
}
.therapist-img-wrap img {
  position: relative; width: 100%; border-radius: 2rem;
  object-fit: cover; box-shadow: var(--shadow-soft);
}
.therapist h2 { margin-top: 0.75rem; font-size: 2.5rem; font-weight: 600; }
@media (min-width: 768px) { .therapist h2 { font-size: 3rem; } }
.therapist .role { margin-top: 0.5rem; font-size: 1.125rem; color: var(--muted-foreground); }
.therapist p.bio { margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.7; color: var(--muted-foreground); }
.therapist p.bio + p.bio { margin-top: 1rem; }

.cred-grid { margin-top: 2.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .cred-grid { grid-template-columns: 1fr 1fr; } }
.cred {
  border-radius: 1rem; border: 1px solid var(--border);
  background: var(--card); padding: 1.25rem;
}
.cred svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.cred .label { margin-top: 0.75rem; font-weight: 600; }
.cred .sub { font-size: 0.75rem; color: var(--muted-foreground); }

/* Utility */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-8 { margin-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
