:root {
  --sage: #a78fc7;
  --sage-dark: #7c5da3;
  --sage-light: #f3edfa;
  --blush: #f6d9e6;
  --mint: #d9ece2;
  --sky: #dbe6f7;
  --cream: #faf7fc;
  --ink: #4a3f57;
  --ink-soft: #7b6f8c;
  --line: #e6def2;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(124, 93, 163, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Soft watercolor wash behind the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 720px 560px at 6% -8%, rgba(167, 143, 199, 0.38), transparent 62%),
    radial-gradient(ellipse 680px 620px at 98% 12%, rgba(246, 217, 230, 0.42), transparent 60%),
    radial-gradient(ellipse 620px 560px at 15% 96%, rgba(217, 236, 226, 0.35), transparent 62%),
    radial-gradient(ellipse 560px 520px at 88% 92%, rgba(219, 230, 247, 0.35), transparent 60%),
    radial-gradient(ellipse 500px 460px at 50% 45%, rgba(246, 217, 230, 0.14), transparent 65%);
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sage-dark);
  color: white;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 252, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.brand-mark.small { width: 34px; height: 34px; font-size: 0.9rem; }

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; }
.brand-text em { font-style: normal; font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.02em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--sage-dark); }

.nav-cta {
  background: var(--sage);
  color: white !important;
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--sage-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* Hero */
.hero { padding: 72px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-lede { font-size: 1.08rem; max-width: 52ch; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--sage); color: white; }
.btn-primary:hover { background: var(--sage-dark); }
.btn-outline { border-color: var(--sage); color: var(--sage-dark); background: transparent; }
.btn-outline:hover { background: var(--sage-light); }
.btn-full { width: 100%; text-align: center; }

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.hero-badges li { position: relative; padding-left: 18px; }
.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.hero-photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 20% 15%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(150deg, var(--sage) 0%, var(--blush) 52%, var(--sky) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-frame span {
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(74, 63, 87, 0.55);
}

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: rgba(255, 255, 255, 0.62); }
.section-lede { max-width: 60ch; font-size: 1.02rem; }

.about-grid p { max-width: 74ch; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.credentials-grid h3 { font-size: 1rem; margin-bottom: 6px; color: var(--sage-dark); }
.credentials-grid p { font-size: 0.92rem; margin: 0; }

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 44px;
}
.tag-grid span {
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.who-grid, .specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.specialized-grid { margin-top: 36px; }
.who-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.who-card h3 { color: var(--sage-dark); margin-bottom: 8px; }
.who-card p { margin: 0; font-size: 0.92rem; }

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.approach-list li {
  background: var(--sage-light);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--ink);
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.fee-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.fee-card h3 { color: var(--sage-dark); }
.fee-list { list-style: none; padding: 0; margin: 0 0 16px; }
.fee-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.fee-list li:last-child { border-bottom: none; }
.fee-list strong { color: var(--sage-dark); }
.insurance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  columns: 2;
  gap: 16px;
}
.insurance-list li {
  font-size: 0.9rem;
  padding: 5px 0;
  break-inside: avoid;
}
.fine-print { font-size: 0.82rem; color: var(--ink-soft); margin: 0; }

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
address { font-style: normal; font-size: 1.05rem; margin-bottom: 16px; color: var(--ink); }
.location-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-details { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; font-size: 0.95rem; }
.contact-details a { color: var(--sage-dark); }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.85rem; margin-bottom: 6px; color: var(--ink-soft); }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-status { min-height: 1.2em; font-size: 0.9rem; color: var(--sage-dark); margin: 12px 0 0; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-inner p { color: rgba(255,255,255,0.65); margin: 0; }
.footer-inner > div:first-child { display: flex; align-items: center; gap: 12px; }
.footer-note { max-width: 480px; font-size: 0.82rem; text-align: right; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .approach-grid, .location-grid, .contact-grid, .insurance-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 260px; margin: 0 auto; }
  .footer-note { text-align: left; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .section { padding: 56px 0; }
}
