/* Nice & Bright redesign v0.9 — Home v2 spine + cove-light chrome */

:root {
  --ink: #0f0f0f;
  --ink-2: #2a2a2a;
  --yellow: #ffcd2c;
  --yellow-2: #e0a800;
  --lamp: #ffe56a;
  --paper: #f7f4ef;
  --white: #fff;
  --line: rgba(15, 15, 15, 0.1);
  --max: 1180px;
  /* Do NOT name these --display — Elementor uses --display for flex layout */
  --fnb-display: 'Haguro', 'Museo Sans Rounded', Arial, Helvetica, sans-serif;
  --fnb-sans: 'Museo Sans Rounded', Arial, Helvetica, sans-serif;
  /* Cleaner, less-rounded face for hero copy lane only */
  --fnb-hero: 'DM Sans', Arial, Helvetica, sans-serif;
}

html,
body.fn-nb-shell {
  overflow-x: clip;
  max-width: 100%;
}

/* Keep border-box even when Elementor CSS is unloaded */
body.fn-nb-shell,
body.fn-nb-shell *,
body.fn-nb-shell *::before,
body.fn-nb-shell *::after {
  box-sizing: border-box;
}

/* Kill Hello's pink (#c36) link color inside FN chrome — don't remove Hello itself */
body.fn-nb-shell .fnb-home a,
body.fn-nb-shell .fnb-header a,
body.fn-nb-shell .fnb-footer a,
body.fn-nb-shell .fnb-page a,
body.fn-nb-shell .fnb-drawer a,
body.fn-nb-shell .fnb-quote a:not(.fnb-quote__privacy) {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

/* Only shrink layout children that need it — global min-width:0 crushed nav dropdowns */
.fnb-wrap,
.fnb-services__list,
.fnb-services__item,
.fnb-footer__grid,
.fnb-hero__content {
  min-width: 0;
}

html.fnb-lock,
html.fnb-lock body {
  overflow: hidden;
}

/* Dock sits above content; hide it while the mobile menu is open */
html.fnb-lock .fnb-dock {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
}

/* Popup held off during redesign preview (same as pre-realign) */
body.fn-nb-shell .elementor-popup-modal,
body.fn-nb-shell .elementor-location-popup {
  display: none !important;
}

/* Hide empty/retired Elementor TB header/footer shells */
body.fn-nb-shell .elementor-location-header,
body.fn-nb-shell .elementor-location-footer {
  display: none !important;
}

.fnb-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.fnb-wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  box-sizing: border-box;
}

.fnb-home,
.fnb-header,
.fnb-footer,
.fnb-drawer {
  font-family: var(--fnb-sans);
  -webkit-font-smoothing: antialiased;
}

.fnb-home,
.fnb-header,
.fnb-footer {
  color: var(--ink);
}

.fnb-home a,
.fnb-header a,
.fnb-footer a {
  color: inherit;
  text-decoration: none;
}

/* Nav/text links only — never force white onto yellow CTAs */
body.fn-nb-shell .fnb-header a:not(.fnb-btn):hover,
body.fn-nb-shell .fnb-header a:not(.fnb-btn):focus,
body.fn-nb-shell .fnb-nav a:hover,
body.fn-nb-shell .fnb-nav button:hover,
body.fn-nb-shell .fnb-nav a:focus,
body.fn-nb-shell .fnb-nav button:focus {
  color: #fff !important;
}

/*
  Button system (must beat Hello theme button/link rules):
    .fnb-btn         → primary yellow
    .fnb-btn--ghost  → glass secondary on dark
    .fnb-btn--block  → full width
*/
button.fnb-btn {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

body.fn-nb-shell .fnb-btn,
body.fn-nb-shell a.fnb-btn,
body.fn-nb-shell button.fnb-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  min-height: 48px;
  height: auto;
  margin: 0;
  padding: 0.75rem 1.4rem;
  color: var(--ink) !important;
  font-family: var(--fnb-sans);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  text-decoration: none !important;
  text-transform: none;
  white-space: normal;
  border: 1px solid rgba(15, 15, 15, 0.12);
  border-radius: 999px;
  background: var(--yellow) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(15, 15, 15, 0.08),
    0 1px 2px rgba(15, 15, 15, 0.12);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

body.fn-nb-shell .fnb-btn:hover,
body.fn-nb-shell .fnb-btn:focus-visible,
body.fn-nb-shell a.fnb-btn:hover,
body.fn-nb-shell a.fnb-btn:focus-visible,
body.fn-nb-shell button.fnb-btn:hover,
body.fn-nb-shell button.fnb-btn:focus-visible {
  transform: translateY(-1px);
  color: var(--ink) !important;
  background: #ffd84f !important;
  border-color: rgba(15, 15, 15, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(15, 15, 15, 0.06),
    0 2px 6px rgba(15, 15, 15, 0.14);
}

body.fn-nb-shell .fnb-btn:active,
body.fn-nb-shell a.fnb-btn:active,
body.fn-nb-shell button.fnb-btn:active {
  transform: translateY(0);
  background: var(--yellow) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 2px 3px rgba(15, 15, 15, 0.08);
}

body.fn-nb-shell .fnb-btn.fnb-btn--ghost,
body.fn-nb-shell a.fnb-btn.fnb-btn--ghost,
body.fn-nb-shell button.fnb-btn.fnb-btn--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(15, 15, 15, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

body.fn-nb-shell .fnb-btn.fnb-btn--ghost:hover,
body.fn-nb-shell .fnb-btn.fnb-btn--ghost:focus-visible,
body.fn-nb-shell a.fnb-btn.fnb-btn--ghost:hover,
body.fn-nb-shell a.fnb-btn.fnb-btn--ghost:focus-visible,
body.fn-nb-shell button.fnb-btn.fnb-btn--ghost:hover,
body.fn-nb-shell button.fnb-btn.fnb-btn--ghost:focus-visible {
  color: #fff !important;
  background: rgba(15, 15, 15, 0.45) !important;
  border-color: var(--yellow);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 0 var(--yellow);
}

body.fn-nb-shell .fnb-btn.fnb-btn--ghost:active,
body.fn-nb-shell a.fnb-btn.fnb-btn--ghost:active,
body.fn-nb-shell button.fnb-btn.fnb-btn--ghost:active {
  background: rgba(15, 15, 15, 0.5) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.fn-nb-shell .fnb-btn--block {
  width: 100%;
  max-width: 100%;
}

.fnb-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-2);
}

.fnb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-weight: 700;
  color: var(--ink) !important;
  text-decoration: none !important;
  border-bottom: 2px solid var(--yellow);
  width: fit-content;
}

.fnb-link:hover,
.fnb-link:focus-visible {
  color: var(--ink) !important;
  border-bottom-color: var(--yellow-2);
}

/* —— Header —— */
.fnb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  font-family: var(--fnb-sans) !important;
}

