/* ── New Food Brands page ── */

.nfb-page {
  background: var(--cream);
}

.nfb-main {
  padding: 0 12px 40px;
}

/* ── Shared section heading ── */
.nfb-section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.nfb-section-heading.text-center {
  align-items: center;
}

.nfb-section-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.nfb-title-bar {
  display: block;
  width: 94px;
  height: 6px;
  border-radius: 10px;
  background: var(--olive);
  transform: scaleX(1);
  transform-origin: left center;
  /* Mouse leave / default */
  transition: transform 800ms linear;
}

.nfb-section-heading.text-center .nfb-title-bar,
.nfb-title-bar.mx-auto {
  transform-origin: center center;
}

/* Scroll into view — scale the bar a little */
.nfb-title-bar.is-inview {
  transform: scaleX(1.12);
}

/* Mouse enter → Variant2 · Smart animate · linear · 800ms */
.nfb-title-bar.is-variant2,
.nfb-section-heading:hover .nfb-title-bar,
.nfb-slide-heading:hover .nfb-title-bar {
  transform: scaleX(1.45);
}

/* ── Hero ── */
.nfb-hero {
  position: relative;
  min-height: min(92vh, 820px);
  padding: 20px 16px 64px;
  margin: 16px;
  border-radius: 20px;
  color: #fff;
  animation: hero-in 0.9s var(--ease) both;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(108, 122, 63, 0.56) 25%, rgba(156, 154, 116, 0.56) 100%),
    url(../assets/nfb-1.jpg) center / cover no-repeat;
}

.nfb-hero-sfb {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(108, 122, 63, 0.56) 25%, rgba(156, 154, 116, 0.56) 100%),
    url(../assets/sfb-head.png) center / cover no-repeat;
}

.nfb-hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
}

.nfb-hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(calc(92vh - 104px), 700px);
  display: flex;
  flex-direction: column;
}

.nfb-head .hero-nav-list {
  background: var(--cream);
}

.nfb-head .hero-nav .nav-link.active {
  color: var(--olive) !important;
}

.nfb-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 40px;
}

.nfb-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(108, 122, 63, 0.4);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}

.nfb-hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  text-align: center;
  max-width: 100%;
  margin: 0;
}

.nfb-hero-sub {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  text-align: center;
  margin: 0;
}

.nfb-hero-lead {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  text-align: center;
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.95);
}

.nfb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.btn-nfb-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--olive);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.2;
  border: none;
  box-shadow:
    0 4px 4px rgba(0, 0, 0, 0.25),
    0 10px 15px -3px rgba(108, 122, 63, 0.2),
    0 4px 6px -4px rgba(108, 122, 63, 0.2);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-nfb-primary:hover {
  filter: brightness(1.08);
  color: #fff;
  background: var(--olive);
  transform: translateY(-1px);
}

.btn-nfb-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.2;
  border: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-nfb-secondary:hover {
  filter: brightness(0.97);
  color: #000;
  background: #f1f5f9;
  transform: translateY(-1px);
}

/* ── What New Restaurants Need carousel ── */
.nfb-needs-block {
  padding-top: 32px;
  padding-bottom: 48px;
}

.nfb-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px 32px;
}

.nfb-carousel-viewport {
  overflow: hidden;
}

.nfb-carousel-track {
  position: relative;
  min-height: 0;
  width: 80%;
  margin: 0 auto;
}

.nfb-carousel-slide {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  animation: nfb-slide-in 0.45s var(--ease) both;
}

.nfb-carousel-slide.active {
  display: grid;
}

@keyframes nfb-slide-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nfb-slide-media img {
  width: 100%;
  height: clamp(200px, 28vw, 240px);
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.nfb-slide-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nfb-slide-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nfb-slide-heading h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.25;
  color: #000;
  margin: 0;
}

.nfb-slide-copy p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

.nfb-carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--olive);
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nfb-carousel-arrow:hover {
  opacity: 0.75;
  transform: translateY(-50%) scale(1.05);
}

.nfb-carousel-prev {
  left: 0;
  opacity: 0.5;
}

