:root {
  --green: #174b33;
  --green-dark: #0e3322;
  --green-ink: #113a28;
  --red: #a71920;
  --red-dark: #86141a;
  --red-soft: #f8e7e4;
  --paper: #fbfaf5;
  --white: #ffffff;
  --ink: #222821;
  --muted: #606a61;
  --line: #dde3d9;
  --line-dark: rgba(14, 51, 34, 0.18);
  --shadow: 0 20px 55px rgba(14, 51, 34, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 3px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.serif {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.01;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 21px;
  line-height: 1.18;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 224px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.button,
.header-call {
  text-decoration: none;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.header-call,
.button.primary {
  color: var(--white);
  background: var(--red);
}

.header-call:hover,
.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line-dark);
}

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

.button.outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  min-height: min(760px, calc(100vh - 86px));
  overflow: hidden;
  background: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 78px) clamp(22px, 5vw, 72px);
}

.hero-copy::after {
  content: "";
  width: 58px;
  height: 3px;
  margin: 2px 0 22px;
  order: 2;
  background: var(--red);
}

.hero-copy h1 {
  order: 1;
}

.hero-copy .lead {
  order: 3;
}

.hero-copy .actions {
  order: 4;
}

.lead {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.45vw, 20px);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 72% 70% at 0 0,
      rgba(251, 250, 245, 0.99) 0%,
      rgba(251, 250, 245, 0.72) 40%,
      rgba(251, 250, 245, 0.18) 72%,
      rgba(251, 250, 245, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(251, 250, 245, 0.99) 0%,
      rgba(251, 250, 245, 0.9) 12%,
      rgba(251, 250, 245, 0.58) 26%,
      rgba(251, 250, 245, 0.24) 42%,
      rgba(251, 250, 245, 0) 60%
    );
  filter: blur(10px);
  transform: scale(1.02);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-proof {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(650px, calc(100% - 36px));
  background: rgba(14, 51, 34, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-proof span {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 82px;
  padding: 16px 14px;
  color: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.05;
  white-space: nowrap;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-label {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head p,
.story p,
.to-home p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border-block: 1px solid var(--line);
}

.serve-card {
  min-height: 270px;
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.serve-card:last-child {
  border-right: 0;
}

.serve-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  color: var(--green);
}

.serve-icon svg {
  width: 54px;
  height: 54px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.serve-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.food-safety {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(18px, 5vw, 72px);
  scroll-margin-top: 110px;
  color: var(--white);
  background: var(--green);
}

.food-safety h2 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}

.food-safety p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.food-safety-certification {
  display: grid;
  gap: 3px;
  min-width: 230px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.food-safety-certification strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.food-safety-certification span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.history {
  background:
    linear-gradient(180deg, var(--white), #f4f1e9);
  border-block: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.history-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 42px;
}

.history-intro h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.history-intro p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.history-experience {
  display: grid;
  grid-template-columns: minmax(440px, 1.16fr) minmax(360px, 0.84fr);
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--green-dark);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.history-media {
  position: relative;
  display: grid;
  height: var(--history-frame-height, 720px);
  min-height: var(--history-media-height, 720px);
  overflow: hidden;
  background: #151b15;
}

.history-photo-stage {
  --history-pan-from-x: -1.5%;
  --history-pan-from-y: 0%;
  --history-pan-to-x: 1.5%;
  --history-pan-to-y: 0%;
  --history-scale-from: 1.04;
  --history-scale-to: 1.1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #10170f;
}

.history-photo-stage[data-zoom="out"] {
  --history-scale-from: 1.1;
  --history-scale-to: 1.04;
}

.history-photo-stage[data-zoom="out-tight"] {
  --history-scale-from: 1.18;
  --history-scale-to: 1.04;
}

.history-photo-stage[data-zoom="none"] {
  --history-scale-from: 1;
  --history-scale-to: 1;
}

.history-photo-stage[data-motion="left"] {
  --history-pan-from-x: 1.5%;
  --history-pan-to-x: -1.5%;
}

.history-photo-stage[data-motion="up"] {
  --history-pan-from-x: 0%;
  --history-pan-from-y: 1.5%;
  --history-pan-to-x: 0%;
  --history-pan-to-y: -1.5%;
}

.history-photo-stage[data-motion="down"] {
  --history-pan-from-x: 0%;
  --history-pan-from-y: -1.5%;
  --history-pan-to-x: 0%;
  --history-pan-to-y: 1.5%;
}

.history-photo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 58%),
    linear-gradient(0deg, rgba(14, 51, 34, 0.2), rgba(14, 51, 34, 0.02));
  pointer-events: none;
}

.history-photo-backdrop,
.history-photo-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.history-photo-backdrop {
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(18px) saturate(0.88) contrast(1.04) brightness(0.62);
  opacity: 0.5;
  will-change: transform;
}

.history-photo-main {
  z-index: 1;
  padding: 0;
  object-fit: cover;
  opacity: 1;
  filter: sepia(0.14) contrast(1.04);
  transform: translate3d(var(--history-pan-from-x), var(--history-pan-from-y), 0) scale(var(--history-scale-from));
  transform-origin: center;
  transition: opacity 360ms ease;
  will-change: transform, opacity;
}

.history-photo-stage.is-photo-fading .history-photo-main {
  opacity: 0;
}

.history-photo-open {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.history-photo-open:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -7px;
}

.history-photo-stage.is-kenburns-active .history-photo-main {
  animation: historyKenBurns 9.6s ease-in-out infinite alternate;
}

.history-photo-stage.is-kenburns-active[data-motion="full-up"] .history-photo-main {
  animation: historyFullPanUp var(--history-auto-cycle-delay, 6500ms) linear forwards;
}

.history-photo-stage.is-kenburns-active[data-motion="full-right"] .history-photo-main {
  animation: historyFullPanRight var(--history-auto-cycle-delay, 6500ms) linear forwards;
}

.history-photo-stage[data-motion="reveal-all"] .history-photo-main {
  object-fit: contain;
}

.history-photo-stage.is-kenburns-active[data-motion="reveal-all"] .history-photo-main {
  animation: historyRevealAll var(--history-auto-cycle-delay, 6500ms) ease-out forwards;
}

.history-photo-stage.is-kenburns-active[data-motion="faces-up"] .history-photo-main {
  animation: historyFacesUp var(--history-auto-cycle-delay, 6500ms) ease-out forwards;
}

.history-photo-stage.is-kenburns-active[data-motion="faces-up-fast"] .history-photo-main {
  animation: historyFacesUpFast var(--history-auto-cycle-delay, 6500ms) ease-out forwards;
}

.history-photo-stage.is-kenburns-active[data-motion="register-up"] .history-photo-main {
  animation: historyRegisterUp var(--history-auto-cycle-delay, 6500ms) ease-out forwards;
}

.history-photo-stage.is-kenburns-active .history-photo-backdrop {
  animation: historyBackdropDrift 9.6s ease-in-out infinite alternate;
}

.history-photo-stage[data-motion="reveal-all"] .history-photo-backdrop {
  filter: blur(24px) saturate(0.82) contrast(0.98) brightness(0.88);
  opacity: 0.92;
  transform: scale(1.18);
}

.history-photo-stage.is-kenburns-active[data-motion="reveal-all"] .history-photo-backdrop {
  animation: historyRevealBackdrop var(--history-auto-cycle-delay, 6500ms) ease-out forwards;
}

.history-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 51, 34, 0.14), rgba(14, 51, 34, 0)),
    linear-gradient(0deg, rgba(14, 51, 34, 0.68), rgba(14, 51, 34, 0) 48%);
  pointer-events: none;
}