.fnb-header.is-scrolled {
  background: rgba(15, 15, 15, 0.96);
  border-bottom-color: rgba(255, 205, 44, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

/* Light-top pages (privacy, service areas, etc.): solid bar from first paint */
body.fn-nb-solid-header .fnb-header {
  background: rgba(15, 15, 15, 0.96);
  border-bottom-color: rgba(255, 205, 44, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

body.fn-nb-solid-header .fnb-header .fnb-header__bar {
  min-height: 64px;
  padding: 0.5rem 0;
}

body.fn-nb-solid-header .fnb-header .fnb-logo img {
  height: 36px !important;
  max-height: 36px !important;
}

body.fn-nb-solid-header .fnb-header .fnb-nav__link,
body.fn-nb-solid-header .fnb-header .fnb-nav__btn,
body.fn-nb-solid-header .fnb-header .fnb-header__phone {
  text-shadow: none;
}

body.fn-nb-solid-header .fnb-page {
  padding-top: 5.5rem;
}

.fnb-header__bar {
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  box-sizing: border-box;
  transition: min-height 0.2s ease;
}

.fnb-header.is-scrolled .fnb-header__bar {
  min-height: 64px;
  padding: 0.5rem 0;
}

.fnb-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  max-width: 210px;
}

.fnb-logo img {
  display: block;
  height: 52px !important;
  width: auto !important;
  max-width: 200px;
  max-height: 52px !important;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  transition: height 0.2s ease, max-height 0.2s ease;
}

.fnb-header.is-scrolled .fnb-logo img {
  height: 36px !important;
  max-height: 36px !important;
}

.fnb-logo__text {
  color: #fff;
  font-family: var(--fnb-sans);
  font-weight: 700;
  font-size: 1.1rem;
}

.fnb-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.fnb-nav__link,
.fnb-nav__btn,
body.fn-nb-shell .fnb-nav__btn,
body.fn-nb-shell .fnb-nav button.fnb-nav__btn,
body.fn-nb-shell .fnb-nav a.fnb-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.35rem 0.7rem 0.55rem;
  color: #fff !important;
  font-family: var(--fnb-sans) !important;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none;
  cursor: pointer;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

body.fn-nb-shell .fnb-nav__btn:hover,
body.fn-nb-shell .fnb-nav__btn:focus,
body.fn-nb-shell .fnb-nav__btn:active,
body.fn-nb-shell .fnb-nav button.fnb-nav__btn:hover,
body.fn-nb-shell .fnb-nav button.fnb-nav__btn:focus {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #fff !important;
}

.fnb-header.is-scrolled .fnb-nav__link,
.fnb-header.is-scrolled .fnb-nav__btn {
  text-shadow: none;
}

/* Cove-light underline — 1px key + soft fill bloom, width draws left→right */
.fnb-nav__link::after,
.fnb-nav__btn::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  bottom: 4px;
  width: 0;
  height: 4px;
  border-radius: 2px;
  pointer-events: none;
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  background:
    linear-gradient(90deg, var(--yellow), #fff3b0 55%, var(--yellow)) center top / 100% 1px no-repeat,
    radial-gradient(ellipse at center, rgba(255, 205, 44, 0.4) 0%, transparent 70%) center bottom / 100% 4px no-repeat;
}

.fnb-nav__link:hover::after,
.fnb-nav__link:focus-visible::after,
.fnb-nav__btn:hover::after,
.fnb-nav__btn:focus-visible::after,
.fnb-nav__item:hover > .fnb-nav__btn::after,
.fnb-nav__item:focus-within > .fnb-nav__btn::after {
  width: calc(100% - 1.3rem);
}

.fnb-nav__item {
  position: relative;
}

.fnb-nav__drop {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 280px;
  width: max-content;
  max-width: 360px;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 30;
}

/* Frosted plate behind links — translucent but readable over hero */
.fnb-nav__drop::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: rgba(12, 12, 12, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  pointer-events: none;
  z-index: 0;
}

.fnb-nav__drop a {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 280px;
  padding: 0.8rem 1.2rem 0.8rem 1.15rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    padding-left 0.18s ease;
}

/* Cove accent — soft lamp edge on hover */
.fnb-nav__drop a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #fff3b0, var(--yellow), #fff3b0);
  box-shadow: 0 0 12px rgba(255, 205, 44, 0.55);
  opacity: 0;
  transform: scaleY(0.6);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.fnb-nav__drop a:first-child {
  border-radius: 10px 10px 0 0;
}

.fnb-nav__drop a:last-child {
  border-radius: 0 0 10px 10px;
}

.fnb-nav__drop a:hover,
.fnb-nav__drop a:focus {
  background: linear-gradient(
    90deg,
    rgba(255, 205, 44, 0.16) 0%,
    rgba(255, 205, 44, 0.05) 45%,
    rgba(255, 255, 255, 0.04) 100%
  );
  color: #fff !important;
  padding-left: 1.35rem;
}

.fnb-nav__drop a:hover::before,
.fnb-nav__drop a:focus::before {
  opacity: 1;
  transform: scaleY(1);
}

.fnb-nav__item:hover .fnb-nav__drop,
.fnb-nav__item:focus-within .fnb-nav__drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fnb-header__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fnb-header__phone {
  color: #fff !important;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.92rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.fnb-header.is-scrolled .fnb-header__phone {
  text-shadow: none;
}

.fnb-header__phone:hover,
.fnb-header__phone:focus {
  color: var(--yellow) !important;
}

.fnb-header__cta .fnb-btn {
  min-height: 40px;
  font-size: 0.85rem;
  padding-inline: 0.9rem;
}

/* Beat Hello's pink button chrome on the menu control */
body.fn-nb-shell button.fnb-burger,
.fnb-burger {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.35rem 0.7rem 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.35);
  color: #fff;
  cursor: pointer;
  font-family: var(--fnb-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

body.fn-nb-shell button.fnb-burger:hover,
body.fn-nb-shell button.fnb-burger:focus,
.fnb-burger:hover,
.fnb-burger:focus {
  background: rgba(15, 15, 15, 0.5);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.fnb-burger__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 16px;
}

.fnb-burger__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.fnb-burger__label {
  line-height: 1;
}

.fnb-burger[aria-expanded='true'] {
  border-color: var(--yellow);
  color: var(--yellow);
}

.fnb-burger[aria-expanded='true'] .fnb-burger__icon span {
  background: var(--yellow);
}

/* Scrolled header is already a solid bar — drop the pill chrome */
.fnb-header.is-scrolled .fnb-burger {
  border-color: transparent;
  background: transparent;
  padding-inline: 0.35rem;
}

.fnb-header.is-scrolled .fnb-burger[aria-expanded='true'] {
  color: var(--yellow);
}

.fnb-drawer {
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
  visibility: hidden;
  font-family: var(--fnb-sans);
  color: #fff;
}

.fnb-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.fnb-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.fnb-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: #111;
  color: #fff;
  font-family: var(--fnb-sans);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
}

.fnb-drawer.is-open .fnb-drawer__scrim { opacity: 1; }
.fnb-drawer.is-open .fnb-drawer__panel { transform: none; }

.fnb-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
}

.fnb-drawer__top span {
  color: var(--yellow);
  font-family: var(--fnb-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.fn-nb-shell .fnb-drawer__close,
.fnb-drawer__close {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--fnb-sans);
  padding: 0.35rem 0.25rem;
  appearance: none;
  -webkit-appearance: none;
  white-space: nowrap;
}

body.fn-nb-shell .fnb-drawer__close:hover,
body.fn-nb-shell .fnb-drawer__close:focus,
.fnb-drawer__close:hover,
.fnb-drawer__close:focus {
  background: transparent;
  color: var(--yellow);
  border: 0;
  text-decoration: none;
}

.fnb-drawer__nav {
  flex: 1;
  overflow: auto;
  padding: 0.75rem 1.1rem;
  font-family: var(--fnb-sans);
}

.fnb-drawer__nav p,
.fnb-drawer__nav .fnb-drawer__heading {
  margin: 1rem 0 0.3rem;
  color: var(--yellow);
  font-family: var(--fnb-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fnb-drawer__nav p:first-child,
.fnb-drawer__nav .fnb-drawer__heading:first-child {
  margin-top: 0.25rem;
}

/* Standalone top-level link — pinned first in the drawer to avoid mid-list awkwardness */
.fnb-drawer__nav a.fnb-drawer__heading {
  display: flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.85rem 0;
  min-height: 2.75rem;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--yellow) !important;
  font-family: var(--fnb-sans);
  box-sizing: border-box;
}

.fnb-drawer__nav a.fnb-drawer__heading:hover,
.fnb-drawer__nav a.fnb-drawer__heading:focus {
  color: #fff !important;
}

body.fn-nb-shell .fnb-drawer__nav a:not(.fnb-drawer__heading),
.fnb-drawer__nav a:not(.fnb-drawer__heading) {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-family: var(--fnb-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

body.fn-nb-shell .fnb-drawer__nav a:not(.fnb-drawer__heading):hover,
body.fn-nb-shell .fnb-drawer__nav a:not(.fnb-drawer__heading):focus,
.fnb-drawer__nav a:not(.fnb-drawer__heading):hover,
.fnb-drawer__nav a:not(.fnb-drawer__heading):focus {
  color: var(--yellow) !important;
}

.fnb-drawer__bottom {
  padding: 1rem 1.1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
  display: grid;
  gap: 0.7rem;
}

body.fn-nb-shell .fnb-drawer__phone,
.fnb-drawer__phone {
  text-align: center;
  font-family: var(--fnb-sans);
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
}

body.fn-nb-shell .fnb-drawer__phone:hover,
body.fn-nb-shell .fnb-drawer__phone:focus {
  color: var(--yellow) !important;
}

@media (max-width: 980px) {
  .fnb-nav,
  .fnb-header__cta {
    display: none;
  }
  /* Must match/beat body.fn-nb-shell button.fnb-burger { display:none } */
  body.fn-nb-shell button.fnb-burger,
  .fnb-burger {
    display: inline-flex;
  }
}

/* —— Hero —— */
.fnb-hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: center;
  background: #0f0f0f;
  overflow: hidden;
  padding-top: 84px;
}

.fnb-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fnb-hero__media img {
  position: absolute;
  left: 0;
  width: 100%;
  /* Taller than the frame + pull up so the house clears the copy block */
  height: 118%;
  top: -10%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.fnb-hero__shade {
  position: absolute;
  inset: 0;
  /* Left reading lane + soft floor — house lights stay visible on the right */
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.78) 0%, rgba(15, 15, 15, 0.42) 38%, rgba(15, 15, 15, 0.1) 62%, rgba(15, 15, 15, 0.02) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.18) 0%, rgba(15, 15, 15, 0.08) 40%, rgba(15, 15, 15, 0.45) 100%);
}

/* Full-width wrap, copy stays left — do not center the text column */
.fnb-hero__content.fnb-wrap,
.fnb-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  max-width: none;
  margin-inline: auto;
  padding: 4.5rem 0 3.75rem;
  color: #fff;
  font-family: var(--fnb-hero);
}

.fnb-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--fnb-hero);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Brand display — sharper than Museo Rounded */
.fn-nb-shell .fnb-hero__title,
.fn-nb-shell h1.fnb-hero__title,
body.fn-nb-shell .fnb-home h1.fnb-hero__title {
  margin: 0 0 1rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(2.2rem, 4.4vw, 3.45rem) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.01em !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  max-width: 12em;
}

.fnb-hero__sub {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-family: var(--fnb-hero);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  background: none;
  border: 0;
  padding: 0;
}

.fnb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

/* Quiet meta under CTAs — not a third button row */
.fnb-hero__proof {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin: 0;
  max-width: 34rem;
  font-family: var(--fnb-hero);
}

.fnb-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.fnb-hero__rating:hover,
.fnb-hero__rating:focus-visible {
  color: rgba(255, 255, 255, 0.92) !important;
}

.fnb-hero__stars {
  color: var(--yellow);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.95;
}

.fnb-hero__creds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.fnb-hero__creds > span[aria-hidden='true'] {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .fnb-hero {
    align-items: end;
    min-height: min(92vh, 780px);
  }
  .fnb-hero__media img {
    width: 100%;
    height: 118%;
    top: -16%;
    left: 0;
    object-fit: cover;
    object-position: center 30%;
    transform: none;
  }
  .fnb-hero__shade {
    background:
      linear-gradient(180deg, rgba(15, 15, 15, 0.2) 0%, rgba(15, 15, 15, 0.15) 35%, rgba(15, 15, 15, 0.78) 100%),
      linear-gradient(90deg, rgba(15, 15, 15, 0.45) 0%, rgba(15, 15, 15, 0.15) 100%);
  }
  .fnb-hero__content {
    padding: 2.5rem 0 2.25rem;
  }
  .fnb-hero__title {
    max-width: none;
  }
  .fnb-hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1rem;
  }
  .fnb-hero__actions .fnb-btn,
  .fnb-hero__actions a.fnb-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Match the full-width CTAs — centered, quieter, two clear lines */
  .fnb-hero__proof {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: none;
    gap: 0.25rem;
  }

  .fnb-hero__rating {
    justify-content: center;
    font-size: 0.78rem;
  }

  .fnb-hero__creds {
    justify-content: center;
    font-size: 0.72rem;
  }
}

