/* ==========================================================================
   Ziri International — core stylesheet
   Single file, no build step. Tokens first, then base, layout, components.
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Ink — graphite / steel */
  --ink-900: #080b10;
  --ink-850: #0b0e14;
  --ink-800: #10141c;
  --ink-700: #161c26;
  --ink-600: #1e2632;
  --ink-500: #2b3543;

  /* Paper */
  --paper:      #f4f6f9;
  --paper-2:    #eaeef4;
  --paper-card: #ffffff;

  /* Text */
  --fg:        #e9edf3;
  --fg-dim:    #98a4b5;
  --fg-faint:  #6b788a;
  --ink-fg:    #10141c;
  --ink-fg-dim:#55637a;

  /* Molten accent — the pour colour */
  --accent:      #ff6a1a;
  --accent-hot:  #ffa14a;
  --accent-deep: #d1490c;
  --accent-soft: rgba(255, 106, 26, 0.12);

  /* Lines */
  --line-dark:  rgba(255, 255, 255, 0.10);
  --line-dark-2:rgba(255, 255, 255, 0.16);
  --line-light: rgba(16, 20, 28, 0.12);
  --line-light-2: rgba(16, 20, 28, 0.20);

  /* Type */
  --font-head: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --maxw: 1240px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --radius: 4px;
  --radius-lg: 8px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-fg);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--accent); color: #fff; }

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- 3. Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.section--dark {
  background: var(--ink-850);
  color: var(--fg);
}
.section--darkest {
  background: var(--ink-900);
  color: var(--fg);
}

/* Section eyebrow + heading */
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex: none;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
}
.section-lead {
  margin-top: 1.1rem;
  max-width: 62ch;
  color: var(--ink-fg-dim);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}
.section--dark .section-lead,
.section--darkest .section-lead { color: var(--fg-dim); }

.section-head { margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
              box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -10px rgba(255, 106, 26, 0.75);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  border-color: var(--line-dark-2);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--fg-dim);
  box-shadow: none;
}

.btn--ghost-ink {
  --btn-bg: transparent;
  --btn-fg: var(--ink-fg);
  border-color: var(--line-light-2);
}
.btn--ghost-ink:hover {
  background: rgba(16, 20, 28, 0.05);
  border-color: var(--ink-fg);
  box-shadow: none;
}

.btn--wa { --btn-bg: #1faa53; }
.btn--wa:hover { box-shadow: 0 10px 26px -10px rgba(31, 170, 83, 0.8); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 16, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--fg);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
  flex: none;
}
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand__name em { font-style: normal; color: var(--accent); }
.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav a {
  padding: 0.55rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-dim);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.16s var(--ease), background 0.16s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); background: rgba(255,255,255,0.06); }
/* The WhatsApp CTA inside the nav is for the mobile drawer only */
.nav .btn { display: none; }
/* `.nav a` would otherwise dim the button label */
.nav a.btn { color: var(--btn-fg); }
.nav a.btn:hover { color: var(--btn-fg); background: var(--btn-bg); }

.header-cta { display: flex; align-items: center; gap: 0.9rem; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--fg);
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--accent); }
.header-phone:hover { color: var(--accent-hot); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.15s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.22s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  background: var(--ink-900);
  color: var(--fg);
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 8.5rem) clamp(4rem, 8vw, 7rem);
  isolation: isolate;
}

