@layer reset, base, layout, components, utilities;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }

  body,
  h1,
  h2,
  h3,
  p,
  dl,
  dd,
  ol,
  ul {
    margin: 0;
  }

  ul,
  ol {
    padding: 0;
    list-style: none;
  }

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

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

  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }
}

@layer base {
  :root {
    --green-950: #0a2c22;
    --green-900: #123d2f;
    --green-800: #1c513d;
    --green-700: #28704f;
    --green-500: #6a9f4b;
    --leaf: #b9d965;
    --cream: #f7f1e5;
    --cream-2: #fffaf0;
    --paper: #fffdf8;
    --tomato: #d9422f;
    --orange: #e98635;
    --charcoal: #1c2a25;
    --muted: #67736d;
    --border: rgba(18, 61, 47, 0.14);
    --shadow: 0 24px 70px rgba(10, 44, 34, 0.13);
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --shell: min(1180px, calc(100% - 40px));
    --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  body {
    min-width: 0;
    overflow-x: clip;
    background: var(--paper);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
  }

  body.menu-open {
    overflow: hidden;
  }

  ::selection {
    background: var(--leaf);
    color: var(--green-950);
  }

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

  button {
    color: inherit;
  }

  :focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
  }

  h1,
  h2 {
    color: var(--green-950);
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.98;
  }

  h1 {
    font-size: clamp(3.05rem, 8.8vw, 6.9rem);
  }

  h2 {
    font-size: clamp(2.5rem, 6vw, 5.25rem);
  }

  h1 em,
  h2 em {
    color: var(--green-700);
    font-weight: 400;
  }

  .services h2,
  .customers h2,
  .enquiry h2,
  .final-cta h2 {
    color: var(--cream-2);
  }

  .services h2 em,
  .customers h2 em,
  .enquiry h2 em,
  .final-cta h2 em {
    color: var(--leaf);
  }

  p {
    color: var(--muted);
  }

  .skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 999;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--paper);
    color: var(--green-950);
    transform: translateY(-150%);
    transition: transform 180ms ease;
  }

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

@layer layout {
  .shell {
    width: var(--shell);
    margin-inline: auto;
  }

  .section {
    padding-block: clamp(88px, 11vw, 160px);
  }

  .section-heading {
    max-width: 820px;
  }

  .section-heading.split {
    display: grid;
    align-items: end;
    gap: 30px;
    max-width: none;
    margin-bottom: clamp(50px, 7vw, 88px);
  }

  .section-heading.split > p {
    max-width: 420px;
    padding-bottom: 8px;
    font-size: 1.04rem;
  }

  .section-heading.centered {
    margin-inline: auto;
    text-align: center;
  }
}