/* —— Shared section chrome —— */
.fnb-section-head {
  margin: 0 0 2.25rem;
  max-width: 40rem;
}

.fnb-section-head h2 {
  margin: 0 0 0.65rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem) !important;
  line-height: 1.08 !important;
  color: var(--ink) !important;
}

.fnb-section-head--light h2 {
  color: #fff !important;
}

.fnb-section-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.68);
  max-width: 38rem;
}

.fnb-link--on-dark {
  color: #fff !important;
  border-bottom-color: var(--yellow);
}

.fnb-link--on-dark:hover,
.fnb-link--on-dark:focus-visible {
  color: #fff !important;
  border-bottom-color: var(--lamp);
}

/* —— Our Services (visible list + image per row) —— */
.fnb-services {
  background: #fff;
  padding: 5rem 0 4.5rem;
}

.fnb-services__head {
  margin: 0 0 2.75rem;
  max-width: 36rem;
}

.fnb-services__head h2 {
  margin: 0 0 0.7rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.95rem, 3.6vw, 2.7rem) !important;
  line-height: 1.05 !important;
  color: var(--ink) !important;
}

.fnb-services__lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.5;
  color: rgba(15, 15, 15, 0.62);
}

.fnb-services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(15, 15, 15, 0.14);
}

.fnb-services__item {
  border-bottom: 1px solid rgba(15, 15, 15, 0.14);
}

.fnb-services__link {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem 2.75rem;
  align-items: center;
  padding: 2.75rem 0;
  color: inherit;
  text-decoration: none;
}

.fnb-services__link:hover,
.fnb-services__link:focus-visible {
  color: inherit;
}

.fnb-services__media {
  display: block;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 16 / 11;
}

.fnb-services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.25s ease;
}

.fnb-services__link:hover .fnb-services__media img,
.fnb-services__link:focus-visible .fnb-services__media img {
  opacity: 0.92;
}

.fnb-services__text {
  display: grid;
  gap: 0.7rem;
  max-width: 30rem;
}

.fnb-services__title {
  font-family: var(--fnb-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.fnb-services__copy {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.68);
}

.fnb-services__cta {
  width: fit-content;
  margin-top: 0.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
}

.fnb-services__link:hover .fnb-services__cta,
.fnb-services__link:focus-visible .fnb-services__cta {
  border-bottom-color: var(--ink);
}

.fnb-pathways {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.85rem;
  margin: 2.25rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(15, 15, 15, 0.35);
}

.fnb-pathways a {
  color: rgba(15, 15, 15, 0.72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.fnb-pathways a:hover,
.fnb-pathways a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--yellow);
}

/* —— Reviews (static featured quotes — no plugin carousel) —— */
.fnb-reviews {
  background: #121212;
  color: #fff;
  padding: 4.25rem 0 4rem;
}

.fnb-reviews .fnb-kicker {
  color: var(--yellow);
}

.fnb-reviews__rating {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.fnb-reviews__stars {
  margin: 0;
  color: var(--yellow);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.fnb-reviews__rating strong {
  color: #fff;
}

.fnb-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fnb-review {
  margin: 0;
  padding: 1.35rem 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border-top: 2px solid var(--yellow);
}

.fnb-review__stars {
  margin: 0 0 0.7rem;
  color: var(--yellow);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.fnb-review__quote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.fnb-review__name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.fnb-reviews__more {
  margin: 1.75rem 0 0;
  text-align: center;
}

/* —— Why Nice & Bright (light) —— */
.fnb-why {
  background: #fff;
  color: var(--ink);
  padding: 4.75rem 0 4.5rem;
}

.fnb-why__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  margin: 0 0 2rem;
}

.fnb-why__item {
  padding: 1.35rem 1.25rem 1.4rem;
  background: var(--paper);
  border-top: 3px solid var(--yellow);
}

.fnb-why__item h3 {
  margin: 0 0 0.55rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.2rem, 2vw, 1.4rem) !important;
  line-height: 1.15 !important;
  font-weight: 400 !important;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink) !important;
}

.fnb-why__item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.68);
}

.fnb-why__cta {
  margin-top: 0.25rem;
}

/* —— Gallery strip (dark for contrast) —— */
.fnb-gallery {
  background: var(--ink);
  color: #fff;
  padding: 4rem 0 3.75rem;
}

.fnb-gallery .fnb-kicker {
  color: var(--yellow);
}

.fnb-gallery__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.fnb-gallery__shot {
  display: block;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}

.fnb-gallery__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.25s ease;
}

.fnb-gallery__shot:hover img {
  opacity: 0.92;
  transform: none;
}

.fnb-gallery__more {
  margin: 1.35rem 0 0;
  text-align: center;
}

/* —— Bottom consult band (light bridge into dark footer) —— */
.fnb-consult {
  background: var(--paper);
  color: var(--ink);
  padding: 3.75rem 0;
  border-top: 1px solid rgba(15, 15, 15, 0.08);
}

.fnb-consult__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 1.75rem 3rem;
  align-items: center;
  padding: 2rem 2.15rem;
  background: #fff;
  border-left: 4px solid var(--yellow);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.06);
}

.fnb-consult__copy .fnb-kicker {
  color: var(--yellow-2);
}

.fnb-consult__copy h2 {
  margin: 0 0 0.5rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.65rem, 3vw, 2.25rem) !important;
  color: var(--ink) !important;
  line-height: 1.08 !important;
}

.fnb-consult__copy p:not(.fnb-kicker) {
  margin: 0;
  color: rgba(15, 15, 15, 0.68);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 34rem;
}

.fnb-consult__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.fnb-consult__phone {
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.fnb-consult__phone:hover,
.fnb-consult__phone:focus-visible {
  color: var(--yellow-2) !important;
}

/* Footer */
.fnb-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.75rem 0 1.35rem;
}

.fnb-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.75rem;
}

.fnb-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.fnb-footer__brand img {
  height: 44px !important;
  width: auto !important;
  max-height: 44px;
  mix-blend-mode: lighten;
}

.fnb-footer__brand .fnb-btn {
  width: auto !important;
  max-width: max-content;
  display: inline-flex !important;
  padding: 0.75rem 1.35rem !important;
  margin: 0;
}

.fnb-footer__phone {
  display: inline-flex;
  font-weight: 700;
  color: #fff !important;
  padding: 0 !important;
}

.fnb-footer strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fnb-footer__grid a:not(.fnb-btn):not(.fnb-footer__phone) {
  display: block;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.fnb-footer__grid a:not(.fnb-btn):hover {
  color: var(--yellow);
}

.fnb-footer__cities {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.1rem;
}

.fnb-footer__cities > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.8rem;
}

.fnb-footer__cities a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.fnb-footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fnb-footer__disclaimer {
  margin: 0.85rem auto 0;
  max-width: var(--max);
  padding: 0 1.25rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

.fn-mobile-cta {
  display: none !important;
}

.fnb-dock {
  display: none;
}

.fnb-ico {
  display: block;
  flex: 0 0 auto;
}

/* —— Quote sheet (dark — matches night chrome / header) —— */
.fnb-quote {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
  visibility: hidden;
}

.fnb-quote.is-open {
  pointer-events: auto;
  visibility: visible;
}

.fnb-quote__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.fnb-quote.is-open .fnb-quote__scrim {
  opacity: 1;
}

.fnb-quote__panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(100vw - 0px, 460px);
  max-height: min(92dvh, 92svh, 740px);
  overflow: hidden;
  transform: translate(-50%, 28px);
  opacity: 0;
  background: #141414;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow:
    0 -18px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.24s ease, opacity 0.24s ease;
  font-family: var(--fnb-hero);
}

.fnb-quote.is-open .fnb-quote__panel {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* Pinned chrome — stays visible when keyboard opens / body scrolls */
.fnb-quote__head {
  flex: 0 0 auto;
  padding: 0.55rem 1.25rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #141414;
}

.fnb-quote__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
}

.fnb-quote__grab {
  width: 2.25rem;
  height: 0.28rem;
  margin: 0.15rem auto 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

@media (min-width: 768px) {
  .fnb-quote__panel {
    top: 50%;
    bottom: auto;
    width: min(100% - 2rem, 440px);
    max-height: min(88dvh, 88vh, 700px);
    border-radius: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translate(-50%, calc(-50% + 14px));
  }

  .fnb-quote.is-open .fnb-quote__panel {
    transform: translate(-50%, -50%);
  }

  .fnb-quote__head {
    padding: 1.35rem 1.5rem 1.15rem;
  }

  .fnb-quote__body {
    padding: 1.15rem 1.5rem 1.65rem;
  }

  .fnb-quote__grab {
    display: none;
  }
}

.fnb-quote__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0;
}

.fnb-quote__intro {
  min-width: 0;
}

.fnb-quote__top h2 {
  margin: 0 0 0.4rem;
  font-family: var(--fnb-display);
  font-size: clamp(1.45rem, 3.5vw, 1.7rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.fnb-quote__lede {
  margin: 0;
  max-width: 28em;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 767px) {
  .fnb-quote__lede {
    display: none;
  }

  .fnb-quote__top h2 {
    font-size: 1.35rem;
  }
}

.fnb-quote__close {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: -0.2rem -0.35rem 0 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.fnb-quote__close-x,
.fnb-quote__close-x::before,
.fnb-quote__close-x::after {
  display: block;
}

.fnb-quote__close-x {
  position: relative;
  width: 12px;
  height: 12px;
}

.fnb-quote__close-x::before,
.fnb-quote__close-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 1px;
  background: currentColor;
}

.fnb-quote__close-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.fnb-quote__close-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fnb-quote__close:hover,
.fnb-quote__close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  outline: none;
}

.fnb-quote__hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.fnb-quote__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 0.9rem;
}

