:root {
  --ink: #252525;
  --charcoal: #242422;
  --charcoal-2: #171716;
  --muted: #67635a;
  --gold: #c8972d;
  --gold-dark: #9f731d;
  --leaf: #315f3f;
  --cream: #f7f2e8;
  --paper: #ffffff;
  --line: #e5ded0;
  --shadow: 0 20px 60px rgba(23, 23, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(37, 37, 37, 0.1);
  backdrop-filter: blur(18px);
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 8px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.86);
  background: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 700;
}

.top-bar span {
  margin-right: auto;
}

.top-bar a:hover {
  color: white;
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(260px, 46vw);
  min-width: 180px;
}

.brand img {
  display: block;
  width: 100%;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a,
.site-footer a {
  text-underline-offset: 5px;
}

.main-nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-action,
.button-primary {
  color: white;
  background: var(--charcoal);
  box-shadow: inset 0 -3px 0 rgba(200, 151, 45, 0.55);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 112px);
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 23, 22, 0.9), rgba(23, 23, 22, 0.46) 58%, rgba(23, 23, 22, 0.18)),
    linear-gradient(0deg, rgba(23, 23, 22, 0.82), rgba(23, 23, 22, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
  padding: clamp(64px, 12vw, 128px) clamp(18px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8.4vw, 7.8rem);
  font-weight: 800;
  text-shadow: 0 14px 45px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

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

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 44px);
  z-index: 3;
  display: grid;
  gap: 6px;
  width: min(320px, calc(100vw - 36px));
  padding: 18px;
  background: rgba(23, 23, 22, 0.74);
  border: 1px solid rgba(200, 151, 45, 0.48);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.82);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
  color: white;
}

.trust-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.trust-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.section,
.contact-section {
  padding: clamp(64px, 10vw, 112px) clamp(18px, 5vw, 72px);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.section h2,
.contact-section h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.produce-card {
  min-height: 260px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(20, 34, 26, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.produce-card:hover {
  border-color: rgba(200, 151, 45, 0.55);
  box-shadow: 0 18px 42px rgba(37, 37, 37, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 56px;
  color: var(--charcoal);
  background: #f3dfb3;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.produce-card h3,
.service-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.produce-card p,
.service-copy p,
.company-section p,
.contact-copy p,
.service-item p {
  margin: 0;
  color: var(--muted);
}

.service-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(200, 151, 45, 0.1), rgba(255, 255, 255, 0) 34%),
    #f1eadb;
}

.service-copy {
  max-width: 570px;
}

.service-copy p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 1.08rem;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(200, 151, 45, 0.24);
  border-radius: 8px;
}

.service-item > span {
  color: var(--gold-dark);
  font-weight: 800;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: clamp(30px, 7vw, 96px);
  background: var(--paper);
}

.company-section > div:first-child {
  max-width: 520px;
}

.company-section p {
  margin-top: 18px;
}

.company-facts {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  color: var(--muted);
  font-weight: 700;
}

.company-facts dd {
  margin: 0;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 520px);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  color: white;
  background:
    radial-gradient(circle at 20% 0%, rgba(200, 151, 45, 0.2), rgba(200, 151, 45, 0) 28%),
    var(--charcoal-2);
}

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

.contact-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points a {
  padding: 10px 12px;
  border: 1px solid rgba(200, 151, 45, 0.42);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfdacf;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(200, 151, 45, 0.18);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--charcoal);
  border-top: 4px solid var(--gold);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: white;
}

@media (max-width: 920px) {
  .top-bar {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 8px 18px;
  }

  .top-bar span {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

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

  .section-heading,
  .service-section,
  .company-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 18px 22px;
  }
}

@media (max-width: 640px) {
  .top-bar {
    display: none;
  }

  .header-main {
    position: relative;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: 74px;
    padding: 10px 14px;
  }

  .brand {
    width: min(230px, 56vw);
    min-width: 0;
    order: 1;
  }

  .brand img {
    height: 58px;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    color: var(--charcoal);
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(37, 37, 37, 0.16);
  }

  body.menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .nav-action {
    order: 3;
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .nav-action span {
    font-size: 1rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: 100%;
    padding: 62px 18px 34px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.35rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip,
  .produce-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .produce-card {
    min-height: 220px;
  }

  .card-icon {
    margin-bottom: 34px;
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
  }
}