@layer components {
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--green-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .eyebrow > span {
    width: 30px;
    height: 2px;
    background: currentColor;
  }

  .eyebrow.light {
    color: var(--leaf);
  }

  .large-copy {
    color: var(--charcoal);
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    line-height: 1.3;
  }

  .button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 24px;
    border: 1px solid var(--green-900);
    border-radius: 999px;
    background: var(--green-900);
    color: white;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition:
      transform 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease;
  }

  .button:hover {
    background: var(--green-700);
    box-shadow: 0 14px 30px rgba(18, 61, 47, 0.2);
    transform: translateY(-2px);
  }

  .button:active {
    transform: translateY(1px) scale(0.99);
  }

  .button-small {
    min-height: 45px;
    padding: 10px 18px;
    font-size: 0.78rem;
  }

  .button-full {
    width: 100%;
  }

  .button-light {
    border-color: var(--cream-2);
    background: var(--cream-2);
    color: var(--green-950);
  }

  .button-light:hover {
    background: white;
  }

  .text-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 12px;
    color: var(--green-900);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .text-link span {
    transition: transform 180ms ease;
  }

  .text-link:hover span {
    transform: translateX(5px);
  }

  .text-link.dark {
    margin-top: 26px;
  }

  .site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition:
      background 220ms ease,
      box-shadow 220ms ease,
      border-color 220ms ease;
  }

  .site-header.is-scrolled {
    border-color: var(--border);
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 8px 28px rgba(10, 44, 34, 0.08);
    backdrop-filter: blur(16px);
  }

  .header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 24px;
  }

  .brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
  }

  .brand img {
    width: 126px;
    height: 70px;
    object-fit: contain;
    mix-blend-mode: normal;
  }

  .desktop-nav {
    display: none;
    margin-left: auto;
  }

  .desktop-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
  }

  .desktop-nav a {
    position: relative;
    display: block;
    padding-block: 12px;
    color: var(--green-950);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .desktop-nav a::after {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--tomato);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a.is-active::after {
    transform: scaleX(1);
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    margin-left: auto;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.84);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: var(--green-950);
    transition: transform 180ms ease;
  }

  .mobile-menu {
    position: fixed;
    z-index: 150;
    inset: 0;
    visibility: hidden;
    overflow: hidden;
    background: rgba(10, 44, 34, 0);
    transition:
      visibility 0s linear 300ms,
      background 300ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    background: rgba(10, 44, 34, 0.55);
    transition-delay: 0s;
  }

  .mobile-menu-panel {
    width: min(88vw, 410px);
    height: 100%;
    margin-left: auto;
    padding: 24px;
    background: var(--cream-2);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.16);
    transform: translateX(103%);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
    color: var(--green-950);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-close {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--green-900);
    color: white;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
  }

  .mobile-menu nav {
    padding-block: 28px;
  }

  .mobile-menu a:not(.button) {
    display: flex;
    min-height: 52px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    color: var(--green-950);
    font-family: var(--serif);
    font-size: 1.35rem;
  }

  .mobile-menu-panel > p {
    margin-top: 22px;
    font-size: 0.84rem;
  }

  .hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding-top: 116px;
    background:
      radial-gradient(circle at 0 70%, rgba(185, 217, 101, 0.18), transparent 33%),
      linear-gradient(135deg, var(--cream-2), var(--cream));
  }

  .hero-grid {
    display: grid;
    min-height: calc(100svh - 116px);
    align-items: center;
    gap: 54px;
    padding-bottom: 76px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    max-width: 920px;
  }

  .hero-lead {
    max-width: 600px;
    margin-top: 26px;
    color: #4a5c54;
    font-size: clamp(1.02rem, 2vw, 1.25rem);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 24px;
    margin-top: 32px;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
  }

  .hero-facts dt {
    color: var(--green-700);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-facts dd {
    margin-top: 3px;
    color: var(--green-950);
    font-size: clamp(0.78rem, 2.5vw, 0.95rem);
    font-weight: 700;
    line-height: 1.35;
  }

  .hero-visual {
    position: relative;
  }

  .hero-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 0.9;
    border-radius: 170px 170px var(--radius-lg) var(--radius-lg);
    background: var(--green-900);
    box-shadow: var(--shadow);
  }

  .hero-image-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hero-image-wrap:hover > img {
    transform: scale(1.025);
  }

  .freshness-card {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: calc(100% - 28px);
    padding: 12px 16px 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 12px 30px rgba(10, 44, 34, 0.16);
    backdrop-filter: blur(10px);
  }

  .freshness-mark {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--tomato);
    color: white;
    font-size: 0.72rem;
    font-weight: 900;
  }

  .freshness-card p {
    color: var(--charcoal);
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .route-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
    color: var(--green-800);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .route-line > span,
  .route-line > i {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tomato);
  }

  .route-line > i {
    width: 38px;
    height: 1px;
    border-radius: 0;
    background: var(--green-500);
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-orb-one {
    top: 15%;
    right: -80px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(106, 159, 75, 0.24);
  }

  .hero-orb-two {
    bottom: 6%;
    left: -38px;
    width: 94px;
    height: 94px;
    background: rgba(233, 134, 53, 0.12);
  }

  .trust-strip {
    background: var(--green-950);
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div {
    display: flex;
    min-height: 114px;
    align-items: center;
    gap: 12px;
    padding: 22px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .trust-grid span {
    color: var(--leaf);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .trust-grid p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .trust-grid strong {
    color: white;
  }

  .intro {
    background: var(--paper);
  }

  .intro-grid {
    display: grid;
    gap: 34px;
  }

  .intro-copy > p + p {
    margin-top: 20px;
  }

  .produce-band {
    display: grid;
    overflow: hidden;
    margin-top: 70px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .produce-band-photo {
    min-height: 300px;
  }

  .produce-band-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
  }

  .produce-band-content {
    padding: 34px 28px;
  }

  .produce-band-content > p {
    margin-bottom: 24px;
    color: var(--green-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .produce-band-content li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-block: 18px;
    border-top: 1px solid var(--border);
    color: var(--green-950);
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  }

  .produce-band-content li span {
    color: var(--tomato);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 900;
  }

  .services {
    background:
      radial-gradient(circle at 90% 20%, rgba(185, 217, 101, 0.11), transparent 25%),
      var(--green-950);
  }

  .services .section-heading.split > p,
  .customers .section-heading p,
  .enquiry .section-heading > p,
  .final-cta p {
    color: rgba(255, 255, 255, 0.64);
  }

  .service-grid {
    display: grid;
    gap: 14px;
  }

  .service-card {
    position: relative;
    min-height: 300px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
    transition:
      transform 220ms ease,
      background 220ms ease,
      border-color 220ms ease;
  }

  .service-card:hover {
    border-color: rgba(185, 217, 101, 0.55);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
  }

  .service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.7rem;
    font-weight: 800;
  }

  .service-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 50%;
    background: var(--leaf);
    color: var(--green-950);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.05em;
  }

  .service-card h3 {
    margin-top: 42px;
    color: white;
    font-family: var(--serif);
    font-size: 1.42rem;
    font-weight: 500;
  }

  .service-card p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
  }

  .service-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--leaf);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .process {
    background: var(--cream);
  }

  .process-grid {
    display: grid;
    gap: 52px;
    margin-top: 64px;
  }

  .process-grid li {
    position: relative;
    padding-left: 72px;
  }

  .process-grid li:not(:last-child)::after {
    position: absolute;
    top: 54px;
    bottom: -46px;
    left: 26px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, var(--green-500) 0 6px, transparent 6px 12px);
    content: "";
  }

  .process-step {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-900);
    box-shadow: 0 0 0 8px rgba(106, 159, 75, 0.13);
    color: white;
    font-family: var(--serif);
    font-size: 1.25rem;
  }

  .overline {
    color: var(--tomato);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .process-grid h3 {
    margin-top: 6px;
    color: var(--green-950);
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
  }

  .process-grid li > p:last-child {
    margin-top: 9px;
    font-size: 0.9rem;
  }

  .audience {
    background: var(--paper);
  }

  .audience-grid {
    display: grid;
    gap: 14px;
  }

  .audience-card {
    position: relative;
    display: flex;
    min-height: 160px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--cream-2);
    transition:
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 300ms ease;
    transform-origin: center;
  }

  .audience-card::before {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(106, 159, 75, 0.27);
    border-radius: 50%;
    content: "";
  }

  @media (hover: hover) and (pointer: fine) {
    .audience-card:hover {
      z-index: 2;
      box-shadow: 0 22px 52px rgba(10, 44, 34, 0.16);
      transform: translateY(-3px) scale(1.03);
    }
  }

  .audience-card > span {
    position: absolute;
    top: 20px;
    left: 22px;
    color: var(--tomato);
    font-size: 0.67rem;
    font-weight: 900;
  }

  .audience-card h3 {
    color: var(--green-950);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
  }

  .audience-card p,
  .audience-card a {
    margin-top: 7px;
    font-size: 0.78rem;
  }

  .audience-card.feature {
    min-height: 230px;
    background:
      linear-gradient(160deg, rgba(185, 217, 101, 0.22), transparent 55%),
      var(--cream);
  }

  .audience-card.has-photo {
    background-color: var(--green-900);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .audience-card.has-photo.cafes {
    background-image:
      linear-gradient(180deg, rgba(10, 44, 34, 0.34), rgba(10, 44, 34, 0.84)),
      url("/audience-cafes.webp");
  }

  .audience-card.has-photo.restaurants {
    background-image:
      linear-gradient(180deg, rgba(10, 44, 34, 0.34), rgba(10, 44, 34, 0.84)),
      url("/audience-restaurants.webp");
  }

  .audience-card.has-photo.caterers {
    background-image:
      linear-gradient(180deg, rgba(10, 44, 34, 0.34), rgba(10, 44, 34, 0.84)),
      url("/audience-caterers.webp");
  }

  .audience-card.has-photo.hotels {
    background-image:
      linear-gradient(180deg, rgba(10, 44, 34, 0.3), rgba(10, 44, 34, 0.86)),
      url("/audience-hotels.webp");
  }

  .audience-card.has-photo.taverns {
    background-position: 35% center;
    background-image:
      linear-gradient(180deg, rgba(10, 44, 34, 0.3), rgba(10, 44, 34, 0.86)),
      url("/audience-taverns.webp");
  }

  .audience-card.has-photo > * {
    position: relative;
    z-index: 1;
  }

  .audience-card.has-photo h3 {
    color: white;
  }

  .audience-card.has-photo p {
    color: rgba(255, 255, 255, 0.76);
  }

  .audience-card.home {
    background: var(--green-900);
  }

  .audience-card.home h3,
  .audience-card.home a {
    color: white;
  }

  .audience-card.home > span {
    color: var(--leaf);
  }

  .customers {
    overflow: hidden;
    background: var(--green-900);
  }

  .customers .section-heading {
    margin-bottom: 56px;
  }

  .marquee,
  .tech-marquee {
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .marquee::-webkit-scrollbar,
  .tech-marquee::-webkit-scrollbar {
    display: none;
  }

  .marquee-track {
    display: flex;
    width: max-content;
    gap: 14px;
    padding-inline: 20px;
    animation: customer-scroll 38s linear infinite;
  }

  .marquee-copy {
    display: contents;
  }

  .marquee:hover .marquee-track,
  .marquee:focus .marquee-track,
  .marquee:focus-within .marquee-track,
  .marquee:active .marquee-track {
    animation-play-state: paused;
  }

  .customer-card {
    display: flex;
    width: min(74vw, 310px);
    min-height: 190px;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.055);
  }

  .customer-card span,
  .customer-card small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .customer-card strong {
    color: white;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.15;
  }

  .app-section {
    background:
      radial-gradient(circle at 90% 70%, rgba(185, 217, 101, 0.19), transparent 28%),
      var(--cream-2);
  }

  .app-grid {
    display: grid;
    align-items: center;
    gap: 70px;
  }

  .app-copy > p:not(.eyebrow) {
    max-width: 580px;
    margin-top: 18px;
  }

  .store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .store-badge {
    display: flex;
    min-width: 174px;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    border: 0;
    border-radius: 12px;
    background: var(--green-950);
    color: white;
    cursor: pointer;
    text-align: left;
  }

  .store-badge > span {
    font-size: 1.3rem;
  }

  .store-badge small {
    display: flex;
    flex-direction: column;
    font-size: 0.52rem;
    line-height: 1.25;
  }

  .store-badge strong {
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .store-badge.placeholder {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--green-950);
  }

  .placeholder-note {
    font-size: 0.74rem;
  }

  .phone-stage {
    position: relative;
    min-height: 590px;
  }

  .phone-stage::before {
    position: absolute;
    inset: 8% 2% 6%;
    border-radius: 50%;
    background: var(--green-900);
    content: "";
  }

  .phone {
    position: relative;
    z-index: 1;
    width: min(78vw, 306px);
    margin-inline: auto;
    padding: 10px;
    border: 3px solid var(--green-950);
    border-radius: 48px;
    background: #081a14;
    box-shadow: 0 38px 80px rgba(10, 44, 34, 0.25);
    transform: rotate(3deg);
  }

  .phone-top {
    position: absolute;
    z-index: 2;
    top: 17px;
    left: 50%;
    width: 82px;
    height: 21px;
    border-radius: 999px;
    background: #081a14;
    transform: translateX(-50%);
  }

  .phone-screen {
    min-height: 540px;
    padding: 48px 22px 24px;
    border-radius: 36px;
    background:
      radial-gradient(circle at 90% 15%, rgba(185, 217, 101, 0.3), transparent 25%),
      var(--cream-2);
  }

  .phone-screen > img {
    width: 95px;
    height: 66px;
    object-fit: contain;
    mix-blend-mode: normal;
  }

  .phone-screen > p {
    margin-top: 32px;
    color: var(--green-700);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .phone-screen h3 {
    margin-block: 8px 26px;
    color: var(--green-950);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
  }

  .app-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    color: var(--green-950);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .app-product-row b {
    color: var(--green-700);
    font-size: 0.58rem;
    text-transform: uppercase;
  }

  .app-button {
    margin-top: 26px;
    padding: 13px;
    border-radius: 999px;
    background: var(--green-900);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
  }

  .phone-screen > small {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.56rem;
    line-height: 1.3;
  }

  .qr-card {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: 0 14px 40px rgba(10, 44, 34, 0.17);
  }

  .qr-card > span:last-child {
    display: flex;
    flex-direction: column;
    color: var(--green-950);
    font-size: 0.72rem;
  }

  .qr-card small {
    color: var(--muted);
  }

  .qr-pattern {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    background:
      repeating-linear-gradient(90deg, var(--green-950) 0 3px, transparent 3px 6px),
      repeating-linear-gradient(0deg, var(--green-950) 0 3px, transparent 3px 6px);
  }

  .qr-pattern i {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 3px solid var(--green-950);
    background: var(--cream-2);
  }

  .qr-pattern i:nth-child(1) {
    top: 2px;
    left: 2px;
  }

  .qr-pattern i:nth-child(2) {
    top: 2px;
    right: 2px;
  }

  .qr-pattern i:nth-child(3) {
    bottom: 2px;
    left: 2px;
  }

  .technology {
    overflow: hidden;
    border-block: 1px solid var(--border);
    background: var(--paper);
  }

  .technology-label {
    padding: 22px 20px 12px;
    color: var(--green-700);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
  }

  .tech-track {
    display: flex;
    width: max-content;
    animation: tech-scroll 32s linear infinite;
  }

  .tech-marquee:hover .tech-track,
  .tech-marquee:focus .tech-track,
  .tech-marquee:active .tech-track {
    animation-play-state: paused;
  }

  .tech-track > span {
    display: flex;
    width: max(290px, 33.3334vw);
    flex: 0 0 max(290px, 33.3334vw);
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 36px;
    border-right: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.72rem;
  }

  .tech-track b {
    color: var(--green-950);
    font-size: 1rem;
    letter-spacing: -0.02em;
  }

  .delivery {
    background: var(--cream);
  }

  .delivery-grid {
    display: grid;
    align-items: center;
    gap: 64px;
  }

  .delivery .section-heading > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .delivery .button {
    margin-top: 28px;
  }

  .area-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .area-visual {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background:
      linear-gradient(rgba(18, 61, 47, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(18, 61, 47, 0.04) 1px, transparent 1px),
      var(--cream-2);
    background-size: 28px 28px;
  }

  .area-ring {
    position: absolute;
    top: 47%;
    left: 48%;
    border: 1px solid rgba(40, 112, 79, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .ring-one {
    width: 90px;
    height: 90px;
    background: rgba(185, 217, 101, 0.17);
  }

  .ring-two {
    width: 190px;
    height: 190px;
  }

  .ring-three {
    width: 310px;
    height: 310px;
  }

  .area-origin {
    position: absolute;
    z-index: 2;
    top: 47%;
    left: 48%;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 5px solid var(--paper);
    border-radius: 50%;
    background: var(--tomato);
    box-shadow: 0 9px 24px rgba(217, 66, 47, 0.25);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    transform: translate(-50%, -50%);
  }

  .area-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    border: 3px solid var(--paper);
    border-radius: 50%;
    background: var(--green-700);
    box-shadow: 0 4px 10px rgba(10, 44, 34, 0.2);
  }

  .dot-one {
    top: 25%;
    left: 31%;
  }

  .dot-two {
    top: 63%;
    left: 68%;
  }

  .dot-three {
    top: 73%;
    left: 37%;
  }

  .area-visual p {
    position: absolute;
    right: 18px;
    bottom: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.9);
    color: var(--green-950);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: right;
  }

  .area-visual small {
    color: var(--muted);
    font-weight: 500;
  }

  .delivery-list {
    padding: 10px 26px 26px;
  }

  .delivery-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 15px;
    border-top: 1px solid var(--border);
  }

  .delivery-list dt {
    color: var(--muted);
    font-size: 0.72rem;
  }

  .delivery-list dd {
    color: var(--green-950);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: right;
  }

  .enquiry {
    background:
      radial-gradient(circle at 10% 90%, rgba(233, 134, 53, 0.12), transparent 25%),
      var(--green-950);
  }

  .enquiry-grid {
    display: grid;
    gap: 54px;
  }

  .enquiry .section-heading > p {
    max-width: 500px;
    margin-top: 24px;
  }

  .contact-phone {
    display: inline-flex;
    flex-direction: column;
    margin-top: 34px;
    color: white;
  }

  .contact-phone small {
    color: var(--leaf);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .contact-phone strong {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
  }

  .enquiry-form {
    padding: clamp(22px, 5vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
  }

  .form-row {
    display: grid;
    gap: 18px;
  }

  .enquiry-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    outline: 0;
    background: rgba(255, 255, 255, 0.09);
    color: white;
    transition:
      border-color 180ms ease,
      background 180ms ease;
  }

  .enquiry-form select option {
    color: var(--charcoal);
  }

  .enquiry-form textarea {
    min-height: 112px;
    resize: vertical;
  }

  .enquiry-form input::placeholder,
  .enquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .enquiry-form input:focus,
  .enquiry-form select:focus,
  .enquiry-form textarea:focus {
    border-color: var(--leaf);
    background: rgba(255, 255, 255, 0.13);
  }

  .enquiry-form.was-validated :invalid {
    border-color: #ff8b7e;
  }

  .enquiry-form button {
    margin-top: 6px;
  }

  .enquiry-form button:disabled {
    cursor: wait;
    opacity: 0.66;
  }

  .form-honeypot {
    position: absolute;
    left: -10000px;
  }

  .form-status {
    min-height: 25px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
  }

  .form-status a {
    color: var(--leaf);
    text-decoration: underline;
  }

  .form-status.is-error {
    color: #ffb6ad;
  }

  .form-status.is-success {
    color: var(--leaf);
  }

  .form-status.is-notice {
    padding: 12px;
    border-radius: 9px;
    background: rgba(233, 134, 53, 0.13);
  }

  .final-cta {
    padding-block: clamp(86px, 10vw, 132px);
    background:
      linear-gradient(90deg, rgba(18, 61, 47, 0.97), rgba(28, 81, 61, 0.89)),
      url("/fresh-vegetable-delivery.webp") center / cover;
  }

  .final-cta-inner {
    display: grid;
    align-items: end;
    gap: 36px;
  }

  .final-cta h2 {
    max-width: 800px;
  }

  .final-cta p:not(.eyebrow) {
    max-width: 640px;
    margin-top: 24px;
    font-size: 1.04rem;
  }

  .final-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 24px;
  }

  .final-actions .text-link {
    color: white;
  }

  .site-footer {
    padding-block: 64px 100px;
    background: #071e17;
  }

  .footer-grid {
    display: grid;
    gap: 38px;
  }

  .footer-brand img {
    width: 180px;
    height: 110px;
    padding: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 14px;
    mix-blend-mode: normal;
  }

  .footer-brand p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--serif);
  }

  .footer-grid h2 {
    margin-bottom: 15px;
    color: var(--leaf);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .footer-grid a,
  .footer-grid p,
  .footer-link {
    display: block;
    margin-block: 7px;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: left;
  }

  .footer-grid a:hover,
  .footer-link:hover {
    color: white;
  }

  .footer-link {
    padding: 0;
    cursor: pointer;
  }

  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
    justify-content: space-between;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom p,
  .footer-bottom button {
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.67rem;
  }

  .footer-bottom button {
    min-height: 40px;
    padding: 8px;
    cursor: pointer;
  }

  .back-to-top {
    position: fixed;
    z-index: 80;
    right: 18px;
    bottom: 86px;
    display: grid;
    width: 46px;
    height: 46px;
    visibility: hidden;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--green-900);
    box-shadow: 0 12px 28px rgba(10, 44, 34, 0.22);
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .back-to-top.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 16px 50px rgba(10, 44, 34, 0.2);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    color: var(--green-950);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--green-900);
    color: white;
  }

  .mobile-cta span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.5rem;
  }

  @keyframes customer-scroll {
    to {
      transform: translateX(calc(-50% - 7px));
    }
  }

  @keyframes tech-scroll {
    to {
      transform: translateX(-50%);
    }
  }
}

