@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Ink (warm dark text) */
  --ink: #1F1B14;
  --ink-2: #2B251A;
  --muted: #6B6354;
  --mute-soft: #8E8473;

  /* Paper (warm cream surfaces) */
  --paper: #F7F3EA;
  --paper-2: #ECE5D2;
  --paper-3: #FFFEF8;
  --line: #D6CCB5;
  --line-strong: #B5A989;

  /* Industrial accent (rust) */
  --accent: #B84F1A;
  --accent-hover: #8E3A11;
  --accent-2: #E08A4F;
  --accent-soft: #F4DCC4;
  --accent-ink: #4A1D08;

  /* Secondary accent (olive — for checks, success) */
  --olive: #5C7339;
  --olive-soft: #DDE4C8;

  /* Dark surfaces (warm slate, not navy) */
  --surface-dark: #1A1611;
  --surface-dark-2: #2A231A;
  --surface-dark-3: #3B3225;
  --paper-on-dark: #F0EADB;
  --paper-on-dark-soft: #B8AE99;

  /* Legacy compatibility (old class names that still reference these) */
  --warm: var(--accent);
  --success: var(--olive);
  --gas-accent: var(--accent);
  --food-accent: var(--olive);
  --soft: var(--paper-2);
  --soft-2: var(--accent-soft);

  --shadow: 0 1px 0 rgba(31, 27, 20, .04), 0 12px 36px rgba(74, 62, 40, .08);
  --shadow-strong: 0 24px 60px rgba(31, 27, 20, .18);
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1180px;

  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
div[id] {
  scroll-margin-top: 116px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(184, 79, 26, .35);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-family: var(--font-display);
  font-weight: 600;
  color: inherit;
}

h1 {
  font-weight: 600;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  background: var(--surface-dark);
  color: var(--paper-on-dark-soft);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.utility-inner a:hover,
.footer-grid a:hover {
  color: var(--accent-2);
}

.utility-cta {
  color: #ffffff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper-on-dark);
  background:
    radial-gradient(circle at 72% 22%, rgba(224, 138, 79, .55), transparent 32%),
    linear-gradient(135deg, var(--accent), var(--surface-dark-3) 70%, var(--surface-dark));
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(184, 79, 26, .25);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  display: block;
}

.mark-u,
.mark-flow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-u {
  stroke-width: 5;
}

.mark-flow {
  stroke-width: 3.2;
  opacity: .88;
}

.mark-dot {
  fill: #ffffff;
}

.dot-a {
  opacity: .85;
}

.dot-b {
  opacity: 1;
}

.dot-c {
  fill: var(--accent-2);
}

.brand strong,
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 22px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 11px;
  color: #2f3b4e;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
}

.nav-item.is-active > .nav-link,
.nav-link:hover {
  color: var(--accent);
  background: var(--paper-2);
}

.subnav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-item:hover .subnav,
.nav-item:focus-within .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.subnav a,
.mobile-subnav a {
  display: block;
  padding: 10px 12px;
  color: var(--ink-2);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}

.subnav a:hover,
.mobile-subnav a:hover {
  background: var(--paper-2);
  color: var(--accent);
}

.header-quote,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--paper-3);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.header-quote:hover,
.btn:hover {
  background: var(--accent-hover);
}

.btn.secondary {
  color: var(--paper-on-dark);
  background: transparent;
  border-color: rgba(240, 234, 219, .26);
}

.btn.secondary:hover {
  background: rgba(240, 234, 219, .08);
  border-color: rgba(240, 234, 219, .42);
}

.btn.light {
  background: var(--paper-3);
  color: var(--ink);
  border-color: var(--line);
}

.btn.light:hover {
  color: var(--accent);
  background: var(--paper-2);
  border-color: var(--line-strong);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-3);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero {
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 18%, rgba(184, 79, 26, .22), transparent 38%),
    radial-gradient(circle at 20% 90%, rgba(224, 138, 79, .12), transparent 45%),
    linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2) 60%, var(--surface-dark));
  color: var(--paper-on-dark);
}

.hero-inner,
.category-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 44px;
  align-items: center;
  padding: 84px 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.category-hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(44px, 4.4vw, 58px);
}

.hero p,
.category-hero p,
.page-hero p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--paper-on-dark-soft);
  font-size: 18px;
  line-height: 1.55;
}

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

.hero-media,
.category-media {
  border: 1px solid rgba(240, 234, 219, .12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .38);
}

