/* Northline Dental — franchise demo websites (client-facing, not 48Launch) */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nd {
  --nd-sage: #4a6b5d;
  --nd-sage-deep: #2d4a40;
  --nd-sage-light: #eef2ef;
  --nd-graphite: #1e2a32;
  --nd-navy: #243038;
  --nd-cream: #f7f4ef;
  --nd-ivory: #faf8f4;
  --nd-white: #ffffff;
  --nd-text: #1e2a32;
  --nd-muted: #5c6660;
  --nd-line: rgba(30, 42, 50, 0.1);
  --nd-accent: #3d5a52;
  --nd-accent-hover: #2f463f;
  --nd-warm: #8a6f5c;
  --nd-gold: #9a7b62;
  --nd-font: 'Inter', system-ui, sans-serif;
  --nd-display: 'Outfit', system-ui, sans-serif;
  --nd-wrap: min(1180px, calc(100% - 2.5rem));
  margin: 0;
  font-family: var(--nd-font);
  color: var(--nd-text);
  background: var(--nd-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.nd--authority-first {
  --nd-display: 'Fraunces', Georgia, serif;
  --nd-font: 'Source Sans 3', system-ui, sans-serif;
  --nd-accent: var(--nd-sage);
  --nd-accent-hover: var(--nd-sage-deep);
  background: var(--nd-ivory);
}

.nd--booking-first {
  --nd-display: 'Outfit', system-ui, sans-serif;
  --nd-font: 'Inter', system-ui, sans-serif;
  --nd-accent: var(--nd-sage);
  background: var(--nd-white);
}

.nd--premium-practice {
  --nd-display: 'Cormorant Garamond', Georgia, serif;
  --nd-font: 'Manrope', system-ui, sans-serif;
  --nd-accent: var(--nd-warm);
  --nd-accent-hover: #735a49;
  background: var(--nd-ivory);
}

.nd-wrap {
  width: var(--nd-wrap);
  margin-inline: auto;
}

.nd-site {
  background: var(--nd-white);
  overflow-x: clip;
}

.nd-main img {
  max-width: 100%;
  display: block;
}

.nd-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nd-sage);
}

.nd-eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.nd-lead {
  font-size: 1.08rem;
  color: var(--nd-muted);
  max-width: 46ch;
  margin: 0 0 1.25rem;
}

.nd-stars {
  color: #d4a017;
  letter-spacing: 0.06em;
}

/* Utility + header */
.nd-utility {
  background: var(--nd-navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nd-utility__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.45rem 0;
}

.nd-utility__pill {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
}

.nd-utility a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

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

.nd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.nd-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--nd-navy);
}

.nd-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, var(--nd-sage), #6b8a7c);
  transform: rotate(-45deg);
}

.nd-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nd-logo__text strong {
  font-family: var(--nd-display);
  font-size: 1.05rem;
}

.nd-logo__text small {
  font-size: 0.68rem;
  color: var(--nd-muted);
  font-weight: 500;
}

.nd-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.nd-nav a {
  color: var(--nd-muted);
  text-decoration: none;
}

.nd-nav a:hover,
.nd-nav a:focus-visible {
  color: var(--nd-graphite);
}

.nd-nav a.nd-nav__emphasis {
  color: var(--nd-graphite);
  font-weight: 700;
}

.nd-link {
  color: var(--nd-sage);
  font-weight: 600;
  text-decoration: none;
}

.nd-link:hover {
  text-decoration: underline;
}

.nd-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nd-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--nd-navy);
}

.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nd-btn--primary {
  background: var(--nd-accent);
  color: #fff;
}

.nd-btn--primary:hover {
  background: var(--nd-accent-hover);
}

.nd-btn--outline {
  border-color: var(--nd-line);
  color: var(--nd-navy);
  background: transparent;
}

.nd-btn--ghost {
  border-color: var(--nd-line);
  color: var(--nd-navy);
  background: transparent;
}

.nd-btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}

.nd-btn--accent {
  background: var(--nd-sage);
  color: #fff;
}

.nd-btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

.nd-btn--block {
  width: 100%;
}

/* Booking module */
.nd-booking {
  background: var(--nd-white);
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: 0 24px 60px rgba(30, 42, 50, 0.1);
}

