:root {
  --color-green: #1a4d2e;
  --color-green-dark: #0b3b23;
  --color-green-soft: #2f6a45;
  --color-yellow: #f5b921;
  --color-cream: #f9f5e9;
  --color-text: #364153;
  --color-muted: #5f6e60;
  --color-white: #ffffff;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1248px;

  --hero-bg: url('./images/hero-bg.webp');
  --final-cta-bg: url('./images/final-chicken-bg.webp');
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

  .policies {
    padding-top: 100px;
  }

.section {
  padding: 78px 0;
}

.section--cream {
  background: var(--color-cream);
}

.section--green {
  background: var(--color-green);
  color: var(--color-white);
}

.section__head {
  max-width: 720px;
  margin: 0 auto 42px;
}

.section__head--center {
  text-align: center;
}

.section__title {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 36px);
  line-height: 1.05;
  color: var(--color-green);
}

.section__title--light {
  color: var(--color-white);
}

.section__note {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-style: italic;
}

.split {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.split--center {
  align-items: center;
}

.split > * {
  flex: 1 1 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-yellow);
  color: var(--color-green-dark);
}

.button--dark {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.button--light {
  background: var(--color-white);
  color: var(--color-green-dark);
}

.media-card,
.breed-card__image,
.farm__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #e8e0d2;
}

.media-card img,
.breed-card__image img,
.farm__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: var(--color-green);
  color: var(--color-white);
}

.header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.header__brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-green-dark);
  font-size: 10px;
  font-weight: 800;
}

.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__brand-text strong {
  font-size: 15px;
}

.header__brand-text small {
  opacity: 0.75;
  font-size: 10px;
}

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}

.header__nav-link {
  opacity: 0.88;
}

.header__cta {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.header__burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--color-white);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 730px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  overflow: hidden;

  /* margin-left: 0; */
  padding-top: 120px;
  /* padding-inline: 20px; */
  padding-bottom: 60px;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.hero__eyebrow {
  color: var(--color-yellow);
  font-weight: 400;
}

.hero__title {
  margin: 0 0 28px;
  font-size: clamp(42px, 6vw, 48px);
  line-height: 110%;
  max-width: 570px;
}

.hero__text {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.intro__media,
.expect__media,
.learn__media,
.visit__media {
  height: 410px;
  min-height: 410px;
}

.check-list {
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.check-list--orange li::before {
  content: '●';
  color: var(--color-yellow);
}

.check-list--yellow li::before {
  content: '●';
  color: var(--color-yellow);
}

.breed-grid {
  display: flex;
  gap: 22px;
}

.breed-card {
  flex: 1 1 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.breed-card__image {
  height: 256px;
  min-height: 170px;
  border-radius: 0;
  box-shadow: none;
}

.breed-card__body {
  padding: 18px;
}

.breed-card__title {
  margin: 0 0 8px;
  color: var(--color-green);
}

.breed-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.highlight-box {
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: var(--color-green);
  color: var(--color-white);
  margin: 20px 0;
}

.highlight-box .check-list {
  margin: 0;
}

.quote-box,
.white-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  color: var(--color-text);
}

.farm__card {
  position: relative;
}

.farm__image {
  height: 360px;
  min-height: 360px;
  border-radius: var(--radius-lg);
}

.farm__callout {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--color-yellow);
  color: var(--color-green-dark);
}

.farm__callout h3,
.farm__callout p {
  margin-top: 0;
}

.farm__callout .button {
  width: 100%;
}

.principle-box {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.principle-box span {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 195, 43, 0.7);
  color: var(--color-yellow);
  text-align: center;
}

.principle-box strong {
  display: block;
  margin-top: 18px;
  color: var(--color-yellow);
}

.ready-box {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--color-yellow);
  color: var(--color-green-dark);
  text-align: center;
}

.ready-box h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.ready-box__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.resource-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  font-weight: 500;

  color: var(--color-green);
}

.resource-list__item span,
.visit__badge strong {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--color-yellow);
  color: var(--color-green-dark);
  font-size: 12px;
}

.learn__media-wrap,
.visit__media-wrap {
  position: relative;
}

.learn__label {
  position: absolute;
  top: 34px;
  left: 34px;
  max-width: 260px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.learn__label span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
}

.visit__badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(19, 79, 46, 0.95);
  color: var(--color-white);
}

.visit__badge strong {
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  color: var(--color-white);
}

.visit__badge span {
  display: block;
  font-size: 13px;
}

.final-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.final-cta__bg,
.final-cta__overlay {
  position: absolute;
  inset: 0;
}

.final-cta__bg {
  background-image: var(--final-cta-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta__overlay {
  background: linear-gradient(
    180deg,
    rgba(26, 77, 46, 0.85) 0%,
    rgba(26, 77, 46, 0.85) 100%
  );
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.final-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 48px);
}

.final-cta strong,
.final-cta h3 {
  color: var(--color-yellow);
}

.final-cta__glass {
  margin: 34px auto;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(7px);
}

.footer {
  background: var(--color-green);
  color: var(--color-white);
  padding: 54px 0 28px;
}

.footer__inner {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.footer__brand {
  flex: 1.5;
}

.footer__brand p,
.footer__col p {
  color: rgba(255, 255, 255, 0.72);
}

.footer__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__col h3 {
  margin: 0 0 12px;
  color: var(--color-yellow);
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
}

.footer__bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer__bottom div {
  display: flex;
  gap: 22px;
}

@media (max-width: 920px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: block;
    margin-left: auto;
  }

  .header__nav.is-open {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    padding-top: 60px;
    background: var(--color-green-dark);
    font-size: 20px;
  }

  .split,
  .breed-grid,
  .footer__inner {
    flex-direction: column;
  }

  .split--reverse-mobile {
    flex-direction: column-reverse;
  }

  .breed-card,
  .split > * {
    width: 100%;
    flex: 1;
  }

  .hero {
    min-height: 680px;
  }

  .footer__inner {
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero__title {
    font-size: 36px;
  }

  .split {
    gap: 34px;
  }

  .intro__media,
  .expect__media,
  .learn__media,
  .visit__media {
    height: 250px;
    min-height: 250px;
  }

  .farm__callout,
  .learn__label,
  .visit__badge {
    position: static;
    margin-top: 16px;
  }

  .ready-box {
    padding: 28px 18px;
  }

  .ready-box__actions,
  .footer__bottom {
    flex-direction: column;
  }
}
