:root {
  --nl-primary: #00C1CA;
  --nl-primary-ink: #00949B;
  --nl-text: #2A2A2A;
  --nl-dark: #05051C;
  --nl-dark-alt: #080823;
  --nl-off-white: #FFFFFF;
  --nl-light-gray: #F3F3F3;
  --nl-mist: #C8D5DC;
  --nl-white: #FFFFFF;
  --nl-card: #F6F8FB;
  --nl-card-border: rgba(5, 5, 28, 0.05);
  --nl-shadow-sm: 0 2px 8px rgba(5, 5, 28, 0.04);
  --nl-shadow-md: 0 8px 32px rgba(5, 5, 28, 0.08);
  --nl-shadow-lg: 0 20px 60px rgba(5, 5, 28, 0.12);
  --nl-radius-sm: 12px;
  --nl-radius-md: 20px;
  --nl-radius-lg: 28px;
  --nl-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nl-t-fast: 220ms;
  --nl-t-base: 400ms;
  --nl-t-slow: 700ms;
  --nl-shadow-primary: 0 12px 32px -8px rgba(0, 193, 202, 0.45);
  --nl-shadow-xl: 0 40px 80px -24px rgba(5, 5, 28, 0.25), 0 20px 40px -12px rgba(5, 5, 28, 0.15);
  /* Section rhythm tokens — single source of truth.
     Use padding-block on section wrappers. Never pair with margin. */
  --nl-section-pad: clamp(112px, 13vh, 176px);
  --nl-section-pad-sm: clamp(72px, 9vh, 104px);
  --nl-hero-pad: clamp(96px, 12vh, 140px);
  --nl-hero-pad-sm: clamp(72px, 10vh, 100px);
  --nl-page-hero-pad-top: clamp(104px, 14vh, 160px);
  --nl-page-hero-pad-bottom: clamp(72px, 10vh, 112px);
  /* Heading-to-body vertical rhythm */
  --nl-rhythm-eyebrow: 16px;
  --nl-rhythm-heading: 24px;
  --nl-h2-size: clamp(30px, 3.4vw, 48px);
  --nl-h2-hero: clamp(40px, 5vw, 72px);
}

html { scroll-behavior: auto; overflow-x: clip; }
body { font-feature-settings: "ss01", "cv11"; -webkit-font-smoothing: antialiased; line-height: 1.65; overflow-x: clip; }

/* Elementor Kit (.elementor-kit-N a) sets color:var(--e-global-color-accent) at
   specificity (0,1,1) on every anchor in the document — enough to override our
   single-class rules like .nl-hero__cta-primary (0,1,0). Reset it with an
   equal-specificity rule that loads later, so our buttons' explicit color
   rules below (using a.class selectors, specificity 0,1,1) win by source order. */
[class*="elementor-kit-"] a { color: inherit; }

/* Slim teal top bar with clinic contact + hours. Sits above the transparent
   header; both overlap the hero. */
.nl-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: var(--nl-primary);
  color: #FFFFFF;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 10px clamp(20px, 4vw, 48px);
  box-sizing: border-box;
}
.nl-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.nl-topbar__group {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  flex-wrap: wrap;
}
.nl-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 220ms var(--nl-ease-out-expo);
}
.nl-topbar__item:hover { opacity: 0.85; }
.nl-topbar__item svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 720px) {
  .nl-topbar { font-size: 12px; padding: 8px 16px; }
  .nl-topbar__group:last-child { display: none; }
}

/* Transparent main header floats below the topbar, over the hero. Sticks to
   the top on scroll with a smooth shrink + frosted-glass fade-in. */
.nl-header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent !important;
  transition:
    top 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 360ms ease,
    backdrop-filter 360ms ease,
    -webkit-backdrop-filter 360ms ease,
    box-shadow 360ms ease;
}
.nl-header.is-sticky {
  top: 0;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 8px 28px -14px rgba(5, 5, 28, 0.14);
  border-bottom: 1px solid rgba(5, 5, 28, 0.06);
}
.nl-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
/* Header Book button: keep text crisp white over the teal primary background */
.nl-header .wp-block-button__link,
.nl-header .wp-block-button__link:hover,
.nl-header .wp-block-button__link:focus { color: #FFFFFF !important; }

/* Mobile header: just the logo and hamburger. The Book CTA lives in the
   mobile menu overlay instead so the bar doesn't feel cramped. */
@media (max-width: 720px) {
  .nl-header { padding: 18px 20px !important; }
  .nl-header.is-sticky { padding-top: 14px !important; padding-bottom: 14px !important; }
  .nl-header .wp-block-buttons { display: none; }
  .nl-header > .wp-block-group { justify-content: space-between; }
  .nl-header .nl-logo__img { width: 76px; }
  .nl-header.is-sticky .nl-logo__img { width: 58px; }
}
.nl-logo__img {
  display: block;
  height: auto;
  width: 80px;
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nl-header.is-sticky .nl-logo__img { width: 58px; }
.nl-logo--footer .nl-logo__img { width: 96px; margin-bottom: 16px; }
@media (max-width: 720px) {
  .nl-header {
    top: 36px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .nl-header .wp-block-group.is-layout-flex { gap: 12px; }
  .nl-logo__img { width: 56px; }
  .nl-header.is-sticky .nl-logo__img { width: 44px; }
  /* Keep the Book CTA on one line and sized for thumbs */
  .nl-header .wp-block-button__link {
    padding: 12px 18px !important;
    font-size: 13px;
    white-space: nowrap;
    line-height: 1.2;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Hamburger: WordPress renders a 24px toggle by default. Give it a real
     44x44 tap target without changing the icon size. */
  .nl-header .wp-block-navigation__responsive-container-open {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  /* Responsive modal nav: readable typography + full-bleed panel */
  .wp-block-navigation__responsive-container.is-menu-open {
    padding: 24px !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding-top: 48px;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    padding: 12px 0;
    font-size: 18px;
  }
  .wp-block-navigation__responsive-container-close {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }
}

/* Kill the default WordPress block-gap between top-level sections on all
   theme pages. Sections own their vertical rhythm via padding-block. */
main.wp-block-group > * + *,
main.wp-block-group.is-layout-flow > * + *,
main.wp-block-group > .pin-spacer,
.wp-site-blocks > main + *,
body > .wp-site-blocks > * + * { margin-block-start: 0; }

/* Link hover across sections */
.nl-footer a:hover,
.nl-contact-split__info a:hover { color: var(--nl-primary-ink); }

/* Footer link list (Services column, etc.) */
.nl-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--nl-text);
  font-size: 15px;
  line-height: 1.8;
}
.nl-footer__links li + li { margin-top: 6px; }
.nl-footer__links a {
  color: inherit;
  text-decoration: none;
  transition: color 220ms var(--nl-ease-out-expo);
}
.nl-footer__links a:hover { color: var(--nl-primary-ink); }

/* Blog pagination */
.nl-pagination,
.nl-page-blog .nl-pagination,
.nl-page-section .nl-pagination {
  margin: clamp(48px, 6vw, 80px) auto 0 !important;
  padding: clamp(32px, 4vw, 48px) 0 0 !important;
  border-top: 1px solid var(--nl-card-border) !important;
  display: flex !important;
  justify-content: center !important;
  max-width: none !important;
  width: 100% !important;
}
.nl-pagination ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: center !important;
}
.nl-pagination li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nl-pagination li::before,
.nl-pagination li::marker {
  content: none !important;
  display: none !important;
}
.nl-pagination a,
.nl-pagination span.page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  color: var(--nl-dark);
  background: var(--nl-white);
  border: 1px solid var(--nl-card-border);
  box-shadow: var(--nl-shadow-sm);
  transition: background-color 220ms var(--nl-ease-out-expo), color 220ms var(--nl-ease-out-expo), transform 220ms var(--nl-ease-out-expo), box-shadow 220ms var(--nl-ease-out-expo), border-color 220ms var(--nl-ease-out-expo);
}
.nl-pagination a:hover {
  background: var(--nl-primary);
  color: var(--nl-white);
  border-color: var(--nl-primary);
  transform: translateY(-2px);
  box-shadow: var(--nl-shadow-primary);
}
.nl-pagination span.page-numbers.current {
  background: var(--nl-primary);
  color: var(--nl-white);
  border-color: var(--nl-primary);
  box-shadow: var(--nl-shadow-primary);
}
.nl-pagination .prev,
.nl-pagination .next {
  padding: 0 22px;
  letter-spacing: 0.01em;
}
.nl-pagination span.dots {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  min-width: auto;
  padding: 0 4px;
  color: var(--nl-text);
  opacity: 0.5;
}

/* WooCommerce shop — live product grid wrapper.
   Beat .nl-page-section's 1080px child cap with !important so products use the
   full 1280px grid and align flush with the hero text above. */
.nl-shop-live.nl-page-section { padding-block: 0 clamp(64px, 8vw, 112px) !important; }
.nl-shop-live > .nl-shop-live__inner,
.nl-page-section.nl-shop-live > .nl-shop-live__inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding-inline: clamp(24px, 5vw, 64px) !important;
  box-sizing: border-box;
}
/* Make the shop's hero match the same 1280px container so its left edge
   lines up with the products grid directly below. */
