/* Self-hosted fonts (no CDN) — replaces the source site's Google Fonts <link>. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-400-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-latin-700.woff2") format("woff2");
}

body {
  margin: 0;
}

/* ============================================================
   Needham Family Dentist — template styles (scoped to .nfd)
   ============================================================ */
.nfd {
  --ink: #1a1d26;
  --muted: #5a6076;
  --ivory: #ffffff;
  --paper: #f7f8fb;
  --mist: #eaf0ff;
  --sage: #2b4fe0;
  --sage-dark: #0f1e4c;
  --gold: #5b7cff;
  --line: #e4e7ef;
  --serif: "Poppins", "Inter", Arial, sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  font-kerning: normal;
}
.nfd * {
  box-sizing: border-box;
}
.nfd img {
  display: block;
  max-width: 100%;
}
.nfd a {
  color: inherit;
  text-decoration: none;
}
.nfd .wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.nfd .skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 10px 16px;
}
.nfd .skip-link:focus {
  transform: none;
}
.nfd .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nfd .site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
}
.nfd .utility-bar {
  min-height: 67px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--serif);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.nfd .utility-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nfd .text-link {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nfd .nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nfd .brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nfd .brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.nfd .brand span {
  display: flex;
  flex-direction: column;
}
.nfd .brand strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.nfd .brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nfd .nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 14px;
}
.nfd .nav-links a {
  position: relative;
}
.nfd .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--sage);
  transition: right 0.25s ease;
}
.nfd .nav-links a:hover::after,
.nfd .nav-links a:focus-visible::after,
.nfd .nav-links a[aria-current="page"]::after {
  right: 0;
}
.nfd .nav-dropdown {
  position: relative;
}
.nfd .nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  cursor: pointer;
  list-style: none;
}
.nfd .nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nfd .nav-dropdown summary > span {
  color: var(--sage-dark);
  font-size: 12px;
  transition: transform 0.2s ease;
}
.nfd .nav-dropdown[open] summary > span {
  transform: rotate(180deg);
}
.nfd .nav-dropdown summary::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--sage);
  transition: right 0.25s ease;
}
.nfd .nav-dropdown:hover summary::after,
.nfd .nav-dropdown:focus-within summary::after,
.nfd .nav-dropdown[open] summary::after,
.nfd .nav-dropdown:has(a[aria-current="page"]) summary::after {
  right: 0;
}
.nfd .nav-dropdown-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 13px);
  right: -24px;
  width: min(760px, calc(100vw - 40px));
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 38px rgba(35, 36, 32, 0.12);
}
.nfd .nav-dropdown:not([open]) .nav-dropdown-menu {
  display: none;
}
.nfd .nav-dropdown-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nfd .nav-dropdown-section {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.nfd .nav-dropdown-section:last-child {
  border-right: 0;
}
.nfd .nav-dropdown-section h2 {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.nfd .nav-dropdown-categories {
  display: grid;
  gap: 18px;
}
.nfd .nav-dropdown-category-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 6px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font: 15px/1.35 var(--serif);
}
.nfd .nav-dropdown-category-link span:last-child {
  color: var(--gold);
}
.nfd .nav-dropdown-articles {
  margin: 5px 0 0;
  padding: 0 0 0 12px;
  border-left: 1px solid var(--line);
  list-style: none;
}
.nfd .nav-dropdown-articles a {
  display: block;
  padding: 4px 0;
  color: var(--muted);
  font: 12px/1.35 var(--sans);
}
.nfd .nav-dropdown-category-link:hover,
.nfd .nav-dropdown-category-link:focus-visible,
.nfd .nav-dropdown-category-link[aria-current="page"],
.nfd .nav-dropdown-articles a:hover,
.nfd .nav-dropdown-articles a:focus-visible,
.nfd .nav-dropdown-articles a[aria-current="page"] {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nfd .nav-dropdown-menu a::after {
  display: none;
}
.nfd .nav-dropdown-all {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: var(--ivory);
  font: 14px var(--serif);
}
.nfd .nav-dropdown-all:hover,
.nfd .nav-dropdown-all:focus-visible,
.nfd .nav-dropdown-all[aria-current="page"] {
  color: var(--sage-dark);
}
.nfd .nav-dropdown-all span:last-child {
  color: var(--gold);
}
.nfd a:focus-visible,
.nfd button:focus-visible,
.nfd summary:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 4px;
}
.nfd .menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.nfd .menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--ink);
  margin: 5px;
}