.fnb-quote__field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.fnb-quote__field--full {
  grid-column: 1 / -1;
}

.fnb-quote__field > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.15s ease;
}

.fnb-quote__field > span em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.42);
}

.fnb-quote__field input:not([type='file']),
.fnb-quote__field select,
.fnb-quote__field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  box-sizing: border-box;
  color-scheme: dark;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.fnb-quote__field textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.45;
}

.fnb-quote__field input:not([type='file'])::placeholder,
.fnb-quote__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.fnb-quote__field input:not([type='file']):hover,
.fnb-quote__field select:hover,
.fnb-quote__field textarea:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.12);
}

.fnb-quote__field input:not([type='file']):focus,
.fnb-quote__field select:focus,
.fnb-quote__field textarea:focus {
  outline: none;
  border-color: rgba(255, 205, 44, 0.75);
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(255, 205, 44, 0.22);
}

/* Completed fields — yellow cue, not a full yellow fill */
.fnb-quote__field.is-complete > span {
  color: var(--yellow, #ffcd2c);
}

.fnb-quote__field.is-complete input:not([type='file']),
.fnb-quote__field.is-complete select,
.fnb-quote__field.is-complete textarea {
  border-color: rgba(255, 205, 44, 0.62);
  background-color: rgba(255, 205, 44, 0.07);
  color: #fff;
}

.fnb-quote__field.is-complete input:not([type='file']):focus,
.fnb-quote__field.is-complete select:focus,
.fnb-quote__field.is-complete textarea:focus {
  border-color: rgba(255, 205, 44, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 205, 44, 0.22);
}

.fnb-quote__field.is-complete:has(select)::after {
  border-right-color: rgba(255, 205, 44, 0.85);
  border-bottom-color: rgba(255, 205, 44, 0.85);
}

/* Chevron lives on the field — never animate away with background shorthand */
.fnb-quote__field:has(select) {
  position: relative;
}

.fnb-quote__field:has(select)::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  bottom: 1.1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.65);
  transform: rotate(45deg);
  pointer-events: none;
}

.fnb-quote__field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.25rem;
}

.fnb-quote__field select option {
  background: #1a1a1a;
  color: #fff;
}

/* Optional project photo — large tap target on mobile */
.fnb-quote__upload {
  margin-top: 1.35rem;
}

.fnb-quote__upload-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.fnb-quote__upload-label span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
}

.fnb-quote__drop {
  position: relative;
  display: block;
  cursor: pointer;
}

.fnb-quote__file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.fnb-quote__drop-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 88px;
  padding: 1rem 0.9rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.fnb-quote__drop:hover .fnb-quote__drop-ui,
.fnb-quote__drop:focus-within .fnb-quote__drop-ui {
  border-color: rgba(255, 205, 44, 0.65);
  background: rgba(255, 205, 44, 0.06);
}

.fnb-quote__drop.has-file {
  display: none;
}

.fnb-quote__drop-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.fnb-quote__drop-title .is-desk {
  display: none;
}

.fnb-quote__drop-title .is-mobile {
  display: inline;
}

.fnb-quote__drop-hint {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
}

.fnb-quote__file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 205, 44, 0.35);
  background: rgba(255, 205, 44, 0.08);
}

.fnb-quote__file[hidden] {
  display: none !important;
}

.fnb-quote__file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.fnb-quote__file-clear {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--yellow);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.25rem 0;
}

.fnb-quote__file-clear:hover,
.fnb-quote__file-clear:focus-visible {
  color: #fff;
  outline: none;
}

@media (min-width: 768px) {
  .fnb-quote__drop-ui {
    min-height: 76px;
  }

  .fnb-quote__drop-title .is-desk {
    display: inline;
  }

  .fnb-quote__drop-title .is-mobile {
    display: none;
  }
}

.fnb-quote__sms {
  margin: 1.4rem 0 0;
  padding: 1.15rem 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fnb-quote__sms legend {
  padding: 0;
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.fnb-quote__seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.fnb-quote__seg-opt {
  cursor: pointer;
}

.fnb-quote__seg-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fnb-quote__seg-opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.fnb-quote__seg-opt:hover span {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.fnb-quote__seg-opt input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(255, 205, 44, 0.28);
}

.fnb-quote__seg-opt input:checked + span {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.fnb-quote__fine {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

body.fn-nb-shell .fnb-quote .fnb-quote__fine a,
body.fn-nb-shell .fnb-quote .fnb-quote__privacy,
.fnb-quote__fine a,
.fnb-quote__privacy {
  color: var(--yellow) !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1.5px;
}

body.fn-nb-shell .fnb-quote .fnb-quote__fine a:hover,
body.fn-nb-shell .fnb-quote .fnb-quote__privacy:hover,
.fnb-quote__fine a:hover,
.fnb-quote__privacy:hover {
  color: #fff !important;
}

.fnb-quote__status {
  min-height: 1.15em;
  margin: 1rem 0 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff8e8e;
}

.fnb-quote__actions {
  margin-top: 0.35rem;
}

.fnb-quote__submit,
body.fn-nb-shell .fnb-quote .fnb-quote__submit.fnb-btn,
body.fn-nb-shell .fnb-quote button.fnb-quote__submit {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  justify-content: center;
  box-sizing: border-box;
}

.fnb-quote__trust {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.fnb-quote__success {
  padding: 1.25rem 0 0.35rem;
  text-align: center;
}

.fnb-quote__success-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.fnb-quote__success-title {
  margin: 0 0 0.55rem;
  font-family: var(--fnb-display);
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.fnb-quote__success-copy {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 560px) {
  .fnb-quote__grid {
    grid-template-columns: 1fr;
  }

  .fnb-quote__field--full {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  body.fn-nb-shell {
    padding-bottom: 76px;
  }

  .fnb-dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1100;
    gap: 0.4rem;
    padding: 0.4rem;
    max-width: calc(100vw - 24px);
    box-sizing: border-box;
    border-radius: 12px;
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(255, 205, 44, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .fnb-dock.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .fnb-dock a,
  .fnb-dock button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    min-width: 0;
    border: 0;
    border-radius: 8px;
    font-family: var(--fnb-sans);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 0.55rem;
    cursor: pointer;
  }

  .fnb-dock__call {
    color: #fff;
    background: #2a2a2a;
    text-decoration: none;
  }

  .fnb-dock__quote {
    color: var(--ink);
    background: var(--yellow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fnb-quote__scrim,
  .fnb-quote__panel {
    transition: none;
  }
}

@media (max-width: 900px) {
  .fnb-services__link {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 2.15rem 0;
  }

  .fnb-services__media {
    aspect-ratio: 16 / 10;
  }

  .fnb-services__text {
    max-width: none;
  }

  .fnb-reviews__grid {
    grid-template-columns: 1fr;
  }

  .fnb-why__list {
    grid-template-columns: 1fr;
  }

  .fnb-why__cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .fnb-why__cta .fnb-btn,
  .fnb-reviews__more .fnb-btn {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .fnb-gallery__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fnb-consult__panel {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.65rem 1.4rem;
  }

  .fnb-consult__actions {
    align-items: stretch;
  }

  .fnb-consult__actions .fnb-btn {
    width: 100%;
    justify-content: center;
  }

  .fnb-consult__phone {
    text-align: center;
    width: 100%;
  }

  .fnb-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .fnb-services {
    padding: 3.5rem 0 3.25rem;
  }

  .fnb-services__head {
    margin-bottom: 1.75rem;
  }

  .fnb-services__link {
    padding: 1.85rem 0;
  }

  .fnb-pathways {
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1.85rem;
  }

  .fnb-pathways span[aria-hidden="true"] {
    display: none;
  }

  .fnb-gallery__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .fnb-reviews,
  .fnb-why,
  .fnb-gallery {
    padding-top: 3.25rem;
    padding-bottom: 3rem;
  }
}

body.fn-nb-shell .site-header,
body.fn-nb-shell .site-footer,
body.fn-nb-shell #masthead {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .fnb-nav__link::after,
  .fnb-nav__btn::after,
  .fnb-gallery__shot img,
  .fnb-dock {
    transition: none;
  }
}

/* —— Inner pages (fn-nb-pages.php) — design pass 1 —— */
.fnb-page {
  font-family: var(--fnb-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
}

.fnb-page a:not(.fnb-btn):not(.fnb-link) {
  color: inherit;
  text-decoration: none;
}

.fnb-page section {
  padding: 4.25rem 0;
}

.fnb-page .fnb-page-hero,
.fnb-page .fnb-trust,
.fnb-page .fnb-consult {
  padding-top: 0;
  padding-bottom: 0;
}

.fnb-page .fnb-trust {
  padding: 0.95rem 0;
}

.fnb-page .fnb-consult {
  padding: 4rem 0;
}

/* Section rhythm: calm paper base, deliberate ink breaks */
.fnb-page .fnb-prose,
.fnb-page .fnb-chips,
.fnb-page .fnb-scope,
.fnb-page .fnb-packages,
.fnb-page .fnb-faq,
.fnb-page .fnb-faq-hub,
.fnb-page .fnb-areas,
.fnb-page .fnb-careers-panels {
  background: var(--paper);
}

.fnb-page .fnb-split,
.fnb-page .fnb-process {
  background: #fff;
}

.fnb-page .fnb-prose + .fnb-prose {
  padding-top: 0;
}

.fnb-page .fnb-warranty-card {
  background: var(--ink);
  color: #fff;
}

.fnb-page .fnb-warranty,
.fnb-page .fnb-founder {
  background: var(--ink);
  color: #fff;
}

.fnb-page .fnb-warranty-card + .fnb-warranty-card {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fnb-page-hero {
  position: relative;
  min-height: min(68vh, 620px);
  display: grid;
  align-items: center;
  background: #0f0f0f;
  overflow: hidden;
  padding-top: 84px;
}

.fnb-page-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fnb-page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.fnb-page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.82) 0%, rgba(15, 15, 15, 0.48) 40%, rgba(15, 15, 15, 0.12) 68%, rgba(15, 15, 15, 0.04) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.2) 0%, rgba(15, 15, 15, 0.08) 42%, rgba(15, 15, 15, 0.55) 100%);
}

.fnb-page-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 3.25rem;
  color: #fff;
  font-family: var(--fnb-hero);
}

.fnb-page-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.fn-nb-shell .fnb-page-hero__title,
.fn-nb-shell h1.fnb-page-hero__title {
  margin: 0 0 1rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(2rem, 4vw, 3.1rem) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.01em !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  max-width: 16em;
}

.fnb-page-hero__sub {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.fnb-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Trust — quiet strip, not shouty ticker */
.fnb-trust {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 205, 44, 0.14);
}

.fnb-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

.fnb-trust__list li {
  position: relative;
  padding: 0.15rem 0.95rem;
}

.fnb-trust__list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.75;
  transform: translate(50%, -50%);
}

/* Process — vertical timeline story */
.fnb-process {
  background: #fff;
}

.fnb-process .fnb-section-head {
  max-width: 40rem;
}

.fnb-process__list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  max-width: 40rem;
  display: grid;
  gap: 0;
  position: relative;
}

.fnb-process__list::before {
  content: '';
  position: absolute;
  left: 1.05rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: rgba(15, 15, 15, 0.12);
}

.fnb-process__step {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 0 1.15rem;
  padding: 0 0 1.85rem;
  position: relative;
}

.fnb-process__step:last-child {
  padding-bottom: 0;
}

.fnb-process__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.fnb-process__body h3 {
  margin: 0.2rem 0 0.4rem !important;
  font-family: var(--fnb-display) !important;
  font-size: 1.2rem !important;
  line-height: 1.2 !important;
  color: var(--ink) !important;
}

.fnb-process__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.7);
}

/* FAQ — editorial Q&A, no accordion */
.fnb-faq {
  background: var(--paper);
}

.fnb-faq .fnb-section-head {
  max-width: 40rem;
}

.fnb-faq__list {
  margin: 2.25rem 0 0;
  max-width: 40rem;
  display: grid;
  gap: 0;
}

.fnb-faq__item {
  padding: 1.45rem 0;
  border-top: 1px solid rgba(15, 15, 15, 0.12);
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.fnb-faq__item:last-child {
  border-bottom: 1px solid rgba(15, 15, 15, 0.12);
}

.fnb-faq__q {
  margin: 0 0 0.55rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem) !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}

.fnb-faq__a {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(15, 15, 15, 0.72);
  max-width: 38rem;
}

/* Prose */
.fnb-prose__inner {
  max-width: 40rem;
}

.fnb-prose h2 {
  margin: 0 0 1rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem) !important;
  line-height: 1.12 !important;
  color: var(--ink) !important;
}

.fnb-prose p {
  margin: 0 0 1.1rem;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(15, 15, 15, 0.74);
}

.fnb-prose__cta {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.fnb-bullets {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: rgba(15, 15, 15, 0.78);
  line-height: 1.45;
}

.fnb-bullets li {
  position: relative;
  padding-left: 1.15rem;
}

.fnb-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--yellow);
}

