.pf-main-hero,
.pf-feature-scroll,
.pf-recipe-slider,
.pf-family-story,
.pf-social-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.pf-main-hero *,
.pf-feature-scroll *,
.pf-recipe-slider *,
.pf-family-story *,
.pf-social-band *,
.pf-social-band *::before,
.pf-social-band *::after {
  box-sizing: border-box;
}

.pf-main-hero {
  --green: #1f6b3a;
  --green-light: #94b63d;
  --dot-size: 18px;
  position: relative;
  overflow: hidden;
  background: #f6f4ef;
  font-family: thirsty-rough-two, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pf-main-hero__viewport {
  position: relative;
  min-height: 640px;
  height: min(52vw, 1200px);
  max-height: 1200px;
}

.pf-main-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  background-image: var(--slide-bg-desktop);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pf-main-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.pf-main-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 35%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
}

.pf-main-hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  margin: 0 auto;
}

.pf-main-hero__content {
  position: absolute;
  top: 18%;
  color: var(--green);
  padding-left: 60px;
  margin-left: 64px;
}

.pf-main-hero__eyebrow,
.pf-main-hero__headline,
.pf-main-hero__headline--block {
  margin: 0;
  letter-spacing: 0;
}

.pf-main-hero__eyebrow,
.pf-main-hero__headline--block {
  font-family: citrus-gothic-solid, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(42px, 4.5vw, 82px);
  line-height: 0.92;
  color: var(--green);
}

.pf-main-hero__headline {
  font-family: thirsty-rough-two, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(48px, 4.9vw, 92px);
  line-height: 1;
  color: var(--green-light);
  margin-top: -8px;
  margin-left: 40px !important;
}

.pf-main-hero__headline--block {
  margin-top: 2px;
  margin-left: 80px !important;
}

.pf-main-hero__dots {
  position: absolute;
  left: 9vw;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.pf-main-hero__dot {
  appearance: none;
  border: 1px solid var(--green);
  background: var(--green);
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pf-main-hero__dot.is-active {
  background: #fff;
  border-color: var(--green);
  transform: scale(1.12);
}

.pf-feature-scroll {
  --brand-green: #205f38;
  --brand-green-2: #2f7a46;
  --text-dark: #215f39;
  --dot-size: 20px;
  position: relative;
  overflow: clip;
  background-color: #f4f6eb;
  background: linear-gradient(rgba(244, 246, 235, 0.38), rgba(244, 246, 235, 0.38)), var(--pf-feature-scroll-bg-image) center / cover no-repeat;
  font-family: century-gothic, sans-serif;
  color: var(--text-dark);
}

.pf-feature-scroll__inner {
  position: relative;
  padding-bottom: 150px;
}

.pf-feature-scroll__sticky {
  position: sticky;
  top: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  overflow: hidden;
}

.pf-feature-scroll__stage {
  position: relative;
  width: min(1280px, calc(100vw - 48px));
  aspect-ratio: 1280 / 720;
  margin: 0 auto;
}

.pf-feature-scroll__product-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-feature-scroll__product {
  display: block;
  width: 42.1875%;
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.14));
  user-select: none;
  pointer-events: none;
}

.pf-feature-scroll__hotspots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.pf-hotspot {
  --x: 50;
  --y: 50;
  --line: 240px;
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0.34;
  transition: opacity 0.35s ease;
  pointer-events: auto;
}

.pf-hotspot.is-active {
  opacity: 1;
  z-index: 5;
}

.pf-hotspot__dot {
  position: relative;
  z-index: 3;
  width: var(--dot-size);
  height: var(--dot-size);
  border: 4px solid #111;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(47, 122, 70, 0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.pf-hotspot.is-active .pf-hotspot__dot {
  background: #f27509;
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(242, 117, 9, 0.16);
}

.pf-hotspot__line {
  position: absolute;
  top: 50%;
  left: calc(var(--dot-size) - 2px);
  width: var(--line);
  height: 4px;
  background: #111;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s ease;
  z-index: 1;
}

.pf-hotspot.is-active .pf-hotspot__line {
  transform: translateY(-50%) scaleX(1);
}