.nl-page-shop .nl-page-hero--text-only .nl-page-hero__inner {
  max-width: 1280px;
  padding-inline: clamp(24px, 5vw, 64px);
  margin: 0 auto;
  box-sizing: border-box;
}
.nl-page-shop .nl-page-hero--text-only .nl-page-hero__copy {
  max-width: 720px;
  margin: 0;
}
.nl-shop-live .woocommerce { max-width: none; }
.nl-shop-live .woocommerce ul.products,
.nl-shop-live .woocommerce ul.products.columns-1,
.nl-shop-live .woocommerce ul.products.columns-2,
.nl-shop-live .woocommerce ul.products.columns-3,
.nl-shop-live .woocommerce ul.products.columns-4,
.nl-shop-live .woocommerce ul.products.columns-5,
.nl-shop-live .woocommerce ul.products.columns-6 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  gap: clamp(24px, 2.4vw, 40px) !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
/* Kill WooCommerce's clearfix pseudos — they count as grid items and skew layout */
.nl-shop-live .woocommerce ul.products::before,
.nl-shop-live .woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}
.nl-shop-live .woocommerce ul.products li.product {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  grid-column: auto !important;
  background: var(--nl-white);
  border: 1px solid var(--nl-card-border);
  border-radius: var(--nl-radius-md);
  padding: 20px 20px 24px;
  box-shadow: var(--nl-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo), border-color 300ms var(--nl-ease-out-expo);
}
.nl-shop-live .woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--nl-shadow-md);
  border-color: rgba(0, 193, 202, 0.25);
}
.nl-shop-live .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex: 1;           /* push the "add to cart" button to the bottom of the card */
}
.nl-shop-live .woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--nl-radius-sm);
  margin: 0 0 20px;
  background: var(--nl-card);
}
.nl-shop-live .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--nl-dark);
  padding: 0;
  margin: 0 0 10px;
}
.nl-shop-live .woocommerce ul.products li.product .price {
  color: var(--nl-primary-ink);
  font-weight: 700;
  margin: auto 0 0;  /* pin price to the bottom of the inner link, buttons line up below */
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nl-shop-live .woocommerce ul.products li.product .button {
  align-self: flex-start;
  margin-top: 16px;  /* consistent spacing above button regardless of title length */
  background: var(--nl-primary);
  color: var(--nl-white);
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 220ms var(--nl-ease-out-expo), transform 220ms var(--nl-ease-out-expo);
}
.nl-shop-live .woocommerce ul.products li.product .button:hover { background: var(--nl-dark); transform: translateY(-1px); }
@media (max-width: 900px) {
  .nl-shop-live .woocommerce ul.products,
  .nl-shop-live .woocommerce ul.products[class*="columns-"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px) {
  .nl-shop-live .woocommerce ul.products,
  .nl-shop-live .woocommerce ul.products[class*="columns-"] { grid-template-columns: 1fr !important; }
}

/* Tighter hero on shop (text-only hero before product grid) */
.nl-page-shop .nl-page-hero--text-only { padding-bottom: clamp(24px, 3vh, 48px); }

/* Footer social list */
.nl-footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nl-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nl-dark);
  text-decoration: none;
  font-size: 15px;
  transition: color 220ms var(--nl-ease-out-expo);
}
.nl-footer-social a:hover { color: var(--nl-primary-ink); }
.nl-footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--nl-primary-ink);
  flex-shrink: 0;
}

.wp-block-button__link {
  transition: background-color 300ms var(--nl-ease-out-expo), color 300ms var(--nl-ease-out-expo), transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
  box-shadow: var(--nl-shadow-sm);
}
.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--nl-shadow-md);
}

.nl-card {
  background: var(--nl-white);
  border-radius: var(--nl-radius-md);
  padding: 32px;
  box-shadow: var(--nl-shadow-sm);
  transition: transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
  height: 100%;
}
.nl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nl-shadow-md);
}

.nl-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 193, 202, 0.08);
  color: var(--nl-primary-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nl-eyebrow {
  color: var(--nl-primary-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 var(--nl-rhythm-eyebrow);
  display: inline-block;
}
.nl-section--dark .nl-eyebrow,
.has-dark-background-color .nl-eyebrow,
.nl-process .nl-eyebrow,
.nl-gallery .nl-eyebrow,
.nl-hero .nl-eyebrow,
.nl-cta-banner .nl-eyebrow { color: var(--nl-primary); }

/* Canonical section rhythm: padding-block only, no margin on wrapper */
.nl-section {
  margin-block: 0;
  padding-block: var(--nl-section-pad);
}
@media (max-width: 900px) {
  .nl-section { padding-block: var(--nl-section-pad-sm); }
}

.nl-intro {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.75);
  max-width: 640px;
  margin-inline: auto;
}
.nl-section--dark .nl-intro,
.has-dark-background-color .nl-intro { color: rgba(255, 255, 255, 0.75); }

.nl-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.nl-metric__value {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 700;
  line-height: 1;
  color: var(--nl-primary);
  letter-spacing: -0.03em;
}
.nl-metric__label {
  font-size: 16px;
  color: var(--nl-text);
  opacity: 0.7;
}

.nl-stars {
  color: #F5B544;
  font-size: 20px;
  letter-spacing: 2px;
}

.nl-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nl-faq details {
  background: var(--nl-white);
  border: 1px solid var(--nl-mist);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 1px 2px rgba(10, 12, 28, 0.03);
  transition: border-color var(--nl-t-base) var(--nl-ease-out-expo),
              box-shadow var(--nl-t-base) var(--nl-ease-out-expo),
              background-color var(--nl-t-base) var(--nl-ease-out-expo);
}
.nl-faq details:hover {
  border-color: rgba(0, 193, 202, 0.35);
  box-shadow: 0 4px 14px rgba(10, 12, 28, 0.05);
}
.nl-faq details[open] {
  background: linear-gradient(180deg, rgba(0, 193, 202, 0.05), var(--nl-white) 70%);
  border-color: rgba(0, 193, 202, 0.4);
  box-shadow: 0 6px 18px rgba(10, 12, 28, 0.06);
}
.nl-faq summary {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--nl-dark);
  transition: color var(--nl-t-fast) var(--nl-ease-out-expo);
}
.nl-faq summary:hover { color: var(--nl-primary-ink); }
.nl-faq summary::-webkit-details-marker { display: none; }
.nl-faq summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  color: var(--nl-primary);
  transition: transform 300ms var(--nl-ease-out-expo);
}
.nl-faq details[open] summary::after { transform: rotate(45deg); }
.nl-faq details > p {
  margin-top: 16px;
  color: var(--nl-text);
  opacity: 0.8;
  line-height: 1.7;
}

.nl-nav a { position: relative; }
.nl-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--nl-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--nl-ease-out-expo);
}
.nl-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Legacy service-card img reset (new .nl-service-card__media owns sizing) */
.nl-service-card > img {
  border-radius: var(--nl-radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: transform var(--nl-t-slow) var(--nl-ease-out-expo);
}
.nl-service-card:hover > img { transform: scale(1.03); }

.wp-block-image img {
  border-radius: var(--nl-radius-md);
}

.nl-contact-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nl-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nl-contact-form input,
.nl-contact-form textarea {
  display: block;
  margin-top: 6px;
  color: var(--nl-text);
}
.nl-contact-form textarea { resize: vertical; min-height: 120px; }
.nl-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 16px 28px;
  background: var(--nl-primary);
  color: var(--nl-white);
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 300ms var(--nl-ease-out-expo), transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
  box-shadow: var(--nl-shadow-sm);
}
.nl-btn-primary:hover {
  background: var(--nl-dark);
  transform: translateY(-2px);
  box-shadow: var(--nl-shadow-md);
}

form input, form textarea, form select {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 18px;
  border: 1px solid var(--nl-mist);
  border-radius: var(--nl-radius-sm);
  background: var(--nl-white);
  width: 100%;
  box-sizing: border-box;
  color: var(--nl-dark);
  transition: border-color 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
}
form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M5 8l5 5 5-5' stroke='%232A2A2A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; padding-right: 44px; }
form input:focus, form textarea:focus {
  outline: none;
  border-color: var(--nl-primary);
  box-shadow: 0 0 0 4px rgba(0, 193, 202, 0.12);
}

/* =========================================================
   Common Pains — horizontal scroll section
   ========================================================= */

/* Base (shared across viewports) */
.nl-pain-section {
  width: 100%;
  background: var(--nl-off-white);
}
.nl-pain-heading h2 {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--nl-dark);
  margin: 0 0 var(--nl-rhythm-heading);
}
.nl-pain-scroll-hint {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--nl-primary-ink);
  margin-top: var(--nl-rhythm-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 300ms var(--nl-ease-out-expo);
}
@media (max-width: 900px) {
}
.nl-pain-scroll-hint::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  margin-left: 12px;
  display: inline-block;
  animation: nl-pain-hint-pulse 2s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes nl-pain-hint-pulse {
  0%, 100% { transform: scaleX(0.6); transform-origin: left; opacity: 0.4; }
  50%      { transform: scaleX(1);   transform-origin: left; opacity: 1; }
}
.nl-pain-card {
  display: flex;
  flex-direction: column;
  background: var(--nl-white);
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
  box-shadow: var(--nl-shadow-sm);
  transition: transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
}
.nl-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nl-shadow-md);
}
.nl-pain-card__counter {
  display: flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nl-primary-ink);
  margin-bottom: 16px;
}
.nl-pain-card__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nl-primary);
  margin-right: 12px;
}
.nl-pain-card__num {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.nl-pain-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  background: var(--nl-light-gray);
}
.nl-pain-card:not(:has(img)) {
  min-height: 360px;
  justify-content: space-between;
}
.nl-pain-card:not(:has(img))::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 193, 202, 0.22), rgba(0, 193, 202, 0.04));
  margin-bottom: 20px;
}
.nl-pain-card:not(:has(img)) .nl-pain-card__title {
  margin-top: 12px;
}
.nl-pain-card__title {
  font-size: clamp(22px, 1.6vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--nl-dark);
  margin: 0 0 12px;
}
.nl-pain-card__copy {
  font-size: 15px;
  line-height: 1.7;
  color: var(--nl-text);
  opacity: 0.75;
  margin: 0;
}

/* Desktop (min-width: 901px) — horizontal scroll on hover */
@media (min-width: 901px) {
  .nl-pain-section {
    padding-block: clamp(80px, 10vh, 128px);
  }
  .nl-pain-camera { width: 100%; }
  .nl-pain-inner {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 6vh, 64px);
  }
  .nl-pain-heading {
    padding: 0 clamp(32px, 6vw, 96px);
    max-width: 900px;
  }
  .nl-pain-track {
    display: flex;
    align-items: stretch;
    padding: 32px clamp(32px, 6vw, 96px);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .nl-pain-track::-webkit-scrollbar { display: none; }
  .nl-pain-card__img { aspect-ratio: 16 / 11; }
  .nl-pain-card {
    flex: 0 0 clamp(300px, 26vw, 360px);
  }
}