.hero-media img,
.category-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-hero-media {
  align-self: stretch;
  overflow: hidden;
  margin-right: calc((100vw - min(var(--container), calc(100vw - 40px))) / -2);
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.home-proof {
  background: var(--paper-3);
  border-bottom: 1px solid var(--line);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-proof-item {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.home-proof-item:last-child {
  border-right: 0;
}

.home-proof-item strong,
.home-proof-item span {
  display: block;
}

.home-proof-item strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
}

.home-proof-item span {
  color: var(--muted);
  font-size: 12px;
}

.home-product-chapter {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 2.15fr);
  gap: 34px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.home-product-chapter:last-child {
  padding-bottom: 0;
}

.home-chapter-intro {
  padding-top: 4px;
}

.home-chapter-intro h3 {
  max-width: 330px;
  font-size: 28px;
}

.home-chapter-intro p {
  max-width: 330px;
  margin-top: 14px;
  font-size: 14px;
}

.home-chapter-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.home-chapter-link::after {
  content: " \2192";
}

.home-chapter-products {
  display: grid;
  min-width: 0;
  border-left: 1px solid var(--line);
}

.home-chapter-products--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-chapter-products--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-entry {
  display: block;
  min-width: 0;
  background: transparent;
  transition: background .18s ease, box-shadow .18s ease;
}

.home-chapter-products .product-entry {
  border-right: 1px solid var(--line);
}

.home-chapter-products .product-entry:last-child {
  border-right: 0;
}

.product-entry:hover {
  background: var(--paper-2);
}

.product-entry--split {
  display: block;
}

.home-product-chapter--beverage {
  grid-template-columns: minmax(220px, .85fr) minmax(0, 2.15fr);
}

.home-product-chapter--beverage .product-entry--wide {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(0, .9fr);
  border-left: 1px solid var(--line);
}

.product-entry > img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-entry--wide > img {
  height: 100%;
  min-height: 290px;
  aspect-ratio: auto;
}

.product-entry-content {
  padding: 20px 22px 22px;
}

.product-entry-content .eyebrow {
  margin-bottom: 9px;
  font-size: 11px;
}

.product-entry-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.product-entry-content p {
  font-size: 14px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.product-specs span {
  padding: 5px 8px;
  color: #29404b;
  background: var(--paper-2);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.product-action {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
}

.product-action::after {
  content: " \2192";
}

.home-capability-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

.home-capability-grid > div > h2 {
  max-width: 650px;
  font-size: clamp(30px, 4vw, 44px);
}

.home-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  margin-top: 24px;
}

.home-capability {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.home-capability h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.home-capability p {
  font-size: 14px;
}

.home-enquiry-panel .supply-table {
  margin-top: 20px;
}

.home-enquiry-panel .supply-row > div {
  padding: 13px;
}

.home-process-list {
  gap: 0;
}

.home-process-list .process-step {
  padding: 24px 28px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.home-process-list .process-step:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.section-image,
.panel-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-3);
}

.section-image {
  margin-bottom: 24px;
}

.section-image-spaced {
  margin-top: 26px;
  margin-bottom: 0;
}

.section-image img,
.panel-image img {
  width: 100%;
  object-fit: cover;
}

.section-image img {
  aspect-ratio: 16 / 8;
}

.panel-image {
  margin-top: 18px;
  margin-bottom: 18px;
}

.panel-image img {
  aspect-ratio: 16 / 10;
}

.band {
  padding: 72px 0;
}

.band.soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.section-head p {
  max-width: 590px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card,
.catalogue-card,
.feature-card,
.related-card {
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.catalogue-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3,
.catalogue-card h3,
.feature-card h3,
.related-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.catalogue-card:hover,
.related-card:hover {
  border-color: rgba(184, 79, 26, .42);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.catalogue-card,
.related-card {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

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

.stat {
  padding: 26px;
  background: var(--paper-3);
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
}

.category-hero,
.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 79, 26, .18), transparent 40%),
    linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2) 70%);
  color: var(--paper-on-dark);
}

.category-hero-inner {
  padding: 58px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.two-col > * {
  height: 100%;
}

.info-panel {
  padding: 28px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-panel h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--paper-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.detail-grid > .detail-card {
  height: 100%;
}

.detail-card {
  padding: 26px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.media-card {
  overflow: hidden;
}

.card-image {
  margin: -26px -26px 20px;
  overflow: hidden;
  background: var(--soft);
}

.card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-card h2,
.detail-card h3 {
  margin-bottom: 12px;
}

.catalogue-visual-panel {
  overflow: hidden;
  background: var(--paper-3);
  border: 1px solid rgba(240, 234, 219, .14);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .3);
}

.catalogue-visual-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.catalogue-visual-content {
  padding: 24px;
}

.catalogue-visual-content h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 28px;
}

.catalogue-visual-content p {
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 26px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--paper-3);
  background: var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

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

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.notice {
  padding: 26px;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid rgba(184, 79, 26, .22);
  border-radius: var(--radius-lg);
}

.notice h2,
.notice h3 {
  margin-bottom: 10px;
  color: var(--accent-ink);
}

.notice p {
  color: var(--accent-ink);
  opacity: .82;
}

.notice .checklist li {
  color: var(--accent-ink);
  opacity: .9;
}

.notice .checklist li::before {
  border-color: var(--accent);
}

.notice .eyebrow {
  color: var(--accent);
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.customer-item {
  padding: 18px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.supply-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}

.supply-row {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 1px;
  background: var(--line);
}

.supply-row > div {
  padding: 18px;
  background: var(--paper-3);
}

.supply-row strong {
  color: var(--ink);
}

.cta-band {
  padding: 42px;
  color: var(--paper-on-dark);
  background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-3) 80%);
  border-radius: var(--radius-lg);
}

.cta-band p {
  color: var(--paper-on-dark-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
}

.form-card {
  padding: 28px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

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

label {
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background: var(--paper-3);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 14px;
  color: var(--success);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  color: var(--paper-on-dark);
  background: var(--surface-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr .9fr 1.25fr;
  gap: 34px;
  padding: 56px 0 36px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 16px;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
  color: var(--paper-on-dark);
}

.footer-grid p {
  color: var(--paper-on-dark-soft);
}

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 26px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(240, 234, 219, .10);
  color: #8fa0b5;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-quote {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 117px 0 auto;
    max-height: calc(100vh - 117px);
    overflow: auto;
    padding: 16px 20px 28px;
    background: var(--paper-3);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu .nav-link {
    width: 100%;
    padding: 14px 0;
  }

  .mobile-subnav {
    padding: 0 0 12px 12px;
  }

  .hero-inner,
  .category-hero-inner,
  .two-col,
  .contact-grid,
  .home-capability-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-media {
    margin-right: 0;
  }

  .home-product-chapter,
  .home-product-chapter--beverage {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-proof-grid,
  .home-chapter-products--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-chapter-products--three .product-entry:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .home-product-chapter--beverage .product-entry--wide {
    border-left: 0;
  }

  .grid.cards-4,
  .grid.cards-3,
  .stats,
  .process-list,
  .customer-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  section[id],
  div[id] {
    scroll-margin-top: 108px;
  }

  .utility-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 8px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .mobile-menu {
    inset: 108px 0 auto;
    max-height: calc(100vh - 108px);
  }

  .brand small {
    display: none;
  }

  .hero-inner,
  .band,
  .category-hero-inner {
    padding: 48px 0;
  }

  .hero h1,
  .page-hero h1,
  .category-hero h1 {
    font-size: 38px;
  }

  .hero p,
  .category-hero p,
  .page-hero p {
    font-size: 17px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .grid.cards-4,
  .grid.cards-3,
  .stats,
  .home-capabilities,
  .home-chapter-products--two,
  .home-chapter-products--three,
  .process-list,
  .customer-grid,
  .detail-grid,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .home-proof-item:nth-child(2n) {
    border-right: 0;
  }

  .home-proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-chapter-products--three .product-entry:last-child {
    grid-column: auto;
    border-top: 0;
  }

  .home-chapter-products {
    gap: 0;
    border-left: 0;
  }

  .home-chapter-products .product-entry,
  .home-chapter-products .product-entry:last-child,
  .home-product-chapter--beverage .product-entry--wide {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-chapter-products .product-entry:last-child {
    border-bottom: 0;
  }

  .product-entry > img,
  .product-entry--wide > img,
  .home-chapter-products--three .product-entry > img {
    width: 112px;
    height: 112px;
    min-height: 112px;
    margin-top: 16px;
    aspect-ratio: auto;
  }

  .product-entry-content {
    padding: 16px;
  }

  .product-entry-content h3 {
    font-size: 19px;
  }

  .product-entry-content p {
    font-size: 13px;
  }

  .product-specs {
    gap: 5px;
    margin-top: 10px;
  }

  .product-specs span {
    padding: 4px 6px;
    font-size: 9px;
  }

  .product-action {
    margin-top: 11px;
    font-size: 11px;
  }

  .home-process-list .process-step,
  .home-process-list .process-step:not(:first-child) {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .supply-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 28px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }
}

/* Category card colour variants */
.catalogue-card.gas {
  border-left: 3px solid var(--gas-accent);
}
.catalogue-card.food {
  border-left: 3px solid var(--food-accent);
}

/* Mobile: hide hero image */
@media (max-width: 700px) {
  .hero-media,
  .category-media,
  .hero-collage {
    display: none;
  }

  .home-hero-media {
    display: block;
    margin-top: 8px;
  }

  .home-hero-media img {
    min-height: 0;
    height: 190px;
  }
}

/* Checkbox labels in pill-list */
.pill-list label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--paper-3);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.pill-list label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  min-height: unset;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.two-col--wide {
  grid-template-columns: 1.6fr 1fr;
}

@media (max-width: 1040px) {
  .two-col--wide {
    grid-template-columns: 1fr;
  }
}
