body {
  margin: 0;
  font-family: "Hoefler Text", serif;
  background: #fff;
  color: #222;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 0 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  width: 100%;
}

.site-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 24px;
  align-self: start;
}

.nav-link {
  display: block;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
  color: #333;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-link:hover {
  background: #f2f0ea;
  border-color: #d8d2c2;
}

.nav-link.active {
  background: #508842;
  border-color: #508842;
  color: #fff;
}

.nav-link.mail-link {
  background: #fff;
  border-style: dashed;
}

.page-content {
  min-width: 0;
}

.logo-wrap {
  flex: 0 0 auto;
}

.logo-wrap img {
  display: block;
  max-width: 140px;
  height: auto;
}

.container {
  max-width: 720px;
  line-height: 1.65;
}

h1, h2, h3 {
  font-weight: normal;
}

.header-copy {
  min-width: 0;
}

.header-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.tagline {
  margin: 8px 0 0;
  color: #508842;
  letter-spacing: 0.05em;
  font-size: 1rem;
  text-transform: uppercase;
}

.clinician-intro {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.clinician-intro-copy {
  min-width: 0;
}

.clinician-photo {
  flex: 0 0 auto;
  width: clamp(140px, 24vw, 200px);
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.notice {
  border-left: 2px solid #e5c357;
  padding-left: 12px;
  margin: 20px 0 0;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fafafa;
  padding: 0 16px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  position: relative;
  font-size: 1.17em;
  line-height: 1.4;
  color: #222;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #508842;
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

a {
  color: #3666c0;
  text-decoration: none;
  border-bottom: 1px solid #e5c357;
}

a:hover {
  color: #e5c357;
}

.site-footer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer span {
  display: inline-block;
  white-space: nowrap;
}

.site-footer a {
  color: inherit;
  border-bottom-color: currentColor;
}

.site-footer a:hover {
  color: #508842;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 20px 16px 28px;
  }

  .content-layout {
    grid-template-columns: minmax(120px, 140px) minmax(0, 1fr);
    gap: 20px;
  }

  .site-nav {
    width: 100%;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .site-header {
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 10px 0 12px;
    margin-bottom: 14px;
  }

  .logo-wrap img {
    max-width: 116px;
  }

  .clinician-intro {
    gap: 14px;
    margin-bottom: 24px;
  }

  .clinician-photo {
    width: clamp(120px, 34vw, 150px);
  }

  .faq-item {
    padding: 0 14px;
  }

  .faq-item summary {
    padding: 14px 24px 14px 0;
    font-size: 1.08em;
  }

  .faq-item p {
    font-size: 1rem;
  }

  .site-footer {
    margin-top: 22px;
    padding-top: 14px;
    font-size: 0.9rem;
    gap: 12px;
  }
}