/* Mobile (max-width: 900px) — horizontal touch scroll with card peek */
@media (max-width: 900px) {
  .nl-pain-section {
    height: auto !important;
    padding-block: var(--nl-section-pad-sm);
  }
  .nl-pain-camera {
    position: static;
    height: auto;
    overflow: visible;
  }
  .nl-pain-inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .nl-pain-heading {
    padding: 0 24px;
    max-width: none;
  }
  .nl-pain-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 8px 24px 24px;
    gap: 16px;
    transform: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nl-pain-track::-webkit-scrollbar { display: none; }
  .nl-pain-card {
    flex: 0 0 82%;
    width: 82%;
    padding: 24px;
    scroll-snap-align: center;
  }
  .nl-pain-card:not(:has(img)) { min-height: 0; }

  /* Swipe progress bar + hint below the carousel */
  .nl-pain-mobile-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    margin-top: 4px;
  }
  .nl-pain-mobile-track {
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: rgba(5, 5, 28, 0.08);
    overflow: hidden;
    position: relative;
  }
  .nl-pain-mobile-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 16%;
    background: var(--nl-primary);
    border-radius: inherit;
    transition: width 220ms var(--nl-ease-out-expo);
  }
  .nl-pain-mobile-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--nl-primary-ink);
    white-space: nowrap;
  }
  .nl-pain-mobile-hint svg {
    width: 16px;
    height: 16px;
    animation: nl-swipe-hint 1.8s ease-in-out infinite;
  }
  .nl-pain-scroll-hint { display: none; }
}
@media (min-width: 901px) {
  .nl-pain-mobile-progress { display: none; }
}

/* Reduced motion — defeat pinning and horizontal translate */
@media (prefers-reduced-motion: reduce) {
  .nl-pain-section {
    height: auto !important;
  }
  .nl-pain-camera {
    position: static;
    height: auto;
    overflow: visible;
  }
  .nl-pain-track {
    transform: none !important;
    flex-direction: column;
    gap: 16px;
  }
  .nl-pain-card {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* =========================================================
   Your Journey — pinned stage with zoom/crossfade
   ========================================================= */

/* Base (shared across viewports) */
.nl-process {
  position: relative;
  width: 100%;
  background: var(--nl-off-white);
}
.nl-process__eyebrow-top {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.nl-process__headline {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  color: var(--nl-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 640px;
}
.nl-process__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.nl-process__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transform-origin: center;
  will-change: transform;
}
.nl-process__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 28, 0.25) 0%, rgba(5, 5, 28, 0.55) 50%, rgba(5, 5, 28, 0.85) 100%);
  pointer-events: none;
}
.nl-process__content {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vw, 120px);
  max-width: 720px;
  color: var(--nl-white);
}
.nl-process__step-number {
  display: inline-block;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 700;
  line-height: 1;
  color: var(--nl-white);
  opacity: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}
.nl-process__step-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nl-primary);
  margin-bottom: 24px;
}
.nl-process__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--nl-white);
  max-width: 640px;
}
.nl-process__copy {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0;
}
.nl-process__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  padding: 16px 28px;
  background: var(--nl-primary);
  color: var(--nl-white);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition: transform 300ms var(--nl-ease-out-expo), background-color 300ms var(--nl-ease-out-expo);
}
.nl-process__cta:hover {
  background: var(--nl-white);
  color: var(--nl-dark);
  transform: translateY(-2px);
}
.nl-process__dots {
  position: absolute;
  bottom: clamp(32px, 5vh, 56px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.nl-process__dots span {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 300ms var(--nl-ease-out-expo);
}
.nl-process__dots span.is-active {
  background: var(--nl-primary);
}

/* Last step has a CTA button; shrink its number and tighten CTA spacing so the
   content stays clear of the pinned section heading at the top. */
@media (min-width: 901px) {
  .nl-process__step:last-child .nl-process__step-number,
  .nl-process__step:has(.nl-process__cta) .nl-process__step-number {
    font-size: clamp(56px, 6.2vw, 96px);
  }
  .nl-process__step:last-child .nl-process__cta,
  .nl-process__step:has(.nl-process__cta) .nl-process__cta {
    margin-top: 20px;
  }
}

/* Desktop (min-width: 901px) — pinned stage with crossfade + zoom */
@media (min-width: 901px) {
  /* Section = one viewport tall with dark padding around the contained stage. */
  .nl-process {
    height: 100vh;
    padding: clamp(40px, 6vh, 72px) clamp(32px, 5vw, 80px);
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .nl-process__stage {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    border-radius: clamp(20px, 2vw, 28px);
    overflow: hidden;
    display: block;
    box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.4);
  }
  .nl-process__heading-layer {
    position: absolute;
    top: clamp(32px, 5vh, 56px);
    left: clamp(28px, 4vw, 56px);
    z-index: 5;
    pointer-events: none;
  }
  .nl-process__steps {
    position: absolute;
    inset: 0;
  }
  .nl-process__step {
    position: absolute;
    inset: 0;
    opacity: 0;
    will-change: opacity;
    display: flex;
    align-items: flex-end;
  }
  .nl-process__step.is-current {
    opacity: 1;
  }
  .nl-process__dots {
    bottom: clamp(24px, 3vh, 40px);
  }
}

/* Mobile (max-width: 900px) — horizontal swipe carousel with progress bar */
@media (max-width: 900px) {
  .nl-process {
    height: auto !important;
    padding-block: var(--nl-section-pad-sm);
  }
  /* Heading sits above the image stage on light bg, so invert colors. */
  .nl-process__headline { color: var(--nl-dark); }
  .nl-process__eyebrow-top { color: var(--nl-primary-ink); }
  .nl-process__stage {
    position: static;
    height: auto;
    width: auto;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 32px);
  }
  .nl-process__heading-layer {
    position: static;
    padding: 0 24px;
    margin-bottom: 0;
  }
  .nl-process__steps {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
    padding: 4px 24px 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nl-process__steps::-webkit-scrollbar { display: none; }
  .nl-process__step {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    flex: 0 0 82%;
    width: 82%;
    border-radius: var(--nl-radius-md);
    overflow: hidden;
    min-height: clamp(400px, 62vw, 540px);
    display: flex;
    align-items: flex-end;
    scroll-snap-align: center;
  }
  .nl-process__bg { transform: none !important; }
  .nl-process__content {
    padding: clamp(28px, 6vw, 40px) clamp(24px, 6vw, 32px);
  }
  .nl-process__step-label { margin-bottom: var(--nl-rhythm-heading); }
  .nl-process__title {
    font-size: 28px;
    margin: 0 0 var(--nl-rhythm-heading);
  }
  /* Progress bar + swipe hint below the carousel */
  .nl-process__mobile-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    margin-top: 8px;
  }
  .nl-process__mobile-track {
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: rgba(5, 5, 28, 0.08);
    overflow: hidden;
    position: relative;
  }
  .nl-process__mobile-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 25%;
    background: var(--nl-primary);
    border-radius: inherit;
    transition: width 220ms var(--nl-ease-out-expo);
  }
  .nl-process__mobile-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--nl-primary-ink);
    white-space: nowrap;
  }
  .nl-process__mobile-hint svg {
    width: 16px;
    height: 16px;
    animation: nl-swipe-hint 1.8s ease-in-out infinite;
  }
  @keyframes nl-swipe-hint {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50%      { transform: translateX(8px); opacity: 1; }
  }
  .nl-process__dots { display: none; }
}
@media (min-width: 901px) {
  .nl-process__mobile-progress { display: none; }
}

/* Reduced motion — neutralize pinning, zoom, and crossfade */
@media (prefers-reduced-motion: reduce) {
  .nl-process {
    height: auto !important;
  }
  .nl-process__stage {
    position: static !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
  }
  .nl-process__heading-layer {
    position: static !important;
    padding: 64px 24px 16px;
  }
  .nl-process__steps {
    position: static !important;
    inset: auto !important;
    display: flex;
    flex-direction: column;
  }
  .nl-process__step {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
  }
  .nl-process__bg {
    transform: none !important;
  }
}

/* ========== Services Gallery — flex-grow hover expansion ========== */

/* Base (all viewports) */
.nl-gallery {
  width: 100%;
  background: var(--nl-off-white);
  color: var(--nl-dark);
}
.nl-gallery__heading-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: var(--nl-section-pad) clamp(24px, 5vw, 64px) clamp(32px, 5vh, 56px);
  text-align: center;
}
@media (max-width: 900px) {
  .nl-gallery__heading-wrap {
    padding: var(--nl-section-pad-sm) 24px clamp(24px, 4vw, 40px);
  }
}
.nl-gallery__heading-wrap .nl-eyebrow {
  color: var(--nl-primary-ink);
  margin: 0 auto 16px;
  display: inline-block;
}
.nl-gallery__headline {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 20px;
  color: var(--nl-dark);
}
.nl-gallery__subhead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.75);
  max-width: 640px;
  margin: 0 auto;
}

/* Desktop (min-width: 901px) — flex row with hover expansion */
@media (min-width: 901px) {
  .nl-gallery__list {
    display: flex;
    width: 100%;
    height: clamp(520px, 70vh, 720px);
    align-items: stretch;
  }
  .nl-gallery__card {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--nl-white);
    transition: flex var(--nl-t-base) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    min-width: 0;
  }
  .nl-gallery__card:hover,
  .nl-gallery__card:focus-visible {
    flex: 3.2;
    outline: none;
  }
  .nl-gallery__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 28, 0) 0%, rgba(5, 5, 28, 0.2) 40%, rgba(5, 5, 28, 0.85) 100%);
    z-index: 2;
    transition: opacity 400ms var(--nl-ease-out-expo);
  }
  .nl-gallery__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 600ms var(--nl-ease-out-expo), filter 400ms var(--nl-ease-out-expo);
    filter: brightness(0.85) saturate(0.95);
    z-index: 1;
  }
  .nl-gallery__card:hover .nl-gallery__img,
  .nl-gallery__card:focus-visible .nl-gallery__img {
    transform: scale(1.0);
    filter: brightness(1) saturate(1);
  }
  .nl-gallery__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 28, 0.15) 0%, rgba(5, 5, 28, 0.5) 100%);
    z-index: 2;
    transition: opacity 400ms var(--nl-ease-out-expo);
  }
  .nl-gallery__body {
    position: relative;
    z-index: 3;
    padding: clamp(24px, 3vw, 40px);
    width: 100%;
  }
  .nl-gallery__tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--nl-white);
    margin-bottom: 16px;
  }
  .nl-gallery__title {
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--nl-white);
    letter-spacing: -0.01em;
  }
  .nl-gallery__copy {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 440px;
    margin: 0 0 20px;
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
    overflow: hidden;
    transition: max-height 500ms var(--nl-ease-out-expo), opacity 400ms var(--nl-ease-out-expo) 100ms, transform 500ms var(--nl-ease-out-expo);
  }
  .nl-gallery__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nl-primary);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 400ms var(--nl-ease-out-expo) 150ms, transform 400ms var(--nl-ease-out-expo) 150ms;
  }
  .nl-gallery__card:hover .nl-gallery__copy,
  .nl-gallery__card:focus-visible .nl-gallery__copy {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
  }
  .nl-gallery__card:hover .nl-gallery__cta,
  .nl-gallery__card:focus-visible .nl-gallery__cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile (max-width: 900px) — stack vertically, always-visible body */