/* Photographic backdrop.
   The source photo has its molten pour on the LEFT, which is where the headline
   sits — so the image layer is mirrored to move the pour to the right, behind the
   existing orange glow. A two-axis scrim keeps the type on solid ground. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-pour.jpg") center / cover no-repeat;
  transform: scaleX(-1);
  opacity: 0.92;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--ink-900) 0%,
      rgba(8, 11, 16, 0.96) 26%,
      rgba(8, 11, 16, 0.72) 48%,
      rgba(8, 11, 16, 0.28) 76%,
      rgba(8, 11, 16, 0.10) 100%),
    linear-gradient(180deg,
      rgba(8, 11, 16, 0.55) 0%,
      rgba(8, 11, 16, 0.12) 38%,
      rgba(8, 11, 16, 0.72) 100%);
}

/* molten pour glow */
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 130%;
  /* kept subtle — the photograph now supplies most of the heat */
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(255, 106, 26, 0.14), transparent 62%),
    radial-gradient(48% 44% at 92% 62%, rgba(209, 73, 12, 0.12), transparent 66%);
  z-index: -2;
  pointer-events: none;
}
/* engineering grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 90% at 20% 0%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 20% 0%, #000 10%, transparent 72%);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  border: 1px solid var(--line-dark-2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1.75rem;
}
.hero-kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  flex: none;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hero h1 .hot {
  background: linear-gradient(100deg, var(--accent-hot), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: 1.5rem;
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--fg-dim);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
}
.hero-meta div { padding-block: 0.5rem; }
.hero-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.hero-meta dd {
  margin: 0.3rem 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
}

/* Hero side panel — catalogue at a glance */
.hero-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  /* dark base, not just a white wash — it now sits over a photograph */
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.78), rgba(12, 16, 22, 0.66));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.hero-panel__head {
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-panel__head span:last-child { color: var(--accent); }
.hero-panel a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.95rem 1.35rem;
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.16s var(--ease), padding-left 0.16s var(--ease);
}
.hero-panel a:last-child { border-bottom: 0; }
.hero-panel a:hover { background: rgba(255,255,255,0.05); padding-left: 1.7rem; }
.hero-panel .num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  flex: none;
}
.hero-panel .label { font-weight: 500; font-size: 0.95rem; }
.hero-panel .count { margin-left: auto; font-size: 0.78rem; color: var(--fg-faint); flex: none; }

/* ---------- 7. Marquee ---------- */
.marquee {
  background: var(--ink-800);
  border-block: 1px solid var(--line-dark);
  overflow: hidden;
  padding-block: 0.95rem;
  color: var(--fg-dim);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee ul {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  padding-right: 2.75rem;
  flex: none;
}
.marquee li {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee li::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- 8. Intro / stats ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
/* On wide screens the heading column tracks the copy instead of leaving dead space */
@media (min-width: 1041px) {
  .intro-grid > :first-child { position: sticky; top: 118px; }
}
.intro-body p + p { margin-top: 1.15rem; }
.intro-body strong { color: var(--ink-fg); font-weight: 600; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats div { background: var(--paper-card); padding: 1.6rem 1.5rem; }
.stats dt {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--ink-fg);
  letter-spacing: -0.03em;
}
.stats dt span { color: var(--accent); }
.stats dd {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-fg-dim);
  line-height: 1.45;
}

/* ---------- 9. Catalogue ---------- */
.catalogue + .catalogue { padding-top: 0; }

.cat-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.4rem;
  margin-bottom: 2.25rem;
  border-bottom: 2px solid var(--ink-fg);
}
.cat-head h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.cat-head p {
  max-width: 46ch;
  font-size: 0.95rem;
  color: var(--ink-fg-dim);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 1.15rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.35rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              border-color 0.22s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.28s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-light-2);
  box-shadow: 0 20px 40px -26px rgba(8, 11, 16, 0.45);
}
.card:hover::before { transform: scaleY(1); }

.card__num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.card__icon {
  width: 34px; height: 34px;
  color: var(--accent);
  margin-bottom: 1rem;
}
.card h4 {
  font-size: 1.18rem;
  margin-bottom: 0.55rem;
}
.card__desc {
  font-size: 0.9rem;
  color: var(--ink-fg-dim);
  margin-bottom: 1.1rem;
}
.card__list {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line-light);
  margin-bottom: 1.3rem;
}
.card__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.865rem;
  color: var(--ink-fg);
  line-height: 1.5;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 1px;
  background: var(--accent);
}
.card__enquire {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-fg);
  transition: color 0.16s var(--ease), gap 0.16s var(--ease);
}
.card__enquire:hover { color: var(--accent); gap: 0.8rem; }
.card__enquire svg { width: 14px; height: 14px; }