.nfd .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 50px;
  padding: 0 24px;
  background: var(--sage);
  border: 1px solid var(--sage);
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.nfd .button:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}
.nfd .button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12px;
}
.nfd .button-outline {
  background: transparent;
  border-color: var(--sage);
  color: var(--sage);
}
.nfd .button-outline:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}
.nfd .button-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.nfd .button-dark:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}
.nfd .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nfd .hero {
  position: relative;
  min-height: 630px;
  background: var(--mist);
  overflow: hidden;
}
.nfd .hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 630px;
}
.nfd .hero-content {
  width: 57%;
  padding-left: 44px;
  border-left: 5px solid;
  border-image: linear-gradient(var(--gold), var(--sage)) 1;
}
.nfd .eyebrow {
  margin: 0 0 20px;
  color: #596244;
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nfd h1,
.nfd h2,
.nfd h3 {
  margin-top: 0;
  font-weight: 400;
}
.nfd h1,
.nfd h2 {
  font-family: var(--serif);
  letter-spacing: -0.04em;
}
.nfd h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(50px, 5.6vw, 80px);
  line-height: 1.08;
}
.nfd h1 em {
  color: var(--sage-dark);
  font-weight: 400;
  font-style: italic;
}
.nfd .hero-lede {
  max-width: 610px;
  margin: 0 0 32px;
  color: #51534e;
  font-family: var(--serif);
  font-size: 17px;
}
.nfd .trust-row {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.nfd .trust-row span {
  display: flex;
  flex-direction: column;
  padding-right: 26px;
  border-right: 1px solid #c6c7c1;
}
.nfd .trust-row span:last-child {
  border: 0;
}
.nfd .trust-row strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.nfd .hero-image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  overflow: hidden;
  background: var(--mist);
  filter: saturate(0.72) contrast(0.96);
}
.nfd .hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--mist) 0%, transparent 18%);
}
.nfd .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nfd .hero-angle {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  width: 18%;
  height: 90px;
  background: var(--paper);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.nfd .section {
  padding-block: 110px;
}
.nfd .section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--sage-dark);
}
.nfd .section-label span {
  width: 5px;
  height: 54px;
  background: linear-gradient(var(--gold), var(--sage));
}
.nfd .section-label p {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nfd .intro > .section-label {
  margin-left: 50%;
  margin-bottom: 20px;
}
.nfd .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.nfd .intro h2,
.nfd .section-heading h2,
.nfd .doctor h2,
.nfd .reviews h2,
.nfd .visit h2 {
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.15;
}
.nfd .services-index .section-heading h1 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.15;
}
.nfd .intro-copy {
  padding-right: 10%;
}
.nfd .lead {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
}
.nfd .intro-copy > p:not(.lead),
.nfd .doctor-copy > p:not(.lead):not(.credentials),
.nfd .visit-info > p:not(.eyebrow) {
  color: var(--muted);
}
.nfd .arrow-link {
  display: inline-flex;
  gap: 28px;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
}