.nfb-carousel-next {
  right: 0;
}

.nfb-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.nfb-carousel-dots button {
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

/* Larger tap target on touch devices */
.nfb-carousel-dots button::before {
  content: "";
  position: absolute;
  inset: -12px;
}

.nfb-carousel-dots button.active {
  background: var(--olive);
}

.nfb-carousel-dots button:hover {
  transform: scale(1.08);
}

/* ── How Sedna Supports ── */
.nfb-support-block {
  padding-top: 16px;
  padding-bottom: 56px;
}

.nfb-support-block .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.nfb-support-image {
  overflow: hidden;
  border-radius: inherit;
}

.nfb-support-image img {
  width: 100%;
  height: auto;
  max-height: clamp(280px, 42vw, 480px);
  min-height: 600px;
  object-fit: cover;
  display: block;
}

.nfb-zoom-on-scroll {
  transform: scale(1);
  transition: transform 0.9s ease;
  transform-origin: center center;
  will-change: transform;
}

.nfb-zoom-on-scroll.is-inview {
  transform: scale(1.06);
}

.nfb-zoom-on-enter {
  transform: scale(1);
  transition: transform 0.45s ease;
  transform-origin: center center;
  will-change: transform;
}

.nfb-support-image:hover .nfb-zoom-on-enter,
.nfb-zoom-on-enter:hover {
  transform: scale(1.08);
}

.nfb-support-copy {
  font-family: "Lato", sans-serif;
  font-size: clamp(0.95rem, 1.32vw, 2.5rem);
  line-height: 1.7;
  color: var(--slate);
}

.nfb-support-copy p {
  margin-bottom: 1rem;
}

.nfb-support-copy p:last-child {
  margin-bottom: 0;
}

/* ── Timeline ── */
.nfb-timeline-block {
  padding-top: 32px;
  padding-bottom: 64px;
}

.nfb-timeline {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
}

.nfb-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--olive);
  transform: translateX(-50%);
}

.nfb-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 80px;
}

.nfb-timeline-marker {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #50613d;
  box-shadow: 0 0 0 8px var(--cream);
  justify-self: center;
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 800ms linear,
    transform 800ms linear;
}

.nfb-timeline-text p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.45;
  color: var(--slate);
  margin: 0;
}

.nfb-timeline-text--right {
  text-align: right;
}

.nfb-timeline-media {
  overflow: hidden;
}

.nfb-timeline-media img {
  width: 100%;
  max-width: 100%;
  height: clamp(160px, 20vw, 200px);
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 800ms linear;
}

.nfb-timeline-item:not(.nfb-timeline-item--reverse) .nfb-timeline-media {
  justify-self: start;
}

.nfb-timeline-item:not(.nfb-timeline-item--reverse) .nfb-timeline-text {
  justify-self: end;
  max-width: 60%;
}

.nfb-timeline-item--reverse .nfb-timeline-media {
  justify-self: end;
}

.nfb-timeline-item--reverse .nfb-timeline-text {
  justify-self: start;
  max-width: 60%;
}

/* Default: off-canvas — Smart animate · linear · 800ms */
.nfb-timeline-text,
.nfb-timeline-media {
  opacity: 0;
  transition:
    opacity 800ms linear,
    transform 800ms linear;
  will-change: transform, opacity;
}

/* Normal rows: text left ← · image right → */
.nfb-timeline-item:not(.nfb-timeline-item--reverse) .nfb-timeline-text {
  transform: translateX(-56px);
}

.nfb-timeline-item:not(.nfb-timeline-item--reverse) .nfb-timeline-media {
  transform: translateX(56px);
}

/* Reverse rows: image left ← · text right → */
.nfb-timeline-item--reverse .nfb-timeline-media {
  transform: translateX(-56px);
}

.nfb-timeline-item--reverse .nfb-timeline-text {
  transform: translateX(56px);
}

/* Scroll / Mouse enter Variant2 → slide into place */
.nfb-timeline-item.is-inview .nfb-timeline-text,
.nfb-timeline-item.is-inview .nfb-timeline-media,
.nfb-timeline-item.is-variant2 .nfb-timeline-text,
.nfb-timeline-item.is-variant2 .nfb-timeline-media {
  opacity: 1;
  transform: translateX(0);
}