.nd-booking__steps {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.nd-booking__step {
  flex: 1;
  padding: 0.45rem 0.35rem;
  border: none;
  border-radius: 8px;
  background: var(--nd-cream);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--nd-muted);
  cursor: pointer;
}

.nd-booking__step.is-active {
  background: var(--nd-sage-light);
  color: var(--nd-sage-deep);
}

.nd-booking__when {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.nd-booking__when-btn {
  flex: 1;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  background: var(--nd-cream);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.nd-booking__when-btn.is-active {
  background: var(--nd-sage);
  border-color: var(--nd-sage);
  color: #fff;
}

.nd-booking__prompt {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--nd-navy);
}

.nd-booking__types {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.nd-booking__type {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: var(--nd-cream);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}

.nd-booking__type:has(input:checked) {
  background: var(--nd-sage-light);
  box-shadow: inset 0 0 0 2px var(--nd-sage);
}

.nd-booking__type input {
  margin-top: 0.2rem;
}

.nd-booking__type strong {
  display: block;
  font-size: 0.88rem;
}

.nd-booking__type small {
  color: var(--nd-muted);
  font-size: 0.78rem;
}

.nd-booking__slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.nd-booking__slot {
  padding: 0.65rem;
  border: 1px solid var(--nd-line);
  border-radius: 10px;
  background: var(--nd-white);
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.nd-booking__slot.is-selected {
  border-color: var(--nd-sage);
  background: var(--nd-sage-light);
}

.nd-booking__slot strong {
  display: block;
  font-size: 0.82rem;
}

.nd-booking__slot small {
  color: var(--nd-muted);
  font-size: 0.72rem;
}

.nd-booking__form {
  display: grid;
  gap: 0.65rem;
}

.nd-booking__form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.nd-booking__form input {
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  font: inherit;
}

.nd-booking__fine {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  color: var(--nd-muted);
  text-align: center;
}

/* Authority First */
.nd-af-hero {
  padding: 3rem 0 4rem;
  background: var(--nd-ivory);
}

.nd-af-hero__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: center;
}

.nd-af-hero__portrait {
  position: relative;
  border-radius: 4px 4px 80px 4px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(30, 42, 50, 0.14);
  aspect-ratio: 4 / 5;
}

.nd-af-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-af-hero__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(30, 42, 50, 0.82));
  color: #fff;
}

.nd-af-hero__caption strong {
  display: block;
  font-size: 0.95rem;
}

.nd-af-hero__caption span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.nd-af-hero h1 {
  font-family: var(--nd-display);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--nd-graphite);
  font-weight: 600;
}

.nd-af-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.nd-af-hero__trust {
  display: grid;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--nd-muted);
}

.nd-af-hero__trust li {
  padding-left: 1rem;
  position: relative;
}

.nd-af-hero__trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nd-sage);
}

.nd-af-story {
  padding: 4rem 0;
}

.nd-af-story__intro {
  max-width: 28ch;
  margin-bottom: 2.5rem;
}

.nd-af-story h2 {
  font-family: var(--nd-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0;
  line-height: 1.15;
}

.nd-af-doctor {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--nd-line);
  align-items: start;
}

.nd-af-doctor--lead {
  border-top: none;
  padding-top: 0;
}

.nd-af-doctor__photo {
  border-radius: 4px;
  overflow: hidden;
}

.nd-af-doctor__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.nd-af-doctor__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--nd-sage);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.nd-af-doctor h3 {
  font-family: var(--nd-display);
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
}

.nd-af-doctor__role {
  font-weight: 600;
  color: var(--nd-muted);
  font-size: 0.92rem;
  margin: 0 0 0.85rem;
}

.nd-af-doctor__education {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.nd-af-doctor__interests,
.nd-af-doctor__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.nd-af-doctor__interests li,
.nd-af-doctor__creds li {
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  background: var(--nd-sage-light);
  border-radius: 4px;
}

.nd-af-credentials {
  padding: 3rem 0;
  background: var(--nd-graphite);
  color: rgba(255, 255, 255, 0.9);
}

.nd-af-credentials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem 2rem;
}