.nfd .services {
  background: #f0f0ec;
}
.nfd .section-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}
.nfd .section-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}
.nfd .section-heading > p {
  color: var(--muted);
}
.nfd .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nfd .service-card {
  position: relative;
  min-height: 420px;
  padding: 40px 34px 34px;
  background: var(--paper);
  border-top: 3px solid var(--sage);
  display: flex;
  flex-direction: column;
}
.nfd .service-card.featured {
  background: var(--sage-dark);
  color: white;
  border-color: var(--gold);
  transform: translateY(-12px);
}
.nfd .service-number {
  position: absolute;
  right: 26px;
  top: 24px;
  color: #a5a89f;
  font-family: var(--serif);
  font-size: 12px;
}
.nfd .service-icon {
  margin: 30px 0 48px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 38px;
}
.nfd .service-card h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 25px;
}
.nfd .service-card p {
  color: var(--muted);
  font-size: 14px;
}
.nfd .service-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}
.nfd .service-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 13px;
}
.nfd .service-card.featured a {
  border-color: rgba(255, 255, 255, 0.28);
}

.nfd .doctor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}
.nfd .doctor-photo {
  position: relative;
  padding: 22px 0 0 22px;
}
.nfd .doctor-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 72%;
  background: var(--sage);
  z-index: 0;
}
.nfd .doctor-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82);
}
.nfd .photo-caption {
  position: absolute;
  right: -24px;
  bottom: 35px;
  padding: 22px 28px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.nfd .photo-caption strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
}
.nfd .photo-caption span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nfd .doctor-copy .section-label {
  margin-bottom: 24px;
}
.nfd .credentials {
  margin: 8px 0 35px;
  color: var(--sage-dark);
  font-family: var(--serif);
}
.nfd .doctor-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 36px 0;
}
.nfd .doctor-facts div {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.nfd .doctor-facts strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}
.nfd .doctor-facts span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nfd .reviews {
  color: white;
  background: var(--ink);
}
.nfd .reviews-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10%;
  align-items: center;
}
.nfd .reviews .eyebrow {
  color: var(--gold);
}
.nfd .reviews h2 {
  margin-bottom: 55px;
}
.nfd .review-context {
  max-width: 220px;
  margin: 46px 0 0;
  color: #b5b7af;
  font-family: var(--serif);
  font-size: 0.875rem;
  font-style: italic;
}
.nfd .quote {
  margin: 0;
  padding: 30px 0 30px 54px;
  border-left: 1px solid #5a5b57;
}
.nfd .quote blockquote {
  position: relative;
  margin: 0 0 42px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 37px);
  line-height: 1.5;
}
.nfd .quote blockquote::before {
  content: "\201C";
  position: absolute;
  left: -10px;
  top: -65px;
  color: var(--gold);
  font-size: 82px;
}
.nfd .quote figcaption {
  display: flex;
  flex-direction: column;
}
.nfd .quote figcaption strong {
  font-family: var(--serif);
  font-weight: 400;
}
.nfd .quote figcaption span {
  color: #9b9c96;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nfd .visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9%;
  align-items: center;
}
.nfd .visit-info > p:not(.eyebrow) {
  max-width: 550px;
}
.nfd .visit-info .button-row {
  margin-top: 30px;
}
.nfd .visit-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  padding: 48px;
  background: var(--ivory);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--sage), var(--gold)) 1;
}
.nfd .card-label {
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nfd address {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
}
.nfd .visit-card a {
  font-family: var(--serif);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nfd .hours {
  margin: 0;
  font-size: 12px;
}
.nfd .hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.nfd .hours dt {
  color: var(--muted);
}
.nfd .hours dd {
  margin: 0;
  white-space: nowrap;
}

.nfd footer {
  padding-top: 65px;
  background: var(--sage-dark);
  color: white;
}
.nfd .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.7fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 55px;
}
.nfd .brand-light img {
  filter: grayscale(1) brightness(2);
  opacity: 0.82;
}
.nfd .brand-light small,
.nfd .footer-contact span {
  color: #a9aaa5;
}
.nfd .footer-links,
.nfd .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--serif);
  font-size: 13px;
}
.nfd .footer-contact a {
  color: var(--gold);
  font-size: 20px;
}
.nfd .footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
  border-top: 1px solid #3b3c38;
  color: #8c8e87;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nfd {
    --wrap: min(100% - 32px, 680px);
  }
  .nfd .utility-bar > a:nth-child(2),
  .nfd .utility-actions .text-link {
    display: none;
  }
  .nfd .menu-toggle {
    display: block;
  }
  .nfd .nav {
    height: 78px;
  }
  .nfd .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 145px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }
  .nfd .nav-links.open {
    display: flex;
  }
  .nfd .nav-dropdown {
    width: 100%;
  }
  .nfd .nav-dropdown summary {
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nfd .nav-dropdown summary::after {
    display: none;
  }
  .nfd .nav-dropdown-menu {
    position: static;
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
  }
  .nfd .nav-dropdown-sections {
    grid-template-columns: 1fr;
    padding-left: 16px;
  }
  .nfd .nav-dropdown-section {
    padding: 16px 8px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .nfd .nav-dropdown-section h2 {
    margin-bottom: 5px;
  }
  .nfd .nav-dropdown-category-link {
    min-height: 48px;
    padding: 13px 0;
  }
  .nfd .nav-dropdown-articles {
    margin-top: 0;
  }
  .nfd .nav-dropdown-articles a {
    min-height: 44px;
    padding: 12px 0;
    font-size: 14px;
  }
  .nfd .nav-dropdown-all {
    min-height: 48px;
    margin-left: 16px;
    padding: 15px 8px;
    border-top: 0;
  }
  .nfd .nav-links > a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nfd .hero,
  .nfd .hero-copy {
    min-height: 760px;
  }
  .nfd .hero-copy {
    align-items: flex-start;
    padding-top: 72px;
  }
  .nfd .hero-content {
    width: 100%;
    padding-left: 26px;
  }
  .nfd .hero-image {
    top: auto;
    bottom: 0;
    width: 48%;
    height: 48%;
    opacity: 0.7;
  }
  .nfd .trust-row {
    width: 65%;
    flex-wrap: wrap;
  }
  .nfd .section {
    padding-block: 75px;
  }
  .nfd .intro > .section-label {
    margin-left: 0;
  }
  .nfd .intro-grid,
  .nfd .section-heading,
  .nfd .doctor,
  .nfd .reviews-grid,
  .nfd .visit {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .nfd .service-grid {
    grid-template-columns: 1fr;
  }
  .nfd .service-card.featured {
    transform: none;
  }
  .nfd .service-card {
    min-height: 350px;
  }
  .nfd .quote {
    padding-left: 30px;
  }
}

@media (max-width: 560px) {
  .nfd {
    --wrap: calc(100% - 28px);
  }
  .nfd .utility-bar {
    min-height: 56px;
  }
  .nfd .utility-actions {
    margin-left: auto;
  }
  .nfd .utility-actions .button {
    min-height: 36px;
    padding: 0 11px;
  }
  .nfd .nav-links {
    top: 134px;
  }
  .nfd .brand strong {
    font-size: 15px;
  }
  .nfd .brand small {
    font-size: 9px;
  }
  .nfd .brand img {
    width: 43px;
    height: 43px;
  }
  .nfd h1 {
    font-size: 43px;
  }
  .nfd .hero-lede {
    font-size: 15px;
  }
  .nfd .hero,
  .nfd .hero-copy {
    min-height: 790px;
  }
  .nfd .hero-image {
    width: 70%;
    height: 37%;
  }
  .nfd .hero-content {
    border-left-width: 3px;
  }
  .nfd .button-row .button {
    width: 100%;
  }
  .nfd .trust-row {
    width: 100%;
    gap: 14px;
  }
  .nfd .trust-row span {
    width: calc(50% - 10px);
    padding-right: 10px;
  }
  .nfd .intro-copy {
    padding-right: 0;
  }
  .nfd .doctor-photo {
    padding: 14px 0 0 14px;
  }
  .nfd .photo-caption {
    right: 0;
    bottom: 18px;
  }
  .nfd .doctor-facts,
  .nfd .visit-card {
    grid-template-columns: 1fr;
  }
  .nfd .visit-card {
    padding: 32px 24px;
  }
  .nfd .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nfd .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

/* Contact form */
.nfd-form {
  display: grid;
  gap: 18px;
  max-width: 560px;
  margin-top: 8px;
}
.nfd-form-row.nfd-form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.nfd-form-row,
.nfd-form-row > div {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.nfd-form label,
.nfd-form legend {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nfd-form-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.nfd-form-fieldset legend {
  margin-bottom: 8px;
}
.nfd-form input,
.nfd-form select,
.nfd-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 12px;
  border-radius: 6px;
  font: inherit;
}
.nfd-form textarea {
  min-height: 112px;
  resize: vertical;
}
.nfd-form input:focus,
.nfd-form select:focus,
.nfd-form textarea:focus {
  outline: 2px solid var(--sage-dark);
  outline-offset: 2px;
}
.nfd-form input[aria-invalid="true"] {
  border-color: #9f2f2f;
}
.nfd-field-error,
.nfd-form-error {
  color: #8f2525;
  font-size: 0.875rem;
  line-height: 1.45;
}
.nfd-form-error {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid #8f2525;
  background: #fff2ef;
}
.nfd-form-error a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nfd-form-required,
.nfd-form-hint,
.nfd-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}
.nfd-form-hint {
  max-width: 60ch;
}
.nfd-honeypot {
  position: fixed;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.nfd-form-verification {
  display: grid;
  gap: 10px;
  min-height: 65px;
}
.nfd-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}
.nfd-form-success {
  padding: 24px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.03);
}
.nfd-form-success:focus {
  outline: 2px solid var(--sage-dark);
  outline-offset: 4px;
}
.nfd-form-success h3 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}
.nfd-form-success p:last-child {
  margin-bottom: 0;
}
.visit-alt {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 12px;
}
.visit-alt a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .nfd-form-row.nfd-form-row-two {
    grid-template-columns: 1fr;
  }
}

