:root {
  --ink: #17382f;
  --ink-2: #31594d;
  --green: #1f6a4b;
  --green-dark: #0c3028;
  --gold: #d4a13d;
  --ochre: #9c6230;
  --cream: #f6f2e7;
  --paper: #fffdf7;
  --line: #d9d1bf;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 48, 38, 0.15);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(217, 209, 191, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 7px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #e9e2d0;
  outline: none;
}

.site-nav .nav-action {
  color: var(--white);
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 35, 29, 0.9) 0%, rgba(8, 35, 29, 0.58) 52%, rgba(8, 35, 29, 0.22) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(44px, 9vw, 110px) clamp(18px, 5vw, 76px);
  color: var(--white);
}

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

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-size: clamp(3.3rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #f4eedc;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 26px clamp(18px, 4vw, 44px);
  background: var(--paper);
}

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

.trust-band span {
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.tinted {
  background: #ebe5d4;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(540px, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 18px;
  width: 100%;
}

.process-list article,
.feature-grid article,
.criteria-panel,
.commodity,
.assurance-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(23, 56, 47, 0.04);
}

.process-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  grid-row: 1 / span 2;
}

.process-list h3,
.process-list p {
  grid-column: 2;
}

.process-list p {
  max-width: 62ch;
  margin: 0;
}

.process-list p,
.feature-grid p,
.commodity p,
.assurance-grid p,
.about p,
.section-heading p,
.criteria-panel li,
.benefit-strip span {
  color: var(--ink-2);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: 1.05rem;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.feature-grid,
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.assurance-grid article {
  padding: 22px;
}

.supplier-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.criteria-panel {
  padding: 28px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--paper);
}

.benefit-strip {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.benefit-strip article {
  padding: 24px;
  background: var(--green-dark);
  color: var(--white);
}

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

.benefit-strip span {
  margin-top: 6px;
  color: #d7e7dc;
}

.commodity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.commodity {
  padding: 24px;
}

.commodity-swatch {
  width: 100%;
  height: 118px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid rgba(23, 56, 47, 0.14);
  background-size: 26px 26px;
}

.commodity-swatch.ginger {
  background-color: #c98235;
  background-image: radial-gradient(circle at 8px 8px, #ead09d 0 5px, transparent 6px);
}

.commodity-swatch.cashew {
  background-color: #efe6ca;
  background-image: radial-gradient(ellipse at center, #caa45f 0 5px, transparent 6px);
}

.commodity-swatch.sesame {
  background-color: #9d6935;
  background-image: radial-gradient(circle at 10px 10px, #f3e8cc 0 3px, transparent 4px);
}

dl,
dd {
  margin: 0;
}

dt {
  margin-top: 16px;
  font-weight: 800;
}

dd {
  color: var(--ink-2);
}

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

.assurance .section-heading p,
.assurance-grid p {
  color: #d7e7dc;
}

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

.assurance-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.about {
  border-bottom: 1px solid var(--line);
}

.forms-section {
  background: #f5f0e4;
}

.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.tab {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 7px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab.is-active {
  color: var(--white);
  background: var(--green);
}

.form-panel {
  max-width: 1080px;
}

.enquiry-form {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bfb6a5;
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(212, 161, 61, 0.55);
  outline-offset: 2px;
}

.wide {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: var(--ink-2);
  font-weight: 650;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.website-field {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 76px);
  color: #d7e7dc;
  background: #071f1a;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
}

@media (max-width: 1020px) {
  .feature-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commodity-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 35, 29, 0.58) 0%, rgba(8, 35, 29, 0.93) 70%);
  }

  .split,
  .supplier-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list span,
  .process-list h3,
  .process-list p {
    grid-column: 1;
  }

  .process-list span {
    grid-row: auto;
  }

  .tabs {
    display: grid;
    width: 100%;
  }
}
