:root {
  --green-950: #002d1e;
  --green-900: #003f2a;
  --green-800: #07593c;
  --green-700: #14704d;
  --green-100: #e5eee8;
  --cream: #faf8f2;
  --cream-deep: #efe7d7;
  --orange: #d3a13b;
  --orange-dark: #a66d0d;
  --ink: #063c2a;
  --muted: #5d6d66;
  --white: #fff;
  --shadow: 0 22px 65px rgba(18, 59, 49, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

html[lang="zh-CN"] body {
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] .product-card h3,
html[lang="zh-CN"] .delivery__label strong,
html[lang="zh-CN"] .brand__text strong {
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  letter-spacing: -0.02em;
}

html[lang="es"] .navbar > .brand .brand__text small {
  font-size: .49rem;
  letter-spacing: .045em;
}

@media (max-width: 1060px) {
  html[lang="es"] .navbar > .brand .brand__text small {
    font-size: .43rem;
    letter-spacing: .025em;
  }
}

@media (max-width: 620px) {
  html[lang="es"] .navbar > .brand .brand__text small {
    font-size: .36rem;
    letter-spacing: 0;
  }
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-strip {
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-950);
  font-size: 0.8rem;
}

.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
}

.contact-strip p {
  margin: 0;
  letter-spacing: 0.02em;
}

.contact-strip__links {
  display: flex;
  gap: 26px;
}

.contact-strip__links a {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
}

.contact-strip__links a:hover {
  color: var(--white);
}

.contact-strip svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--cream);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50% 50% 50% 15%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  transform: rotate(-3deg);
}

.brand__mark::first-letter {
  letter-spacing: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.brand__text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 600;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #91a09a;
  padding: 6px 10px;
  background: rgba(17, 60, 50, 0.06);
  border-radius: 100px;
}

