:root {
  --page: #f8f3e8;
  --paper: #ffffff;
  --green: #36753f;
  --green-dark: #234f2c;
  --gold: #c49f55;
  --text: #252525;
  --muted: #696969;
  --line: #e6e0d4;
  --shadow: 0 14px 36px rgba(50, 45, 34, 0.08);
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-size: 15px;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid var(--green);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green-dark);
}

main {
  display: grid;
  gap: 22px;
  width: min(1160px, calc(100% - 28px));
  margin: 22px auto 36px;
}

.hero,
.section,
.band,
.page-hero,
.two-column,
.image-band,
.split-products,
.contact-layout {
  width: 100%;
  margin: 0;
  padding: clamp(24px, 4vw, 46px);
  background: var(--page);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero,
.page-hero,
.product-hero,
.contact-layout {
  min-height: min(620px, calc(100vh - 126px));
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
}

.hero-copy,
.section-heading,
.contact-copy {
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.12;
}

h1 {
  font-size: clamp(32px, 5vw, 54px);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

h3 {
  font-size: 18px;
}

p {
  margin: 10px 0 0;
}

.lede,
.page-hero p,
.section-heading p,
.copy-block,
.product-card p,
.flavour-card p,
.split-products p,
.contact-copy p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--green-dark);
  background: #fff;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.hero-visual img,
.product-card img,
.flavour-card img,
.split-products img {
  width: 100%;
  background: #fff;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.hero-visual img {
  height: clamp(330px, 42vw, 460px);
  border: 18px solid #fff;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
}

.hero-visual img:nth-child(2) {
  transform: none;
}

.portfolio-grid,
.flavour-grid {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

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

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

.product-card,
.flavour-card {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.flavour-card {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.flavour-card:hover,
.flavour-card:focus-visible {
  border-color: var(--green);
  box-shadow: 0 16px 32px rgba(35, 79, 44, 0.13);
  transform: translateY(-2px);
}

.product-card img {
  height: 240px;
  margin-bottom: 14px;
  border-radius: 14px;
}

.flavour-card img {
  height: 260px;
  margin-bottom: 14px;
  border-radius: 14px;
}

.product-card div,
.flavour-card {
  padding: 18px;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card div {
  padding-top: 4px;
}

.band {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 28px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 60px;
  padding: 13px 14px;
  background: #fff;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  font-weight: 700;
}

.page-hero {
  display: grid;
  align-content: center;
  max-width: none;
}

.page-hero.compact {
  min-height: 430px;
}

.product-hero {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 32px;
}

.product-hero img,
.image-band img {
  width: 100%;
  max-height: 370px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  mix-blend-mode: multiply;
}

.two-column {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 36px;
}

.copy-block {
  font-size: 16px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stats-row div {
  min-height: 105px;
  padding: 18px;
  background: #fff;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-banner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
  min-height: 430px;
  padding: clamp(24px, 4vw, 46px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(35, 79, 44, 0.96), rgba(196, 159, 85, 0.86)),
    #36753f;
  border: 1px solid rgba(35, 79, 44, 0.24);
  box-shadow: var(--shadow);
}

.about-banner .eyebrow,
.about-banner h2,
.about-banner p {
  color: #fff;
}

.about-banner-copy {
  max-width: 480px;
}

.about-banner-image {
  display: grid;
  place-items: center;
}

.about-banner-image img {
  width: 100%;
  max-width: 620px;
  height: 340px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 12px solid #fff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  mix-blend-mode: normal;
}

.split-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.split-products article {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.split-products img {
  height: 230px;
  object-fit: contain;
  border-radius: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  min-height: min(620px, calc(100vh - 126px));
  padding: clamp(24px, 4vw, 46px);
  background: var(--page);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-media {
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.detail-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}

.detail-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.detail-tagline {
  color: var(--muted);
  font-size: 18px;
}

.back-link {
  width: max-content;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

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

.detail-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

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

.detail-list dd {
  margin: 0;
  color: var(--muted);
}

.availability-panel {
  margin-top: 22px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.availability-panel h2 {
  font-size: 22px;
}

.availability-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-details {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.enquiry-form {
  display: grid;
  gap: 13px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #cfc8ba;
  border-radius: 4px;
  color: var(--text);
  background: #fffaf2;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  background: var(--green-dark);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero,
  .product-hero,
  .two-column,
  .band,
  .image-band,
  .about-banner,
  .split-products,
  .contact-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero,
  .product-hero,
  .contact-layout,
  .product-detail {
    min-height: auto;
  }

  .portfolio-grid,
  .flavour-grid,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-visual,
  .about-banner-image,
  .portfolio-grid,
  .flavour-grid,
  .stats-row,
  .feature-list,
  .split-products article {
    grid-template-columns: 1fr;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .detail-media {
    min-height: 300px;
  }

  .hero-visual img,
  .product-card img,
  .flavour-card img,
  .split-products img {
    height: 230px;
  }
}