/* Split — larger media, less “card” */
.fnb-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem 3rem;
  align-items: center;
}

.fnb-split--flip .fnb-split__grid {
  direction: rtl;
}

.fnb-split--flip .fnb-split__grid > * {
  direction: ltr;
}

.fnb-split__copy h2 {
  margin: 0 0 1rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem) !important;
  line-height: 1.12 !important;
  color: var(--ink) !important;
}

.fnb-split__copy p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(15, 15, 15, 0.74);
}

.fnb-split__media {
  overflow: hidden;
  background: #0f0f0f;
  aspect-ratio: 5 / 4;
  min-height: 280px;
}

.fnb-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Packages — numbered tiers, Signature featured */
.fnb-packages__inner {
  max-width: 44rem;
}

.fnb-packages__list {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.fnb-packages__tier {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(15, 15, 15, 0.12);
}

.fnb-packages__tier:last-child {
  border-bottom: 1px solid rgba(15, 15, 15, 0.12);
}

.fnb-packages__tier--featured {
  background: #fff;
  margin: 0 -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-top-color: rgba(15, 15, 15, 0.18);
  box-shadow: inset 3px 0 0 var(--yellow);
}

.fnb-packages__index {
  font-family: var(--fnb-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(15, 15, 15, 0.28);
  line-height: 1.2;
  padding-top: 0.15rem;
}

.fnb-packages__tier--featured .fnb-packages__index {
  color: var(--yellow-2, #c9a000);
}

.fnb-packages__body h3 {
  margin: 0 0 0.5rem !important;
  font-family: var(--fnb-display) !important;
  font-size: 1.35rem !important;
  color: var(--ink) !important;
}

.fnb-packages__body p {
  margin: 0;
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.7);
}

.fnb-packages__cta {
  margin: 2rem 0 0;
}

/* Chips — plain linked list, not SaaS pills */
.fnb-chips__inner {
  max-width: 44rem;
}

.fnb-chips h2 {
  margin: 0 0 0.85rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem) !important;
  color: var(--ink) !important;
}

.fnb-chips__list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
}

.fnb-chips__list li,
.fnb-chips__list a {
  display: inline;
  padding: 0;
  background: none;
  border: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink) !important;
  text-decoration: underline;
  text-decoration-color: rgba(15, 15, 15, 0.22);
  text-underline-offset: 0.22em;
}

.fnb-chips__list li {
  text-decoration: none;
}

.fnb-chips__list li::after {
  content: none;
}

.fnb-chips__list a:hover,
.fnb-chips__list a:focus-visible {
  text-decoration-color: var(--yellow);
  background: none;
  border: 0;
}

/* Warranty — calm dark band */
.fnb-warranty-card__inner {
  max-width: 40rem;
}

.fnb-warranty-card .fnb-kicker {
  color: var(--yellow);
  margin: 0 0 0.65rem;
}

.fnb-warranty-card h2 {
  margin: 0 0 0.85rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.55rem, 2.6vw, 2rem) !important;
  color: #fff !important;
}

.fnb-warranty-card p {
  margin: 0 0 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.fnb-warranty-card__link {
  margin: 1.1rem 0 0 !important;
}

/* Warranty page — one balanced band */
.fnb-warranty {
  padding: clamp(3.5rem, 8vw, 5rem) 0 !important;
}

.fnb-warranty__inner {
  display: grid;
  gap: 0;
  max-width: 44rem;
}

.fnb-warranty__item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fnb-warranty__item:first-child {
  padding-top: 0;
}

.fnb-warranty__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fnb-warranty__item .fnb-kicker {
  color: var(--yellow);
  margin: 0 0 0.55rem;
}

.fnb-warranty__item h2 {
  margin: 0 0 0.75rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem) !important;
  color: #fff !important;
}

.fnb-warranty__item p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* Team founder band — equal padding, not chained prose */
.fnb-founder {
  padding: clamp(3.5rem, 8vw, 5rem) 0 !important;
}

.fnb-founder__inner {
  max-width: 40rem;
}

.fnb-founder .fnb-kicker {
  color: var(--yellow);
  margin: 0 0 0.65rem;
}

.fnb-founder h2 {
  margin: 0 0 0.85rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem) !important;
  color: #fff !important;
}