.nfb-timeline-item.is-inview .nfb-timeline-marker,
.nfb-timeline-item.is-variant2 .nfb-timeline-marker {
  opacity: 1;
  transform: scale(1);
}

/* Variant2 hover emphasis on image */
.nfb-timeline-item.is-variant2 .nfb-timeline-media img {
  transform: scale(1.04);
}

/* ── CTA ── */
.nfb-cta {
  margin: 0 12px 32px;
  padding: clamp(32px, 5vw, 48px) 20px;
  border-radius: clamp(20px, 4vw, 44px);
  background: #fff;
}

.nfb-cta-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.25;
  color: #000;
  margin: 0 0 clamp(24px, 4vw, 36px);
}

.btn-nfb-cta {
  min-width: 0;
  max-width: 100%;
}

/* ── Page header (hero nav) ── */
.nfb-page .sedna_head {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.nfb-page .hero-logo {
  width: clamp(120px, 14vw, 180px);
  flex-shrink: 0;
}

.nfb-page .btn-contact-hero {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 0.85rem;
}

/* ── Large screens (desktop header + scale toward design specs) ── */
@media (min-width: 1200px) {
  .nfb-page .hero-nav {
    flex: 1 1 auto;
    max-width: none;
    margin: 0;
  }

  .nfb-page .sedna_head {
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }

  .nfb-page .btn-contact-hero {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

@media (min-width: 1200px) {
  .nfb-hero-content {
    max-width: 960px;
    padding: 56px 24px 48px;
  }

  .nfb-hero-title {
    font-size: clamp(2.25rem, 3.2vw, 3rem);
  }

  .nfb-hero-lead {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    max-width: 760px;
  }

  .nfb-carousel {
    padding: 0 56px 36px;
  }

  .nfb-slide-media img {
    height: clamp(240px, 26vw, 240px);
  }

  .nfb-support-image img {
    max-height: clamp(400px, 38vw, 560px);
  }
}

@media (min-width: 1600px) {
  .nfb-section-title {
    font-size: clamp(2.25rem, 2.5vw, 3rem);
  }

  .nfb-hero {
    min-height: 88vh;
    margin: 20px 16px;
    border-radius: 24px;
  }

  .nfb-hero-inner {
    min-height: calc(88vh - 104px);
  }

  .nfb-hero-content {
    max-width: 1072px;
    padding: 72px 24px 56px;
  }

  .nfb-hero-title {
    font-size: clamp(2.75rem, 3.5vw, 3.75rem);
    max-width: 930px;
  }

  .nfb-hero-lead {
    font-size: clamp(1.15rem, 1.6vw, 1.5rem);
    max-width: 856px;
  }

  .btn-nfb-primary,
  .btn-nfb-secondary {
    padding: 16px 28px;
    font-size: 1.125rem;
  }

  .nfb-carousel {
    max-width: 1172px;
    padding: 0 72px 40px;
  }

  .nfb-carousel-slide {
    gap: clamp(48px, 6vw, 124px);
  }

  .nfb-slide-heading h3 {
    font-size: clamp(1.85rem, 2.5vw, 2.75rem);
  }

  .nfb-slide-copy {
    gap: 32px;
  }

  .nfb-slide-copy p {
    font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  }

  .nfb-slide-media img {
    height: clamp(280px, 28vw, 332px);
  }

  .nfb-carousel-arrow {
    width: 56px;
    height: 56px;
    font-size: 2.75rem;
  }

  .nfb-support-image img {
    max-height: clamp(520px, 40vw, 680px);
  }

  .nfb-support-copy {
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  }

  .nfb-timeline {
    max-width: 1039px;
    gap: 64px;
    margin-top: 56px;
  }

  .nfb-timeline-text p {
    font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  }

  .nfb-timeline-media img {
    max-width: 474px;
    height: clamp(190px, 14vw, 227px);
  }

  .nfb-cta-title {
    font-size: clamp(2rem, 2.8vw, 2.75rem);
  }
}

@media (min-width: 1920px) {
  .nfb-section-title {
    font-size: 3.375rem;
  }

  .nfb-slide-heading h3 {
    font-size: 3.375rem;
  }

  .nfb-slide-copy p,
  .nfb-timeline-text p {
    font-size: 1.75rem;
  }

  .nfb-support-image img {
    min-height: 600px;
    max-height: 749px;
  }

  .nfb-support-copy {
    font-size: 1.5rem;
  }

  .nfb-cta-title {
    font-size: 3.375rem;
  }

  .nfb-timeline {
    gap: 72px;
    margin-top: 72px;
  }
}

/* ── Tablet & below ── */
@media (max-width: 1199.98px) {
  .nfb-section-heading {
    margin-bottom: 32px;
  }

  .nfb-timeline-item {
    gap: 24px;
  }
}

@media (max-width: 1199.98px) {
  .nfb-page .hero-nav {
    order: 3;
    flex: 0 0 auto;
  }

  .nfb-page .navbar-collapse {
    margin-top: 0;
  }

  .nfb-page .hero-nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .nfb-main .section-block {
    padding: 48px 0;
  }

  .nfb-carousel {
    padding: 0 0 72px;
  }

  .nfb-carousel-arrow {
    display: grid;
    top: auto;
    bottom: 24px;
    transform: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--olive);
    border-radius: 50%;
    background: var(--cream);
    opacity: 1;
    z-index: 2;
    font-size: 1.35rem;
  }

  .nfb-carousel-arrow:hover {
    transform: scale(1.05);
    background: var(--olive);
    color: #fff;
  }

  .nfb-carousel-prev {
    left: calc(50% - 68px);
  }

  .nfb-carousel-next {
    right: calc(50% - 68px);
  }

  .nfb-carousel-dots {
    margin-top: 24px;
    position: relative;
    z-index: 1;
  }

  .nfb-carousel-slide {
    display: none;
  }

  .nfb-carousel-slide.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nfb-slide-media img {
    height: clamp(200px, 45vw, 280px);
  }

  .nfb-slide-copy {
    gap: 16px;
  }

  .nfb-support-block .col-lg-6 + .col-lg-6 {
    margin-top: 8px;
  }

  .nfb-support-image img {
    max-height: 360px;
    min-height: auto;
  }

  .nfb-timeline::before {
    left: 8px;
    transform: none;
  }

  .nfb-timeline-item,
  .nfb-timeline-item--reverse {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding-left: 4px;
  }

  .nfb-timeline-marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 6px;
  }

  .nfb-timeline-text,
  .nfb-timeline-text--right,
  .nfb-timeline-item--reverse .nfb-timeline-text {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    justify-self: start;
    max-width: none;
  }

  .nfb-timeline-media,
  .nfb-timeline-item:not(.nfb-timeline-item--reverse) .nfb-timeline-media,
  .nfb-timeline-item--reverse .nfb-timeline-media {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    max-width: none;
  }

  .nfb-timeline-media img {
    max-width: 100%;
    height: clamp(180px, 40vw, 240px);
  }

  /* Mobile: slide up instead of left/right */
  .nfb-timeline-item:not(.nfb-timeline-item--reverse) .nfb-timeline-text,
  .nfb-timeline-item:not(.nfb-timeline-item--reverse) .nfb-timeline-media,
  .nfb-timeline-item--reverse .nfb-timeline-media,
  .nfb-timeline-item--reverse .nfb-timeline-text {
    transform: translateY(32px);
  }

  .nfb-timeline-item.is-inview .nfb-timeline-text,
  .nfb-timeline-item.is-inview .nfb-timeline-media,
  .nfb-timeline-item.is-variant2 .nfb-timeline-text,
  .nfb-timeline-item.is-variant2 .nfb-timeline-media {
    transform: translateY(0);
  }

  .nfb-timeline-item.is-variant2 .nfb-timeline-media img {
    transform: scale(1.03);
  }
}

@media (max-width: 767.98px) {
  .nfb-hero {
    min-height: auto;
    margin: 10px;
    padding: 16px 12px 40px;
    border-radius: 16px;
  }

  .nfb-hero-overlay {
    border-radius: 16px;
  }

  .nfb-hero-inner {
    min-height: auto;
  }

  .nfb-hero-content {
    padding: 24px 8px 20px;
    gap: 12px;
  }

  .nfb-hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2rem);
  }

  .nfb-hero-sub {
    font-size: 0.9rem;
  }

  .nfb-hero-lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .nfb-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 8px;
  }

  .nfb-hero-actions .btn {
    width: 100%;
    max-width: none;
    text-align: center;
    white-space: normal;
  }

  .nfb-page .sedna_head {
    justify-content: flex-start;
  }

  .nfb-page .hero-logo {
    margin: 0 !important;
  }

  .nfb-page .btn-contact-hero {
    width: auto;
    max-width: none;
    margin: 0 0 0 auto !important;
    text-align: center;
  }

  .nfb-section-title {
    font-size: clamp(1.5rem, 5.5vw, 1.85rem);
  }

  .nfb-title-bar {
    width: 72px;
    height: 5px;
  }

  .nfb-needs-block,
  .nfb-support-block,
  .nfb-timeline-block {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .nfb-cta {
    margin: 0 8px 24px;
    padding: 28px 16px;
    border-radius: 20px;
  }

  .nfb-cta-title {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
  }

  .btn-nfb-cta {
    width: 100%;
    white-space: normal;
  }

  .nfb-carousel-dots button {
    width: 14px;
    height: 14px;
    display: none;
  }
}