@keyframes historyKenBurns {
  from {
    transform: translate3d(var(--history-pan-from-x), var(--history-pan-from-y), 0) scale(var(--history-scale-from));
  }

  to {
    transform: translate3d(var(--history-pan-to-x), var(--history-pan-to-y), 0) scale(var(--history-scale-to));
  }
}

@keyframes historyFullPanUp {
  from {
    object-position: center bottom;
    transform: scale(1);
  }

  to {
    object-position: center top;
    transform: scale(1);
  }
}

@keyframes historyFullPanRight {
  from {
    object-position: left center;
    transform: scale(1);
  }

  to {
    object-position: right center;
    transform: scale(1);
  }
}

@keyframes historyRevealAll {
  from {
    object-position: center;
    transform: scale(1.35);
  }

  to {
    object-position: center;
    transform: scale(1);
  }
}

@keyframes historyFacesUp {
  from {
    object-position: center 46%;
    transform: scale(var(--history-scale-from));
  }

  to {
    object-position: center 12%;
    transform: scale(var(--history-scale-to));
  }
}

@keyframes historyFacesUpFast {
  0% {
    object-position: center 46%;
    transform: scale(var(--history-scale-from));
  }

  38% {
    object-position: center 12%;
    transform: scale(1.12);
  }

  100% {
    object-position: center 12%;
    transform: scale(var(--history-scale-to));
  }
}