/* ---------- 10. Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: var(--ink-850);
  padding: 2rem 1.6rem;
  transition: background 0.2s var(--ease);
}
.step:hover { background: var(--ink-800); }
/* selector needs to out-specify `.step p` below */
.step .step__n {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  margin-bottom: 1.1rem;
}
.step h4 { font-size: 1.1rem; margin-bottom: 0.55rem; }
.step p { font-size: 0.9rem; color: var(--fg-dim); }

/* ---------- 11. Why / feature list ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.why {
  padding-top: 1.4rem;
  border-top: 2px solid var(--ink-fg);
}
.why h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.why h4 svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.why p { font-size: 0.9rem; color: var(--ink-fg-dim); }

/* ---------- 12. CTA band ---------- */
.cta {
  position: relative;
  background: var(--ink-900);
  color: var(--fg);
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 130%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(255,106,26,0.3), transparent 70%);
  z-index: -1;
}
.cta-inner { text-align: center; }
.cta h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.cta p { margin: 1.15rem auto 0; max-width: 56ch; color: var(--fg-dim); }
.cta-phone {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  transition: color 0.18s var(--ease);
}
.cta-phone:hover { color: var(--accent-hot); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* ---------- 13. Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: var(--fg-dim);
  border-top: 1px solid var(--line-dark);
  /* extra bottom room so the fixed WhatsApp button never sits on the last line */
  padding-block: clamp(3rem, 6vw, 4.5rem) 6rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-grid h5 {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 1.15rem;
}
.footer-grid li + li { margin-top: 0.6rem; }
.footer-grid a { transition: color 0.15s var(--ease); }
.footer-grid a:hover { color: var(--accent-hot); }
.footer-about p { margin-top: 1.15rem; max-width: 40ch; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--fg-faint);
}

/* ---------- 14. Contact page ---------- */
.page-head {
  background: var(--ink-900);
  color: var(--fg);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 70%;
  height: 160%;
  background: radial-gradient(50% 50% at 70% 30%, rgba(255,106,26,0.22), transparent 65%);
  z-index: -1;
}
.page-head h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 800; }
.page-head p { margin-top: 1.15rem; max-width: 58ch; color: var(--fg-dim); }

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--accent-hot); }
.breadcrumb span { margin-inline: 0.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Channel rows */
.channels {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-card);
}
.channel {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line-light);
  transition: background 0.16s var(--ease);
}
.channel:last-child { border-bottom: 0; }
a.channel:hover { background: var(--paper-2); }
.channel__icon {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
}
.channel__icon svg { width: 20px; height: 20px; }
.channel > span:not([class]) { min-width: 0; }
.channel__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-fg-dim);
}
.channel__value {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-fg);
  margin-top: 0.15rem;
  word-break: break-word;
}
.channel__value small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-fg-dim);
  margin-top: 0.2rem;
  letter-spacing: 0;
}
a.channel .channel__arrow {
  margin-left: auto;
  color: var(--ink-fg-dim);
  flex: none;
  transition: transform 0.18s var(--ease), color 0.18s var(--ease);
}
a.channel:hover .channel__arrow { transform: translateX(4px); color: var(--accent); }
.channel__arrow svg { width: 18px; height: 18px; }

.note-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px dashed var(--line-light-2);
  border-radius: var(--radius-lg);
  background: rgba(255, 106, 26, 0.04);
}
.note-box h4 { font-size: 1rem; margin-bottom: 0.85rem; }
.note-box li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: var(--ink-fg-dim);
}
.note-box li + li { margin-top: 0.5rem; }
.note-box li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}

/* Form */
.form-card {
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-card > h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
.form-card > p.form-intro {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-fg-dim);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-fg-dim);
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-fg);
  background: var(--paper);
  border: 1px solid var(--line-light-2);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  width: 100%;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease), background 0.16s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355637a' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 16px; padding-right: 2.4rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper-card);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa5b4; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}
