:root {
  --olive: #5b6e46;
  --olive-dark: #344128;
  --olive-ink: #26311f;
  --terracotta: #c24f3a;
  --terracotta-dark: #9b3e2d;
  --wheat: #e2c79a;
  --cream: #fbf6ee;
  --paper: #f4ead8;
  --charcoal: #2b2b2b;
  --muted: #695f52;
  --line: #d9c6a6;
  --white: #fffdf8;
  --shadow: 0 20px 50px rgba(43, 43, 43, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Montserrat, Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 68px;
  text-wrap: balance;
}

h2 {
  color: var(--olive-ink);
  font-size: 46px;
  text-wrap: balance;
}

h3 {
  color: var(--olive-ink);
  font-size: 29px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 32px;
  overflow: hidden;
  background: var(--olive-dark);
  color: var(--cream);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(217, 198, 166, 0.8);
  background: rgba(251, 246, 238, 0.95);
  padding: 17px 56px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 212px;
}

.brand img {
  width: 212px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--olive-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav a,
.contact-links a,
.product-card a,
.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.desktop-nav a:hover,
.contact-links a:hover,
.product-card a:hover,
.site-footer a:hover {
  text-decoration-line: underline;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 20px;
  color: var(--olive-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--olive);
  color: var(--cream);
}

.button-primary:hover {
  background: var(--olive-dark);
}

.button-light {
  border-color: rgba(255, 253, 248, 0.8);
  background: rgba(251, 246, 238, 0.1);
  color: var(--white);
}

.button-light:hover {
  background: rgba(251, 246, 238, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  padding: 0;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--olive-ink);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.mobile-nav {
  position: fixed;
  inset: 112px 16px auto;
  z-index: 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
  padding: 12px;
}

.mobile-nav a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 15px 10px;
  color: var(--olive-ink);
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 128px));
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal);
}

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

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center 46%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 24, 17, 0.9), rgba(31, 33, 26, 0.58) 45%, rgba(31, 33, 26, 0.15)),
    linear-gradient(0deg, rgba(20, 24, 17, 0.52), rgba(20, 24, 17, 0.05));
}

.hero-content {
  min-width: 0;
  width: min(760px, calc(100% - 48px));
  padding: 86px 0 112px;
  margin-left: 56px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--wheat);
}

.lead {
  min-width: 0;
  max-width: 620px;
  color: rgba(255, 253, 248, 0.94);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  position: absolute;
  right: 56px;
  bottom: 34px;
  left: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
}

.hero-proof span {
  min-width: 0;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 8px;
  background: rgba(20, 24, 17, 0.34);
  color: var(--white);
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 76px 56px;
}

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading-light h2,
.section-heading-light .eyebrow {
  color: var(--cream);
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding-top: 34px;
  padding-bottom: 34px;
}

.intro-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.intro-copy img {
  width: 58px;
  min-width: 58px;
}

.intro-copy p {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 760px;
  margin-bottom: 0;
  color: var(--olive-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.25;
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.intro-points span {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--olive-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(43, 43, 43, 0.07);
}

.product-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.product-card div {
  display: grid;
  align-content: start;
  padding: 22px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 58px;
  margin-bottom: 14px;
}

.product-card p:not(.product-kicker) {
  color: var(--muted);
}

.product-card a {
  margin-top: 8px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-band {
  background: var(--olive-dark);
  color: var(--cream);
}

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

.feature-grid article {
  min-height: 250px;
  border: 1px solid rgba(251, 246, 238, 0.24);
  border-radius: 8px;
  padding: 28px;
  background: rgba(251, 246, 238, 0.04);
}

.feature-grid svg {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: var(--wheat);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-grid h3 {
  min-height: 58px;
  color: var(--cream);
}

.feature-grid p {
  color: rgba(251, 246, 238, 0.82);
}

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

.split-copy p:not(.eyebrow),
.story-copy p:not(.eyebrow),
.contact-copy p,
.details-grid p,
.catering-panels p {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--olive-ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.split-media {
  position: relative;
}

.split-media > img:first-child,
.story-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media > img:first-child {
  aspect-ratio: 1.65;
}

.seal {
  position: absolute;
  right: 22px;
  bottom: -42px;
  width: 134px;
  border-radius: 50%;
  background: rgba(251, 246, 238, 0.92);
  padding: 9px;
  box-shadow: var(--shadow);
}

.catering-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 40px;
  background: var(--paper);
}

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

.catering-panels article,
.details-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  padding: 26px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.story-image img {
  aspect-ratio: 1;
}

.story-copy p {
  max-width: 680px;
}

.script-line {
  color: var(--terracotta) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px !important;
  font-style: italic;
}

.details-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 52px;
  background: var(--olive-ink);
  color: var(--cream);
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--cream);
}

.contact-copy p,
.contact-links a {
  color: rgba(251, 246, 238, 0.86);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-weight: 800;
}

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

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(251, 246, 238, 0.28);
  border-radius: 4px;
  background: rgba(251, 246, 238, 0.98);
  color: var(--charcoal);
  padding: 13px;
}

.enquiry-form textarea {
  resize: vertical;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 42px;
  background: var(--olive-dark);
  color: rgba(251, 246, 238, 0.82);
  padding: 56px;
}

.site-footer img {
  width: 260px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1) sepia(1) saturate(0);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--cream);
  font-family: Montserrat, Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 10px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    padding-right: 28px;
    padding-left: 28px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
  }

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

  .split-section,
  .catering-section,
  .story-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-media {
    order: -1;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 25px;
  }

  .top-strip {
    grid-template-columns: repeat(2, max-content);
    gap: 8px 18px;
    font-size: 11px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    width: 100vw;
    max-width: 100vw;
    padding: 14px 18px;
  }

  .brand,
  .brand img {
    width: 190px;
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    inset: 104px 12px auto;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    min-height: min(620px, calc(100svh - 104px));
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 24, 17, 0.9), rgba(20, 24, 17, 0.55)),
      linear-gradient(0deg, rgba(20, 24, 17, 0.48), rgba(20, 24, 17, 0.05));
  }

  .hero-content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-left: 18px;
    padding-top: 62px;
    padding-bottom: 130px;
  }

  .hero-proof {
    right: 18px;
    bottom: 22px;
    left: 18px;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    padding: 10px 12px;
    font-size: 12px;
  }

  .section {
    width: 100vw;
    max-width: 100vw;
    padding: 56px 18px;
  }

  .intro-band,
  .intro-copy,
  .intro-points {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .intro-copy {
    align-items: flex-start;
  }

  .intro-points span {
    text-align: center;
  }

  .catering-panels,
  .details-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .seal {
    width: 108px;
    right: 14px;
    bottom: -28px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h1 {
    max-width: 340px;
    font-size: 35px;
  }

  h2 {
    font-size: 31px;
  }

  .top-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand,
  .brand img {
    width: 164px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .product-grid,
  .feature-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .intro-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lead {
    max-width: 340px;
    font-size: 17px;
  }

  .intro-copy img {
    width: 48px;
    min-width: 48px;
  }

  .intro-copy p {
    max-width: 330px;
    font-size: 23px;
  }

  .product-card h3,
  .feature-grid h3 {
    min-height: 0;
  }

  .site-footer {
    padding: 42px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