/* Care library */
.nfd .library-hero {
  padding-block: clamp(72px, 9vw, 130px);
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}
.nfd .library-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.nfd .library-hero h1 {
  margin: 0;
}
.nfd .library-hero-grid > p {
  max-width: 470px;
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
}
.nfd .library-shell {
  padding-top: 64px;
}
.nfd .library-directory-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: 40px;
}
.nfd .library-directory-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.15;
}
.nfd .library-directory-heading > p {
  max-width: 360px;
  margin: 0 0 7px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
}
.nfd .library-search {
  display: grid;
  gap: 9px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nfd .library-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: 14px var(--sans);
}
.nfd .library-search input:focus {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}
.nfd .library-search-wide {
  max-width: 720px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.nfd .library-directory {
  border-top: 1px solid var(--line);
}
.nfd .library-directory-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(40px, 8vw, 120px);
  padding-block: clamp(52px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}
.nfd .library-directory-intro {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 24px;
}
.nfd .library-directory-intro > span {
  padding-top: 4px;
  color: var(--gold);
  font: 13px var(--serif);
  letter-spacing: 0.08em;
}
.nfd .library-directory-intro h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.12;
}
.nfd .library-directory-intro p:not(.eyebrow) {
  max-width: 55ch;
  margin-bottom: 24px;
  color: var(--muted);
}
.nfd .library-directory-intro a,
.nfd .library-category-all {
  display: inline-flex;
  gap: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
}
.nfd .library-directory-links {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.nfd .library-directory-links a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font: 18px/1.35 var(--serif);
  transition:
    color 0.2s,
    padding 0.2s;
}
.nfd .library-directory-links a:hover,
.nfd .library-directory-links a:focus-visible {
  padding-inline: 10px;
  color: var(--sage-dark);
}
.nfd .library-directory-links a span:last-child {
  color: var(--gold);
}
.nfd .library-search-results {
  padding-top: 8px;
}
.nfd .library-search-group + .library-search-group {
  margin-top: 72px;
}
.nfd .library-search-group-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 24px;
}
.nfd .library-search-group-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}
.nfd .library-search-group-heading a {
  flex: 0 0 auto;
  font-family: var(--serif);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nfd .library-result-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 46px 0 26px;
}
.nfd .library-result-heading .eyebrow {
  margin: 0;
}
.nfd .library-result-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3vw, 42px);
}
.nfd .library-result-heading > button {
  padding: 8px 0 5px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: 14px var(--serif);
  cursor: pointer;
}
.nfd .library-result-heading > p:last-child {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
}
.nfd .library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.nfd .library-card {
  min-width: 0;
  padding: 34px 30px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition:
    background 0.25s,
    transform 0.25s;
}
.nfd .library-card:hover {
  background: var(--ivory);
  transform: translateY(-3px);
}
.nfd .library-card-category {
  margin: 0 0 28px;
  color: var(--sage-dark) !important;
  font-family: var(--serif);
  font-size: 0.75rem !important;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.nfd .library-card h2,
.nfd .library-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.17;
}
.nfd .library-card > p:not(.library-card-category) {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 0.9375rem;
}
.nfd .library-card > a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 0.875rem;
}
.nfd .library-category-hero .article-hero-inner > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font: 19px/1.65 var(--serif);
}
.nfd .library-category-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}
.nfd .library-category-nav {
  position: sticky;
  top: 24px;
}
.nfd .library-category-nav h2 {
  margin-bottom: 22px;
  font-size: 30px;
  line-height: 1.15;
}
.nfd .library-category-nav nav {
  border-top: 1px solid var(--line);
}
.nfd .library-category-nav nav a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 14px/1.35 var(--serif);
}
.nfd .library-category-nav nav a:hover,
.nfd .library-category-nav nav a:focus-visible,
.nfd .library-category-nav nav a[aria-current="page"] {
  color: var(--ink);
}
.nfd .library-category-nav nav a[aria-current="page"] {
  font-weight: 600;
}
.nfd .library-category-nav nav a span:last-child {
  color: var(--gold);
}
.nfd .library-category-all {
  margin-top: 24px;
}
.nfd .library-category-heading {
  margin-bottom: 32px;
}
.nfd .library-category-heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.15;
}
.nfd .library-category-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* Services index and conversion */
.nfd .service-card-index h3,
.nfd .benefit-card h3 {
  margin-top: 90px;
}
.nfd .service-card-emergency {
  background: var(--sage-dark);
  color: white;
  border-color: var(--gold);
}
.nfd .service-card-emergency p {
  color: rgba(255, 255, 255, 0.78);
}
.nfd .service-card-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.nfd .service-card-actions a {
  margin-top: 0;
}
.nfd .service-card-actions a:first-child {
  color: var(--gold);
}
.nfd .service-card-actions a:last-child {
  padding-top: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.8);
}
.nfd .benefit-grid {
  grid-template-columns: repeat(2, 1fr);
}
.nfd .benefit-card {
  min-height: 330px;
}
.nfd .services-cta {
  padding-block: 80px;
  background: var(--ink);
  color: white;
}
.nfd .services-cta .eyebrow {
  color: var(--gold);
}
.nfd .services-cta-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 64px;
  align-items: end;
}
.nfd .services-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.15;
}
.nfd .services-cta .button-row {
  justify-content: flex-end;
}
.nfd .services-cta .button-outline {
  border-color: white;
  color: white;
}
.nfd .services-cta .button-outline:hover {
  background: white;
  color: var(--ink);
}
.nfd .library-empty {
  padding: 70px 20px;
  text-align: center;
  background: var(--ivory);
}
.nfd .library-empty h2 {
  margin-bottom: 10px;
  font-size: 34px;
}
.nfd .library-empty p {
  color: var(--muted);
}
.nfd .library-empty button {
  padding: 10px 0 4px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font: 14px var(--serif);
  cursor: pointer;
}