.nd-af-credential h3 {
  font-family: var(--nd-display);
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  color: #fff;
}

.nd-af-credential p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.nd-af-services {
  padding: 4rem 0;
}

.nd-af-services__head {
  max-width: 34ch;
  margin-bottom: 2.5rem;
}

.nd-af-services__head h2 {
  font-family: var(--nd-display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  margin: 0;
}

.nd-af-services__editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.nd-af-service {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nd-af-service--large {
  grid-column: span 6;
}

.nd-af-service--medium {
  grid-column: span 4;
}

.nd-af-service__media {
  border-radius: 6px;
  overflow: hidden;
}

.nd-af-service--large .nd-af-service__media {
  aspect-ratio: 16 / 10;
}

.nd-af-service--medium .nd-af-service__media {
  aspect-ratio: 4 / 3;
}

.nd-af-service__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-af-service h3 {
  font-family: var(--nd-display);
  font-size: 1.15rem;
  margin: 0;
}

.nd-af-service p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--nd-muted);
  max-width: 42ch;
}

.nd-af-spotlight {
  padding: 4rem 0;
  background: var(--nd-sage-light);
}

.nd-af-spotlight__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.nd-af-spotlight__photo {
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nd-af-spotlight h2 {
  font-family: var(--nd-display);
  font-size: 1.75rem;
  margin: 0 0 0.85rem;
}

.nd-af-reviews {
  padding: 4rem 0;
}

.nd-af-reviews__layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}

.nd-af-review {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.nd-af-review--feature {
  padding: 2rem;
  background: var(--nd-graphite);
  color: #fff;
  border-radius: 6px;
}

.nd-af-review p {
  font-family: var(--nd-display);
  font-size: 1.35rem;
  line-height: 1.45;
  margin: 0.85rem 0;
}

.nd-af-review--feature p {
  font-size: 1.55rem;
}

.nd-af-review footer {
  font-size: 0.88rem;
  color: var(--nd-muted);
}

.nd-af-review--feature footer {
  color: rgba(255, 255, 255, 0.72);
}

.nd-af-cta {
  padding: 4rem 0;
  text-align: center;
  background: var(--nd-ivory);
}

.nd-af-cta h2 {
  font-family: var(--nd-display);
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  margin: 0 0 1.25rem;
}

.nd-af-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.nd-af-patient {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--nd-line);
}

.nd-af-patient__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.nd-af-faq dt {
  font-weight: 700;
  margin-top: 1rem;
}

.nd-af-faq dd {
  margin: 0.35rem 0 0;
  color: var(--nd-muted);
}

/* Booking First */
.nd-bk-hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  background: var(--nd-white);
  overflow: hidden;
}

.nd-bk-hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nd-bk-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}

.nd-bk-hero__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--nd-white) 42%, rgba(255, 255, 255, 0.72) 68%, rgba(238, 242, 239, 0.95) 100%);
}

.nd-bk-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.nd-bk-hero h1 {
  font-family: var(--nd-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.08;
  margin: 0 0 0.85rem;
  color: var(--nd-graphite);
  max-width: 14ch;
}

.nd-bk-hero__trust {
  display: grid;
  gap: 0.35rem;
  margin: 1.25rem 0;
  font-size: 0.88rem;
  color: var(--nd-muted);
}

.nd-bk-hero__trust span {
  padding-left: 1rem;
  position: relative;
}

.nd-bk-hero__trust span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nd-sage);
}

.nd-bk-hero__call {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--nd-sage-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--nd-sage-light);
}

.nd-bk-hero__booking {
  position: relative;
}

.nd-bk-reassure {
  padding: 1.75rem 0;
  background: var(--nd-graphite);
  color: rgba(255, 255, 255, 0.88);
}

.nd-bk-reassure__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.nd-bk-reassure__item {
  display: grid;
  gap: 0.25rem;
}

.nd-bk-reassure__item strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.nd-bk-reassure__item span {
  font-size: 0.82rem;
  line-height: 1.45;
}

.nd-bk-paths,
.nd-bk-team,
.nd-bk-first-visit,
.nd-bk-insurance,
.nd-bk-faq {
  padding: 3rem 0;
}