.fnb-founder p {
  margin: 0 0 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.fnb-founder .fnb-section-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.fnb-expert {
  background: var(--ink) !important;
  color: #fff;
  padding: 4.5rem 0 4rem;
}

.fnb-expert .fnb-kicker {
  color: var(--yellow);
}

.fnb-expert h2 {
  color: #fff !important;
}

.fnb-expert p {
  color: rgba(255, 255, 255, 0.78);
}

.fnb-expert .fnb-section-lead {
  color: rgba(255, 255, 255, 0.58);
}

.fnb-expert__cta {
  margin: 1.75rem 0 0;
}

.fnb-page-gallery {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 980px) {
  .fnb-split__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .fnb-split--flip .fnb-split__grid {
    direction: ltr;
  }

  .fnb-split__media {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

  .fnb-packages__tier--featured {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .fnb-page section {
    padding: 3.25rem 0;
  }

  .fnb-page-hero {
    align-items: end;
    min-height: min(72vh, 620px);
  }

  .fnb-page-hero__content {
    padding: 2.25rem 0 2rem;
  }

  .fnb-page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fnb-page-hero__actions .fnb-btn {
    width: 100%;
  }

  .fnb-trust__list {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
  }

  .fnb-trust__list li {
    padding: 0;
  }

  .fnb-trust__list li:not(:last-child)::after {
    display: none;
  }

  .fnb-process__list::before {
    left: 0.95rem;
  }

  .fnb-packages__tier {
    grid-template-columns: 2.4rem minmax(0, 1fr);
  }
}

/* —— Service pages: dark edge-to-edge intro (header-readable) —— */
.fnb-page--service {
  padding-top: 0;
}

.fnb-page--service > .fnb-svc-intro,
.fnb-page.fnb-page--service .fnb-svc-intro {
  padding: 0 !important;
  margin: 0;
  background: #0f0f0f;
  color: #fff;
  min-height: min(86vh, 760px);
  overflow: hidden;
}

.fnb-svc-intro__stage {
  display: grid !important;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
  min-height: inherit;
  width: 100%;
}

.fnb-svc-intro__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 7.25rem clamp(1.25rem, 4vw, 3.5rem) 3.25rem;
  padding-left: max(1.25rem, calc((100vw - var(--max)) / 2 + 0.25rem));
  max-width: none;
  background:
    linear-gradient(90deg, #0f0f0f 0%, #0f0f0f 72%, rgba(15, 15, 15, 0.55) 100%);
}

.fnb-svc-intro__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.fn-nb-shell .fnb-svc-intro__title,
.fn-nb-shell h1.fnb-svc-intro__title {
  margin: 0 0 0.85rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(2.35rem, 4.6vw, 3.35rem) !important;
  line-height: 1.02 !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.01em !important;
  max-width: 9.5em;
  text-transform: none !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.fnb-svc-intro__tagline {
  margin: 0 0 0.85rem;
  font-family: var(--fnb-display);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  max-width: 26rem;
}

.fnb-svc-intro__sub {
  margin: 0 0 1.6rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
}

.fnb-svc-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.fn-nb-shell .fnb-svc-intro .fnb-btn.fnb-btn--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

body.fn-nb-shell .fnb-svc-intro .fnb-btn.fnb-btn--ghost:hover,
body.fn-nb-shell .fnb-svc-intro .fnb-btn.fnb-btn--ghost:focus-visible {
  border-color: var(--yellow) !important;
  color: var(--yellow) !important;
  background: transparent !important;
}

/* Photo bleeds to the right edge — not a floating card */
.fnb-svc-intro__media {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  min-height: 100%;
  background: #0f0f0f;
  overflow: hidden;
}

.fnb-svc-intro__media img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center 40% !important;
  display: block !important;
}

.fnb-svc-intro__media--empty {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255, 205, 44, 0.12), transparent 55%),
    #141414;
}

/* Trust under dark intro: quiet ink on paper */
.fnb-page--service .fnb-trust {
  background: var(--paper) !important;
  color: rgba(15, 15, 15, 0.55);
  border: 0 !important;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08) !important;
  padding: 0.9rem 0 1.15rem !important;
}

.fnb-page--service .fnb-trust__list {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(15, 15, 15, 0.55);
}

.fnb-page--service .fnb-trust__list li {
  padding: 0.1rem 0.85rem 0.1rem 0;
}

.fnb-page--service .fnb-trust__list li:not(:last-child)::after {
  background: rgba(15, 15, 15, 0.28);
  width: 3px;
  height: 3px;
  right: 0.35rem;
}

.fnb-svc-moment {
  padding: 0 !important;
  background: var(--paper) !important;
}

.fnb-svc-moment__figure {
  margin: 0;
  position: relative;
  background: #0f0f0f;
}

.fnb-svc-moment__figure img {
  width: 100%;
  height: auto !important;
  max-height: 520px;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 21 / 9;
}

.fnb-svc-moment__figure figcaption {
  position: static;
  margin: 0.85rem auto 0;
  padding: 0 1rem;
  max-width: var(--max);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(15, 15, 15, 0.55);
  background: none;
}

.fnb-page--service .fnb-prose,
.fnb-page--service .fnb-chips,
.fnb-page--service .fnb-packages,
.fnb-page--service .fnb-faq,
.fnb-page--service .fnb-process,
.fnb-page--service .fnb-split {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.fnb-page--service .fnb-page-gallery {
  padding-top: 3.5rem;
  padding-bottom: 3.25rem;
}

.fnb-page--service .fnb-gallery__strip {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.fnb-page--service .fnb-gallery__shot {
  position: relative;
  background: #1a1a1a;
}

.fnb-page--service .fnb-gallery__shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .fnb-page--service > .fnb-svc-intro,
  .fnb-page.fnb-page--service .fnb-svc-intro {
    min-height: 0;
  }

  .fnb-svc-intro__stage {
    grid-template-columns: 1fr !important;
  }

  .fnb-svc-intro__media {
    order: -1;
    min-height: min(48vh, 380px);
    aspect-ratio: 16 / 10;
  }

  .fnb-svc-intro__media img {
    position: absolute !important;
  }

  .fnb-svc-intro__copy {
    order: 0;
    padding: 2rem 1.25rem 2.5rem;
    padding-left: 1.25rem;
    background: #0f0f0f;
    max-width: none;
  }

  .fnb-svc-moment__figure img {
    aspect-ratio: 16 / 10;
    max-height: 360px;
    min-height: 180px;
  }

  .fnb-page--service .fnb-trust__list {
    justify-content: flex-start;
  }

  .fnb-page--service .fnb-trust__list li:not(:last-child)::after {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .fnb-svc-intro__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fnb-svc-intro__actions .fnb-btn {
    width: 100%;
  }

  .fnb-page--service .fnb-trust__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.15rem 0;
  }

  .fnb-page--service section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .fn-nb-shell .fnb-svc-intro__title,
  .fn-nb-shell h1.fnb-svc-intro__title {
    font-size: clamp(2rem, 9vw, 2.55rem) !important;
  }
}

/* ============================================================
   Service pages — shared header + content scale (from Holiday pass)
   ============================================================ */
.fnb-page--service {
  --fnb-svc-max: 1200px;
  --fnb-svc-gutter: clamp(1.25rem, 4vw, 4rem);
}

.fnb-page--service .fnb-wrap {
  width: min(100% - (var(--fnb-svc-gutter) * 2), var(--fnb-svc-max));
}

/* Hero — dark split intro (all service pages) */
.fnb-page--service .fnb-svc-intro {
  min-height: min(82vh, 720px);
}

.fnb-page--service .fnb-svc-intro__stage {
  grid-template-columns: minmax(17rem, 0.42fr) minmax(0, 0.58fr);
}

.fn-nb-shell .fnb-page--service h1.fnb-svc-intro__title,
body.fn-nb-shell .fnb-page--service .fnb-svc-intro__title {
  font-size: clamp(2.6rem, 5vw, 3.75rem) !important;
  max-width: 10em;
}

.fnb-page--service .fnb-svc-intro__tagline {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  max-width: 28rem;
}

.fnb-page--service .fnb-svc-intro__sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 34rem;
}

/* Credibility strip — slightly taller / easier to read */
.fnb-page--service .fnb-trust {
  background: #fff !important;
  padding: 1.75rem 0 !important;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08) !important;
}

.fnb-page--service .fnb-trust__list {
  justify-content: center;
  gap: 0.45rem 0.2rem;
  font-size: 0.98rem;
  line-height: 1.35;
  color: rgba(15, 15, 15, 0.68);
}

.fnb-page--service .fnb-trust__list li {
  padding: 0.35rem 1.1rem;
}

.fnb-page--service .fnb-trust__list li:not(:last-child)::after {
  background: rgba(15, 15, 15, 0.25);
  width: 3px;
  height: 3px;
  right: 0;
}

/* Combined editorial: photo + service copy (replaces standalone moment) */
.fnb-page--service .fnb-editorial {
  background: #fff;
  padding-top: clamp(3.25rem, 7vw, 5.5rem) !important;
  padding-bottom: clamp(3.25rem, 7vw, 5.5rem) !important;
}

.fnb-page--service .fnb-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: 2.5rem 3rem;
  align-items: center;
}

.fnb-page--service .fnb-editorial__media {
  margin: 0;
  overflow: hidden;
  background: #0f0f0f;
  aspect-ratio: 4 / 3;
  max-height: 420px;
}

.fnb-page--service .fnb-img,
.fnb-page--service .fnb-svc-intro__media img,
.fnb-page--service .fnb-editorial__media img,
.fnb-page--service .fnb-split__media img,
.fnb-page--service .fnb-gallery__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fnb-page--service .fnb-editorial__media,
.fnb-page--service .fnb-split__media,
.fnb-page--service .fnb-gallery__shot {
  overflow: hidden;
  background: #0f0f0f;
}

.fnb-page--service .fnb-split__media {
  position: relative;
}

.fnb-page--service .fnb-split__media img {
  position: absolute;
  inset: 0;
}

.fnb-page--service .fnb-editorial__media figcaption {
  display: none;
}

.fnb-page--service .fnb-editorial__copy h2 {
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.9rem, 3.2vw, 2.45rem) !important;
  line-height: 1.12 !important;
  max-width: 16em;
  margin: 0 0 1rem !important;
}

.fnb-page--service .fnb-editorial__copy > p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 1.35rem;
  max-width: 42ch;
}

.fnb-page--service .fnb-editorial__copy .fnb-bullets {
  margin: 0;
  gap: 0.8rem;
}

.fnb-page--service .fnb-editorial__copy .fnb-bullets li {
  font-size: 1.02rem;
  line-height: 1.45;
  padding-left: 1.25rem;
}

/* Section rhythm */
.fnb-page--service .fnb-prose,
.fnb-page--service .fnb-packages,
.fnb-page--service .fnb-split,
.fnb-page--service .fnb-process,
.fnb-page--service .fnb-faq,
.fnb-page--service .fnb-chips,
.fnb-page--service .fnb-warranty-card,
.fnb-page--service .fnb-consult {
  padding-top: clamp(3.75rem, 8vw, 6.25rem) !important;
  padding-bottom: clamp(3.75rem, 8vw, 6.25rem) !important;
}

.fnb-page--service .fnb-prose h2,
.fnb-page--service .fnb-packages .fnb-section-head h2,
.fnb-page--service .fnb-split__copy h2,
.fnb-page--service .fnb-process .fnb-section-head h2,
.fnb-page--service .fnb-faq .fnb-section-head h2,
.fnb-page--service .fnb-chips h2,
.fnb-page--service .fnb-warranty-card h2,
.fnb-page--service .fnb-page-gallery .fnb-section-head h2 {
  font-family: var(--fnb-display) !important;
  font-size: clamp(2rem, 3.4vw, 2.5rem) !important;
  line-height: 1.12 !important;
  max-width: 18em;
}