@media (max-width: 900px) {
  .nl-gallery {
    padding-bottom: var(--nl-section-pad-sm);
  }
  .nl-gallery__list {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: clamp(16px, 3vw, 24px);
    padding: 0 24px;
  }
  .nl-gallery__card {
    position: relative;
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: var(--nl-radius-md);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--nl-white);
    transition: none;
  }
  .nl-gallery__card:hover {
    flex: 1 1 auto;
  }
  .nl-gallery__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 28, 0) 0%, rgba(5, 5, 28, 0.2) 40%, rgba(5, 5, 28, 0.85) 100%);
    z-index: 2;
  }
  .nl-gallery__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    filter: none;
    z-index: 1;
  }
  .nl-gallery__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 28, 0.15) 0%, rgba(5, 5, 28, 0.5) 100%);
    z-index: 2;
  }
  .nl-gallery__body {
    position: relative;
    z-index: 3;
    padding: clamp(24px, 5vw, 32px);
    width: 100%;
  }
  .nl-gallery__tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--nl-white);
    margin-bottom: 16px;
  }
  .nl-gallery__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--nl-white);
    letter-spacing: -0.01em;
  }
  .nl-gallery__copy {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 440px;
    margin: 0 0 20px;
    max-height: none;
    opacity: 1;
    transform: none;
  }
  .nl-gallery__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nl-primary);
    max-height: none;
    opacity: 1;
    transform: none;
  }
}

/* Reduced motion — disable transitions, show all body content */
@media (prefers-reduced-motion: reduce) {
  .nl-gallery__card,
  .nl-gallery__img,
  .nl-gallery__copy,
  .nl-gallery__cta {
    transition: none !important;
  }
  .nl-gallery__copy,
  .nl-gallery__cta {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .nl-gallery__img {
    transform: scale(1.0) !important;
    filter: none !important;
  }
}

/* ========== Hero — show-stopper ========== */

.nl-hero {
  position: relative;
  width: 100%;
  min-height: auto;
  margin-block: 0;
  padding-top: calc(var(--nl-hero-pad) + clamp(56px, 7vh, 96px));
  padding-bottom: var(--nl-hero-pad);
  padding-inline: clamp(24px, 5vw, 64px);
  overflow: hidden;
  background: var(--nl-off-white);
  color: var(--nl-dark);
  isolation: isolate;
}

.nl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.nl-hero__gradient {
  position: absolute;
  top: -20vh;
  right: -10vw;
  width: 70vw;
  height: 90vh;
  background: radial-gradient(ellipse at center, rgba(0, 193, 202, 0.16) 0%, rgba(0, 193, 202, 0.06) 35%, transparent 65%);
  filter: blur(8px);
}
.nl-hero__dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(5, 5, 28, 0.12) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 20% 120%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 20% 120%, #000 30%, transparent 70%);
}
.nl-hero__watermark {
  position: absolute;
  bottom: -8vw;
  right: -6vw;
  width: clamp(320px, 44vw, 640px);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  filter: grayscale(30%);
}

.nl-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* ---- left: copy ---- */

.nl-hero__copy {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nl-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: rgba(0, 193, 202, 0.10);
  color: var(--nl-primary-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background-color 300ms var(--nl-ease-out-expo), transform 300ms var(--nl-ease-out-expo);
  backdrop-filter: blur(6px);
}
.nl-hero__pill:hover {
  background: rgba(0, 193, 202, 0.18);
  transform: translateY(-1px);
}
.nl-hero__pill-stars {
  color: #F5B544;
  letter-spacing: 1px;
  font-size: 12px;
}
.nl-hero__pill-text strong {
  font-weight: 700;
  color: var(--nl-dark);
  margin-right: 4px;
}

.nl-hero__title {
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--nl-dark);
  margin: 0 0 32px;
  word-break: normal;
  text-wrap: balance;
  max-width: 100%;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}
.nl-hero__title .char {
  vertical-align: bottom;
  line-height: 1;
}
.nl-hero__mark {
  display: inline;
  position: relative;
  color: var(--nl-primary-ink);
  white-space: nowrap;
}
.nl-hero__mark-word { position: relative; z-index: 2; }
.nl-hero__mark-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  width: 100%;
  height: 0.16em;
  color: var(--nl-primary);
  z-index: 1;
  pointer-events: none;
}
.nl-hero__mark-underline path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: nl-hero-underline 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}
@keyframes nl-hero-underline {
  to { stroke-dashoffset: 0; }
}

.nl-hero__sub {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.8);
  max-width: 560px;
  margin: 0 0 40px;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
}

.nl-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-bottom: 56px;
}

.nl-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--nl-primary);
  color: var(--nl-white);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  box-shadow: var(--nl-shadow-primary);
  transition: transform var(--nl-t-fast) var(--nl-ease-out-expo), box-shadow var(--nl-t-fast) var(--nl-ease-out-expo), background-color var(--nl-t-fast) var(--nl-ease-out-expo);
}
.nl-hero__cta-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 300ms var(--nl-ease-out-expo);
}
.nl-hero__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(0, 193, 202, 0.55);
  background: var(--nl-dark);
}
.nl-hero__cta-primary:hover svg {
  transform: translateX(4px);
}

.nl-hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nl-dark);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
}
.nl-hero__cta-ghost span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--nl-dark);
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: transform 400ms var(--nl-ease-out-expo);
}
.nl-hero__cta-ghost:hover span::after {
  transform: scaleX(1);
}

.nl-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(5, 5, 28, 0.08);
  max-width: 560px;
}
.nl-hero__trust li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nl-hero__trust strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--nl-dark);
  letter-spacing: -0.01em;
}
.nl-hero__trust span {
  font-size: 13px;
  color: rgba(42, 42, 42, 0.65);
  font-weight: 500;
}

/* ---- right: visual ---- */

.nl-hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.nl-hero__accent-square {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 72%;
  height: 72%;
  border: 2px solid var(--nl-primary);
  border-radius: 28px;
  z-index: 1;
  opacity: 0.9;
}

.nl-hero__frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--nl-shadow-xl);
  z-index: 2;
  transform: translate3d(20px, 20px, 0);
  transition: box-shadow 400ms var(--nl-ease-out-expo);
}
.nl-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 45%, rgba(5,5,28,0.08) 100%);
  mix-blend-mode: overlay;
  opacity: 0.85;
}
.nl-hero__visual:hover .nl-hero__frame { box-shadow: 0 40px 80px -20px rgba(5, 5, 28, 0.35); }
.nl-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nl-hero__floating-card {
  position: absolute;
  left: -20px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 14px;
  background: var(--nl-white);
  border-radius: 18px;
  box-shadow: 0 20px 40px -12px rgba(5, 5, 28, 0.22);
  z-index: 3;
  backdrop-filter: blur(10px);
  transform: translate3d(var(--nl-cx, 0px), var(--nl-cy, 0px), 60px);
  transition: box-shadow 300ms var(--nl-ease-out-expo), transform 300ms var(--nl-ease-out-expo);
  will-change: transform;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.nl-hero__floating-card:hover { box-shadow: 0 28px 52px -14px rgba(5, 5, 28, 0.3); }
.nl-hero__floating-card-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--nl-mist);
}
.nl-hero__floating-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nl-hero__floating-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--nl-dark);
  margin: 0 0 2px;
  line-height: 1.2;
}
.nl-hero__floating-card-role {
  font-size: 12px;
  color: rgba(42, 42, 42, 0.6);
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}

.nl-hero__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--nl-primary);
  z-index: 4;
  animation: nl-hero-dot-float 4s ease-in-out infinite;
}
.nl-hero__dot--1 {
  top: 8%;
  left: -24px;
  width: 14px; height: 14px;
  animation-delay: 0s;
}
.nl-hero__dot--2 {
  top: 45%;
  right: -28px;
  width: 10px; height: 10px;
  background: var(--nl-dark);
  animation-delay: 1.2s;
}
.nl-hero__dot--3 {
  bottom: 6%;
  right: 12%;
  width: 8px; height: 8px;
  background: rgba(0, 193, 202, 0.55);
  animation-delay: 2.4s;
}
@keyframes nl-hero-dot-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(3px, -10px); }
}

.nl-hero__corner-mark {
  position: absolute;
  top: -40px;
  left: -36px;
  width: 64px;
  height: 64px;
  color: var(--nl-primary);
  z-index: 4;
  opacity: 0.85;
}

/* ---- responsive ---- */

@media (max-width: 1100px) {
  .nl-hero__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .nl-hero__copy { max-width: 720px; }
  .nl-hero__visual { max-width: 480px; }
}

@media (max-width: 720px) {
  .nl-hero {
    min-height: auto;
    /* Account for topbar (36) + compact header (~72) with breathing room. */
    padding-top: calc(var(--nl-hero-pad-sm) + clamp(24px, 4vh, 44px));
    padding-bottom: var(--nl-hero-pad-sm);
    padding-inline: 20px;
  }
  .nl-hero__inner { gap: 44px; }
  .nl-hero__title {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.05;
  }
  .nl-hero__sub { font-size: 16px; margin-bottom: 28px; }
  .nl-hero__cta-row { gap: 12px 20px; margin-bottom: 36px; }
  .nl-hero__cta-primary { padding: 14px 22px; font-size: 15px; min-height: 48px; }
  .nl-hero__cta-ghost { min-height: 44px; padding: 10px 0; }
  .nl-hero__trust { gap: 12px 24px; padding-top: 24px; }
  .nl-hero__trust strong { font-size: 16px; }
  .nl-hero__visual { max-width: 100%; aspect-ratio: 4 / 5; }
  .nl-hero__accent-square { top: -10px; right: -10px; border-radius: 20px; }
  .nl-hero__frame { border-radius: 20px; transform: translate(10px, 10px); }
  .nl-hero__floating-card {
    left: 8px;
    bottom: -12px;
    padding: 10px 14px 10px 10px;
    border-radius: 14px;
    max-width: calc(100% - 32px);
  }
  .nl-hero__floating-card-avatar { width: 38px; height: 38px; }
  .nl-hero__floating-card-name { font-size: 13px; }
  .nl-hero__floating-card-role { font-size: 11px; }
  .nl-hero__dot--1 { left: -8px; width: 10px; height: 10px; }
  .nl-hero__dot--2 { right: -8px; }
  .nl-hero__corner-mark { top: -24px; left: -20px; width: 44px; height: 44px; }
  .nl-hero__watermark { width: 260px; bottom: -40px; right: -40px; opacity: 0.1; }
}