.language-button {
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.language-button.active,
.language-button:hover {
  color: var(--orange-dark);
}

.nav-links > a:not(.button) {
  position: relative;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-950);
  transition: 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 100px;
  font-size: 0.91rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(201, 83, 29, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 21px;
}

.button--outline {
  color: var(--green-950);
  background: transparent;
  border-color: rgba(17, 60, 50, 0.24);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--white);
  background: var(--green-950);
  border-color: var(--green-950);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: linear-gradient(112deg, #f8f5ec 0%, #f6f0df 100%);
}

.hero::after {
  position: absolute;
  top: 0;
  right: -10%;
  width: 57%;
  height: 100%;
  content: "";
  background: var(--green-900);
  clip-path: polygon(19% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__pattern {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  opacity: 0.07;
  background-image: radial-gradient(circle, #fff 1.3px, transparent 1.4px);
  background-size: 22px 22px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: 690px;
}

.hero__content {
  max-width: 610px;
  padding: 80px 60px 80px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.eyebrow--light {
  color: #c5d8d0;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  max-width: 650px;
  font-size: clamp(3.15rem, 5vw, 5.2rem);
}

h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.55rem);
}

.hero__lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 13px;
  margin-top: 34px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__trust svg {
  width: 15px;
  height: 15px;
  fill: var(--orange);
}

.hero__visual {
  position: relative;
  min-height: 600px;
}

.hero-card {
  position: absolute;
  z-index: 3;
}

.hero-card--main {
  top: 95px;
  right: 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 380px;
  height: 430px;
  padding: 48px;
  overflow: hidden;
  color: var(--white);
  background: #f4ecd7;
  border-radius: 50% 50% 48px 48px;
  box-shadow: 0 28px 70px rgba(5, 30, 24, 0.3);
}

.hero-card--main::after {
  position: absolute;
  right: -50px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.hero-card__icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  flex: 1;
}

.produce-icon svg {
  width: 245px;
  filter: drop-shadow(0 18px 20px rgba(35, 75, 58, 0.22));
}

.produce-icon .body {
  fill: #d84d35;
}

.produce-icon .leaf {
  fill: #3c8e5c;
}

.produce-icon .stem {
  fill: none;
  stroke: #245d41;
  stroke-width: 5;
  stroke-linecap: round;
}

.produce-icon .shine {
  fill: none;
  stroke: rgba(255,255,255,.5);
  stroke-width: 5;
  stroke-linecap: round;
}

.hero-card--main p {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--green-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.3;
}

.hero-card--main p strong {
  color: var(--orange-dark);
}

.hero-card--top {
  top: 100px;
  left: -5px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: var(--green-950);
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-card--top svg {
  width: 33px;
  fill: var(--orange);
}

.hero-card--top strong {
  font-size: 0.95rem;
}

.hero-card--bottom {
  right: -15px;
  bottom: 75px;
  display: flex;
  flex-direction: column;
  padding: 17px 24px;
  color: var(--green-950);
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 0.78rem;
}

.hero-card--bottom strong {
  color: var(--orange-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.hero__dot-grid {
  position: absolute;
  right: -30px;
  bottom: 55px;
  width: 125px;
  height: 125px;
  opacity: 0.55;
  background-image: radial-gradient(circle, var(--orange) 2px, transparent 2.5px);
  background-size: 15px 15px;
}

.section {
  padding: 110px 0;
}

.intro {
  background: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: center;
}

.intro__copy {
  padding-left: 46px;
  border-left: 1px solid #dce4df;
}

.intro__copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.78;
}

.intro__copy p:last-child {
  margin-bottom: 0;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: #adc4bb;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
}

.product-card {
  position: relative;
  min-height: 320px;
  padding: 36px;
  background: var(--green-900);
  transition: background 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
  background: var(--green-800);
}

.product-card--featured {
  background: var(--orange);
}

.product-card--featured:hover {
  background: var(--orange-dark);
}

.product-card__number {
  position: absolute;
  top: 30px;
  right: 32px;
  color: rgba(255,255,255,.25);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card__icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 46px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}

.product-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card h3 {
  margin: 0 0 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
}

.product-card p {
  margin: 0;
  color: #bfd0c9;
  font-size: 0.92rem;
  line-height: 1.65;
}

.product-card--featured p {
  color: rgba(255,255,255,.8);
}

.products__note {
  margin: 33px 0 0;
  color: #abc1b8;
  text-align: center;
  font-size: 0.87rem;
}

.products__note a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.delivery {
  background: var(--cream);
}

.delivery__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: center;
}

.delivery__visual {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: var(--green-100);
  border-radius: 50% 50% var(--radius) var(--radius);
}

.delivery__visual::before,
.delivery__visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.delivery__visual::before {
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border: 40px solid rgba(40,116,92,.08);
}

.delivery__visual::after {
  right: -30px;
  bottom: -60px;
  width: 210px;
  height: 210px;
  background: rgba(229,108,47,.14);
}

.delivery__truck {
  position: absolute;
  z-index: 2;
  top: 145px;
  left: 50%;
  width: 72%;
  transform: translateX(-50%);
}

.delivery__truck svg {
  width: 100%;
  overflow: visible;
}

.delivery__truck path {
  fill: var(--green-800);
}

.delivery__truck circle {
  fill: var(--green-950);
  stroke: var(--cream);
  stroke-width: 4;
}

.delivery__truck circle:nth-of-type(2),
.delivery__truck circle:nth-of-type(4) {
  fill: var(--cream);
  stroke: none;
}

.delivery__truck .truck-letter {
  fill: var(--cream);
}

.delivery__truck .truck-logo {
  fill: #e2b553;
  stroke: #9b6208;
  stroke-width: .7px;
  paint-order: stroke fill;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -2px;
}

.route-line {
  position: absolute;
  top: 95px;
  right: 40px;
  left: 40px;
  height: 160px;
  border: 2px dashed rgba(40,116,92,.25);
  border-bottom: 0;
  border-radius: 100px 100px 0 0;
}

.route-line span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border: 4px solid #f9d6c5;
  border-radius: 50%;
  box-sizing: content-box;
}

.route-line__start {
  bottom: -8px;
  left: -8px;
}

.route-line__end {
  right: -8px;
  bottom: -8px;
}

.delivery__label {
  position: absolute;
  z-index: 3;
  bottom: 44px;
  left: 48px;
  display: flex;
  flex-direction: column;
  color: var(--green-950);
}

.delivery__label strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
}

.delivery__label span {
  color: var(--muted);
  font-size: 0.9rem;
}

.delivery__content > p:not(.eyebrow) {
  margin: 25px 0 30px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.delivery__steps {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.delivery__steps > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.delivery__steps > div > span {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: var(--orange-dark);
  background: #f5dfd2;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.delivery__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.delivery__steps strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link span {
  color: var(--orange);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.contact {
  padding-top: 0;
  background: var(--cream);
}

.contact__panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  padding: 76px 80px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.contact__intro p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #bfd1ca;
  line-height: 1.7;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  transition: background 0.2s ease, transform 0.2s ease;
}

a.contact-item:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.contact-item__icon {
  display: grid;
  place-items: center;
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  color: var(--orange);
  background: rgba(229,108,47,.13);
  border-radius: 50%;
}

.contact-item svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-item small {
  margin-bottom: 3px;
  color: #9bb8ad;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: 0.83rem;
  line-height: 1.45;
}

.site-footer {
  padding: 42px 0;
  color: #a8beb5;
  background: #0c3028;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand--footer {
  justify-self: start;
  color: var(--white);
}

.brand--footer .brand__mark {
  width: 46px;
  height: 46px;
  font-size: 1.05rem;
}

.brand--footer .brand__text small {
  color: #78998c;
}

.site-footer p {
  margin: 0;
  font-size: 0.77rem;
}

.copyright {
  justify-self: end;
}

.mobile-call {
  display: none;
}

@media (max-width: 1060px) {
  .hero-card--main {
    right: 0;
    width: 335px;
  }

  .hero-card--top {
    left: -15px;
  }

  .intro__grid,
  .delivery__grid {
    gap: 60px;
  }

  .contact__panel {
    gap: 45px;
    padding: 64px 50px;
  }
}

@media (max-width: 900px) {
  .contact-strip p {
    display: none;
  }

  .contact-strip__inner {
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 20;
    top: 129px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    color: var(--green-950);
    background: var(--cream);
    box-shadow: 0 24px 40px rgba(17,60,50,.12);
    opacity: 0;
    transform: translateY(-15px);
    transition: 0.2s ease;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 10px;
    text-align: center;
  }

  .language-switcher {
    align-self: center;
    margin: 8px 0;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 530px;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }

  .hero__pattern {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 480px;
  }

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

  .hero__content {
    max-width: 720px;
    padding: 70px 0 35px;
  }

  .hero__visual {
    width: min(540px, 100%);
    min-height: 540px;
    margin: 0 auto;
  }

  .hero-card--main {
    right: 50%;
    width: 365px;
    transform: translateX(50%);
  }

  .hero-card--top {
    left: 10px;
  }

  .hero-card--bottom {
    right: 0;
    bottom: 30px;
  }

  .intro__grid,
  .delivery__grid,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    gap: 40px;
  }

  .intro__copy {
    padding: 0;
    border: 0;
  }

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

  .delivery__grid {
    gap: 50px;
  }

  .delivery__visual {
    width: min(570px, 100%);
    margin: 0 auto;
  }

  .contact__panel {
    gap: 40px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__inner > p:not(.copyright) {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .contact-strip__links {
    gap: 12px;
    font-size: 0.7rem;
  }

  .contact-strip__links a:last-child {
    display: none;
  }

  .navbar {
    height: 78px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .brand__text small {
    font-size: 0.54rem;
  }

  .nav-links {
    top: 117px;
  }

  .hero__content {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__trust {
    gap: 9px 14px;
  }

  .hero__visual {
    min-height: 495px;
  }

  .hero-card--main {
    top: 65px;
    width: min(310px, calc(100% - 35px));
    height: 380px;
    padding: 35px;
  }

  .produce-icon svg {
    width: 210px;
  }

  .hero-card--top {
    top: 60px;
    left: 0;
    padding: 13px 15px;
    transform: scale(.88);
    transform-origin: left;
  }

  .hero-card--bottom {
    right: 0;
    bottom: 15px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading > p {
    margin-top: 20px;
  }

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

  .product-card {
    min-height: auto;
    padding: 30px;
  }

  .product-card__icon {
    margin-bottom: 30px;
  }

  .delivery__visual {
    min-height: 400px;
  }

  .delivery__truck {
    top: 125px;
    width: 82%;
  }

  .route-line {
    top: 70px;
    right: 25px;
    left: 25px;
    height: 135px;
  }

  .delivery__label {
    bottom: 32px;
    left: 30px;
  }

  .contact {
    padding-top: 0;
  }

  .contact__panel {
    width: 100%;
    padding: 65px 25px;
    border-radius: 0;
  }

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

  .site-footer {
    padding-bottom: 100px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .brand--footer,
  .copyright {
    justify-self: center;
  }

  .mobile-call {
    position: fixed;
    z-index: 30;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    color: var(--white);
    background: var(--orange);
    border-radius: 100px;
    box-shadow: 0 12px 30px rgba(17,60,50,.28);
    font-weight: 700;
  }

  .mobile-call svg {
    width: 18px;
    fill: currentColor;
  }
}

/* Business-card logo lockup */
.navbar {
  height: 120px;
}

.navbar > .brand {
  flex: 0 0 254px;
  width: 254px;
  height: 105px;
  overflow: hidden;
}

.navbar > .brand .brand__mark {
  display: block;
  flex: 0 0 254px;
  width: 254px;
  height: 105px;
  color: transparent;
  background-color: transparent;
  background-image: url("assets/cjl-food-style.png");
  background-repeat: no-repeat;
  background-position: -1px -26px;
  background-size: 480px auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0;
  text-shadow: none;
}

.navbar > .brand .brand__text {
  display: none;
}

.hero-showcase__monogram {
  color: var(--green-900);
  padding: 8px 25px 12px;
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(249,245,233,.93)),
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(190,134,30,.1) 20px 21px);
  border: 2px solid #d0a03c;
  border-radius: 5px 28px 5px 28px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.72), 0 10px 26px rgba(0,22,14,.25);
  text-shadow: 1px 1px 0 #b9770e, -1px -1px 0 #f7dc8b, 2px 2px 0 #9f6307;
}

@media (max-width: 900px) {
  .navbar {
    height: 112px;
  }

  .nav-links {
    top: 151px;
  }

  .navbar > .brand {
    flex-basis: 225px;
    width: 225px;
    height: 94px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 225px;
    width: 225px;
    height: 94px;
    background-position: 0 -23px;
    background-size: 426px auto;
  }
}

@media (max-width: 620px) {
  .navbar {
    height: 92px;
  }

  .nav-links {
    top: 131px;
  }

  .navbar > .brand {
    flex-basis: 205px;
    width: 205px;
    height: 85px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 205px;
    width: 205px;
    height: 85px;
    background-position: 0 -22px;
    background-size: 387px auto;
  }

  .hero-showcase__monogram {
    padding: 6px 20px 10px;
  }
}

/* Horizontal logo: CJL with Trading Inc. at its side */
.navbar {
  height: 106px;
}

.navbar > .brand {
  display: flex;
  flex: 0 0 350px;
  width: 350px;
  height: 86px;
  gap: 13px;
  overflow: visible;
}

.navbar > .brand .brand__mark {
  flex: 0 0 190px;
  width: 190px;
  height: 80px;
  background-position: -1px -26px;
  background-size: 480px auto;
}

.navbar > .brand .brand__text {
  display: flex;
  min-width: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(166, 109, 13, .4);
}

.navbar > .brand .brand__text strong {
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: .01em;
  text-shadow: 1px 1px 0 rgba(211,161,59,.45);
  white-space: nowrap;
}

.navbar > .brand .brand__text small {
  max-width: 130px;
  margin-top: 7px;
  color: var(--orange-dark);
  font-size: .56rem;
  line-height: 1.35;
  letter-spacing: .12em;
}

@media (max-width: 1060px) and (min-width: 901px) {
  .navbar > .brand {
    flex-basis: 315px;
    width: 315px;
    gap: 9px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 170px;
    width: 170px;
    background-size: 430px auto;
    background-position: 0 -23px;
  }

  .navbar > .brand .brand__text {
    padding-left: 10px;
  }

  .navbar > .brand .brand__text strong {
    font-size: 1.22rem;
  }

  .nav-links {
    gap: 19px;
  }
}

@media (max-width: 900px) {
  .navbar {
    height: 96px;
  }

  .nav-links {
    top: 135px;
  }

  .navbar > .brand {
    flex-basis: 315px;
    width: 315px;
    height: 78px;
    gap: 10px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 170px;
    width: 170px;
    height: 72px;
    background-position: 0 -23px;
    background-size: 430px auto;
  }

  .navbar > .brand .brand__text {
    padding-left: 10px;
  }

  .navbar > .brand .brand__text strong {
    font-size: 1.22rem;
  }
}

@media (max-width: 620px) {
  .navbar {
    height: 84px;
  }

  .nav-links {
    top: 123px;
  }

  .navbar > .brand {
    flex-basis: 258px;
    width: 258px;
    height: 68px;
    gap: 7px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 130px;
    width: 130px;
    height: 55px;
    background-position: 0 -18px;
    background-size: 330px auto;
  }

  .navbar > .brand .brand__text {
    padding-left: 8px;
  }

  .navbar > .brand .brand__text strong {
    font-size: 1.03rem;
  }

  .navbar > .brand .brand__text small {
    max-width: 105px;
    margin-top: 5px;
    font-size: .43rem;
    letter-spacing: .08em;
  }
}

@media (max-width: 370px) {
  .navbar > .brand {
    flex-basis: 225px;
    width: 225px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 114px;
    width: 114px;
    height: 50px;
    background-position: 0 -16px;
    background-size: 290px auto;
  }

  .navbar > .brand .brand__text strong {
    font-size: .92rem;
  }

  .navbar > .brand .brand__text small {
    max-width: 90px;
    font-size: .39rem;
  }
}

.navbar > .brand .brand__text {
  padding-left: 0;
  border-left: 0;
}

/* Restored business-card CJL artwork and sizing. */
.navbar > .brand {
  flex-basis: 362px;
  width: 362px;
}

.navbar > .brand .brand__mark {
  display: block;
  flex: 0 0 200px;
  width: 200px;
  height: 72px;
  color: transparent;
  background-color: transparent;
  background-image: url("assets/cjl-food-style.png");
  background-repeat: no-repeat;
  background-position: -1px -23px;
  background-size: 430px auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

@media (max-width: 1060px) and (min-width: 901px) {
  .navbar > .brand {
    flex-basis: 325px;
    width: 325px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 175px;
    width: 175px;
    height: 63px;
    background-position: 0 -20px;
    background-size: 380px auto;
  }
}

@media (max-width: 900px) {
  .navbar > .brand {
    flex-basis: 325px;
    width: 325px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 175px;
    width: 175px;
    height: 63px;
    background-position: 0 -20px;
    background-size: 380px auto;
  }
}

@media (max-width: 620px) {
  .navbar > .brand {
    flex-basis: 264px;
    width: 264px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 135px;
    width: 135px;
    height: 46px;
    background-position: 0 -15px;
    background-size: 280px auto;
  }
}

@media (max-width: 370px) {
  .navbar > .brand {
    flex-basis: 232px;
    width: 232px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 120px;
    width: 120px;
    height: 41px;
    background-position: 0 -14px;
    background-size: 250px auto;
  }
}

/* Transparent CJL logo extracted from the business-card artwork. */
.navbar > .brand .brand__mark {
  background-color: transparent;
  background-image: url("assets/cjl-logo-transparent.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Match the footer logo to the transparent header logo. */
.brand--footer {
  gap: 10px;
}

.brand--footer .brand__mark {
  display: block;
  flex: 0 0 120px;
  width: 120px;
  height: 48px;
  color: transparent;
  background-color: transparent;
  background-image: url("assets/cjl-logo-transparent.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0;
  text-shadow: none;
}

.brand--footer .brand__text strong {
  color: #f1cf78;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.brand--footer .brand__text small {
  color: #d8bd76;
}

/* Clean CJL lettering without the diagonal stripe from the reference artwork. */
.navbar > .brand {
  flex-basis: 340px;
  width: 340px;
}

.navbar > .brand .brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 178px;
  width: 178px;
  height: 78px;
  color: var(--green-900);
  background: none;
  border: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.35rem;
  font-weight: 700;
  letter-spacing: -.085em;
  line-height: 1;
  -webkit-text-stroke: .7px #b57912;
  text-shadow:
    -1px -1px 0 #f4d77f,
    1px 1px 0 #8f5805,
    2px 2px 0 #c3912b,
    0 7px 12px rgba(67, 43, 5, .16);
}

@media (max-width: 1060px) and (min-width: 901px) {
  .navbar > .brand {
    flex-basis: 305px;
    width: 305px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 155px;
    width: 155px;
    height: 70px;
    font-size: 3.8rem;
  }
}

@media (max-width: 900px) {
  .navbar > .brand {
    flex-basis: 305px;
    width: 305px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 155px;
    width: 155px;
    height: 70px;
    font-size: 3.8rem;
  }
}

@media (max-width: 620px) {
  .navbar > .brand {
    flex-basis: 250px;
    width: 250px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 120px;
    width: 120px;
    height: 58px;
    font-size: 3.05rem;
  }
}

@media (max-width: 370px) {
  .navbar > .brand {
    flex-basis: 222px;
    width: 222px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 105px;
    width: 105px;
    height: 52px;
    font-size: 2.7rem;
  }
}

/* Keep the full L visible in the business-card CJL mark. */
.navbar > .brand {
  flex-basis: 362px;
  width: 362px;
}

.navbar > .brand .brand__mark {
  flex-basis: 200px;
  width: 200px;
  height: 72px;
  background-position: -1px -23px;
  background-size: 430px auto;
}

@media (max-width: 1060px) and (min-width: 901px) {
  .navbar > .brand {
    flex-basis: 325px;
    width: 325px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 175px;
    width: 175px;
    height: 63px;
    background-position: 0 -20px;
    background-size: 380px auto;
  }
}

@media (max-width: 900px) {
  .navbar > .brand {
    flex-basis: 325px;
    width: 325px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 175px;
    width: 175px;
    height: 63px;
    background-position: 0 -20px;
    background-size: 380px auto;
  }
}

@media (max-width: 620px) {
  .navbar > .brand {
    flex-basis: 264px;
    width: 264px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 135px;
    width: 135px;
    height: 46px;
    background-position: 0 -15px;
    background-size: 280px auto;
  }
}

@media (max-width: 370px) {
  .navbar > .brand {
    flex-basis: 232px;
    width: 232px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 120px;
    width: 120px;
    height: 41px;
    background-position: 0 -14px;
    background-size: 250px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Emerald and gold brand treatment inspired by the CJL visual identity. */
body {
  background-color: var(--cream);
  background-image:
    linear-gradient(118deg, transparent 0 36%, rgba(191, 139, 42, 0.035) 36.2%, transparent 36.6%),
    radial-gradient(ellipse at 12% 8%, rgba(207, 165, 83, 0.08), transparent 31%);
}

.contact-strip {
  color: rgba(255, 255, 255, 0.87);
  background: linear-gradient(90deg, #002d1e, #005039 52%, #002d1e);
  border-bottom: 1px solid rgba(211, 161, 59, 0.55);
}

.site-header {
  background:
    linear-gradient(115deg, rgba(255,255,255,.96), rgba(250,248,242,.93)),
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(211,161,59,.07) 40px 41px);
  box-shadow: 0 8px 30px rgba(0, 45, 30, 0.06);
}

.navbar {
  height: 96px;
}

.brand__mark {
  width: 62px;
  height: 54px;
  color: var(--green-900);
  background: linear-gradient(145deg, #f7dd8b, #a96b09 48%, #f4d375 55%, #b57c18);
  border: 1px solid #a66d0d;
  border-radius: 5px 22px 5px 22px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.65), 0 6px 18px rgba(104, 70, 10, .18);
  font-size: 1.45rem;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
  transform: none;
}

.brand__text strong {
  color: var(--green-900);
  font-size: 1.28rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand__text small {
  color: var(--orange-dark);
  letter-spacing: .16em;
}

.button {
  color: var(--green-950);
  background: linear-gradient(135deg, #f5d577 0%, #bd7c14 48%, #edca68 100%);
  border-color: #c38a22;
  box-shadow: 0 12px 28px rgba(135, 89, 11, .22), inset 0 1px 0 rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .045em;
}

.button:hover {
  color: var(--green-950);
  background: linear-gradient(135deg, #ffe294 0%, #ca8d25 52%, #f5d477 100%);
  border-color: #a66d0d;
}

.button--outline {
  color: var(--green-900);
  background: rgba(255,255,255,.6);
  border-color: rgba(166, 109, 13, .55);
  box-shadow: none;
}

.button--outline:hover {
  color: #fff;
  background: var(--green-900);
  border-color: var(--green-900);
}

.language-switcher {
  background: rgba(211, 161, 59, .1);
  border: 1px solid rgba(166, 109, 13, .18);
}

.language-button.active,
.language-button:hover {
  color: var(--orange-dark);
}

.hero {
  min-height: 720px;
  background-color: #fcfaf5;
  background-image:
    radial-gradient(ellipse at 17% 12%, rgba(205, 157, 68, .12), transparent 27%),
    linear-gradient(132deg, transparent 0 18%, rgba(190, 134, 30, .06) 18.2%, transparent 18.6%),
    linear-gradient(45deg, transparent 0 65%, rgba(190, 134, 30, .05) 65.2%, transparent 65.6%),
    repeating-radial-gradient(ellipse at 8% 18%, transparent 0 18px, rgba(194, 146, 57, .025) 19px 20px, transparent 21px 38px);
}

.hero::after {
  right: -3%;
  width: 50%;
  background: linear-gradient(148deg, #006043 0%, #003f2a 47%, #002b1d 100%);
  clip-path: polygon(21% 0, 100% 0, 100% 100%, 2% 100%, 14% 73%, 5% 47%);
}

.hero::before {
  position: absolute;
  z-index: 2;
  top: -12%;
  right: 44.5%;
  width: 22px;
  height: 125%;
  content: "";
  background: linear-gradient(90deg, #8b5908, #f5d477 34%, #b97b13 68%, #ffe8a3);
  box-shadow: 7px 0 0 var(--green-950), 13px 0 0 #e0ad46;
  transform: rotate(-9deg);
  transform-origin: center;
}

.hero__pattern {
  opacity: .12;
  background-image: radial-gradient(circle, #e2b454 1.2px, transparent 1.3px);
  background-size: 28px 28px;
}

.hero__grid {
  min-height: 720px;
}

.hero__content {
  padding-right: 72px;
}

.eyebrow {
  color: var(--orange-dark);
  letter-spacing: .19em;
}

.eyebrow span {
  background: linear-gradient(90deg, #9c6409, #edc868);
}

h1 {
  color: var(--green-900);
  font-size: clamp(3.4rem, 5.2vw, 5.45rem);
  text-shadow: 0 2px 0 rgba(255,255,255,.8);
}

h1 em {
  color: var(--orange-dark);
  background: linear-gradient(120deg, #8d5704 0%, #d6a840 48%, #9b6208 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  color: #50645c;
}

.hero__trust svg {
  fill: var(--orange-dark);
}

.hero__visual {
  min-height: 635px;
}

.hero-showcase {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(510px, 94%);
  height: 570px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #07593c 0%, #003b27 52%, #002b1d 100%);
  border: 2px solid #d1a13f;
  border-radius: 180px 12px 90px 12px;
  box-shadow: 0 30px 80px rgba(0, 28, 18, .43), inset 0 0 0 5px rgba(255,255,255,.06);
}

.hero-showcase::before {
  position: absolute;
  z-index: 2;
  top: -110px;
  right: -85px;
  width: 290px;
  height: 290px;
  content: "";
  border: 32px solid rgba(232, 193, 102, .16);
  border-radius: 50%;
}

.hero-showcase__map {
  position: absolute;
  z-index: 1;
  top: 5px;
  right: -20px;
  left: -20px;
  opacity: .55;
}

.hero-showcase__map svg {
  width: 100%;
}

.hero-showcase__map path {
  fill: none;
  stroke: #e2b553;
  stroke-width: 1.15;
}

.hero-showcase__map circle {
  fill: #f0c966;
}

.hero-showcase__copy {
  position: relative;
  z-index: 4;
  padding: 58px 35px 0;
  text-align: center;
}

.hero-showcase__monogram {
  display: inline-block;
  color: #f7f1df;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.7rem;
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .82;
  text-shadow: 1px 1px 0 #ae7110, -1px -1px 0 #f7dc8b, 0 5px 20px rgba(0,0,0,.2);
}

.hero-showcase__kicker {
  margin: 15px 0 8px;
  color: #f0cc76;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero-showcase h2 {
  color: #fff;
  font-size: 2.15rem;
  line-height: 1.03;
}

.hero-showcase h2 em {
  color: #f1cc72;
  font-style: italic;
}

.hero-showcase__food {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 292px;
  background-image:
    linear-gradient(to bottom, #003b27 0, rgba(0,59,39,.4) 10%, transparent 28%),
    url("assets/cjl-food-style-v2.png");
  background-repeat: no-repeat;
  background-position: center, right bottom;
  background-size: 100% 100%, auto 530px;
}

.hero-showcase__food::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  content: "";
  background: linear-gradient(to top, rgba(0, 36, 23, .25), transparent);
}

.hero-showcase__gold-line {
  position: absolute;
  z-index: 5;
  right: -40px;
  bottom: 251px;
  left: -50px;
  height: 5px;
  background: linear-gradient(90deg, #835004, #f6db8c, #ac6c08);
  box-shadow: 0 3px 0 rgba(0,40,26,.55);
  transform: rotate(-4deg);
}

.hero-card--top {
  top: auto;
  bottom: 36px;
  left: -5px;
  z-index: 8;
  border: 1px solid rgba(197, 140, 29, .55);
  border-radius: 6px 18px 6px 18px;
  box-shadow: 0 18px 40px rgba(0, 35, 23, .28);
}

.hero-card--top svg {
  fill: var(--orange-dark);
}

.intro {
  position: relative;
  background-color: #fffdf8;
  background-image:
    radial-gradient(ellipse at 90% 10%, rgba(211,161,59,.09), transparent 32%),
    linear-gradient(128deg, transparent 0 48%, rgba(190,134,30,.035) 48.2%, transparent 48.6%);
}

.intro::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #8c5605, #f4d67f 40%, #ad7010 70%, #f3d685);
}

.intro__copy {
  border-left-color: rgba(166,109,13,.3);
}

.products {
  position: relative;
  background:
    radial-gradient(circle at 10% 0, rgba(26,117,79,.55), transparent 30%),
    linear-gradient(135deg, #002d1e, #004730 53%, #002b1d);
}

.products::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .08;
  background-image: radial-gradient(circle, #eec968 1px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.products .container {
  position: relative;
  z-index: 1;
}

.eyebrow--light {
  color: #eed185;
}

.product-grid {
  gap: 14px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.product-card {
  min-height: 330px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  border: 1px solid rgba(231, 194, 105, .28);
  border-radius: 8px 30px 8px 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.product-card:hover {
  background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.07));
  border-color: rgba(231, 194, 105, .6);
  transform: translateY(-4px);
}

.product-card--featured {
  color: var(--green-950);
  background: linear-gradient(140deg, #f1d584, #b77b16 50%, #e8bf5d);
  border-color: #f4dc95;
  box-shadow: 0 17px 42px rgba(0,25,16,.25), inset 0 1px 0 rgba(255,255,255,.7);
}

.product-card--featured:hover {
  background: linear-gradient(140deg, #f8df96, #c68c25 50%, #efcd72);
}

.product-card--featured .product-card__icon {
  background: rgba(0, 54, 35, .13);
}

.product-card--featured .product-card__icon svg {
  stroke: var(--green-950);
}

.product-card--featured p {
  color: rgba(0,45,30,.78);
}

.product-card__icon {
  background: rgba(216, 169, 70, .12);
  border: 1px solid rgba(226, 183, 88, .23);
}

.delivery {
  background-color: #faf7ef;
  background-image:
    radial-gradient(ellipse at 0 100%, rgba(194,144,48,.11), transparent 30%),
    linear-gradient(38deg, transparent 0 74%, rgba(199,150,52,.04) 74.3%, transparent 74.7%);
}

.delivery__visual {
  background: linear-gradient(145deg, #f7f1e3, #e4d4ad);
  border: 1px solid rgba(166,109,13,.32);
  border-radius: 160px 12px 80px 12px;
  box-shadow: 0 24px 55px rgba(79, 55, 12, .13), inset 0 0 0 5px rgba(255,255,255,.38);
}

.delivery__truck path {
  fill: var(--green-900);
}

.route-line {
  border-color: rgba(166,109,13,.35);
}

.route-line span {
  background: #b27412;
  border-color: #f5dda1;
}

.delivery__steps > div > span {
  color: var(--green-950);
  background: linear-gradient(145deg, #f0d583, #c38a27);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.contact__panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0, rgba(31,121,82,.6), transparent 35%),
    linear-gradient(135deg, #00321f, #005139 55%, #002c1d);
  border: 2px solid #c79732;
  border-radius: 10px 55px 10px 55px;
  box-shadow: 0 25px 70px rgba(0,40,26,.2), inset 0 0 0 5px rgba(255,255,255,.04);
}

.contact__panel::after {
  position: absolute;
  z-index: 0;
  top: -160px;
  right: -100px;
  width: 360px;
  height: 360px;
  content: "";
  border: 2px solid rgba(232, 193, 102, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(232,193,102,.04), 0 0 0 58px rgba(232,193,102,.025);
}

.contact__intro,
.contact__details {
  position: relative;
  z-index: 1;
}

.contact-item {
  border-color: rgba(231, 194, 105, .22);
}

.contact-item__icon {
  color: #f1cc72;
  background: rgba(211,161,59,.13);
}

.site-footer {
  color: #b9c9c2;
  background: linear-gradient(90deg, #001f14, #003925 50%, #001e13);
  border-top: 1px solid rgba(211,161,59,.45);
}

.brand--footer .brand__text small {
  color: #d9b961;
}

.mobile-call {
  color: var(--green-950);
  background: linear-gradient(135deg, #f3d578, #be7e16 50%, #edc968);
  border: 1px solid #a66d0d;
}

@media (max-width: 1060px) {
  .hero-showcase {
    width: 420px;
  }

  .hero-showcase__monogram {
    font-size: 5rem;
  }
}

@media (max-width: 900px) {
  .navbar {
    height: 88px;
  }

  .nav-links {
    top: 127px;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    height: 600px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .hero__visual {
    min-height: 600px;
  }

  .hero-showcase {
    top: 18px;
    right: 50%;
    width: min(510px, 94%);
    transform: translateX(50%);
  }

  .hero-card--top {
    left: 0;
    bottom: 15px;
  }
}

@media (max-width: 620px) {
  .navbar {
    height: 80px;
  }

  .nav-links {
    top: 119px;
  }

  .brand__mark {
    width: 51px;
    height: 45px;
    font-size: 1.15rem;
  }

  .hero::after {
    height: 535px;
  }

  .hero__visual {
    min-height: 530px;
  }

  .hero-showcase {
    top: 18px;
    height: 500px;
    border-radius: 115px 8px 65px 8px;
  }

  .hero-showcase__copy {
    padding-top: 48px;
  }

  .hero-showcase__monogram {
    font-size: 4.4rem;
  }

  .hero-showcase h2 {
    font-size: 1.8rem;
  }

  .hero-showcase__food {
    height: 252px;
    background-size: 100% 100%, auto 455px;
  }

  .hero-showcase__gold-line {
    bottom: 220px;
  }

  .hero-card--top {
    bottom: -2px;
    transform: scale(.84);
  }

  .contact__panel {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}

/* No separator between the CJL mark and Trading Inc. */
.navbar > .brand .brand__text {
  padding-left: 0;
  border-left: 0;
}

/* Final header logo state: transparent business-card artwork and sizing. */
.navbar > .brand {
  flex-basis: 385px;
  width: 385px;
}

.navbar > .brand .brand__mark {
  display: block;
  flex: 0 0 200px;
  width: 200px;
  height: 72px;
  color: transparent;
  background-color: transparent;
  background-image: url("assets/cjl-logo-transparent.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.navbar > .brand .brand__text small {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 1060px) and (min-width: 901px) {
  .navbar > .brand {
    flex-basis: 325px;
    width: 325px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 175px;
    width: 175px;
    height: 63px;
  }
}

@media (max-width: 900px) {
  .navbar > .brand {
    flex-basis: 325px;
    width: 325px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 175px;
    width: 175px;
    height: 63px;
  }
}

@media (max-width: 620px) {
  .navbar > .brand {
    flex-basis: 264px;
    width: 264px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 135px;
    width: 135px;
    height: 46px;
  }
}

@media (max-width: 370px) {
  .navbar > .brand {
    flex-basis: 232px;
    width: 232px;
  }

  .navbar > .brand .brand__mark {
    flex-basis: 120px;
    width: 120px;
    height: 41px;
  }
}
