:root {
  --blue: #15549c;
  --blue-dark: #103f78;
  --yellow: #f3b400;

  --ink: #17212c;
  --muted: #5f6872;

  --white: #ffffff;
  --soft: #f7f7f5;
  --blue-soft: #eef5fb;

  --line: #e0e5e9;

  --page-width: 1080px;
  --header-height: 54px;

  --photo-shadow:
    0 6px 16px rgba(18, 40, 60, 0.11),
    0 2px 4px rgba(18, 40, 60, 0.06);
}


/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 8px);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  line-height: 1.3;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: calc(var(--header-height) + 8px);
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(calc(100% - 20px), var(--page-width));
  height: var(--header-height);
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;
}

.brand {
  text-decoration: none;
  line-height: 1;
}

.brand span {
  display: block;
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.brand strong {
  display: block;
  margin-top: 3px;
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 900;
}


/* PILLS */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 24px;
  padding: 3px 9px;

  border-radius: 999px;

  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.pill-blue {
  color: var(--white);
  background: var(--blue);
}

.pill-outline {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--blue);
}


/* HERO */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.70) 0%,
      rgba(0, 0, 0, 0.22) 44%,
      rgba(0, 0, 0, 0.02) 100%
    );
}

.hero-content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;

  z-index: 2;
  color: var(--white);
}

.hero h1 {
  max-width: 560px;
  margin: 0 0 4px;

  font-size: clamp(1.35rem, 5.4vw, 3rem);
  line-height: 1.02;
}

.hero p {
  max-width: 460px;
  margin: 0;

  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 500;
}


/* GENERAL */

.section {
  padding:
    28px
    10px
    16px;
}

.content-shell {
  width: min(100%, var(--page-width));
  margin-left: auto;
  margin-right: auto;
}

.two-column {
  display: grid;
  gap: 8px;
}

.copy-block h2,
.section-intro h2 {
  margin: 0 0 5px;

  color: var(--blue-dark);

  font-size: clamp(1.2rem, 4.8vw, 1.8rem);
  line-height: 1.03;
}

.copy-block p,
.section-intro p {
  max-width: 540px;
  margin: 0 0 5px;

  font-size: 0.78rem;
  line-height: 1.3;

  font-weight: 500;
  color: #17212c;
}

.section-intro {
  margin-bottom: 8px;
}


/* PHOTOS */

.image-frame {
  background: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.image-frame img,
.production-grid img,
.route-transport img,
.location-card > img {
  display: block;
  width: 100%;

  border: 0;
  border-radius: 0;

  box-shadow: var(--photo-shadow);
}


/* CONTROLLED GAP BELOW IMAGE
   ONLY FOR EGGS / FARM / POULTRY */

.eggs-section .section-copy-after-image,
.farm-section .section-copy-after-image,
.poultry-section .section-copy-after-image {
  margin-top: 16px;
}


/* EGGS */

.egg-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.delivery-line {
  margin: 3px 0 5px !important;
  color: var(--blue-dark);

  font-size: 0.76rem !important;
  line-height: 1.25 !important;
  font-weight: 500;
}

.delivery-line strong {
  color: var(--ink);
  font-weight: 800;
}


/* FARM */

.farm-section {
  background: var(--soft);
}

.farm-identity-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* PRODUCTION */

.production-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.production-grid figure {
  margin: 0;
  background: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.production-grid img {
  height: 100%;
  object-fit: cover;
}

.production-hero {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.production-grid figure:not(.production-hero) {
  aspect-ratio: 4 / 3;
}


/* POULTRY */

.poultry-section {
  background: var(--blue-soft);
}

.poultry-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}


/* ROUTE */

.route {
  max-width: 570px;
}

.route-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 7px;
  align-items: center;
}

.route-number {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--ink);
  background: var(--yellow);

  font-size: 0.62rem;
  font-weight: 900;
}

