:root {
  color-scheme: light;
  --ink: #17231d;
  --muted: #5d675f;
  --paper: #fbfbf7;
  --surface: #ffffff;
  --line: #dfe5dc;
  --leaf: #2f6b4f;
  --leaf-dark: #1f4d38;
  --rose: #c97061;
  --gold: #d0a83f;
  --shadow: 0 18px 44px rgba(23, 35, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(223, 229, 220, 0.9);
  background: rgba(251, 251, 247, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  object-fit: contain;
  padding: 4px;
  box-shadow: 0 0 0 1px var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  padding: 8px 10px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: #edf3ec;
  color: var(--leaf-dark);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 62vh;
}

.hero-image,
.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 24, 18, 0.78), rgba(14, 24, 18, 0.44) 48%, rgba(14, 24, 18, 0.15)),
    linear-gradient(0deg, rgba(14, 24, 18, 0.28), rgba(14, 24, 18, 0.16));
}

.hero-content,
.page-hero-content,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  padding: 72px 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 54px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 23px;
}

.lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--leaf);
  color: #ffffff;
  font-weight: 760;
  line-height: 1.2;
  padding: 12px 18px;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--leaf-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button.light {
  border-color: var(--line);
  background: var(--surface);
  color: var(--leaf-dark);
}

.button.light:hover,
.button.light:focus-visible {
  border-color: var(--leaf-dark);
  background: #edf3ec;
  color: var(--leaf-dark);
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: #f0f5ed;
}

.section.compact {
  padding: 54px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.copy > * + * {
  margin-top: 18px;
}

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

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.crop-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.crop-card,
.contact-panel,
.enquiry-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.crop-card strong,
.contact-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: 14px;
  text-transform: uppercase;
}

.crop-card p,
.contact-panel p,
.enquiry-panel p {
  margin: 0;
  color: var(--muted);
}

.species {
  margin-top: 10px;
  color: var(--ink);
  font-style: italic;
}

.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
}

.page-hero-content {
  padding: 72px 0;
}

.page-hero .lead {
  max-width: 700px;
}

.enquiry-panel {
  margin-top: 30px;
}

.enquiry-panel .button-row {
  margin-top: 22px;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.detail-list a {
  color: var(--leaf-dark);
  font-weight: 700;
}

.map-replacement {
  margin-top: 28px;
  border-left: 4px solid var(--rose);
  background: var(--surface);
  padding: 18px 20px;
}

.map-replacement p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content,
  .page-hero-content {
    padding: 52px 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 29px;
  }

  .lead {
    font-size: 18px;
  }

  .split,
  .split.reverse,
  .crop-grid,
  .contact-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

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

@media (max-width: 460px) {
  .site-nav a {
    padding: 7px 8px;
  }

  h1 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }
}