@keyframes historyRegisterUp {
  from {
    object-position: center 54%;
    transform: scale(1);
  }

  to {
    object-position: center 4%;
    transform: scale(1);
  }
}

@keyframes historyRevealBackdrop {
  from {
    transform: scale(1.22);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes historyBackdropDrift {
  from {
    transform: translate3d(2%, -1.5%, 0) scale(1.08);
  }

  to {
    transform: translate3d(-2%, 1.5%, 0) scale(1.14);
  }
}

.history-photo-controls {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: var(--white);
  background: rgba(14, 51, 34, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.history-photo-stage[data-controls="lower-right"] + .history-photo-controls {
  top: auto;
  bottom: 88px;
}

.history-photo-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.history-photo-controls button:hover {
  background: var(--red);
}

.history-photo-controls button:focus-visible {
  background: var(--red);
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.history-photo-controls [data-history-photo-toggle] {
  font-size: 15px;
  font-weight: 900;
}

.history-photo-controls span {
  min-width: 54px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

body.is-history-lightbox-open {
  overflow: hidden;
}

.history-lightbox {
  --history-lightbox-inset: clamp(18px, 3vw, 44px);
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: var(--history-lightbox-inset);
  overflow: hidden;
  background: rgba(8, 12, 9, 0.96);
  border: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.history-lightbox[open] {
  display: grid;
  place-items: center;
}

.history-lightbox.is-open {
  opacity: 1;
}

.history-lightbox::backdrop {
  background: transparent;
}

.history-lightbox img {
  display: block;
  width: auto;
  max-width: calc(100vw - var(--history-lightbox-inset) - var(--history-lightbox-inset));
  height: auto;
  max-height: calc(100dvh - var(--history-lightbox-inset) - var(--history-lightbox-inset));
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.history-lightbox-close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(14, 51, 34, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.history-lightbox-close:hover {
  background: var(--red);
}

.history-lightbox-close:focus-visible {
  background: var(--red);
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.history-thumb-strip {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 3;
  display: grid;
  grid-auto-columns: 32px;
  grid-auto-flow: column;
  align-items: end;
  gap: 4px;
  width: min(640px, calc(100% - 36px));
  height: 68px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 8px 7px;
  background: rgba(14, 51, 34, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  scrollbar-width: none;
}

.history-thumb-strip::-webkit-scrollbar {
  display: none;
}

.history-thumb {
  --history-thumb-lift: 0px;
  --history-thumb-opacity: 0.58;
  --history-thumb-scale: 1;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  opacity: var(--history-thumb-opacity);
  transform: translateY(var(--history-thumb-lift)) scale(var(--history-thumb-scale));
  transform-origin: center bottom;
  transition: transform 140ms ease, opacity 140ms ease, border-color 140ms ease;
}

.history-thumb.is-active {
  --history-thumb-lift: -2px;
  --history-thumb-opacity: 1;
  --history-thumb-scale: 1.24;
  z-index: 2;
  border-color: var(--white);
}

.history-thumb:hover,
.history-thumb:focus-visible {
  --history-thumb-lift: -5px;
  --history-thumb-opacity: 1;
  --history-thumb-scale: 1.5;
  z-index: 4;
  border-color: var(--white);
}

.history-thumb:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.history-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 650px;
  color: var(--white);
}

.history-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.history-tab {
  min-height: 70px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  cursor: pointer;
}

.history-tab:nth-child(5n) {
  border-right: 0;
}

.history-tab.is-active,
.history-tab:hover {
  color: var(--white);
  background: var(--red);
}

.history-tab:focus-visible {
  color: var(--white);
  background: var(--red);
  outline: 3px solid var(--white);
  outline-offset: -5px;
}

.history-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--history-card-min-height, auto);
  padding: clamp(30px, 5vw, 58px);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.history-card.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.history-card h3 {
  max-width: 520px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.03;
}

.history-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.history-card-copy {
  display: grid;
  gap: 12px;
}

.history-kicker {
  margin-bottom: 14px;
  color: #f3c4be;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .history-card {
    transition: none;
  }

  .history-photo-stage.is-kenburns-active .history-photo-main,
  .history-photo-stage.is-kenburns-active .history-photo-backdrop {
    animation: none;
  }

  .history-thumb {
    transition: none;
  }

  .history-photo-main {
    transition: none;
  }

  .history-lightbox {
    transition: none;
  }
}

.story-copy {
  max-width: 620px;
}

.story-copy h2 {
  max-width: 520px;
}

.story-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--green-dark);
  border: 1px solid var(--line);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 18px solid rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.wholesale {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  padding-block: clamp(58px, 7vw, 88px);
  color: var(--white);
  background: var(--green-dark);
}

.wholesale h2,
.wholesale h3 {
  color: var(--white);
}

.wholesale .section-label {
  color: #f3c4be;
}

.wholesale p {
  color: rgba(255, 255, 255, 0.78);
}

.wholesale-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.wholesale-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.wholesale-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 7px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.wholesale-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.wholesale-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.4) 10%,
    rgba(255, 255, 255, 0.14) 22%,
    rgba(255, 255, 255, 0) 38%
  );
  filter: blur(8px);
  transform: scale(1.02);
}

.wholesale-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.to-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-block: 44px;
  color: var(--white);
  background: linear-gradient(90deg, var(--red), #be252d);
}

.to-home h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}

.to-home p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
  padding-block: clamp(42px, 4vw, 56px);
  scroll-margin-top: 96px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.98), rgba(251, 250, 245, 0.88)),
    url("assets/deodato-social.webp") right bottom / 420px auto no-repeat;
}