.route h3 {
  margin: 0;
  color: var(--blue-dark);

  font-size: 0.82rem;
  line-height: 1.1;
}

.route p {
  margin: 1px 0 0;
  color: #505965;

  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 500;
}

.route-connector {
  width: 2px;
  height: 10px;

  margin: 2px 0 2px 11px;

  background: #c9cfd5;
}

.route-transport {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 8px;
  align-items: center;
}

.route-transport img {
  width: 105px;
  height: 72px;

  object-fit: cover;
}


/* LOCATIONS */

.locations-section {
  background: var(--soft);
}

.location-grid {
  display: grid;
  gap: 8px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: visible;
}

.location-card > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.location-copy {
  padding: 9px;
}

.location-copy h3 {
  margin: 0 0 4px;

  color: var(--blue-dark);

  font-size: 0.88rem;
  line-height: 1.15;
}

.location-copy p {
  margin: 0 0 5px;

  font-size: 0.74rem;
  line-height: 1.28;

  color: #17212c;
  font-weight: 500;
}

.location-copy address {
  margin: 0 0 7px;

  font-style: normal;

  font-size: 0.74rem;
  line-height: 1.3;

  color: #17212c;
  font-weight: 500;
}

.location-marker {
  min-height: 68px;

  display: grid;
  place-items: center;

  background:
    linear-gradient(
      135deg,
      #e8f0f8,
      #dce7f2
    );

  color: var(--blue-dark);

  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}


/* CONTACT */

.contact-section {
  padding-bottom: 14px;
}

.contact-intro {
  margin-bottom: 6px;
}

.phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.phone-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 30px;
  padding: 5px 10px;

  border: 1px solid var(--blue);
  border-radius: 999px;

  color: var(--blue-dark);
  background: var(--white);

  text-decoration: none;

  font-size: 0.76rem;
  font-weight: 900;
}


/* FOOTER */

.site-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 4px;

  padding: 9px;

  border-top: 1px solid var(--line);

  color: #555f69;

  font-size: 0.62rem;
  font-weight: 500;
}

.site-footer strong {
  color: var(--blue-dark);
  font-weight: 900;
}


/* TABLET / DESKTOP */

@media (min-width: 760px) {

  .section {
    padding:
      42px
      18px
      24px;
  }

  .hero {
    aspect-ratio: auto;
    height: 560px;
  }

  .hero-content {
    width: min(calc(100% - 40px), var(--page-width));

    left: 50%;
    right: auto;
    bottom: 30px;

    transform: translateX(-50%);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.18) 48%,
        rgba(0, 0, 0, 0.01) 100%
      );
  }

  .two-column {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 18px;
  }

  .production-grid {
    gap: 8px;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .eggs-section .section-copy-after-image,
  .farm-section .section-copy-after-image,
  .poultry-section .section-copy-after-image {
    margin-top: 20px;
  }

}


/* SMALL MOBILE */

@media (max-width: 420px) {

  :root {
    --header-height: 50px;
  }

  .header-inner {
    width: calc(100% - 16px);
  }

  .brand span {
    font-size: 0.58rem;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .pill {
    min-height: 22px;
    padding: 3px 8px;
    font-size: 0.58rem;
  }

  .hero-content {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .hero h1 {
    font-size: 1.28rem;
  }

  .hero p {
    font-size: 0.72rem;
  }

  .section {
    padding:
      24px
      9px
      14px;
  }

  .copy-block h2,
  .section-intro h2 {
    font-size: 1.18rem;
  }

  .copy-block p,
  .section-intro p {
    font-size: 0.74rem;
  }

  .route-transport {
    grid-template-columns: 94px 1fr;
  }

  .route-transport img {
    width: 94px;
    height: 66px;
  }

  .phone-row a {
    font-size: 0.72rem;
  }

  .eggs-section .section-copy-after-image,
  .farm-section .section-copy-after-image,
  .poultry-section .section-copy-after-image {
    margin-top: 16px;
  }

}