/* Reduced motion — freeze floats and underline draw */
@media (prefers-reduced-motion: reduce) {
  .nl-hero__floating-card,
  .nl-hero__dot { animation: none !important; }
  .nl-hero__mark-underline path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: none;
  }
}

/* Blog card featured image */
.nl-blog-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
  background: var(--nl-light-gray);
}

/* Impact Metrics: light proof strip */
.nl-metrics-section {
  background: var(--nl-off-white) !important;
  color: var(--nl-dark) !important;
  position: relative;
}
.nl-metrics-section::before,
.nl-metrics-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--nl-mist);
}
.nl-metrics-section::before { top: 0; }
.nl-metrics-section::after  { bottom: 0; }

.nl-metrics-section .nl-eyebrow { color: var(--nl-primary-ink); }
.nl-metrics-section h2 { color: var(--nl-dark); }

.nl-metrics-intro {
  max-width: 820px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.nl-metrics-intro h2 {
  font-size: var(--nl-h2-size);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--nl-rhythm-heading);
  color: var(--nl-dark);
}
.nl-metrics-intro p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.75);
  margin: 0;
}

.nl-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
  position: relative;
}
.nl-metrics-grid > .nl-metric {
  position: relative;
  padding-inline: clamp(16px, 3vw, 32px);
}
.nl-metrics-grid > .nl-metric + .nl-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--nl-mist);
}
.nl-metrics-section .nl-metric__value {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--nl-primary-ink);
  letter-spacing: -0.035em;
  line-height: 1;
}
.nl-metrics-section .nl-metric__label {
  font-size: 13px;
  color: rgba(42, 42, 42, 0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 14px;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .nl-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
    padding: 0 24px;
  }
  .nl-metrics-grid > .nl-metric + .nl-metric::before { display: none; }
  .nl-metrics-grid > .nl-metric:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 20%;
    width: 1px;
    height: 60%;
    background: var(--nl-mist);
  }
  .nl-metrics-section .nl-metric__value { font-size: clamp(36px, 10vw, 48px); }
}

/* FAQ: soft surface */
.nl-faq-section {
  background: var(--nl-off-white);
}

/* ========== Quote interstitial ========== */
.nl-quote {
  background: var(--nl-off-white);
  margin-block: 0;
  padding-top: calc(var(--nl-section-pad) + clamp(40px, 5vh, 72px));
  padding-bottom: var(--nl-section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .nl-quote {
    padding-top: calc(var(--nl-section-pad-sm) + clamp(24px, 4vh, 40px));
    padding-bottom: var(--nl-section-pad-sm);
  }
}
.nl-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: var(--nl-mist);
}
.nl-quote__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: clamp(24px, 5vw, 48px);
  position: relative;
}
.nl-quote__mark {
  width: 42px;
  height: auto;
  color: var(--nl-primary);
  opacity: 0.5;
  margin: 0 auto 32px;
  display: block;
}
.nl-quote__text {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--nl-dark);
  margin: 0 0 40px;
  text-wrap: balance;
}
.nl-quote__attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.nl-quote__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--nl-dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.nl-quote__role {
  font-size: 13px;
  color: rgba(42, 42, 42, 0.6);
  margin: 0;
  font-weight: 500;
}
@media (max-width: 720px) {
  .nl-quote__mark { width: 32px; margin-bottom: 24px; }
  .nl-quote__text { margin-bottom: 28px; }
}

/* Testimonial slider */
.nl-quote__slider {
  position: relative;
}
.nl-quote__slide {
  margin: 0;
  opacity: 0;
  transition: opacity 700ms var(--nl-ease-out-expo);
  pointer-events: none;
}
.nl-quote__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.nl-quote__slide:not(.is-active) {
  position: absolute;
  inset: 0;
}
.nl-quote__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(32px, 4vw, 48px);
}
.nl-quote__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(5, 5, 28, 0.15);
  cursor: pointer;
  transition: background-color 300ms var(--nl-ease-out-expo), transform 300ms var(--nl-ease-out-expo);
}
.nl-quote__dots button:hover { transform: scale(1.3); }
.nl-quote__dots button.is-active {
  background: var(--nl-primary);
  transform: scale(1.3);
}

/* ========== Hero: 3D depth + parallax decor ========== */
.nl-hero__bg .nl-hero__orb,
.nl-hero__bg .nl-hero__shape,
.nl-hero__visual .nl-hero__shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  transition: opacity var(--nl-t-slow) var(--nl-ease-out-expo);
}

/* --- Soft gradient orbs (pseudo-3D via radial gradient) --- */
.nl-hero__orb {
  border-radius: 50%;
  filter: blur(1px);
}
.nl-hero__orb--1 {
  top: 12%;
  right: 10%;
  width: clamp(220px, 28vw, 360px);
  height: clamp(220px, 28vw, 360px);
  background: radial-gradient(circle at 35% 35%,
    rgba(0, 193, 202, 0.32) 0%,
    rgba(0, 193, 202, 0.12) 35%,
    rgba(0, 193, 202, 0.0) 70%);
  opacity: 0.6;
}
.nl-hero__orb--2 {
  bottom: 14%;
  left: 6%;
  width: clamp(160px, 20vw, 240px);
  height: clamp(160px, 20vw, 240px);
  background: radial-gradient(circle at 30% 30%,
    rgba(5, 5, 28, 0.10) 0%,
    rgba(5, 5, 28, 0.04) 40%,
    rgba(5, 5, 28, 0.0) 70%);
  opacity: 0.7;
}

/* --- Abstract SVG icon shapes --- */
.nl-hero__shape {
  height: auto;
  display: block;
}
.nl-hero__shape--ring {
  top: 22%;
  left: 4%;
  width: 96px;
  color: var(--nl-primary);
  opacity: 0.22;
}
.nl-hero__shape--plus {
  top: 14%;
  left: 38%;
  width: 22px;
  color: var(--nl-primary);
  opacity: 0.35;
}
.nl-hero__shape--triangle {
  bottom: 18%;
  left: 32%;
  width: 44px;
  color: var(--nl-dark);
  opacity: 0.14;
  transform-origin: center;
}
.nl-hero__shape--squiggle {
  top: 62%;
  left: 10%;
  width: 110px;
  color: var(--nl-primary);
  opacity: 0.22;
}

/* --- Visual-side shapes (near the hero image) --- */
.nl-hero__visual .nl-hero__shape--dots-arc {
  position: absolute;
  top: -32px;
  right: 18%;
  width: 88px;
  color: var(--nl-primary);
  opacity: 0.55;
  z-index: 5;
}
.nl-hero__visual .nl-hero__shape--spark {
  position: absolute;
  bottom: 12%;
  left: -28px;
  width: 28px;
  color: var(--nl-primary);
  opacity: 0.7;
  z-index: 5;
}

/* --- Drift keyframes --- */
@keyframes nl-hero-drift-slow {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -8px, 0); }
}
@keyframes nl-hero-rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* --- Parallax container: allow JS to write translate on top --- */
[data-parallax] { transform: translate3d(var(--nl-px, 0px), var(--nl-py, 0px), 0); }

/* Mobile: hide the ambient shapes to keep the hero clean on small screens */
@media (max-width: 900px) {
  .nl-hero__orb,
  .nl-hero__shape--ring,
  .nl-hero__shape--plus,
  .nl-hero__shape--triangle,
  .nl-hero__shape--squiggle,
  .nl-hero__visual .nl-hero__shape--dots-arc {
    display: none;
  }
  .nl-hero__visual .nl-hero__shape--spark { opacity: 0.5; width: 20px; }
}

/* Reduced motion: freeze all hero decor animations */
@media (prefers-reduced-motion: reduce) {
  .nl-hero__shape--ring,
  .nl-hero__shape--triangle {
    animation: none;
  }
}

/* ========== Inner pages: shared components ========== */

/* Shared inner-page tokens (scoped) */
.nl-page-hero,
.nl-page-section,
.nl-cta-banner {
  --nl-inner-max: 1280px;
  --nl-inner-pad: clamp(24px, 5vw, 64px);
}

/* ---------- 1. Page hero ---------- */
.nl-page-hero {
  background: var(--nl-off-white);
  margin-block: 0;
  padding-top: var(--nl-page-hero-pad-top);
  padding-bottom: var(--nl-page-hero-pad-bottom);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .nl-page-hero {
    padding-top: var(--nl-hero-pad-sm);
    padding-bottom: var(--nl-section-pad-sm);
  }
}
.nl-page-hero__inner {
  max-width: var(--nl-inner-max);
  margin-inline: auto;
  padding-inline: var(--nl-inner-pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.nl-page-hero__copy { max-width: 640px; }
.nl-page-hero__title {
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--nl-dark);
  margin: 0 0 var(--nl-rhythm-heading);
}
.nl-page-hero__sub {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.78);
  max-width: 620px;
  margin: 0 0 32px;
}
.nl-page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.nl-page-hero__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--nl-shadow-md);
  aspect-ratio: 4 / 5;
}
.nl-page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Hero without visual falls back to single column gracefully */
.nl-page-hero--text-only .nl-page-hero__inner {
  grid-template-columns: 1fr;
  max-width: 960px;
}
@media (max-width: 900px) {
  .nl-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nl-page-hero__visual {
    aspect-ratio: 16 / 10;
    max-height: 420px;
  }
}

/* ---------- 2. Section container ---------- */
.nl-page-section {
  margin-block: 0;
  padding-block: var(--nl-section-pad);
}
@media (max-width: 900px) {
  .nl-page-section { padding-block: var(--nl-section-pad-sm); }
}
/* Constrain direct children so grids/steps don't stretch edge-to-edge. The
   .nl-cta-banner, .nl-split, and .nl-page-section__intro already set their
   own max-widths, so opt them out. */