.form-footnote {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--ink-fg-dim);
}

.form-status {
  margin-top: 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-light-2);
  background: var(--paper);
  font-size: 0.88rem;
}
.form-status[hidden] { display: none; }
.form-status--ok { border-color: #1faa53; background: rgba(31,170,83,0.08); }
.form-status--err { border-color: var(--accent-deep); background: var(--accent-soft); }

/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- 15. Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  background: #1faa53;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(31,170,83,0.7); }
.wa-float svg { width: 20px; height: 20px; flex: none; }

/* ---------- 16. Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 17. Responsive ---------- */
@media (max-width: 1180px) {
  .nav a { padding: 0.55rem 0.55rem; font-size: 0.83rem; }
  .header-cta .btn { padding: 0.85rem 1.1rem; font-size: 0.82rem; }
}

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 560px; }
  .intro-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .header-phone span { display: none; }
  .header-cta .btn { display: none; }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-900);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.75rem var(--gutter) 1.5rem;
    transform: translateY(-140%);
    transition: transform 0.32s var(--ease);
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 0.95rem 0.5rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-dark); border-radius: 0; }
  .nav .btn { margin-top: 1.15rem; display: inline-flex; }
}

@media (max-width: 860px) {
  /* A narrow viewport crops to the middle of the frame, which is dark machinery —
     so pull the crop across to the pour. (The layer is mirrored after positioning,
     hence the value tracks the pour's position in the *original* image.)
     Text spans the full width here, so the scrim works top-to-bottom instead. */
  .hero__media::before {
    background-position: 17% center;
    opacity: 0.85;
  }
  .hero__media::after {
    background: linear-gradient(180deg,
      rgba(8, 11, 16, 0.88) 0%,
      rgba(8, 11, 16, 0.74) 45%,
      rgba(8, 11, 16, 0.92) 100%);
  }
}

@media (max-width: 620px) {
  .stats { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 0 1.75rem; }
  .wa-float span { display: none; }
  .wa-float { padding: 0.95rem; }
  .cat-head { border-bottom-width: 1px; }
  /* keeps the email address on one line instead of splitting mid-word */
  .channel__value { font-size: 0.97rem; }
  .channel { padding: 1.2rem 1.15rem; gap: 0.9rem; }
}

/* ---------- 18. Division cards (used by the preview edition) ---------- */
.hero--lean .hero-grid { grid-template-columns: minmax(0, 1fr); }
.hero--lean .hero-grid > div { max-width: 60ch; }

.card-grid--wide { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }

.card--division { padding: 2.1rem 1.85rem 1.6rem; }
.card--division h4 { font-size: clamp(1.3rem, 2.2vw, 1.55rem); margin-bottom: 0.7rem; }
.card--division .card__desc { font-size: 0.95rem; }
.card--division .card__icon { width: 40px; height: 40px; }

/* "there is more where this came from" cue — pinned to the foot of the card
   with the Enquire link, so uneven list lengths still line up across a row */
.card--division .card__more { margin-top: auto; }
.card--division .card__enquire { margin-top: 1.1rem; }
.card__more {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.8rem;
  color: var(--ink-fg-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card__more svg { width: 14px; height: 14px; color: var(--accent); flex: none; }

.footer-note {
  margin-top: 1.15rem;
  font-size: 0.82rem;
  color: var(--fg-faint);
}

/* ---------- 19. Simple edition — header without navigation ---------- */
/* No nav list, so the phone number keeps its label at every width... */
.site-header--simple .header-phone span { display: inline; }
/* ...and the header button must stay — it is the only link to the other page */
.site-header--simple .header-cta .btn { display: inline-flex; }
@media (max-width: 560px) {
  .site-header--simple .header-phone span { display: none; }
  .site-header--simple .header-cta .btn { padding: 0.8rem 1.1rem; font-size: 0.82rem; }
}

/* ---------- 20. Division cards — photographic product blocks ---------- */
.divisions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
/* four divisions want a 2 x 2 — auto-fit would leave an orphan on row two */
@media (min-width: 900px) {
  .divisions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.division {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.division:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 106, 26, 0.42);
  box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.9);
}

/* Image header */
.division__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-800);
}
.division__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
}
.division:hover .division__media img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.05);
}
/* keeps the badge legible whatever the photo does */
.division__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 11, 16, 0.55) 0%,
    rgba(8, 11, 16, 0.10) 42%,
    rgba(8, 11, 16, 0.82) 100%);
}