.pf-hotspot__content {
  position: absolute;
  top: 50%;
  left: calc(var(--dot-size) + var(--line) + 18px);
  width: min(320px, 22vw);
  transform: translateY(-50%) translateX(18px);
  opacity: 0;
  text-align: left;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pf-hotspot.is-active .pf-hotspot__content {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.pf-hotspot--left .pf-hotspot__line {
  left: auto;
  right: calc(var(--dot-size) - 2px);
  transform-origin: right center;
}

.pf-hotspot--left .pf-hotspot__content {
  left: auto;
  right: calc(var(--dot-size) + var(--line) + 12px);
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  transform: translateY(-50%) translateX(-12px);
}

.pf-hotspot--left.is-active .pf-hotspot__content {
  transform: translateY(-50%) translateX(0);
}

.pf-hotspot__title {
  margin: 0 0 10px;
  font-family: citrus-gothic-solid, sans-serif;
  font-size: clamp(24px, 2vw, 40px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--brand-green);
}

.pf-hotspot__text {
  margin: 0;
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.08;
  color: var(--brand-green);
  max-width: 30ch;
}

.pf-feature-scroll__cta {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 192px;
  padding: 16px 28px;
  background: var(--brand-green);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 15px;
  line-height: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pf-feature-scroll__cta:hover,
.pf-feature-scroll__cta:focus-visible {
  background: var(--brand-green-2);
  transform: translateX(-50%) translateY(-2px);
  color: #fff;
}

.pf-feature-scroll__mobile-copy {
  display: none;
}

.pf-feature-scroll__steps {
  position: relative;
}

.pf-feature-scroll__step {
  height: 45vh;
}

.pf-feature-scroll__step-copy {
  opacity: 0;
}

.pf-hotspot--1 {
  --x: 67;
  --y: 20;
  --line: 35px;
}

.pf-hotspot--2 {
  --x: 41.3;
  --y: 61.5;
  --line: 240px;
}

.pf-hotspot--3 {
  --x: 45.3;
  --y: 64;
  --line: 305px;
}

.pf-hotspot--4 {
  --x: 58;
  --y: 66;
  --line: 280px;
}

.pf-hotspot--5 {
  --x: 45.3;
  --y: 48;
  --line: 350px;
}

.pf-hotspot--6 {
  --x: 42.9;
  --y: 55.5;
  --line: 300px;
}

.pf-hotspot--7 {
  --x: 59;
  --y: 37;
  --line: 235px;
}

.pf-recipe-slider {
  --green: #1f7a43;
  --green-dark: #176235;
  --green-light: #97b93c;
  --cream: #f2ebbe;
  --white: #ffffff;
  --panel-width: min(570px, 46vw);
  --panel-pad: 28px;
  position: relative;
  overflow: hidden;
  font-family: century-gothic, sans-serif;
}

.pf-recipe-slider__viewport {
  position: relative;
  min-height: 760px;
  background: #ddd;
}

.pf-recipe-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  background-image: var(--slide-bg-desktop);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pf-recipe-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.pf-recipe-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.pf-recipe-slider__desktop-image {
  display: none;
}

.pf-recipe-slider__inner {
  position: relative;
  min-height: 760px;
  margin: 0 auto;
  z-index: 3;
  padding-left: 60px;
  margin-left: 64px;
}

.pf-recipe-slider__panel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--panel-width);
  background: rgba(31, 122, 67, 0.94);
  color: var(--white);
  padding: var(--panel-pad);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
}

.pf-recipe-slider__nav {
  position: absolute;
  top: 18px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 6;
}

.pf-recipe-slider__arrow {
  pointer-events: auto;
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.01);
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 999px;
  touch-action: manipulation;
}

.pf-recipe-slider__arrow:hover {
  opacity: 0.8;
  transform: scale(1.06);
}

.pf-recipe-slider__title {
  margin: 22px 0 20px;
  text-align: center;
  text-transform: uppercase;
  font-family: citrus-gothic-solid, sans-serif;
  font-size: clamp(46px, 4vw, 72px);
  line-height: 0.92;
  letter-spacing: 0;
  color: #fff;
}

.pf-recipe-slider__bar {
  width: 100%;
  height: 26px;
  background: var(--green-light);
  margin: 0 0 18px;
}

.pf-recipe-slider__desc {
  margin: 0 auto;
  max-width: 30ch;
  text-align: center;
  color: var(--cream);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.18;
}

.pf-recipe-slider__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
}

