* {
  box-sizing: border-box;
}

:root {
  --ink: #18342f;
  --muted: #5f706b;
  --cream: #f7f4ee;
  --paper: #fffdf9;
  --sage: #dce8df;
  --line: #d9dedb;
  --accent: #6b7f72;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}

.brand {
  display: block;
  text-decoration: none;
}

.brand-name {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
}

.brand-title {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--accent);
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .95rem;
  color: var(--muted);
}

.header-contact a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.header-contact a:hover {
  color: var(--ink);
  text-decoration: underline;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-size: .95rem;
}

.hero {
  padding: 96px 0;
  background:
    radial-gradient(circle at top right, rgba(220,232,223,.75), transparent 38%),
    var(--cream);
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 64px;
  align-items: center;
}

.split,
.contact-grid {
  grid-template-columns: 1.1fr .9fr;
}

.hero-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sage);
  box-shadow: 0 18px 44px rgba(24,52,47,.12);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.hero-photo-note {
  margin: 0;
  max-width: 300px;
  font-family: "Dancing Script", cursive;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--accent);
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  max-width: 720px;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.4rem;
}

.hero-copy {
  font-size: 1.2rem;
  max-width: 680px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 34px 0 18px;
}

.button {
  display: inline-block;
  background: var(--ink);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button-small {
  padding: 10px 16px;
}

.text-link {
  text-decoration: none;
  font-weight: 600;
}

.license-note,
.small {
  font-size: .88rem;
  color: var(--muted);
}

.hero-card,
.service-card,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 50px rgba(24,52,47,.06);
}

.card-kicker {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.alt {
  background: #f3f6f2;
}

.prose {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-of-type {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  color: var(--muted);
}

.insurance-list {
  columns: 2;
  column-gap: 40px;
  color: var(--muted);
  margin: 10px 0 18px;
  padding-left: 22px;
}

.insurance-list li {
  break-inside: avoid;
  margin-bottom: 7px;
}

.contact {
  background: var(--cream);
}

.contact-card p {
  margin-top: 0;
}

.full {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.crisis {
  padding: 20px 0;
  background: var(--ink);
  color: white;
  font-size: .92rem;
}

footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 14px;
}

.footer-grid p {
  margin: 3px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 780px) {
  nav a:not(.button) {
    display: none;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-right {
    align-items: flex-start;
    width: 100%;
  }

  .header-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-photo-wrap {
    max-width: 260px;
  }

  .hero-photo-note {
    font-size: 1.55rem;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 2.1rem;
  }
  .insurance-list {
    columns: 1;
  }

}