.nd-bk-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.nd-bk-paths__head {
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

.nd-bk-paths__head h2 {
  font-family: var(--nd-display);
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  margin: 0 0 0.5rem;
}

.nd-bk-path {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 7.5rem;
  padding: 1.25rem 3rem 1.25rem 1.35rem;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: var(--nd-cream);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  position: relative;
}

.nd-bk-path::after {
  content: '→';
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--nd-sage);
}

.nd-bk-path:hover {
  background: var(--nd-sage-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 42, 50, 0.08);
}

.nd-bk-path strong {
  font-size: 1rem;
  line-height: 1.25;
}

.nd-bk-path span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--nd-muted);
  max-width: 28ch;
}

.nd-bk-team {
  background: var(--nd-sage-light);
}

.nd-bk-team__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3rem;
  align-items: start;
}

.nd-bk-team__copy h2 {
  font-family: var(--nd-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.65rem;
}

.nd-bk-team-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.15rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: var(--nd-white);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(30, 42, 50, 0.06);
}

.nd-bk-team-card__photo {
  width: 88px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nd-bk-team-card__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.nd-bk-team-card__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--nd-muted);
}

.nd-bk-team-card__role {
  color: var(--nd-sage);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.35rem !important;
}

.nd-bk-team__grid {
  display: grid;
  gap: 1rem;
}

.nd-bk-first-visit {
  background: var(--nd-white);
}

.nd-bk-first-visit__head h2 {
  font-family: var(--nd-display);
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
}

.nd-bk-first-visit__steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.nd-bk-first-visit__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 0;
  border: none;
  background: transparent;
}

.nd-bk-team-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.nd-bk-first-visit__num {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--nd-sage);
  font-weight: 800;
  font-size: 1.35rem;
  font-family: var(--nd-display);
}

.nd-bk-insurance__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.nd-bk-insurance__plans ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.nd-bk-insurance__plans li {
  padding: 0.45rem 0;
  background: transparent;
  border-bottom: 1px solid var(--nd-line);
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 500;
}

.nd-bk-faq__list dt {
  font-weight: 700;
  margin-top: 1rem;
}

.nd-bk-faq__list dd {
  margin: 0.35rem 0 0;
  color: var(--nd-muted);
}

/* Premium Practice */
.nd-pr-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
}

.nd-pr-hero__media {
  position: absolute;
  inset: 0;
}

.nd-pr-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-pr-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 40, 56, 0.15), rgba(10, 40, 56, 0.75));
}

.nd-pr-hero__content {
  position: relative;
  padding: 3rem 0 2.5rem;
  color: #fff;
}

.nd-pr-hero h1 {
  font-family: var(--nd-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0;
  max-width: 16ch;
}

.nd-pr-hero__lead {
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  opacity: 0.92;
}

.nd-pr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nd-pr-statement {
  padding: 5rem 0;
  text-align: center;
}

.nd-pr-statement__headline {
  font-family: var(--nd-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  color: var(--nd-graphite);
  margin: 0 auto 1.5rem;
  max-width: 18ch;
  font-weight: 500;
}

.nd-pr-statement__body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--nd-muted);
  max-width: 52ch;
  margin: 0 auto;
}

.nd-pr-gallery,
.nd-pr-services,
.nd-pr-consult,
.nd-pr-providers,
.nd-pr-review,
.nd-pr-close {
  padding: 3rem 0;
}

.nd-pr-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.nd-pr-gallery__item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}

.nd-pr-gallery__item--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.nd-pr-gallery__img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}

.nd-pr-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.nd-pr-amenities li {
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
}

.nd-pr-services__editorial {
  display: grid;
  gap: 2rem;
}

.nd-pr-service {
  display: grid;
  grid-template-columns: auto 1fr 1.1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--nd-line);
}

.nd-pr-service__num {
  font-family: var(--nd-display);
  font-size: 2.5rem;
  color: var(--nd-warm);
  line-height: 1;
  opacity: 0.65;
}

.nd-pr-services__support {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--nd-line);
  font-size: 0.88rem;
  color: var(--nd-muted);
}

.nd-pr-services__support span::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--nd-warm);
}

.nd-pr-services__support span:first-child::before {
  content: none;
}