@media (max-width: 575.98px) {
  .nfb-main {
    padding: 0 8px 24px;
  }

  .nfb-slide-heading h3 {
    font-size: 1.3rem;
  }

  .nfb-timeline {
    gap: 32px;
    margin-top: 28px;
  }
}

/* ── Food Service Companies page ── */
.nfb-hero-fsc {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(108, 122, 63, 0.56) 25%, rgba(156, 154, 116, 0.56) 100%),
    url(../assets/fsc-1.jpg) center / cover no-repeat;
}

.nfb-hero-content--fsc {
  max-width: 1072px;
  gap: 16px;
}

.nfb-hero-lead--wide {
  max-width: 1008px;
  font-size: clamp(0.95rem, 1.5vw, 1.5rem);
  line-height: 1.35;
}

.nfb-hero-actions--single {
  margin-top: 28px;
}

.nfb-slide-copy--statement {
  gap: 0;
  align-self: center;
}

.nfb-slide-statement {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.57;
  color: #000;
  margin: 0;
}

.nfb-slide-statement strong {
  font-weight: 700;
}

.nfb-slide-statement--regular {
  font-weight: 400;
}

.nfb-slide-statement--regular strong {
  font-weight: 700;
}

.nfb-support-image--fsc img {
  min-height: clamp(280px, 42vw, 520px);
  max-height: clamp(400px, 48vw, 705px);
}

.nfb-page-fsc .nfb-support-block .nfb-section-title {
  max-width: 466px;
}

@media (min-width: 1600px) {
  .nfb-hero-content--fsc .nfb-hero-title {
    font-size: clamp(2.75rem, 3.2vw, 3.75rem);
  }

  .nfb-hero-lead--wide {
    font-size: 1.5rem;
    line-height: 1.33;
  }

  .nfb-slide-statement {
    font-size: clamp(1.5rem, 1.8vw, 1.75rem);
  }
}

@media (min-width: 1920px) {
  .nfb-slide-statement {
    font-size: 1.75rem;
  }
}


/* hospital healthcare system page */
.nfb-hero-hhc {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(108, 122, 63, 0.56) 25%, rgba(156, 154, 116, 0.56) 100%),
    url(../assets/hhc-1.jpg) center / cover no-repeat;
}

.nfb-hero-retail {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(108, 122, 63, 0.56) 25%, rgba(156, 154, 116, 0.56) 100%),
    url(../assets/retail-1.png) center / cover no-repeat;
}