.nl-page-section > *:not(.nl-cta-banner):not(.nl-split):not(.nl-split--reverse):not(.nl-page-section__inner):not(.nl-page-section__intro) {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--nl-inner-pad, clamp(24px, 5vw, 64px));
  box-sizing: border-box;
}
.nl-page-section__inner {
  max-width: var(--nl-inner-max);
  margin-inline: auto;
  padding-inline: var(--nl-inner-pad);
}
.nl-page-section__intro {
  max-width: 820px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.nl-page-section__intro .nl-eyebrow { margin: 0 0 var(--nl-rhythm-eyebrow); }
.nl-page-section__intro h2 {
  font-size: var(--nl-h2-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--nl-rhythm-heading);
  color: var(--nl-dark);
}
.nl-page-section__intro p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.75);
  margin: 0;
}
.nl-page-section--muted { background: var(--nl-off-white); }
.nl-page-section--dark {
  background: var(--nl-off-white);
  color: var(--nl-dark);
}
.nl-page-section--dark .nl-page-section__intro h2 { color: var(--nl-dark); }
.nl-page-section--dark .nl-page-section__intro p { color: rgba(42, 42, 42, 0.75); }

/* ---------- 3. Content-with-image split ---------- */
.nl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.nl-split__copy { max-width: 560px; }
.nl-split__copy h2 {
  font-size: var(--nl-h2-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--nl-rhythm-heading);
  color: var(--nl-dark);
}
.nl-split__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.8);
  margin: 0 0 16px;
}
.nl-split__copy .nl-split__cta { margin-top: 24px; }
.nl-split__visual {
  border-radius: var(--nl-radius-md);
  overflow: hidden;
  box-shadow: var(--nl-shadow-md);
  aspect-ratio: 4 / 3;
}
.nl-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nl-split--reverse .nl-split__copy { order: 2; }
.nl-split--reverse .nl-split__visual { order: 1; }
.nl-page-section--dark .nl-split__copy h2 { color: var(--nl-dark); }
.nl-page-section--dark .nl-split__copy p { color: rgba(42, 42, 42, 0.75); }
@media (max-width: 900px) {
  .nl-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nl-split--reverse .nl-split__copy { order: 2; }
  .nl-split--reverse .nl-split__visual { order: 1; }
}

/* ---------- 4. Benefit / feature grid ---------- */
.nl-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nl-benefit-card {
  background: var(--nl-white);
  padding: 32px;
  border-radius: var(--nl-radius-md);
  box-shadow: var(--nl-shadow-sm);
  transition: transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nl-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nl-shadow-md);
}
.nl-benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 193, 202, 0.1);
  color: var(--nl-primary-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nl-benefit-card__icon svg { width: 22px; height: 22px; }
.nl-benefit-card__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 193, 202, 0.1);
  color: var(--nl-primary-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nl-benefit-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--nl-dark);
}
.nl-benefit-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.78);
  margin: 0;
}
@media (max-width: 900px) {
  .nl-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nl-benefit-grid { grid-template-columns: 1fr; }
}

/* 4-up variant: four equal cards on desktop, 2x2 on tablet, 1 col on mobile */
.nl-benefit-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .nl-benefit-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nl-benefit-grid--4 { grid-template-columns: 1fr; }
}

/* Team card: 2-up variant and initials-only placeholder */
.nl-team-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto; }
@media (max-width: 720px) {
  .nl-team-grid--2 { grid-template-columns: 1fr; }
}
.nl-team-card__media--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(0, 193, 202, 0.14), rgba(0, 193, 202, 0.04));
  color: var(--nl-primary-ink);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.02em;
  font-family: var(--nl-font-display, inherit);
}

/* ---------- 5. 3-step process ---------- */
.nl-steps {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
  position: relative;
}
.nl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.nl-step__num {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--nl-primary);
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  display: block;
}
.nl-step__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--nl-dark);
}
.nl-step__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.78);
  margin: 0;
}
/* Subtle connector line between step numbers on desktop */
.nl-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(clamp(48px, 5vw, 72px) / 2);
  left: calc(100% + 4px);
  width: calc(clamp(32px, 5vw, 64px) - 8px);
  height: 1px;
  background: var(--nl-mist);
}
.nl-page-section--dark .nl-step__title { color: var(--nl-dark); }
.nl-page-section--dark .nl-step__body { color: rgba(42, 42, 42, 0.75); }
.nl-page-section--dark .nl-step:not(:last-child)::after { background: rgba(255, 255, 255, 0.2); }
@media (max-width: 768px) {
  .nl-steps {
    flex-direction: column;
    gap: 40px;
  }
  .nl-step:not(:last-child)::after { display: none; }
}

/* ---------- 6. Team / instructor grid ---------- */
.nl-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.nl-team-card {
  display: flex;
  flex-direction: column;
}
.nl-team-card__media {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--nl-radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--nl-light-gray);
}
.nl-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--nl-t-slow) var(--nl-ease-out-expo);
}
.nl-team-card:hover .nl-team-card__media img { transform: scale(1.03); }
.nl-team-card__name {
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--nl-dark);
}
.nl-team-card__role {
  font-size: 14px;
  color: var(--nl-primary-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 4px 0 0;
}
.nl-team-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(42, 42, 42, 0.75);
  margin: 12px 0 0;
}
.nl-page-section--dark .nl-team-card__name { color: var(--nl-dark); }
.nl-page-section--dark .nl-team-card__role { color: var(--nl-primary-ink); }
.nl-page-section--dark .nl-team-card__bio { color: rgba(42, 42, 42, 0.75); }
@media (max-width: 900px) {
  .nl-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nl-team-grid { grid-template-columns: 1fr; }
}

/* ---------- 7. Modality list ---------- */
.nl-modality-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nl-modality-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--nl-mist);
  font-size: 16px;
  color: var(--nl-text);
  transition: color 220ms var(--nl-ease-out-expo);
}
.nl-modality-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nl-primary);
  flex-shrink: 0;
}
.nl-modality-item:hover { color: var(--nl-primary-ink); }
/* Hide bottom border on the final row of a given column in a 3-col grid */
.nl-modality-list .nl-modality-item:last-child,
.nl-modality-list .nl-modality-item:nth-last-child(2):nth-child(3n + 1),
.nl-modality-list .nl-modality-item:nth-last-child(3):nth-child(3n + 1) {
  border-bottom: 0;
}
.nl-page-section--dark .nl-modality-item {
  color: rgba(42, 42, 42, 0.85);
  border-bottom-color: rgba(5, 5, 28, 0.08);
}
.nl-page-section--dark .nl-modality-item:hover { color: var(--nl-primary); }
@media (max-width: 900px) {
  .nl-modality-list { grid-template-columns: repeat(2, 1fr); }
  .nl-modality-list .nl-modality-item:last-child,
  .nl-modality-list .nl-modality-item:nth-last-child(2):nth-child(3n + 1),
  .nl-modality-list .nl-modality-item:nth-last-child(3):nth-child(3n + 1) {
    border-bottom: 1px solid var(--nl-mist);
  }
}
@media (max-width: 600px) {
  .nl-modality-list { grid-template-columns: 1fr; }
  .nl-modality-list .nl-modality-item { border-bottom: 1px solid var(--nl-mist); }
  .nl-modality-list .nl-modality-item:last-child { border-bottom: 0; }
}

/* CTA banner wraps its own padding — when it sits inside a generic
   .nl-page-section, strip the section's padding so they don't stack. */
.nl-page-section:has(> .nl-cta-banner) { padding-block: 0; }

/* ---------- 8. CTA banner ---------- */
.nl-cta-banner {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(0, 193, 202, 0.14), rgba(0, 193, 202, 0) 60%),
    var(--nl-off-white);
  color: var(--nl-dark);
  margin-block: 0;
  padding-block: var(--nl-section-pad);
  padding-inline: var(--nl-inner-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .nl-cta-banner { padding-block: var(--nl-section-pad-sm); }
}
.nl-cta-banner__inner {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.nl-cta-banner .nl-eyebrow { color: var(--nl-primary-ink); margin: 0 0 var(--nl-rhythm-eyebrow); }
.nl-cta-banner__title {
  font-size: var(--nl-h2-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--nl-rhythm-heading);
  color: var(--nl-dark);
}
.nl-cta-banner__sub {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.75);
  margin: 0 0 36px;
  max-width: 620px;
  margin-inline: auto;
}
.nl-cta-banner__ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.nl-cta-banner__watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(80vw, 640px);
  z-index: 1;
}

/* ---------- 9. Service nav ---------- */
.nl-service-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 20px;
  padding: 32px 0;
  border-top: 1px solid var(--nl-mist);
  font-size: 15px;
}
.nl-service-nav__label {
  color: rgba(42, 42, 42, 0.7);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nl-service-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nl-service-nav__links a {
  color: var(--nl-dark);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 220ms var(--nl-ease-out-expo);
}
.nl-service-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 1.5px;
  background: var(--nl-primary);
  transition: right 300ms var(--nl-ease-out-expo);
}
.nl-service-nav__links a:hover { color: var(--nl-primary-ink); }
.nl-service-nav__links a:hover::after { right: 0; }

/* ---------- 10. Generic prose (long-form body) ---------- */
.nl-prose {
  max-width: 680px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--nl-text);
}
.nl-prose > :first-child { margin-top: 0; }
.nl-prose > :last-child { margin-bottom: 0; }
.nl-prose h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 64px 0 20px;
  color: var(--nl-dark);
}
.nl-prose h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin: 56px 0 20px;
  color: var(--nl-dark);
}
.nl-prose h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 40px 0 12px;
  color: var(--nl-dark);
}
.nl-prose p { margin: 0 0 20px; }
.nl-prose ul,
.nl-prose ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.nl-prose li { margin-bottom: 8px; }
.nl-prose li::marker { color: var(--nl-primary-ink); }
.nl-prose a {
  color: var(--nl-primary-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 220ms var(--nl-ease-out-expo);
}
.nl-prose a:hover { color: var(--nl-primary); }
.nl-prose blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--nl-primary);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--nl-dark-alt);
}
.nl-prose blockquote p:last-child { margin-bottom: 0; }
.nl-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--nl-radius-md);
  margin: 32px 0;
  display: block;
}
.nl-prose hr {
  border: 0;
  border-top: 1px solid var(--nl-mist);
  margin: 48px 0;
}