.nd-pr-consult__num {
  font-family: var(--nd-display);
  font-size: 1.25rem;
  color: var(--nd-warm);
  opacity: 0.7;
}

.nd-pr-consult__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.nd-pr-review__quote {
  font-family: var(--nd-display);
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.35;
  margin: 0 0 1rem;
}

.nd-pr-review__meta {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.nd-pr-service__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.nd-pr-service a {
  color: var(--nd-gold);
  font-weight: 700;
  text-decoration: none;
}

.nd-pr-consult__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.nd-pr-consult__steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.nd-pr-consult__steps li {
  display: grid;
  gap: 0.15rem;
}

.nd-pr-consult__photo {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nd-pr-providers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.nd-pr-provider {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
}

.nd-pr-provider__photo {
  border-radius: 12px;
  overflow: hidden;
}

.nd-pr-provider__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.nd-pr-provider ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--nd-muted);
}

.nd-pr-review {
  background: var(--nd-navy);
  color: #fff;
  text-align: center;
}

.nd-pr-review blockquote {
  margin: 0 auto;
  max-width: 52ch;
}

.nd-pr-close {
  text-align: center;
  background: linear-gradient(180deg, var(--nd-cream), var(--nd-white));
}

.nd-pr-close__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.nd-pr-close__location {
  font-size: 0.82rem;
  color: var(--nd-muted);
}

/* Footer */
.nd-footer {
  padding: 2.5rem 0 1rem;
  background: var(--nd-navy);
  color: rgba(255, 255, 255, 0.82);
}

.nd-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.nd-footer__brand {
  font-family: var(--nd-display);
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 0.35rem;
}

.nd-footer__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.5rem;
}

.nd-footer a {
  color: #fff;
}

.nd-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
}

.nd-footer__links li + li {
  margin-top: 0.35rem;
}

.nd-footer__legal {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.nd-footer .nd-btn {
  margin-bottom: 0.5rem;
}

/* Mobile bar */
.nd-mobile-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--nd-line);
  background: var(--nd-white);
}

.nd-mobile-bar a {
  padding: 0.85rem;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.88rem;
}

.nd-mobile-bar__book {
  background: var(--nd-sage);
  color: #fff;
}

.nd-mobile-bar__call {
  color: var(--nd-navy);
  border-left: 1px solid var(--nd-line);
}

/* Responsive */
@media (max-width: 900px) {
  .nd-nav-toggle {
    display: block;
  }

  .nd-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--nd-white);
    border-bottom: 1px solid var(--nd-line);
    box-shadow: 0 12px 30px rgba(10, 40, 56, 0.08);
  }

  .nd-nav.is-open {
    display: flex;
  }

  .nd-header__inner {
    position: relative;
    flex-wrap: wrap;
  }

  .nd-af-hero__grid,
  .nd-af-spotlight__grid,
  .nd-af-reviews__layout,
  .nd-af-services__editorial,
  .nd-af-service--large,
  .nd-af-service--medium,
  .nd-af-patient__grid,
  .nd-af-credentials__grid,
  .nd-bk-hero__grid,
  .nd-bk-insurance__grid,
  .nd-bk-team__layout,
  .nd-bk-reassure__grid,
  .nd-pr-service,
  .nd-pr-consult__grid,
  .nd-pr-providers__grid,
  .nd-pr-provider,
  .nd-footer__grid {
    grid-template-columns: 1fr;
  }

  .nd-pr-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nd-pr-gallery__item--feature {
    grid-column: span 2;
    grid-row: span 1;
  }

  .nd-pr-service:nth-child(even) {
    direction: ltr;
  }

  .nd-af-doctor {
    grid-template-columns: 1fr;
  }

  .nd-af-doctor__photo {
    max-width: 280px;
  }

  .nd-bk-reassure__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nd-bk-paths__grid,
  .nd-bk-first-visit__steps {
    grid-template-columns: 1fr;
  }

  .nd-bk-team-card {
    grid-template-columns: 72px 1fr;
  }

  .nd-mobile-bar {
    display: grid;
  }

  .nd--booking-first {
    padding-bottom: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nd-btn,
  .nd-bk-path,
  .nd-booking__type {
    transition: none;
  }
}