.nfd .article-hero {
  padding-block: clamp(60px, 8vw, 112px);
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}
.nfd .article-hero-inner {
  padding-left: clamp(20px, 5vw, 72px);
  border-left: 5px solid var(--sage);
}
.nfd .article-hero h1 {
  max-width: 930px;
  margin-bottom: 0;
}
.nfd .article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nfd .article-breadcrumb span:last-child {
  color: var(--ink);
}
.nfd .article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}
.nfd .article-content {
  max-width: 760px;
}
.nfd .article-content > p {
  margin: 0 0 24px;
  color: #4f514c;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.75;
}
.nfd .article-content > p:first-child {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.6;
}
.nfd .article-content > h2 {
  margin: 54px 0 18px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
}
.nfd .article-content > ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.nfd .article-content > ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  color: #4f514c;
  font-family: var(--serif);
  font-size: 17px;
}
.nfd .article-content > ul li::before {
  content: "✦";
  position: absolute;
  left: 2px;
  top: 11px;
  color: var(--gold);
  font-size: 12px;
}
.nfd .article-aside {
  position: sticky;
  top: 26px;
  padding: 34px 30px;
  background: var(--sage-dark);
  color: white;
}
.nfd .article-aside .eyebrow {
  color: var(--gold);
}
.nfd .article-aside h2 {
  font-size: 32px;
  line-height: 1.18;
}
.nfd .article-aside > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--serif);
}
.nfd .article-aside .button {
  width: 100%;
  margin-top: 15px;
  gap: 14px;
}
.nfd .article-phone {
  display: block;
  margin-top: 20px;
  text-align: center;
  font: 17px var(--serif);
  text-decoration: underline !important;
  text-underline-offset: 5px;
}
.nfd .article-resources {
  margin-top: 58px;
  padding-top: 38px;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--sage), var(--gold)) 1;
}
.nfd .article-resources h2 {
  font-size: 36px;
}
.nfd .article-resources > div {
  border-top: 1px solid var(--line);
}
.nfd .article-resources a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
}
.nfd .article-resources a span:last-child {
  color: var(--sage-dark);
}
.nfd .patient-forms-page {
  display: grid;
  gap: 40px;
}
.nfd .patient-forms-lede {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
}
.nfd .patient-forms-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(28px, 4vw, 42px);
  background: var(--ivory);
  border-top: 4px solid var(--sage);
}
.nfd .patient-forms-featured .eyebrow {
  margin-bottom: 14px;
}
.nfd .patient-forms-featured h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
}
.nfd .patient-forms-featured p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}
.nfd .patient-forms-featured .button {
  white-space: nowrap;
}
.nfd .patient-forms-checklist {
  padding-block: 8px;
}
.nfd .patient-forms-checklist h2,
.nfd .patient-form-downloads h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.15;
}
.nfd .patient-forms-checklist ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.nfd .patient-forms-checklist li {
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.nfd .patient-forms-checklist strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 20px;
}
.nfd .patient-forms-checklist span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.nfd .patient-form-downloads {
  padding-top: 12px;
}
.nfd .patient-form-downloads-heading {
  margin-bottom: 22px;
}
.nfd .patient-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.nfd .patient-form-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition:
    background 0.25s,
    transform 0.25s;
}
.nfd .patient-form-card:hover,
.nfd .patient-form-card:focus-visible {
  background: var(--ivory);
  transform: translateY(-2px);
}
.nfd .patient-form-card strong,
.nfd .patient-form-card small {
  display: block;
}
.nfd .patient-form-card strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
}
.nfd .patient-form-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.nfd .patient-form-card > span:last-child {
  flex: 0 0 auto;
  color: var(--sage-dark);
  font-family: var(--serif);
}
.nfd .library-grid-related {
  grid-template-columns: repeat(3, 1fr);
}
.nfd .library-grid-related .library-card {
  min-height: 260px;
}