/* ---------- Service grid card (visual, 4-up on /services) ---------- */
.nl-service-grid { gap: 28px; }
.nl-service-card {
  display: flex;
  flex-direction: column;
  background: var(--nl-white);
  border-radius: var(--nl-radius-md);
  overflow: hidden;
  box-shadow: var(--nl-shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
  height: 100%;
}
.nl-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nl-shadow-md);
}
.nl-service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--nl-off-white);
}
.nl-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  aspect-ratio: auto;
  transition: transform var(--nl-t-slow) var(--nl-ease-out-expo);
}
.nl-service-card:hover .nl-service-card__media img { transform: scale(1.04); }
.nl-service-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.nl-service-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--nl-dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.nl-service-card__lead {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nl-primary-ink);
  margin: 0;
}
.nl-service-card__body-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.78);
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nl-service-card__cta {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nl-primary-ink);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 300ms var(--nl-ease-out-expo), color 300ms var(--nl-ease-out-expo);
}
.nl-service-card:hover .nl-service-card__cta { gap: 10px; color: var(--nl-primary); }

/* 4-step process: stack 2x2 on mid-width, single column on mobile */
.nl-steps--services { flex-wrap: wrap; }
@media (max-width: 980px) {
  .nl-steps--services { flex-direction: row; flex-wrap: wrap; gap: 40px 32px; }
  .nl-steps--services .nl-step { flex: 1 1 calc(50% - 16px); min-width: 240px; }
  .nl-steps--services .nl-step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .nl-steps--services .nl-step { flex: 1 1 100%; }
}

/* ---------- Reveal-on-scroll compatibility ---------- */
/* Children of [data-reveal="stagger"] are animated by app.js; ensure our
   inner-page components have no conflicting transforms at rest. */
[data-reveal="stagger"] > .nl-benefit-card,
[data-reveal="stagger"] > .nl-team-card,
[data-reveal="stagger"] > .nl-step,
[data-reveal="stagger"] > .nl-service-card,
[data-reveal="stagger"] > .nl-modality-item { will-change: transform, opacity; }

/* Reduced motion: suppress hover lifts and image zooms on inner components */
@media (prefers-reduced-motion: reduce) {
  .nl-benefit-card,
  .nl-benefit-card:hover,
  .nl-team-card__media img,
  .nl-team-card:hover .nl-team-card__media img,
  .nl-service-card,
  .nl-service-card:hover,
  .nl-service-card__media img,
  .nl-service-card:hover .nl-service-card__media img,
  .nl-service-nav__links a::after {
    transition: none;
    transform: none;
  }
}

/* ---------- 10. Pill list (conditions/tags) ---------- */
.nl-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}
.nl-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--nl-white);
  border: 1px solid var(--nl-mist);
  color: var(--nl-dark-alt);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.3;
  transition: border-color 220ms var(--nl-ease-out-expo),
              color 220ms var(--nl-ease-out-expo),
              background-color 220ms var(--nl-ease-out-expo),
              transform 220ms var(--nl-ease-out-expo);
}
.nl-pill-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nl-primary);
  flex-shrink: 0;
}
.nl-pill-item:hover {
  border-color: var(--nl-primary);
  color: var(--nl-primary-ink);
  background: rgba(0, 193, 202, 0.06);
  transform: translateY(-1px);
}
.nl-page-section--muted .nl-pill-item { background: var(--nl-white); }
.nl-pill-list--center { justify-content: center; }

/* ---------- 11. Practitioner card (photo + credentials) ---------- */
.nl-practitioner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  background: var(--nl-white);
  border: 1px solid var(--nl-mist);
  border-radius: var(--nl-radius-lg, 20px);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--nl-shadow-md);
}
.nl-practitioner__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--nl-radius-md);
  overflow: hidden;
  background: var(--nl-light-gray);
}
.nl-practitioner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nl-practitioner__name {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--nl-dark);
  margin: 8px 0 6px;
}
.nl-practitioner__credentials {
  font-size: 14px;
  color: var(--nl-primary-ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 18px;
}
.nl-practitioner__bio {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.78);
  margin: 0 0 14px;
}
.nl-practitioner__cta { margin-top: 12px; }
@media (max-width: 820px) {
  .nl-practitioner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .nl-practitioner__media {
    aspect-ratio: 4 / 3;
    max-height: 360px;
  }
}

/* ---------- Page polish additions (Pilates / Contact / Blog / Shop) ---------- */

/* Section inner heading: centered intro for a section */
.nl-section > .nl-section__heading,
.nl-page-section > .nl-section__heading {
  max-width: 780px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
  padding-inline: var(--nl-inner-pad, clamp(24px, 5vw, 64px));
}
.nl-section__heading .nl-eyebrow { margin: 0 0 var(--nl-rhythm-eyebrow); }
.nl-section__heading h2 {
  font-size: var(--nl-h2-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--nl-rhythm-heading);
  color: var(--nl-dark);
}
.nl-section__heading .nl-prose,
.nl-section__heading > p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.78);
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
}
.nl-page-section--dark .nl-section__heading h2 { color: var(--nl-dark); }
.nl-page-section--dark .nl-section__heading .nl-prose,
.nl-page-section--dark .nl-section__heading > p { color: rgba(42, 42, 42, 0.75); }

/* Constrain section-level grids/splits to the inner max */
.nl-section > .nl-split,
.nl-page-section > .nl-split,
.nl-section > .nl-benefit-grid,
.nl-page-section > .nl-benefit-grid,
.nl-section > .nl-team-grid,
.nl-page-section > .nl-team-grid,
.nl-section > .nl-contact-split,
.nl-page-section > .nl-contact-split,
.nl-section > .nl-product-grid,
.nl-page-section > .nl-product-grid,
.nl-section > .nl-blog-grid,
.nl-page-section > .nl-blog-grid,
.nl-section > .nl-visit-block,
.nl-page-section > .nl-visit-block,
.nl-section > .nl-schedule,
.nl-page-section > .nl-schedule {
  max-width: var(--nl-inner-max, 1280px);
  margin-inline: auto;
  padding-inline: var(--nl-inner-pad, clamp(24px, 5vw, 64px));
}

/* Background rhythm utilities */
.nl-section--muted,
.nl-page-section--muted { background: var(--nl-off-white); }
.nl-section--white,
.nl-page-section--white { background: var(--nl-white); }

/* --- Grid column variants --- */
.nl-benefit-grid--2 { grid-template-columns: repeat(2, 1fr); }
.nl-benefit-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .nl-benefit-grid--2,
  .nl-benefit-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nl-benefit-grid--2,
  .nl-benefit-grid--3 { grid-template-columns: 1fr; }
}

/* 5-col instructor grid */
.nl-team-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 24px; }
.nl-team-grid--5 .nl-team-card__media { aspect-ratio: 3 / 4; }
@media (max-width: 1100px) {
  .nl-team-grid--5 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 600px) {
  .nl-team-grid--5 { grid-template-columns: 1fr; }
}
.nl-team-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .nl-team-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nl-team-grid--4 { grid-template-columns: 1fr; }
}

/* Visual benefit card */
.nl-benefit-card--with-image { padding: 0; overflow: hidden; }
.nl-benefit-card--with-image .nl-benefit-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--nl-light-gray);
}
.nl-benefit-card--with-image .nl-benefit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--nl-t-slow) var(--nl-ease-out-expo);
}
.nl-benefit-card--with-image:hover .nl-benefit-card__media img { transform: scale(1.04); }
.nl-benefit-card--with-image .nl-benefit-card__content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Contact split layout */
.nl-contact-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
@media (max-width: 900px) {
  .nl-contact-split { grid-template-columns: 1fr; gap: 40px; }
}
.nl-contact-split__form {
  background: var(--nl-white);
  border: 1px solid var(--nl-mist);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--nl-shadow-sm);
}
.nl-contact-split__info {
  background: var(--nl-off-white);
  color: var(--nl-dark);
  border: 1px solid rgba(5, 5, 28, 0.06);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.nl-contact-split__info h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  margin: 0;
  color: var(--nl-dark);
}
.nl-contact-split__info .nl-eyebrow { color: var(--nl-primary-ink); margin: 0; }
.nl-contact-split__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 15px;
  line-height: 1.55;
}
.nl-contact-split__info ul strong {
  display: block;
  color: var(--nl-primary);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.nl-contact-split__info a {
  color: var(--nl-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 5, 28, 0.15);
  transition: border-color 220ms var(--nl-ease-out-expo);
}
.nl-contact-split__info a:hover { border-bottom-color: var(--nl-primary); }

/* Map embed block */
.nl-map {
  margin-top: clamp(40px, 5vw, 64px);
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--nl-shadow-sm);
  aspect-ratio: 21 / 9;
  background: var(--nl-light-gray);
  max-width: var(--nl-inner-max, 1280px);
}
.nl-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* Visit block */
.nl-visit-block {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.nl-visit-block ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}
.nl-visit-block ul strong {
  display: block;
  color: var(--nl-primary-ink);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.nl-visit-block ul a { color: inherit; }
@media (max-width: 600px) {
  .nl-visit-block ul { grid-template-columns: 1fr; }
}

/* Blog grid + cards */
.nl-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .nl-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .nl-blog-grid { grid-template-columns: 1fr; } }

.nl-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--nl-white);
  border-radius: var(--nl-radius-md);
  overflow: hidden;
  box-shadow: var(--nl-shadow-sm);
  transition: transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
}
.nl-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nl-shadow-md);
}
.nl-blog-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--nl-light-gray);
}
.nl-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--nl-t-slow) var(--nl-ease-out-expo);
}
.nl-blog-card:hover .nl-blog-card__media img { transform: scale(1.04); }
.nl-blog-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.nl-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.6);
  font-weight: 600;
}
.nl-blog-card__pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 193, 202, 0.12);
  color: var(--nl-primary-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.nl-blog-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 4px 0 0;
  color: var(--nl-dark);
}
.nl-blog-card__excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(42, 42, 42, 0.75);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nl-blog-card__link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nl-primary-ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nl-blog-card__link:hover { color: var(--nl-primary); }

/* Newsletter inline */
.nl-newsletter {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 8px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.nl-newsletter input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(5, 5, 28, 0.12);
  background: var(--nl-white);
  color: var(--nl-dark);
  font-size: 15px;
  font-family: inherit;
}
.nl-newsletter input[type="email"]::placeholder { color: rgba(42, 42, 42, 0.5); }
.nl-newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--nl-primary);
  background: var(--nl-white);
  box-shadow: 0 0 0 4px rgba(0, 193, 202, 0.12);
}

/* Shop product preview */
.nl-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) { .nl-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .nl-product-grid { grid-template-columns: 1fr; } }