.contact h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3.3vw, 44px);
}

.contact p {
  max-width: 610px;
  margin-bottom: 0;
}

.contact .actions {
  margin-top: 22px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(14, 51, 34, 0.08);
  font-style: normal;
}

.contact-detail {
  display: grid;
  align-content: start;
  gap: 3px;
  min-width: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.contact-detail:nth-child(odd):not(.contact-detail--wide) {
  border-right: 1px solid var(--line);
}

.contact-detail--wide {
  grid-column: 1 / -1;
  border-bottom: 0;
}

.contact-detail-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-detail-value {
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

a.contact-detail-value:hover,
a.contact-detail-value:focus-visible {
  color: var(--red);
}

.contact-hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.contact-hours-row {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 2px;
  min-width: 0;
  padding-right: 14px;
}

.contact-hours-row + .contact-hours-row {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 14px;
}

.contact-hours-row strong {
  font: inherit;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--green-dark);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 210px;
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer-copy {
  display: grid;
  justify-items: end;
  gap: 5px;
  text-align: right;
}

.site-footer .site-footer-legal {
  color: var(--muted);
  font-size: 13px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
}

.site-footer-links a {
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .story,
  .history-intro,
  .history-experience,
  .wholesale,
  .to-home,
  .food-safety,
  .contact {
    grid-template-columns: 1fr;
  }

  .food-safety-certification {
    width: fit-content;
  }

  .food-safety {
    scroll-margin-top: 150px;
  }

  .history {
    scroll-margin-top: 150px;
  }

  .hero {
    min-height: auto;
  }

  .contact {
    scroll-margin-top: 140px;
  }

  .hero-media {
    min-height: 430px;
    order: -1;
  }

  .hero-media::before,
  .wholesale-media::before {
    inset: auto 0 0;
    width: auto;
    height: 42%;
    background: linear-gradient(
      0deg,
      rgba(251, 250, 245, 0.92) 0%,
      rgba(251, 250, 245, 0.5) 32%,
      rgba(251, 250, 245, 0.14) 66%,
      rgba(251, 250, 245, 0) 100%
    );
  }

  .serve-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .serve-card:nth-child(2) {
    border-right: 0;
  }

  .serve-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .to-home {
    align-items: start;
  }

  .history-media,
  .history-photo-stage,
  .history-panel {
    min-height: 520px;
  }

  .history-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .brand img {
    width: 188px;
  }

  .header-call {
    width: 100%;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .contact {
    scroll-margin-top: 210px;
  }

  .food-safety {
    scroll-margin-top: 220px;
  }

  .history {
    scroll-margin-top: 220px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-detail,
  .contact-detail--wide,
  .contact-detail:nth-child(odd):not(.contact-detail--wide) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-detail:last-child {
    border-bottom: 0;
  }

  .nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-copy {
    order: -1;
    min-width: 0;
    padding-top: 44px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 42px);
    overflow-wrap: break-word;
  }

  .hero-media {
    order: 0;
    min-height: 320px;
  }

  .hero-media img {
    height: 340px;
  }

  .hero-media::before {
    inset: 0 0 auto;
    height: 200px;
    background:
      radial-gradient(
        ellipse 92% 110% at 0 0,
        rgba(251, 250, 245, 0.99) 0%,
        rgba(251, 250, 245, 0.76) 42%,
        rgba(251, 250, 245, 0.24) 72%,
        rgba(251, 250, 245, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(251, 250, 245, 0.9) 0%,
        rgba(251, 250, 245, 0.46) 34%,
        rgba(251, 250, 245, 0.12) 68%,
        rgba(251, 250, 245, 0) 100%
      ),
      linear-gradient(
        90deg,
        rgba(251, 250, 245, 0.84) 0%,
        rgba(251, 250, 245, 0.36) 38%,
        rgba(251, 250, 245, 0) 72%
      );
  }

  .hero-proof {
    position: static;
    grid-template-columns: 1fr;
    width: auto;
    margin: 0;
  }

  .hero-proof span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof span:last-child {
    border-bottom: 0;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .serve-card,
  .serve-card:nth-child(2) {
    border-right: 0;
  }

  .serve-card:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .story-image,
  .story-image img,
  .history-media,
  .history-photo-stage,
  .history-panel,
  .wholesale-media,
  .wholesale-media img {
    min-height: 300px;
  }

  .wholesale-media--highway,
  .wholesale-media--highway img {
    min-height: 0;
  }

  .wholesale-media--highway {
    aspect-ratio: 16 / 9;
  }

  .history-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .history-tab:nth-child(5n) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .history-tab:nth-child(2n) {
    border-right: 0;
  }

  .history-card {
    padding: 28px 24px 34px;
  }

  .history-photo-controls {
    top: 14px;
    right: 14px;
  }

  .history-thumb-strip {
    width: calc(100% - 28px);
    grid-auto-columns: 30px;
  }

  .history-thumb {
    width: 30px;
    height: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-copy {
    justify-items: start;
    text-align: left;
  }

  .site-footer-links {
    justify-content: flex-start;
  }
}