@media (max-width: 900px) {
  .nfd .library-hero-grid,
  .nfd .library-directory-heading,
  .nfd .library-directory-section,
  .nfd .library-category-layout,
  .nfd .article-layout {
    grid-template-columns: 1fr;
  }
  .nfd .library-directory-heading {
    align-items: start;
  }
  .nfd .library-directory-section {
    gap: 38px;
  }
  .nfd .library-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nfd .library-category-nav {
    position: static;
  }
  .nfd .library-category-nav nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--line);
  }
  .nfd .library-category-nav nav a {
    padding: 14px;
    border-right: 1px solid var(--line);
  }
  .nfd .article-aside {
    position: static;
    max-width: 520px;
  }
  .nfd .patient-forms-featured,
  .nfd .patient-forms-checklist ol,
  .nfd .patient-form-grid {
    grid-template-columns: 1fr;
  }
  .nfd .patient-forms-featured {
    align-items: start;
  }
  .nfd .benefit-grid {
    grid-template-columns: 1fr;
  }
  .nfd .services-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .nfd .services-cta .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .nfd .library-grid,
  .nfd .library-grid-related {
    grid-template-columns: 1fr;
  }
  .nfd .library-directory-section {
    padding-block: 48px;
  }
  .nfd .library-directory-intro {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nfd .library-directory-links a {
    font-size: 17px;
  }
  .nfd .library-search-group-heading,
  .nfd .library-result-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .nfd .library-card {
    padding: 28px 24px 24px;
  }
  .nfd .library-category-nav nav {
    grid-template-columns: 1fr;
  }
  .nfd .article-hero-inner {
    border-left-width: 3px;
  }
  .nfd .article-breadcrumb {
    margin-bottom: 28px;
  }
  .nfd .article-content > p {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nfd *,
  .nfd *::before,
  .nfd *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   PHP-port additions — small structural bits the source rendered as
   inline React styles (services.$slug.tsx, library.$slug.tsx breadcrumbs).
   Same visual result, expressed as classes since PHP templates don't
   carry a styling runtime.
   ============================================================ */
.nfd .service-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nfd .service-breadcrumb .current {
  color: var(--ink);
}
.nfd .benefit-label {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 13px;
  color: var(--muted);
}
.nfd .faq-heading {
  margin-bottom: 40px;
}
.nfd .service-faqs {
  margin: 0;
  border-top: 1px solid #3b3c38;
}
.nfd .service-faqs details {
  padding: 22px 0;
  border-bottom: 1px solid #3b3c38;
}
.nfd .service-faqs summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 20px;
}
.nfd .service-faqs summary::-webkit-details-marker {
  display: none;
}
.nfd .service-faqs .faq-plus {
  color: var(--gold);
  font-size: 24px;
}
.nfd .service-faqs dd {
  margin: 14px 0 0;
  color: #c8c9c3;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  max-width: 780px;
}
.nfd .process-steps {
  display: grid;
  gap: 30px;
}
.nfd .process-step {
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}
.nfd .process-step-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
}
.nfd .process-step h3 {
  margin: 8px 0 6px;
  font-family: var(--serif);
  font-size: 22px;
}
.nfd .process-step p {
  color: var(--muted);
  margin: 0;
}
.nfd .services-view-all {
  font-family: var(--serif);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

/* "Our Doctors" nav dropdown — narrower single-section variant of the Dental Topics dropdown. */
.nfd .nav-dropdown-doctors .nav-dropdown-menu {
  width: min(300px, calc(100vw - 40px));
}
.nfd .nav-dropdown-doctors .nav-dropdown-sections {
  grid-template-columns: 1fr;
}
.nfd .nav-dropdown-doctors .nav-dropdown-section {
  border-right: 0;
}