.division__num {
  position: absolute;
  top: 1rem;
  left: 1.15rem;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-hot);
}
.division__media h3 {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1rem;
  z-index: 1;
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  color: var(--fg);
}

/* Body */
.division__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.5rem 1.5rem;
}
.division__lead {
  font-size: 0.92rem;
  color: var(--fg-dim);
}
.division__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-dark);
}
.division__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.885rem;
  line-height: 1.5;
  color: var(--fg);
}
.division__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.division__enquire {
  margin-top: auto;
  padding-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.16s var(--ease), gap 0.16s var(--ease);
}
.division__enquire:hover { color: var(--accent-hot); gap: 0.8rem; }
.division__enquire svg { width: 14px; height: 14px; }

.supply-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  font-size: 0.87rem;
  color: var(--fg-dim);
}
.supply-note svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

@media (max-width: 420px) {
  .divisions { grid-template-columns: minmax(0, 1fr); }
  .division__body { padding: 1.2rem 1.15rem 1.35rem; }
}

/* ---------- 20b. Product detail page ---------- */
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: start;
}

.product-figure {
  margin: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-800);
}
/* height:auto is required — the img's height attribute would otherwise win over aspect-ratio */
.product-figure img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.product-figure figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.78rem;
  color: var(--ink-fg-dim);
  background: var(--paper-card);
  border-top: 1px solid var(--line-light);
}

/* Type chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.25rem; }
.chip {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line-light-2);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-fg);
  background: var(--paper-card);
}
.chip--accent { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-soft); }

/* Spec tables */
.spec-block + .spec-block { margin-top: 2rem; }
.spec-block h3 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-fg-dim);
  margin-bottom: 0.9rem;
  font-family: var(--font-head);
}
.spec {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.92rem;
  background: var(--paper-card);
}
.spec th, .spec td {
  text-align: left;
  padding: 0.8rem 1.05rem;
  border-bottom: 1px solid var(--line-light);
}
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
.spec th {
  font-weight: 500;
  color: var(--ink-fg-dim);
  width: 55%;
}
.spec td {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink-fg);
  font-variant-numeric: tabular-nums;
}

.prose p + p { margin-top: 1rem; }
.prose { color: var(--ink-fg-dim); font-size: 0.97rem; }
.prose strong { color: var(--ink-fg); font-weight: 600; }

/* Sibling products in the same family */
.family {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.family div {
  background: var(--paper-card);
  padding: 1.15rem 1.25rem;
}
.family strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.98rem;
  color: var(--ink-fg);
  margin-bottom: 0.3rem;
}
.family span { font-size: 0.8rem; color: var(--ink-fg-dim); }

/* "sample page" cue on the division card */
.division__sample {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding: 0.5rem 0.85rem;
  border: 1px dashed rgba(255, 106, 26, 0.5);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--accent-hot);
  transition: background 0.16s var(--ease);
}
.division__sample:hover { background: rgba(255, 106, 26, 0.1); }
.division__sample svg { width: 14px; height: 14px; flex: none; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- 21. Simple edition — single-line footer ---------- */
.footer-simple {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: var(--fg-faint);
}
.footer-simple a:hover { color: var(--accent-hot); }
.site-footer--simple { padding-block: 2.5rem 5.5rem; }

/* ---------- 22. Motion & print ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

@media print {
  .site-header, .wa-float, .marquee, .cta { display: none; }
  body { background: #fff; color: #000; }
  .card { break-inside: avoid; border-color: #999; }
}