.fnb-page--service .fnb-prose > .fnb-wrap > p,
.fnb-page--service .fnb-split__copy p,
.fnb-page--service .fnb-section-lead,
.fnb-page--service .fnb-chips .fnb-section-lead,
.fnb-page--service .fnb-warranty-card p {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 62ch;
}

/* Quiet commercial cross-link */
.fnb-page--service .fnb-prose--crosslink {
  padding-top: 1.85rem !important;
  padding-bottom: 1.85rem !important;
  background: #fff;
  border-top: 1px solid rgba(15, 15, 15, 0.1);
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.fnb-page--service .fnb-prose--crosslink .fnb-prose__inner {
  max-width: none;
  display: flex;
  justify-content: center;
}

.fnb-page--service .fnb-prose--crosslink .fnb-prose__cta {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 1.15rem;
  font-size: 1.02rem;
  color: rgba(15, 15, 15, 0.72);
  text-align: center;
}

.fnb-page--service .fnb-prose--crosslink .fnb-link {
  margin-top: 0;
  padding-top: 0;
  color: inherit;
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
  text-decoration: none;
}

.fnb-page--service .fnb-prose--crosslink .fnb-link:hover {
  color: inherit;
  border-bottom-color: var(--yellow-2, #b89200);
}

/* Packages — full-width, substantial cards */
.fnb-page--service .fnb-packages {
  background: var(--paper);
}

.fnb-page--service .fnb-packages__inner {
  max-width: none;
}

.fnb-page--service .fnb-packages .fnb-section-head {
  max-width: 42rem;
  margin-bottom: 0.25rem;
}

.fnb-page--service .fnb-packages__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}

.fnb-page--service .fnb-packages__tier {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 1.9rem 1.85rem 2rem;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-top: 1px solid rgba(15, 15, 15, 0.1);
  box-shadow: none;
  grid-template-columns: none;
}

.fnb-page--service .fnb-packages__tier:last-child {
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.fnb-page--service .fnb-packages__tier--featured {
  margin: 0;
  padding-left: 1.85rem;
  padding-right: 1.85rem;
  border-color: rgba(255, 205, 44, 0.6);
  box-shadow: inset 0 3px 0 var(--yellow);
  background: #fffef8;
}

.fnb-page--service .fnb-packages__index {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(15, 15, 15, 0.32);
}

.fnb-page--service .fnb-packages__tier--featured .fnb-packages__index {
  color: var(--yellow-2, #b89200);
}

.fnb-page--service .fnb-packages__body h3 {
  font-size: 1.65rem !important;
  margin-bottom: 0.7rem !important;
}

.fnb-page--service .fnb-packages__body p {
  font-size: 1.02rem;
  line-height: 1.55;
}

.fnb-page--service .fnb-packages__cta {
  margin-top: 1.65rem;
  text-align: left;
}

/* Maintenance split — ~46 / 54, larger photo */
.fnb-page--service .fnb-split {
  background: #fff;
}

.fnb-page--service .fnb-split__grid {
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 2.75rem 3.25rem;
  align-items: center;
}

.fnb-page--service .fnb-split__media {
  aspect-ratio: 4 / 3;
  min-height: 360px;
}

.fnb-page--service .fnb-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process — ~42 / 58, stronger step hierarchy */
.fnb-page--service .fnb-process {
  background: var(--paper);
}

.fnb-page--service .fnb-process__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 2.75rem 3.25rem;
  align-items: start;
}

.fnb-page--service .fnb-process .fnb-section-head {
  max-width: none;
  position: sticky;
  top: 5.5rem;
}

.fnb-page--service .fnb-process__list {
  max-width: none;
  margin-top: 0;
  position: relative;
}

.fnb-page--service .fnb-process__list::before {
  left: 1rem;
  width: 1px;
  background: rgba(15, 15, 15, 0.1);
  opacity: 1;
}

.fnb-page--service .fnb-process__num {
  width: 2rem;
  height: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.fnb-page--service .fnb-process__body h3 {
  font-size: 1.35rem !important;
  margin-bottom: 0.35rem !important;
}

.fnb-page--service .fnb-process__body p {
  font-size: 1.05rem;
  line-height: 1.55;
}

.fnb-page--service .fnb-process__step {
  gap: 1rem;
  padding-bottom: 1.85rem;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  margin-bottom: 1.35rem;
}

.fnb-page--service .fnb-process__step:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* FAQ — readable two-column editorial Q&A */
.fnb-page--service .fnb-faq {
  background: #fff;
}

.fnb-page--service .fnb-faq .fnb-section-head {
  max-width: 40rem;
  margin-bottom: 0.35rem;
}

.fnb-page--service .fnb-faq__list {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.75rem;
  row-gap: 0;
  margin-top: 2.25rem;
}

.fnb-page--service .fnb-faq__item {
  padding: 1.65rem 0;
}

.fnb-page--service .fnb-faq__q {
  font-size: clamp(1.12rem, 1.5vw, 1.28rem) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.55rem !important;
}

.fnb-page--service .fnb-faq__a {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: none;
}

/* Gallery — unique shots only; size by count */
.fnb-page--service .fnb-page-gallery {
  padding-top: clamp(3.75rem, 8vw, 5.75rem) !important;
  padding-bottom: clamp(3.75rem, 8vw, 5.75rem) !important;
}

/* Service page: full client photo set (lightbox grid) */
.fnb-svc-photos {
  background: #0f0f0f;
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 !important;
}

.fnb-svc-photos .fnb-section-head h2 {
  color: #fff !important;
}

.fnb-svc-photos__hint {
  color: rgba(255, 255, 255, 0.62) !important;
  margin-top: 0.65rem !important;
}

.fnb-svc-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.fnb-svc-photos--duo .fnb-svc-photos__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fnb-svc-photos--solo .fnb-svc-photos__grid {
  grid-template-columns: minmax(0, 36rem);
}

.fnb-svc-photos__item {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}

.fnb-svc-photos__open {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.fnb-svc-photos__open img,
.fnb-svc-photos__item .fnb-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.45s ease;
}

.fnb-svc-photos__open:hover img,
.fnb-svc-photos__open:focus-visible img {
  transform: scale(1.04);
}

.fnb-svc-photos__open:focus-visible {
  outline: 2px solid var(--yellow, #ffcd2c);
  outline-offset: -2px;
}

.fnb-svc-photos__more {
  margin: 1.5rem 0 0;
}

@media (max-width: 980px) {
  .fnb-svc-photos__grid,
  .fnb-svc-photos--duo .fnb-svc-photos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fnb-svc-photos__grid,
  .fnb-svc-photos--duo .fnb-svc-photos__grid {
    grid-template-columns: 1fr;
  }
}

.fnb-page--service .fnb-gallery--solo .fnb-gallery__strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.fnb-page--service .fnb-gallery--solo .fnb-gallery__shot {
  aspect-ratio: 16 / 10;
  min-height: 320px;
  max-width: 56rem;
}

.fnb-page--service .fnb-gallery--duo .fnb-gallery__strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fnb-page--service .fnb-gallery--duo .fnb-gallery__shot {
  aspect-ratio: 4 / 3;
  min-height: 300px;
}

.fnb-page--service .fnb-gallery--trio .fnb-gallery__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.fnb-page--service .fnb-gallery--trio .fnb-gallery__shot {
  aspect-ratio: 4 / 3;
  min-height: 240px;
}

.fnb-page--service .fnb-gallery--grid .fnb-gallery__strip {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.fnb-page--service .fnb-gallery--grid .fnb-gallery__shot {
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

/* Final CTA — actual closing sales moment */
.fnb-page--service .fnb-consult {
  background: var(--paper);
}

.fnb-page--service .fnb-consult__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2rem 2.75rem;
  align-items: center;
  padding: 3rem 2.85rem;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-left: 5px solid var(--yellow);
  box-shadow: none;
}

.fnb-page--service .fnb-consult__copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.35rem) !important;
  line-height: 1.15 !important;
}

.fnb-page--service .fnb-consult__copy p:not(.fnb-kicker) {
  font-size: 1.05rem;
  max-width: 42ch;
}

.fnb-page--service .fnb-consult__actions {
  justify-content: flex-end;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .fnb-page--service .fnb-svc-intro__stage {
    grid-template-columns: minmax(16rem, 0.46fr) minmax(0, 0.54fr);
  }

  .fnb-page--service .fnb-packages__list {
    grid-template-columns: 1fr;
  }

  .fnb-page--service .fnb-process__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fnb-page--service .fnb-process .fnb-section-head {
    position: static;
  }

  .fnb-page--service .fnb-faq__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .fnb-page--service .fnb-svc-intro__stage {
    grid-template-columns: 1fr !important;
  }

  .fnb-page--service .fnb-editorial__grid,
  .fnb-page--service .fnb-split__grid,
  .fnb-page--service .fnb-consult__panel,
  .fnb-page--service .fnb-gallery--duo .fnb-gallery__strip,
  .fnb-page--service .fnb-gallery--trio .fnb-gallery__strip {
    grid-template-columns: 1fr;
  }

  .fnb-page--service .fnb-editorial__media img {
    max-height: none;
  }

  .fnb-page--service .fnb-consult__actions {
    align-items: stretch;
    justify-content: flex-start;
  }

  .fnb-page--service .fnb-split__media {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .fnb-page--service {
    --fnb-svc-gutter: 1.35rem;
  }

  .fnb-page--service .fnb-editorial,
  .fnb-page--service .fnb-prose,
  .fnb-page--service .fnb-packages,
  .fnb-page--service .fnb-split,
  .fnb-page--service .fnb-process,
  .fnb-page--service .fnb-faq,
  .fnb-page--service .fnb-chips,
  .fnb-page--service .fnb-warranty-card,
  .fnb-page--service .fnb-consult,
  .fnb-page--service .fnb-page-gallery {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .fnb-page--service .fnb-prose--crosslink {
    padding-top: 1.65rem !important;
    padding-bottom: 1.65rem !important;
  }

  .fnb-page--service .fnb-prose--crosslink .fnb-prose__cta {
    flex-direction: column;
    align-items: center;
  }

  .fnb-page--service .fnb-trust {
    padding: 1.5rem 0 !important;
  }

  .fnb-page--service .fnb-trust__list {
    justify-content: flex-start;
  }

  .fnb-page--service .fnb-packages__tier {
    padding: 1.65rem 1.4rem 1.75rem;
  }

  .fnb-page--service .fnb-gallery--duo .fnb-gallery__shot {
    min-height: 220px;
  }

  .fnb-page--service .fnb-consult__panel {
    padding: 2.15rem 1.5rem;
  }

  .fnb-page--service .fnb-svc-intro__media {
    min-height: min(42vh, 340px);
  }
}

/* —— FAQ deep-link target (fixed header) —— */
.fnb-faq {
  scroll-margin-top: 6.5rem;
}

/* —— FAQ hub service jump links —— */
.fnb-faq-hub {
  background: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0 !important;
}

.fnb-faq-hub__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.fnb-faq-hub__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.3rem 1.25rem;
  background: var(--paper);
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-left: 4px solid var(--yellow);
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fnb-faq-hub__item:hover,
.fnb-faq-hub__item:focus-visible {
  background: #fff;
  border-color: rgba(15, 15, 15, 0.16);
  color: var(--ink) !important;
  transform: translateY(-1px);
  outline: none;
}

.fnb-faq-hub__label {
  font-family: var(--fnb-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.fnb-faq-hub__meta {
  font-size: 0.88rem;
  color: rgba(15, 15, 15, 0.55);
}

.fnb-faq-hub__item:hover .fnb-faq-hub__meta,
.fnb-faq-hub__item:focus-visible .fnb-faq-hub__meta {
  color: rgba(15, 15, 15, 0.7);
}

@media (max-width: 640px) {
  .fnb-faq-hub__nav {
    grid-template-columns: 1fr;
  }
}

/* —— Our Work full gallery page —— */
.fnb-page--gallery .fnb-work-gallery {
  background: #0f0f0f;
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 !important;
}

.fnb-page--gallery .fnb-work-gallery .fnb-section-head h2 {
  color: #fff !important;
}

.fnb-work-gallery__hint {
  color: rgba(255, 255, 255, 0.62) !important;
  margin-top: 0.65rem !important;
}

.fnb-work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 0.35rem;
  padding: 0;
}

.fnb-work-filters__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fnb-work-filters__btn:hover,
.fnb-work-filters__btn:focus-visible {
  border-color: rgba(255, 205, 44, 0.65);
  color: #fff;
  outline: none;
}

.fnb-work-filters__btn.is-active {
  background: var(--yellow, #ffcd2c);
  border-color: var(--yellow, #ffcd2c);
  color: #0f0f0f;
  font-weight: 650;
}

.fnb-work-section {
  margin-top: 2.35rem;
}

.fnb-work-section.is-hidden {
  display: none;
}

.fnb-work-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fnb-work-section__label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.fnb-work-section__link {
  font-size: 0.85rem;
  color: var(--yellow, #ffcd2c);
  text-decoration: none;
  white-space: nowrap;
}

.fnb-work-section__link:hover,
.fnb-work-section__link:focus-visible {
  text-decoration: underline;
}

.fnb-work-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0;
}

.fnb-work-gallery__item {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}

.fnb-work-gallery__open {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.fnb-work-gallery__open::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.28));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.fnb-work-gallery__open:hover::after,
.fnb-work-gallery__open:focus-visible::after {
  opacity: 1;
}

.fnb-work-gallery__open:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.fnb-work-gallery__item img,
.fnb-work-gallery__open img,
.fnb-work-gallery__item .fnb-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.45s ease;
}

.fnb-work-gallery__open:hover img,
.fnb-work-gallery__open:focus-visible img {
  transform: scale(1.04);
}

@media (max-width: 980px) {
  .fnb-work-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fnb-work-gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */
.fnb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 8, 8, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.fnb-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fnb-lightbox__scrim {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.fnb-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
}

.fnb-lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.fnb-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.fnb-lightbox__close:hover,
.fnb-lightbox__close:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  outline: none;
}

/* —— Reviews page: featured quote cards on paper, feed on ink —— */
.fnb-page--reviews .fnb-reviews--on-paper {
  background: #fff;
  color: var(--ink);
  padding: clamp(3rem, 7vw, 4.5rem) 0 !important;
}

.fnb-page--reviews .fnb-reviews--on-paper .fnb-kicker {
  color: var(--yellow-2);
}

.fnb-page--reviews .fnb-reviews--on-paper .fnb-reviews__rating {
  color: rgba(15, 15, 15, 0.62);
  margin-top: 0.85rem;
}

.fnb-page--reviews .fnb-reviews--on-paper .fnb-reviews__rating strong {
  color: var(--ink);
}

.fnb-page--reviews .fnb-reviews--on-paper .fnb-reviews__stars {
  color: var(--yellow-2);
}

.fnb-page--reviews .fnb-review {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 1.5rem 1.35rem 1.4rem;
  background: var(--paper);
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.05);
  position: relative;
}

.fnb-page--reviews .fnb-review__mark {
  display: block;
  margin: 0 0 0.35rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.25rem;
  line-height: 0.7;
  color: var(--yellow-2);
}

.fnb-page--reviews .fnb-review__quote {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.88);
}

.fnb-page--reviews .fnb-review__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 15, 15, 0.08);
}

.fnb-page--reviews .fnb-review__stars {
  margin: 0 0 0.45rem;
  color: var(--yellow-2);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.fnb-page--reviews .fnb-review__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.fnb-page--reviews .fnb-review__service {
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
  color: rgba(15, 15, 15, 0.55);
}

.fnb-page--reviews .fnb-reviews-feed--ink {
  background: #0f0f0f;
  color: #fff;
  padding: clamp(3.25rem, 7vw, 5rem) 0 !important;
}

.fnb-page--reviews .fnb-reviews-feed--ink .fnb-section-head h2 {
  color: #fff !important;
}

.fnb-reviews-feed {
  background: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0 !important;
}

.fnb-reviews-feed__widget {
  margin-top: 1.5rem;
}

/* —— Careers panels —— */
.fnb-careers-panels {
  padding: clamp(3rem, 7vw, 4.5rem) 0 !important;
}

.fnb-careers-panels__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fnb-careers-panel {
  padding: 1.75rem 1.6rem 1.85rem;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-top: 4px solid var(--yellow);
}

.fnb-careers-panel .fnb-kicker {
  margin: 0 0 0.55rem;
}

.fnb-careers-panel h2 {
  margin: 0 0 1.1rem !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem) !important;
  color: var(--ink) !important;
}

.fnb-careers-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.fnb-careers-panel__list li {
  margin: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.fnb-careers-panel__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 800px) {
  .fnb-careers-panels__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Service areas grid —— */
.fnb-areas {
  padding: clamp(3rem, 7vw, 4.5rem) 0 !important;
}

.fnb-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.fnb-areas__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fnb-areas__item:hover,
.fnb-areas__item:focus-visible {
  background: var(--paper);
  border-color: rgba(15, 15, 15, 0.16);
  color: var(--ink) !important;
  transform: translateY(-1px);
  outline: none;
}

.fnb-areas__name {
  font-weight: 700;
  font-size: 1.02rem;
}

.fnb-areas__hint {
  color: var(--yellow-2);
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .fnb-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fnb-areas__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Landscape: What We Light as design-scope columns —— */
.fnb-scope {
  background: var(--paper);
  padding: clamp(3.25rem, 7vw, 4.75rem) 0 !important;
}

.fnb-scope__inner {
  max-width: none;
}

.fnb-scope .fnb-section-head h2 {
  margin: 0 !important;
  font-family: var(--fnb-display) !important;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem) !important;
  color: var(--ink) !important;
}

.fnb-scope__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.fnb-scope__group {
  min-width: 0;
}

.fnb-scope__label {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-2);
}

.fnb-scope__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.fnb-scope__list li {
  margin: 0;
  padding: 0.7rem 0 0.7rem 0.95rem;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  border-left: 2px solid rgba(255, 205, 44, 0.55);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.fnb-scope__list li:last-child {
  border-bottom: 0;
}

.fnb-page--landscape .fnb-prose--panel {
  background: #fff;
}

.fnb-page--landscape .fnb-prose--panel .fnb-prose__inner {
  max-width: none;
  padding: 2rem 2.15rem;
  background: var(--paper);
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-left: 5px solid var(--yellow);
}

@media (max-width: 900px) {
  .fnb-scope__groups {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 560px) {
  .fnb-page--landscape .fnb-prose--panel .fnb-prose__inner {
    padding: 1.5rem 1.25rem;
  }
}

/* —— Privacy / legal —— */
.fnb-legal {
  padding: 2.75rem 0 4.5rem;
  background: var(--paper);
}

.fnb-legal__inner {
  max-width: 720px;
}

.fnb-legal__head {
  margin: 0 0 2rem;
}

.fnb-legal__head h1 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--fnb-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--ink);
}

.fnb-legal__meta {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(15, 15, 15, 0.62);
}

.fnb-legal__body {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-2);
}

.fnb-legal__body h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--fnb-display);
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--ink);
}

.fnb-legal__body p {
  margin: 0 0 1rem;
}

.fnb-legal__body ul {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
}

.fnb-legal__body li {
  margin: 0 0 0.4rem;
}

body.fn-nb-shell .fnb-page--legal .fnb-legal__body a {
  color: var(--ink) !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-underline-offset: 0.14em;
}