.pf-recipe-slider__btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 14px 24px;
  background: var(--green-light);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, transform 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.pf-recipe-slider__btn:hover {
  background: #abc94d;
  color: #fff;
  transform: translateY(-1px);
}

.pf-recipe-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.pf-recipe-slider__dot {
  appearance: none;
  border: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pf-recipe-slider__dot.is-active {
  background: #fff;
  transform: scale(1.18);
}

.pf-family-story {
  --green: #1f6b3a;
  --green-light: #9dbd45;
  --text: #286842;
  --panel-pad-x: clamp(32px, 5vw, 96px);
  --panel-pad-y: clamp(36px, 5vw, 74px);
  font-family: century-gothic, sans-serif;
}

.pf-family-story__grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 720px;
  width: 100%;
}

.pf-family-story__media {
  min-height: 720px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pf-family-story__content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: var(--panel-pad-y) var(--panel-pad-x);
  background-image: linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)), url("/wp-content/uploads/2026/06/White_Board_Bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pf-family-story__inner {
  width: min(620px, 100%);
  margin: 0 auto;
}

.pf-family-story__title {
  margin: 0 0 18px;
  font-family: citrus-gothic-solid, sans-serif;
  font-size: clamp(44px, 4.2vw, 82px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green);
}

.pf-family-story__bar {
  width: min(360px, 100%);
  height: 16px;
  background: var(--green-light);
  margin: 0 0 24px;
}

.pf-family-story__text {
  margin: 0 0 32px;
  color: var(--text);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.22;
  max-width: 35ch;
}

.pf-family-story__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 16px 30px;
  background: var(--green-light);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pf-family-story__button:hover {
  background: #aecb55;
  color: #fff;
  transform: translateY(-1px);
}

.pf-social-band {
  --bg: #8caf3d;
  --deep-green: #185f35;
  --text-green: #215f39;
  --white: #ffffff;
  --panel-pad-x: clamp(32px, 5vw, 96px);
  --panel-pad-y: clamp(36px, 5vw, 74px);
  background: var(--bg);
  font-family: century-gothic, sans-serif;
}

.pf-social-band__inner {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  width: 100%;
  min-height: 720px;
}

.pf-social-band__copy {
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: var(--panel-pad-y) var(--panel-pad-x);
  color: var(--text-green);
}

.pf-social-band__copy-inner {
  width: min(620px, 100%);
  margin: 0 40px;
}

.pf-social-band__headline-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
}

.pf-social-band__icon {
  position: absolute;
  top: -100px;
  right: -50px;
  display: block;
  width: clamp(110px, 11vw, 190px);
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.4;
  transform: scaleX(-1);
  left: 9vw;
}

.pf-social-band__headline {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  line-height: 0.92;
}

.pf-social-band__headline-top {
  display: block;
  font-family: citrus-gothic-solid, sans-serif;
  font-size: clamp(44px, 4vw, 74px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pf-social-band__headline-script {
  display: block;
  margin-top: -6px;
  font-family: thirsty-rough-two, sans-serif;
  font-size: clamp(58px, 5vw, 94px);
  font-weight: 500;
  line-height: 0.92;
  margin-left: 1vw;
}

.pf-social-band__bar {
  width: min(332px, 100%);
  height: 16px;
  margin: 14px 0 18px;
  background: var(--deep-green);
}

.pf-social-band__text {
  max-width: 32ch;
  margin: 0 0 26px;
  color: var(--text-green);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.15;
}

.pf-social-band__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 16px 30px;
  background: var(--deep-green);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pf-social-band__button:hover {
  background: #124b29;
  color: #fff;
  transform: translateY(-1px);
}

.pf-social-band__gallery-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 720px;
  padding: var(--panel-pad-y) var(--panel-pad-x);
}

.pf-social-band__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 0 auto;
}

