:root {
  --forest: #18381f;
  --leaf: #4f6b36;
  --berry: #7a1d24;
  --gold: #c8a75a;
  --paper: #fbfaf4;
  --ink: #192318;
  --muted: #5f675a;
  --line: #d8c99c;
  --white: #fffdf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid rgba(24, 56, 31, 0.14);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  object-fit: cover;
  flex: 0 0 auto;
}

.brand span {
  font-size: 18px;
  line-height: 1.1;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--forest);
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 28, 16, 0.78), rgba(16, 28, 16, 0.44) 42%, rgba(16, 28, 16, 0.08)),
    linear-gradient(0deg, rgba(16, 28, 16, 0.72), rgba(16, 28, 16, 0) 45%);
}

.hero-content {
  position: relative;
  max-width: 940px;
  padding: 0 clamp(20px, 7vw, 88px) clamp(44px, 10vh, 96px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

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

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.02;
  color: var(--forest);
}

h3 {
  margin: 0;
  font-size: 24px;
  color: var(--forest);
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #182211;
}

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

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

.status-band div {
  padding: 22px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.status-band div:last-child {
  border-right: 0;
}

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

.status-band strong {
  color: var(--berry);
  margin-bottom: 6px;
}

.status-band span {
  color: var(--muted);
  line-height: 1.45;
}

.content-section,
.split-section {
  padding: clamp(52px, 8vw, 96px) clamp(20px, 7vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro p:last-child,
.split-section p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.produce-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
}

.produce-grid span {
  display: block;
  margin-bottom: 42px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--gold);
}

.produce-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 6vw, 72px);
  background: #edf1e5;
}

.split-section h2 {
  margin-bottom: 20px;
}

.enquiry-panel {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.enquiry-panel a {
  display: block;
  margin-top: 12px;
  color: var(--berry);
  font-weight: 700;
  word-break: break-word;
}

.enquiry-panel p {
  margin-top: 22px;
  font-size: 16px;
}

.contact-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  max-width: 860px;
  align-items: center;
}

.contact-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--forest);
  object-fit: cover;
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-card a {
  color: var(--berry);
  font-weight: 700;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 7vw, 88px);
  background: var(--forest);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .status-band,
  .intro,
  .split-section {
    grid-template-columns: 1fr;
  }

  .status-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-band div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 560px) {
  .brand span {
    font-size: 16px;
  }

  nav {
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  h1 span {
    white-space: normal;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

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