@layer utilities {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 700ms ease,
      transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-delay {
    transition-delay: 100ms;
  }

  .reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 560px) {
  :root {
    --shell: min(1180px, calc(100% - 64px));
  }

  .service-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (min-width: 760px) {
  .section-heading.split {
    grid-template-columns: minmax(0, 1.5fr) minmax(270px, 0.5fr);
  }

  .intro-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
  }

  .produce-band {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .produce-band-photo {
    min-height: 470px;
  }

  .produce-band-content {
    padding: 52px 42px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .process-grid li {
    padding: 82px 10px 0;
  }

  .process-grid li:not(:last-child)::after {
    top: 27px;
    right: -23px;
    bottom: auto;
    left: 58px;
    width: calc(100% - 28px);
    height: 1px;
    background: repeating-linear-gradient(to right, var(--green-500) 0 7px, transparent 7px 14px);
  }

  .process-step {
    top: 0;
    left: 0;
  }

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

  .final-cta-inner {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
  }

  .mobile-cta {
    display: none;
  }

  .back-to-top {
    bottom: 24px;
  }

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

@media (min-width: 940px) {
  .desktop-nav {
    display: block;
  }

  .header-call {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 6.1vw, 6.5rem);
  }

  .hero-image-wrap {
    aspect-ratio: 0.86 / 1;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid > div {
    border-bottom: 0;
    padding-inline: 22px;
  }

  .trust-grid p {
    font-size: 0.8rem;
  }

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

  .audience-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 250px 170px;
  }

  .audience-card.feature {
    min-height: 0;
    grid-column: span 2;
  }

  .audience-card:not(.feature) {
    grid-column: span 2;
  }

  .audience-card.home {
    grid-column: span 2;
  }
}

@media (min-width: 1180px) {
  .header-inner {
    min-height: 86px;
  }

  .brand img {
    width: 148px;
    height: 78px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-grid {
    min-height: calc(100svh - 105px);
  }

  .audience-grid {
    grid-template-rows: 270px 180px;
  }

  .audience-card:not(.feature) {
    grid-column: span 1;
  }

  .audience-card.home {
    grid-column: span 4;
  }
}

@media (max-width: 374px) {
  :root {
    --shell: calc(100% - 28px);
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .brand img {
    width: 112px;
    height: 64px;
  }

  .hero-facts {
    gap: 8px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

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

  .trust-grid > div {
    min-height: 82px;
  }

  .store-badge {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