.pf-social-band__card {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pf-social-band__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

.pf-social-band__image {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

@media (min-width: 1025px) {
  .pf-recipe-slider__viewport {
    display: grid;
  }

  .pf-recipe-slider__desktop-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .pf-recipe-slider__slide {
    background-image: none !important;
  }
}

@media (max-width: 1024px) {
  .pf-main-hero__viewport {
    height: 132vw;
    min-height: 640px;
    max-height: none;
  }

  .pf-main-hero__content {
    top: 10%;
    left: 0;
    right: 12px;
    padding-left: 5px !important;
    margin-left: 0 !important;
    max-width: none;
  }

  .pf-main-hero__eyebrow,
  .pf-main-hero__headline--block {
    font-size: 42px;
  }

  .pf-main-hero__headline {
    font-size: 48px;
  }

  .pf-main-hero__dots {
    left: 24px;
    bottom: 24px;
  }

  .pf-feature-scroll__product-wrap {
    align-items: center;
  }

  .pf-hotspot__content {
    width: min(280px, 28vw);
  }

  .pf-feature-scroll__mobile-copy {
    display: none;
  }

  .pf-recipe-slider__inner {
    min-height: 760px;
    padding-left: 24px;
    margin-left: 0;
  }

  .pf-recipe-slider__panel {
    width: min(620px, calc(100vw - 48px));
  }

  .pf-family-story__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
  }

  .pf-family-story__media,
  .pf-family-story__content {
    min-height: 620px;
  }

  .pf-family-story__inner {
    width: min(460px, 100%);
  }

  .pf-social-band__inner {
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
  }

  .pf-social-band__copy,
  .pf-social-band__gallery-wrap {
    min-height: 620px;
  }

  .pf-social-band__copy-inner {
    width: min(460px, 100%);
  }

  .pf-social-band__icon {
    top: -38px;
    right: -55px;
    width: clamp(100px, 14vw, 145px);
    left: 15vw;
  }

  .pf-social-band__gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 390px;
  }
}

@media (max-width: 767px) {
  .pf-main-hero,
  .pf-feature-scroll,
  .pf-recipe-slider,
  .pf-family-story,
  .pf-social-band {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .pf-main-hero__slide {
    background-image: var(--slide-bg-mobile);
    background-position: center top;
  }

  .pf-main-hero__viewport {
    height: 156vw;
    min-height: 620px;
  }

  .pf-main-hero__headline {
    margin-left: 0 !important;
  }

  .pf-main-hero__headline--block {
    margin-left: 0 !important;
  }

  .pf-feature-scroll__inner {
    padding-bottom: 110px;
  }

  .pf-feature-scroll__sticky {
    position: relative;
    min-height: auto;
    padding: 32px 16px 0;
  }

  .pf-feature-scroll__stage {
    width: 100%;
    aspect-ratio: auto;
  }

  .pf-feature-scroll__product-wrap {
    position: relative;
    padding: 20px 0 0;
  }

  .pf-feature-scroll__product {
    width: min(320px, 72vw);
  }

  .pf-hotspot__line,
  .pf-hotspot__content {
    display: none;
  }

  .pf-hotspot {
    transform: translate(-50%, -50%);
  }

  .pf-feature-scroll__mobile-copy {
    display: block;
    margin: 28px auto 0;
    max-width: 32ch;
    text-align: center;
  }

  .pf-feature-scroll__mobile-title {
    margin: 0 0 10px;
    font-family: citrus-gothic-solid, sans-serif;
    font-size: 34px;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--brand-green);
  }

  .pf-feature-scroll__mobile-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.22;
    color: var(--brand-green);
  }

  .pf-feature-scroll__cta {
    bottom: -72px;
    width: calc(100% - 32px);
    max-width: 260px;
  }

  .pf-feature-scroll__step {
    height: 34vh;
  }

  .pf-hotspot--1 {
    --x: 77;
    --y: 20;
  }

  .pf-hotspot--2 {
    --x: 33;
    --y: 63;
  }

  .pf-hotspot--3 {
    --x: 39;
    --y: 67;
  }

  .pf-hotspot--4 {
    --x: 59;
    --y: 69;
  }

  .pf-hotspot--5 {
    --x: 42;
    --y: 47;
  }

  .pf-hotspot--6 {
    --x: 35;
    --y: 56;
  }

  .pf-hotspot--7 {
    --x: 60;
    --y: 36;
  }

  .pf-recipe-slider__viewport {
    min-height: 780px;
  }

  .pf-recipe-slider__slide {
    background-image: var(--slide-bg-mobile);
    background-position: center center;
  }

  .pf-recipe-slider__inner {
    min-height: 780px;
    padding: 24px 16px 0;
  }

  .pf-recipe-slider__panel {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 300px;
  }

  .pf-recipe-slider__title {
    font-size: 42px;
  }

  .pf-recipe-slider__bar {
    height: 18px;
  }

  .pf-recipe-slider__desc {
    font-size: 18px;
    max-width: 100%;
  }

  .pf-recipe-slider__actions {
    flex-direction: column;
  }

  .pf-recipe-slider__btn {
    width: 100%;
  }

  .pf-recipe-slider__nav {
    top: 8px;
  }

  .pf-family-story__grid {
    grid-template-columns: 1fr;
  }

  .pf-family-story__media {
    min-height: 420px;
  }

  .pf-family-story__content {
    min-height: auto;
    padding: 42px 24px 48px;
  }

  .pf-family-story__inner {
    width: 100%;
    margin: 0;
  }

  .pf-family-story__title {
    font-size: 42px;
  }

  .pf-family-story__bar {
    width: 30vh;
    height: 16px;
  }

  .pf-family-story__text {
    max-width: 100%;
    font-size: 18px;
  }

  .pf-family-story__button {
    width: 100%;
    max-width: 160px;
  }

  .pf-social-band__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pf-social-band__copy,
  .pf-social-band__gallery-wrap {
    min-height: auto;
    padding: 42px 24px;
  }

  .pf-social-band__copy-inner {
    width: 100%;
    margin: 0;
  }

  .pf-social-band__icon {
    top: -11px;
    right: 80px;
    left: auto;
    width: 120px;
  }

  .pf-social-band__bar {
    height: 14px;
  }

  .pf-social-band__text {
    max-width: 100%;
    font-size: 18px;
  }

  .pf-social-band__gallery {
    grid-template-columns: 1fr;
  }

  .pf-social-band__button {
    min-width: 160px;
  }
}