.nl-product-card {
  display: flex;
  flex-direction: column;
  background: var(--nl-white);
  border-radius: var(--nl-radius-md);
  border: 1px solid var(--nl-mist);
  overflow: hidden;
  transition: transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo), border-color 220ms var(--nl-ease-out-expo);
  position: relative;
}
.nl-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 193, 202, 0.35);
  box-shadow: var(--nl-shadow-md);
}
.nl-product-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, rgba(0, 193, 202, 0.08), rgba(0, 193, 202, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.nl-product-card__media svg {
  width: 56px;
  height: 56px;
  color: var(--nl-primary-ink);
  opacity: 0.55;
}
.nl-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--nl-white);
  color: var(--nl-primary-ink);
  border: 1px solid rgba(0, 193, 202, 0.25);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.nl-product-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.nl-product-card__name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--nl-dark);
}
.nl-product-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(42, 42, 42, 0.7);
  margin: 0;
}
.nl-product-card__price {
  font-size: 12px;
  font-weight: 700;
  color: var(--nl-primary-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Schedule snippet */
.nl-schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .nl-schedule { grid-template-columns: 1fr; } }
.nl-schedule__day {
  background: var(--nl-white);
  border: 1px solid var(--nl-mist);
  border-radius: var(--nl-radius-md);
  padding: 24px 26px;
  box-shadow: var(--nl-shadow-sm);
  transition: transform 300ms var(--nl-ease-out-expo), box-shadow 300ms var(--nl-ease-out-expo);
}
.nl-schedule__day:hover {
  transform: translateY(-3px);
  box-shadow: var(--nl-shadow-md);
}
.nl-schedule__day-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--nl-primary-ink);
  margin: 0 0 12px;
}
.nl-schedule__times {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--nl-dark);
  line-height: 1.2;
}
.nl-schedule__times li {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nl-schedule__times li + li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nl-primary);
  margin-right: 14px;
  opacity: 0.7;
}

/* Safety: class-type card images always render when loaded,
   even if a reveal stagger has not fired yet. */
.nl-benefit-card--with-image .nl-benefit-card__media img[loading="lazy"] { min-height: 1px; }

[data-reveal="stagger"] > .nl-blog-card,
[data-reveal="stagger"] > .nl-product-card,
[data-reveal="stagger"] > .nl-benefit-card--with-image { will-change: transform, opacity; }

/* ---------- Condition grid (service-page conditions list) ---------- */
.nl-condition-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--nl-inner-max, 1280px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.nl-condition-card {
  background: var(--nl-white);
  border: 1px solid var(--nl-mist);
  border-radius: var(--nl-radius-md, 16px);
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 220ms var(--nl-ease-out-expo),
              transform 220ms var(--nl-ease-out-expo),
              box-shadow 220ms var(--nl-ease-out-expo);
}
.nl-condition-card:hover {
  border-color: var(--nl-primary);
  transform: translateY(-2px);
  box-shadow: var(--nl-shadow-sm, 0 6px 20px rgba(0, 0, 0, 0.06));
}
.nl-condition-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 193, 202, 0.1);
  color: var(--nl-primary-ink);
  margin-bottom: 4px;
}
.nl-condition-card__icon svg {
  width: 22px;
  height: 22px;
}
.nl-condition-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--nl-dark);
  margin: 0;
}
.nl-condition-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(42, 42, 42, 0.72);
  margin: 0;
}
.nl-page-section--muted .nl-condition-card { background: var(--nl-white); }
@media (max-width: 1100px) {
  .nl-condition-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .nl-condition-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .nl-condition-grid { grid-template-columns: 1fr; }
}

/* ---------- Practitioner card: initials placeholder variant ---------- */
.nl-practitioner__media--initials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, rgba(0, 193, 202, 0.18), rgba(0, 193, 202, 0.04));
  color: var(--nl-primary-ink);
  text-align: center;
}
.nl-practitioner__initials {
  font-family: var(--nl-font-display, inherit);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nl-practitioner__media-note {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(42, 42, 42, 0.55);
}

/* ---------------------------------------------------------------------------
   Designer QA polish: About + Contact pages
   --------------------------------------------------------------------------- */

/* About: text-style metric (fallback if ever non-numeric value returns) */
.nl-metric-card--text .nl-metric__value,
.nl-metrics-section .nl-metric-card--text .nl-metric__value {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0;
  line-height: 1.2;
}

/* About: polished placeholder team card */
.nl-team-card--placeholder .nl-team-card__media--initials {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(0, 193, 202, 0.18), rgba(0, 193, 202, 0.04) 60%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(145deg, rgba(0, 193, 202, 0.12), rgba(0, 193, 202, 0.03));
  border: 1px solid rgba(0, 193, 202, 0.18);
  border-radius: var(--nl-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.nl-team-card--placeholder .nl-team-card__monogram {
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--nl-primary-ink);
  background: linear-gradient(135deg, var(--nl-primary-ink) 0%, var(--nl-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nl-team-card--placeholder .nl-team-card__media-caption {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(42, 42, 42, 0.55);
  padding: 6px 14px;
  border: 1px solid rgba(0, 193, 202, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

/* Contact: form intro copy block to balance the dark sidebar height */
.nl-contact-split__form-intro {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--nl-mist);
}
.nl-contact-split__form-intro .nl-eyebrow {
  color: var(--nl-primary-ink);
  margin: 0 0 8px;
}
.nl-contact-split__form-intro h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--nl-dark);
  letter-spacing: -0.01em;
}
.nl-contact-split__form-intro p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.72);
  margin: 0;
}

/* Contact: guarantee map iframe sizing */
.nl-map {
  aspect-ratio: 16 / 9;
  min-height: 360px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(0, 193, 202, 0.08), rgba(0, 193, 202, 0.02) 60%),
    repeating-linear-gradient(0deg, rgba(5, 5, 28, 0.04) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(5, 5, 28, 0.04) 0 1px, transparent 1px 48px),
    var(--nl-light-gray);
}
.nl-map::before {
  content: "250 Consumers Rd, Suite 701";
  position: absolute;
  inset: auto 0 40% 0;
  text-align: center;
  color: var(--nl-dark);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  pointer-events: none;
  z-index: 0;
}
.nl-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 24px;
  height: 24px;
  background: var(--nl-primary);
  border: 3px solid var(--nl-white);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0, 193, 202, 0.35);
  pointer-events: none;
  z-index: 0;
}
.nl-map iframe { position: relative; z-index: 1; }
@media (max-width: 720px) {
  .nl-map {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
}
.nl-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.nl-map__link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--nl-white);
  color: var(--nl-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--nl-shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.nl-map__link:hover { transform: translateY(-2px); box-shadow: var(--nl-shadow-md); }
.nl-map__link svg { width: 16px; height: 16px; color: var(--nl-primary-ink); }


/* =========================================================
   Card tint — slight difference from #FFFFFF section backgrounds
   ========================================================= */
.nl-benefit-card,
.nl-pain-card,
.nl-service-card,
.nl-team-card,
.nl-blog-card,
.nl-product-card,
.nl-practitioner,
.nl-pill-item,
.nl-condition-card,
.nl-schedule,
.nl-contact-split__form {
  background: var(--nl-card);
  border: 1px solid var(--nl-card-border);
}
.nl-product-card__badge { background: var(--nl-white); }


/* ---- Pagination ---- */
/* Fallback override block. Higher specificity wins over any theme
   ul/li defaults still leaking bullets in. Same tokens as the button
   aesthetic used across the site. */
nav.nl-pagination {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin: clamp(48px, 6vw, 80px) auto 0 !important;
  padding: clamp(32px, 4vw, 48px) 0 0 !important;
  border-top: 1px solid var(--nl-card-border) !important;
}
nav.nl-pagination ul,
.nl-pagination ul {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: center !important;
}
nav.nl-pagination ul li,
.nl-pagination ul li,
.nl-pagination li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
nav.nl-pagination ul li::before,
nav.nl-pagination ul li::marker,
.nl-pagination ul li::before,
.nl-pagination ul li::marker,
.nl-pagination li::before,
.nl-pagination li::marker {
  content: none !important;
  display: none !important;
}
nav.nl-pagination a.page-numbers,
nav.nl-pagination span.page-numbers,
.nl-pagination a.page-numbers,
.nl-pagination span.page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  color: var(--nl-dark);
  background: var(--nl-white);
  border: 1px solid var(--nl-card-border);
  box-shadow: var(--nl-shadow-sm);
  transition: background-color var(--nl-t-fast) var(--nl-ease-out-expo),
              color var(--nl-t-fast) var(--nl-ease-out-expo),
              transform var(--nl-t-fast) var(--nl-ease-out-expo),
              box-shadow var(--nl-t-fast) var(--nl-ease-out-expo),
              border-color var(--nl-t-fast) var(--nl-ease-out-expo);
}
nav.nl-pagination a.page-numbers:hover,
.nl-pagination a.page-numbers:hover {
  background: var(--nl-primary);
  color: var(--nl-white);
  border-color: var(--nl-primary);
  transform: translateY(-2px);
  box-shadow: var(--nl-shadow-primary);
}
nav.nl-pagination a.page-numbers:focus-visible,
.nl-pagination a.page-numbers:focus-visible {
  outline: 2px solid var(--nl-primary);
  outline-offset: 3px;
  background: var(--nl-primary);
  color: var(--nl-white);
  border-color: var(--nl-primary);
}
nav.nl-pagination span.page-numbers.current,
.nl-pagination span.page-numbers.current,
.nl-pagination .page-numbers.current {
  background: var(--nl-primary) !important;
  color: var(--nl-white) !important;
  border-color: var(--nl-primary) !important;
  box-shadow: var(--nl-shadow-primary) !important;
}
nav.nl-pagination .prev.page-numbers,
nav.nl-pagination .next.page-numbers,
.nl-pagination .prev.page-numbers,
.nl-pagination .next.page-numbers {
  padding: 0 20px;
  letter-spacing: 0.01em;
}
nav.nl-pagination span.dots,
.nl-pagination span.dots {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  min-width: auto;
  padding: 0 4px;
  color: var(--nl-text);
  opacity: 0.5;
}
@media (max-width: 600px) {
  nav.nl-pagination a.page-numbers,
  nav.nl-pagination span.page-numbers,
  .nl-pagination a.page-numbers,
  .nl-pagination span.page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }
  nav.nl-pagination .prev.page-numbers,
  nav.nl-pagination .next.page-numbers,
  .nl-pagination .prev.page-numbers,
  .nl-pagination .next.page-numbers {
    padding: 0 14px;
  }
}