/* Override later inline custom CSS that collapses the desktop recipe slider. */
@media (min-width: 1025px) {
  body .pf-recipe-slider .pf-recipe-slider__viewport {
    display: grid !important;
    min-height: 760px !important;
    margin-bottom: 0 !important;
  }
}

/* Restore the original recipe slider layout without affecting other sections. */
body .pf-recipe-slider {
  position: relative !important;
  overflow: hidden !important;
  font-family: century-gothic, sans-serif !important;
}

body .pf-recipe-slider .pf-recipe-slider__viewport {
  position: relative !important;
  background: #ddd !important;
}

body .pf-recipe-slider .pf-recipe-slider__slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.7s ease, visibility 0.7s ease !important;
}

body .pf-recipe-slider .pf-recipe-slider__slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

body .pf-recipe-slider .pf-recipe-slider__slide::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0.08) 100%) !important;
  pointer-events: none !important;
}

body .pf-recipe-slider .pf-recipe-slider__inner {
  position: relative !important;
  z-index: 3 !important;
}

body .pf-recipe-slider .pf-recipe-slider__panel {
  background: rgba(31, 122, 67, 0.94) !important;
  color: #fff !important;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16) !important;
}

body .pf-recipe-slider .pf-recipe-slider__nav {
  position: absolute !important;
  top: 18px !important;
  left: 8px !important;
  right: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  pointer-events: none !important;
  z-index: 6 !important;
}

body .pf-recipe-slider .pf-recipe-slider__arrow {
  width: 72px !important;
  height: 72px !important;
  padding: 0 !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.01) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (min-width: 1025px) {
  body .pf-recipe-slider .pf-recipe-slider__viewport {
    min-height: 760px !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__slide {
    background-image: none !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__desktop-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__inner {
    min-height: 760px !important;
    margin: 0 auto !important;
    margin-left: 64px !important;
    padding-left: 60px !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__panel {
    position: absolute !important;
    top: -50% !important;
    transform: translateY(-50%) !important;
    width: min(570px, 46vw) !important;
    padding: 28px !important;
  }
}

@media (max-width: 1024px) {
  body .pf-recipe-slider .pf-recipe-slider__viewport {
    min-height: 780px !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__slide {
    background-image: var(--slide-bg-mobile) !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__desktop-image {
    display: none !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__inner {
    min-height: 780px !important;
    margin-left: 0 !important;
    padding: 24px 16px 0 !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__panel {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 300px !important;
    padding: 28px !important;
  }

  body .pf-recipe-slider .pf-recipe-slider__nav {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
  }
}
