/* ============================================================
   DELCHEM v3 — editorial maximal
   White-dominant, giant display type, full-bleed colour scenes
   drawn from the product labels.
   ============================================================ */

:root {
  /* grounds */
  --paper: #ffffff;
  --shell: #f7f7f5;
  --sand: #f0eee9;
  --stone: #e7e4dd;
  --line: #e0dcd4;
  --line-soft: #edeae3;

  /* ink */
  --ink: #0b1218;
  --ink-2: #2c3840;
  --muted: #6a757c;
  --faint: #9aa3a8;

  /* label palette — counted from products.json */
  --orange: #f04b00;
  --orange-2: #f47521;
  --blue: #173b82;
  --teal: #007a72;
  --magenta: #d11471;
  --red: #b10011;
  --yellow: #d9bd16;
  --navy: #101f38;

  /* per-page accent, overridden inline */
  --accent: #f04b00;
  --accent-ink: #ffffff;

  --display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(18px, 4.5vw, 76px);
  --section: clamp(84px, 13vh, 190px);
  --bar: 46px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.8s;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: var(--bar);
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -0.04em; line-height: 0.95; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------------- type ---------------- */
.d-hero { font-size: clamp(52px, 13vw, 200px); letter-spacing: -0.05em; line-height: 0.92; }
.d-1 { font-size: clamp(40px, 8.5vw, 150px); letter-spacing: -0.045em; }
.d-2 { font-size: clamp(30px, 5vw, 88px); }
.d-3 { font-size: clamp(22px, 2.4vw, 34px); letter-spacing: -0.03em; }
.d-4 { font-size: clamp(18px, 1.4vw, 21px); letter-spacing: -0.02em; }

.label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.lead { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.6; color: var(--ink-2); max-width: 46ch; }
.small { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 52ch; }

/* ---------------- layout ---------------- */
.wrap { padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 32px); }
.c1-7 { grid-column: 1 / 8; }
.c1-6 { grid-column: 1 / 7; }
.c4-11 { grid-column: 4 / 12; }
.c6-13 { grid-column: 6 / 13; }
.c8-13 { grid-column: 8 / 13; }
.c1-13 { grid-column: 1 / -1; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.35s var(--ease), color 0.35s, transform 0.5s var(--ease);
}
.btn .arw { transition: transform 0.4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn:hover { background: var(--accent); color: var(--accent-ink); }
.btn.accent { background: var(--accent); color: var(--accent-ink); }
.btn.accent:hover { background: var(--ink); color: #fff; }
.btn.light { background: #fff; color: var(--ink); }
.btn.light:hover { background: var(--ink); color: #fff; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.link-u {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding-bottom: 2px; border-bottom: 1px solid currentColor;
  transition: gap 0.4s var(--ease);
}
.link-u:hover { gap: 14px; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%; opacity: 0;
  transition: opacity 0.3s;
}
.cursor-dot { width: 5px; height: 5px; background: var(--ink); margin: -2.5px 0 0 -2.5px; }
.cursor-ring {
  width: 36px; height: 36px; margin: -18px 0 0 -18px;
  border: 1px solid rgba(11, 18, 24, 0.3);
  display: grid; place-items: center;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: transparent;
  transition: width 0.4s var(--ease), height 0.4s var(--ease), background 0.35s, border-color 0.35s, color 0.25s, opacity 0.3s;
}
body.cursor-ready .cursor-dot, body.cursor-ready .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring { width: 76px; height: 76px; background: var(--accent); border-color: transparent; color: var(--accent-ink); }
body.cursor-hover .cursor-dot { opacity: 0; }
body.cursor-invert .cursor-ring { border-color: rgba(255, 255, 255, 0.6); }
body.cursor-invert .cursor-dot { background: #fff; }
body.cursor-hidden .cursor-dot, body.cursor-hidden .cursor-ring { opacity: 0; }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   MOTION — hidden states only while JS is alive to reveal them
   ============================================================ */
.js [data-reveal] { will-change: transform, opacity; }
.js [data-reveal="rise"] { opacity: 0; transform: translateY(30px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.js [data-reveal="fade"] { opacity: 0; transition: opacity 1s var(--ease); }
.js [data-reveal="scale"] { opacity: 0; transform: scale(1.05); transition: opacity 1s var(--ease), transform 1.3s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

.line-mask { display: block; overflow: hidden; }
.js .line-mask > span { display: block; transform: translateY(103%); transition: transform 0.95s var(--ease); }
.js .is-in .line-mask > span, .js .line-mask.is-in > span { transform: translateY(0); }

/* brightness-graded reveal (the reference's dark-scene technique, on colour) */
.grade span { transition: color 0.6s var(--ease); }

.img-mask { overflow: hidden; }
.img-mask img { transition: transform 1.5s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .js .line-mask > span { transform: none !important; }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader { display: none; }
.js .loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--shell);
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader img { width: 150px; margin: 0 auto 20px; }
.loader-bar { width: 170px; height: 1px; background: var(--line); overflow: hidden; margin: 0 auto; }
.loader-bar i { display: block; height: 100%; width: 0; background: var(--ink); transition: width 0.3s linear; }

/* ============================================================
   HEADER — kept full (user requirement), styled light
   ============================================================ */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 800; transition: background 0.45s var(--ease), color 0.4s; }
.hdr::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); opacity: 0; transition: opacity 0.4s; }
.hdr.solid { background: rgba(247, 247, 245, 0.82); backdrop-filter: blur(18px) saturate(1.5); }
.hdr.solid::after { opacity: 1; }
.hdr.over { color: #fff; }
.hdr-in { height: 64px; display: flex; align-items: center; gap: 20px; padding-inline: var(--gutter); }
.hdr-logo img { width: 116px; transition: filter 0.4s; }
.hdr.over .hdr-logo img { filter: brightness(0) invert(1); }
.hdr-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.hdr-nav > a, .hdr-nav > button {
  padding: 8px 13px; font-size: 12.5px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px; position: relative;
}
.hdr-nav > a::after, .hdr-nav > button::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.hdr-nav > a:hover::after, .hdr-nav > button:hover::after, .hdr-nav > a.active::after { transform: scaleX(1); }
.hdr .btn { padding: 10px 18px; font-size: 12px; margin-left: 10px; }
.hdr.over .btn { background: #fff; color: var(--ink); }
.chev { width: 8px; height: 8px; transition: transform 0.4s var(--ease); }
.hdr-nav > button[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* mega menu */
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); border-top: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(11, 18, 24, 0.08);
  color: var(--ink);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease), visibility 0.4s;
}
.mega.open { opacity: 1; visibility: visible; transform: none; }
.mega-in { padding: 30px var(--gutter) 34px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px 20px; }
.mega-card { padding: 14px 15px; border-radius: 4px; transition: background 0.35s; }
.mega-card:hover { background: var(--shell); }
.mega-card i { display: block; width: 26px; height: 3px; border-radius: 2px; margin-bottom: 11px; }
.mega-card b { display: block; font-size: 13.5px; font-weight: 600; }
.mega-card span { font-size: 11px; color: var(--faint); }
.mega-foot { grid-column: 1 / -1; border-top: 1px solid var(--line-soft); padding-top: 18px; margin-top: 6px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.mega-foot p { font-size: 12.5px; color: var(--muted); }

/* burger + mobile */
.burger { display: none; width: 42px; height: 42px; margin-left: auto; flex-direction: column; justify-content: center; align-items: flex-end; gap: 5px; }
.burger i { display: block; height: 1.5px; width: 22px; background: currentColor; transition: transform 0.45s var(--ease), opacity 0.3s, width 0.4s; }
.burger i:nth-child(2) { width: 15px; }
body.menu-open .burger i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger i:nth-child(2) { opacity: 0; }
body.menu-open .burger i:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }

.mnav {
  position: fixed; inset: 0; z-index: 790;
  background: var(--shell); color: var(--ink);
  padding: 88px var(--gutter) 40px;
  overflow-y: auto; display: flex; flex-direction: column;
  clip-path: inset(0 0 100% 0); transition: clip-path 0.75s var(--ease);
}
body.menu-open .mnav { clip-path: inset(0 0 0 0); }
.mnav-links { display: flex; flex-direction: column; }
.mnav-links a {
  font-family: var(--display); font-size: clamp(32px, 9vw, 52px); font-weight: 500;
  letter-spacing: -0.04em; padding: 11px 0; border-bottom: 1px solid var(--line-soft);
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
body.menu-open .mnav-links a { opacity: 1; transform: none; }
.mnav-cats { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; }
.mnav-cats a { font-size: 13px; color: var(--muted); padding: 7px 0; }
.mnav-foot { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; gap: 6px; }
.mnav-foot a { font-size: 16px; font-weight: 600; padding: 7px 0; }

/* ============================================================
   BOTTOM BAR — persistent, with live scroll percentage
   ============================================================ */
.botbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 780;
  height: var(--bar);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-inline: var(--gutter);
  background: rgba(247, 247, 245, 0.86);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.botbar-triad { display: flex; gap: 16px; }
.botbar-triad span { white-space: nowrap; }
.botbar-scroll { display: flex; align-items: center; gap: 12px; }
.botbar-track { width: clamp(60px, 12vw, 170px); height: 1px; background: var(--line); position: relative; }
.botbar-track i { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--ink); }
.botbar-pct { min-width: 34px; text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 780px) { .botbar-triad span:nth-child(n+2) { display: none; } }

/* ============================================================
   HERO — giant type, product bleeding off the right edge
   ============================================================ */
.hero { position: relative; min-height: calc(100svh - var(--bar)); display: flex; align-items: center; overflow: hidden; background: var(--shell); }
.hero-in { position: relative; z-index: 2; width: 100%; padding: 96px var(--gutter) 40px; }
@media (min-width: 1100px) { .hero-in { max-width: 66%; } }
.hero h1 { max-width: 15ch; }
.hero .lead { margin-top: clamp(20px, 3vw, 34px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(22px, 3vw, 36px); }
/* The packshot is a transparent cut-out standing on the hero baseline and
   bleeding slightly past the right edge. Sized by height, not width, because
   it is a tall portrait subject. */
.hero-media {
  position: absolute; right: clamp(-26px, -1.2vw, 0px); bottom: 0;
  /* Sized by width. Percentage height resolved unpredictably against a hero
     whose box changes as the headline wraps, which clipped the machine's base. */
  width: clamp(260px, 33vw, 460px); height: auto;
  z-index: 1; pointer-events: none;
}
.hero-media img {
  width: 100%; height: auto; display: block;
  /* No drop-shadow: the machine stands on the hero's bottom edge and the
     hero clips overflow, so a downward shadow would be cut off mid-blur. */
}
@media (max-width: 1100px) { .hero-media { width: clamp(220px, 30vw, 340px); opacity: 0.94; } }
@media (max-width: 900px) {
  /* stack, or the flex row squeezes the machine down to a thumbnail */
  .hero { flex-direction: column; align-items: stretch; justify-content: flex-end; }
  .hero-in { padding-top: 112px; padding-bottom: 18px; }
  .hero-media {
    position: relative; right: auto; bottom: auto;
    width: 60%; max-width: 300px; height: auto;
    margin: 6px var(--gutter) 0 auto; opacity: 1;
  }
  .hero-media img { width: 100%; height: auto; }
}

/* ============================================================
   COLOUR SCENE — full-bleed saturated ground
   ============================================================ */
.scene { background: var(--accent); color: #fff; position: relative; overflow: hidden; }
.scene .label { color: rgba(255, 255, 255, 0.66); }
.scene .lead, .scene .small { color: rgba(255, 255, 255, 0.8); }
.scene-shapes { position: absolute; inset: 0; z-index: 0; opacity: 0.16; pointer-events: none; }
.scene-shapes svg { width: 100%; height: 100%; }
.scene > .wrap, .scene > .grid12 { position: relative; z-index: 1; }

/* statement — brightness-graded lines */
.statement { padding-block: clamp(110px, 20vh, 240px); }
.statement p {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 5.4vw, 84px); line-height: 1.08; letter-spacing: -0.04em;
  max-width: 18ch; color: rgba(255, 255, 255, 0.28);
}
.statement .on { color: #fff; }

/* ============================================================
   DEPARTMENT SCENES — colour flood, type behind product
   ============================================================ */
.dept {
  position: relative; min-height: 92svh;
  display: grid; place-items: center;
  background: var(--dept, var(--accent));
  color: #fff; overflow: hidden;
}
.dept-type {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 500;
  font-size: clamp(64px, 16vw, 260px); letter-spacing: -0.055em; line-height: 0.9;
  white-space: nowrap; color: rgba(255, 255, 255, 0.9); z-index: 0;
}
.dept-media { position: relative; z-index: 1; width: clamp(200px, 30vw, 440px); }
.dept-media img { width: 100%; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3)); }
.dept-meta {
  position: absolute; z-index: 2; left: var(--gutter); bottom: clamp(28px, 5vh, 70px);
  display: flex; flex-direction: column; gap: 8px; max-width: 34ch;
}
.dept-meta b { font-family: var(--display); font-size: clamp(22px, 2.6vw, 40px); font-weight: 500; letter-spacing: -0.03em; }
.dept-meta p { font-size: 13px; color: rgba(255, 255, 255, 0.8); }
.dept-count { position: absolute; z-index: 2; right: var(--gutter); bottom: clamp(28px, 5vh, 70px); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   SCRUB
   ============================================================ */
.scrub { position: relative; height: 300vh; background: var(--shell); }
.scrub-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.scrub-type {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 500; white-space: nowrap;
  font-size: clamp(70px, 17vw, 290px); letter-spacing: -0.055em; color: var(--ink); opacity: 0.1; z-index: 0;
}
.scrub canvas, .scrub .scrub-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.scrub .scrub-fallback { z-index: 0; }
.scrub-copy { position: relative; z-index: 3; text-align: center; padding-inline: var(--gutter); max-width: 720px; color: #fff; }
.scrub-sticky::after { content: ""; position: absolute; inset: 0; background: rgba(9, 14, 20, 0.4); z-index: 2; }
.scrub-copy .label { color: rgba(255, 255, 255, 0.7); }
.scrub-copy .lead { color: rgba(255, 255, 255, 0.82); margin-inline: auto; }
.scrub-copy h2 { margin: 16px 0 18px; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-row {
  display: grid; grid-template-columns: 56px 1fr 1fr 34px;
  gap: clamp(14px, 2.5vw, 40px); align-items: center;
  padding: clamp(20px, 2.6vw, 34px) 0; border-bottom: 1px solid var(--line);
  transition: padding-inline 0.5s var(--ease);
}
.ind-row:first-child { border-top: 1px solid var(--line); }
.ind-row:hover { padding-inline: 12px; }
.ind-row .n { font-size: 11px; color: var(--faint); letter-spacing: 0.1em; }
.ind-row h3 { font-size: clamp(22px, 3.2vw, 50px); }
.ind-row p { font-size: 13.5px; color: var(--muted); }
.ind-row .arw { justify-self: end; font-size: 17px; color: var(--faint); transition: transform 0.45s var(--ease), color 0.3s; }
.ind-row:hover .arw { transform: translate(4px, -4px); color: var(--accent); }
.ind-peek {
  position: fixed; width: 290px; height: 195px; border-radius: 5px; overflow: hidden;
  pointer-events: none; z-index: 700; opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.4s var(--ease), transform 0.55s var(--ease);
  box-shadow: 0 24px 56px rgba(11, 18, 24, 0.26);
}
.ind-peek.on { opacity: 1; }
.ind-peek img { width: 100%; height: 100%; object-fit: cover; }
@media (pointer: coarse) { .ind-peek { display: none; } }

/* ============================================================
   BENTO — proof grid of unequal cards
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bento > * {
  background: var(--paper); border-radius: 10px; padding: clamp(20px, 2.2vw, 34px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  min-height: 190px; overflow: hidden; position: relative;
}
.bento .w2 { grid-column: span 2; }
.bento .w3 { grid-column: span 3; }
.bento .stat { font-family: var(--display); font-size: clamp(44px, 5.2vw, 78px); font-weight: 500; letter-spacing: -0.045em; line-height: 0.9; }
.bento .cap { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.bento .say { font-family: var(--display); font-size: clamp(22px, 2.6vw, 40px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.bento .media { padding: 0; }
.bento .media img { width: 100%; height: 100%; object-fit: cover; }
.bento .tint { background: var(--accent); color: #fff; }
.bento .tint .cap { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   CATEGORY + PRODUCT GRIDS
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cat-card {
  position: relative; border-radius: 10px; overflow: hidden; min-height: clamp(280px, 34vw, 460px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(20px, 2.4vw, 38px); color: #fff;
  background: var(--cat, var(--navy));
}
.cat-card img { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: 42%; z-index: 0; filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28)); transition: transform 0.7s var(--ease); }
.cat-card:hover img { transform: translateY(-50%) scale(1.06); }
.cat-card > * { position: relative; z-index: 1; }
.cat-card h3 { font-size: clamp(24px, 2.8vw, 44px); }
.cat-card p { font-size: 13px; color: rgba(255, 255, 255, 0.78); max-width: 30ch; margin-top: 8px; }
.cat-card .go { margin-top: 16px; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; display: inline-flex; gap: 8px; }
.cat-card .n { position: absolute; top: clamp(18px, 2vw, 30px); left: clamp(20px, 2.4vw, 38px); font-size: 11px; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.7); z-index: 1; }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.prod-card { background: var(--paper); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.5s var(--ease); }
.prod-card:hover { transform: translateY(-4px); }
.prod-media { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 22px; background: var(--tint, var(--sand)); }
.prod-media img { width: auto; height: 100%; max-width: 78%; object-fit: contain; transition: transform 0.8s var(--ease); }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-code { position: absolute; top: 13px; right: 14px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink); background: rgba(255, 255, 255, 0.82); padding: 4px 8px; border-radius: 100px; }
.prod-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-body h3 { font-size: 16px; letter-spacing: -0.02em; line-height: 1.2; }
.prod-body p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.prod-body .meta { margin-top: auto; padding-top: 12px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); display: flex; justify-content: space-between; gap: 10px; }
.prod-body .meta em { font-style: normal; color: var(--accent); font-weight: 600; }

/* ============================================================
   PAGE HEADS
   ============================================================ */
.phead { padding-top: calc(64px + clamp(46px, 7vw, 100px)); padding-bottom: clamp(30px, 4vw, 56px); }
.phead h1 { margin-top: 16px; }
.phead .lead { margin-top: 20px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--faint); flex-wrap: wrap; margin-bottom: 22px; }
.crumbs a:hover { color: var(--ink); }
.crumbs b { color: var(--ink); font-weight: 500; }

.chead { background: var(--accent); color: #fff; padding-top: calc(64px + clamp(40px, 6vw, 84px)); padding-bottom: clamp(40px, 6vw, 84px); position: relative; overflow: hidden; }
.chead .crumbs, .chead .crumbs b, .chead .crumbs a { color: rgba(255, 255, 255, 0.75); }
.chead .label { color: rgba(255, 255, 255, 0.7); }
.chead .lead { color: rgba(255, 255, 255, 0.85); }

.rail { display: flex; gap: 5px; overflow-x: auto; padding: 13px var(--gutter); border-bottom: 1px solid var(--line); background: var(--shell); position: sticky; top: 64px; z-index: 400; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail a { flex: none; padding: 8px 14px; border-radius: 100px; font-size: 12px; color: var(--muted); transition: all 0.3s; white-space: nowrap; }
.rail a:hover { background: var(--paper); color: var(--ink); }
.rail a.active { background: var(--ink); color: #fff; }

/* ============================================================
   PRODUCT DETAIL — colour panel behind the packshot
   ============================================================ */
.pd { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(26px, 4vw, 70px); align-items: start; }
.pd-stage {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--accent); display: grid; place-items: center;
  padding: clamp(30px, 5vw, 70px); aspect-ratio: 1 / 1;
}
.pd-stage .ghost {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 500; white-space: nowrap;
  font-size: clamp(60px, 11vw, 190px); letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.16); z-index: 0;
}
.pd-stage img { position: relative; z-index: 1; width: auto; height: 100%; max-width: 76%; object-fit: contain; filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.26)); }
.pd h1 { margin: 14px 0 18px; }

.spec { border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 42% 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.spec-row dt { color: var(--muted); }
.spec-row dd { margin: 0; font-weight: 500; }
.spec-title { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin: 32px 0 4px; }
.spec-title h2 { font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.spec-title span { font-size: 11px; color: var(--faint); }

.tds { margin-top: 26px; padding: 20px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.tds b { display: block; font-size: 14px; margin-bottom: 4px; }
.tds p { font-size: 12.5px; color: var(--muted); max-width: 42ch; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

/* ============================================================
   D2C — Slight Twist register
   ============================================================ */
.d2c-scene {
  position: relative; min-height: calc(100svh - var(--bar)); overflow: hidden;
  background: var(--pack, var(--accent)); color: #fff;
  display: grid; align-items: center;
}
.d2c-shapes { position: absolute; inset: 0; z-index: 0; opacity: 0.14; }
.d2c-shapes svg { width: 100%; height: 100%; }
.d2c-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: center; padding: clamp(80px, 10vh, 120px) var(--gutter); width: 100%; }
.d2c-copy h2 { font-size: clamp(40px, 7vw, 118px); color: var(--cream, #f7e7a6); letter-spacing: -0.045em; }
.d2c-sub { margin-top: 12px; font-size: clamp(14px, 1.3vw, 18px); color: rgba(255, 255, 255, 0.9); }
.d2c-pill { display: inline-block; margin-top: 18px; padding: 8px 16px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 4px; font-size: 13px; font-weight: 600; }
.d2c-claims { margin-top: 22px; display: flex; flex-direction: column; gap: 7px; }
.d2c-claims li { font-size: 14.5px; color: rgba(255, 255, 255, 0.92); }
.d2c-cta { margin-top: 26px; display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; border-radius: 100px; background: var(--cta, #ffffff); color: var(--cta-ink, #0b1218); font-size: 13px; font-weight: 700; transition: transform 0.4s var(--ease); }
.d2c-cta:hover { transform: translateY(-2px); }
.d2c-pack { justify-self: center; width: clamp(180px, 26vw, 380px); }
.d2c-pack img { width: 100%; transform: rotate(-7deg); filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.34)); }
.d2c-dots { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 600; display: flex; flex-direction: column; gap: 11px; }
.d2c-dots a { width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.75); transition: background 0.3s; }
.d2c-dots a.on { background: #fff; }
@media (max-width: 900px) {
  .d2c-in { grid-template-columns: 1fr; }
  .d2c-pack { justify-self: start; width: 58%; }
  .d2c-dots { display: none; }
}

/* ============================================================
   ENQUIRY
   ============================================================ */
.enq { background: var(--paper); border-top: 1px solid var(--line); }
.enq-in { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 84px); align-items: start; }
.enq-intro h2 { margin: 16px 0 18px; }
.enq-direct { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.enq-direct a { font-family: var(--display); font-size: clamp(18px, 1.8vw, 24px); font-weight: 500; letter-spacing: -0.02em; padding: 5px 0; transition: color 0.3s; }
.enq-direct a:hover { color: var(--accent); }

.form { background: var(--shell); border: 1px solid var(--line); border-radius: 10px; padding: clamp(22px, 2.6vw, 36px); display: flex; flex-direction: column; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 14.5px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 10px 0; border-radius: 0; width: 100%; transition: border-color 0.35s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form .btn { align-self: flex-start; margin-top: 6px; }
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.notice { padding: 12px 15px; border-radius: 5px; font-size: 13px; line-height: 1.5; }
.notice.ok { background: #e8f4ec; color: #1c5b36; border: 1px solid #bcdcc8; }
.notice.err { background: #fdeceb; color: #8c2018; border: 1px solid #f2c2be; }

/* ============================================================
   REVIEWS
   ============================================================ */
.rv-hero { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(26px, 4vw, 60px); align-items: end; }
.rv-score { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 26px 28px; display: flex; flex-direction: column; gap: 7px; }
.rv-score .num { font-family: var(--display); font-size: clamp(44px, 5.5vw, 72px); font-weight: 500; letter-spacing: -0.045em; line-height: 1; }
.rv-score b { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.stars { display: inline-flex; gap: 2px; font-size: 14px; color: var(--line); }
.stars .on { color: #e0a021; }
.rv-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(30px, 4vw, 70px); align-items: start; }
.rv-card { padding: 22px 0; border-bottom: 1px solid var(--line-soft); display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
.rv-av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-weight: 600; font-size: 16px; }
.rv-meta { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.rv-meta b { font-size: 14.5px; font-weight: 600; }
.rv-meta span, .rv-meta time { font-size: 12px; color: var(--faint); }
.rv-card p { margin-top: 8px; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.rv-empty { padding: 34px 0; color: var(--muted); }
.rv-empty b { display: block; font-size: 16px; color: var(--ink); margin-bottom: 5px; }
.starpick { display: flex; gap: 4px; }
.starpick button { font-size: 25px; color: var(--line); line-height: 1; transition: color 0.25s, transform 0.3s var(--ease); }
.starpick button:hover { transform: scale(1.15); }
.starpick button.on { color: #e0a021; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.consent input { width: 16px; height: 16px; margin-top: 2px; flex: none; accent-color: var(--accent); }

/* ============================================================
   CERTIFICATION / ABOUT
   ============================================================ */
.seal { width: clamp(180px, 20vw, 250px); aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.34); display: grid; place-items: center; align-content: center; text-align: center; gap: 4px; padding: 24px; }
.seal span { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.66); }
.seal b { font-family: var(--display); font-size: clamp(18px, 2vw, 26px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.08; }
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tile { background: var(--paper); border-radius: 10px; padding: clamp(22px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.tile b { font-size: 11.5px; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; }
.tile h3 { font-size: clamp(18px, 1.7vw, 24px); }
.tile p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.about-body { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.about-body .prose > * + * { margin-top: 18px; }
.about-body .prose p { font-size: clamp(15px, 1.25vw, 17.5px); line-height: 1.7; color: var(--ink-2); }
.brandcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.brandcard { background: var(--paper); border-radius: 10px; padding: clamp(24px, 2.6vw, 38px); display: flex; flex-direction: column; gap: 14px; min-height: 200px; }
.brandcard img { height: 26px; width: auto; object-fit: contain; align-self: flex-start; }
.brandcard p { font-size: 13px; color: var(--muted); }
.brandcard i { display: block; width: 30px; height: 3px; border-radius: 2px; margin-top: auto; }

/* ============================================================
   FOOTER — kept full
   ============================================================ */
.ftr { background: var(--ink); color: #fff; padding-top: clamp(50px, 6vw, 84px); }
.ftr-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: clamp(24px, 3.5vw, 54px); padding-inline: var(--gutter); padding-bottom: clamp(38px, 4.5vw, 62px); }
.ftr-brand img { width: 140px; filter: brightness(0) invert(1); }
.ftr-brand p { margin-top: 16px; font-size: 13px; color: rgba(255, 255, 255, 0.58); max-width: 32ch; line-height: 1.6; }
.ftr-col h4 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-bottom: 14px; }
.ftr-col a { display: block; padding: 5px 0; font-size: 13.5px; color: rgba(255, 255, 255, 0.75); transition: color 0.3s, transform 0.4s var(--ease); }
.ftr-col a:hover { color: #fff; transform: translateX(3px); }
.ftr-contact a { display: block; font-family: var(--display); font-size: clamp(16px, 1.4vw, 20px); font-weight: 500; letter-spacing: -0.02em; padding: 6px 0; color: #fff; }
.ftr-contact a:hover { opacity: 0.7; }
.ftr-contact p { font-size: 13px; color: rgba(255, 255, 255, 0.55); margin-top: 10px; }
.ftr-brands { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; padding: 22px var(--gutter); border-top: 1px solid rgba(255, 255, 255, 0.1); }
.ftr-brands img { height: 19px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.45; transition: opacity 0.4s; }
.ftr-brands img:hover { opacity: 0.9; }
.ftr-legal { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 18px var(--gutter) 26px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 11.5px; color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   404
   ============================================================ */
.nf { min-height: 74svh; display: grid; place-items: center; text-align: center; padding-top: 64px; }
.nf-in { max-width: 540px; padding-inline: var(--gutter); }
.nf h1 { margin: 14px 0 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .mega-in { grid-template-columns: repeat(3, 1fr); }
  .rel-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .hdr-nav, .hdr .btn { display: none; }
  .burger { display: flex; }
  .hdr-in { height: 58px; }
  .phead { padding-top: calc(58px + clamp(40px, 7vw, 84px)); }
  .chead { padding-top: calc(58px + clamp(36px, 6vw, 70px)); }
  .rail { top: 58px; }
  .pd, .enq-in, .rv-layout, .rv-hero, .about-body { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid, .brandcards { grid-template-columns: repeat(2, 1fr); }
  .scrub { height: 220vh; }
}
@media (max-width: 780px) {
  .cat-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .w3 { grid-column: span 2; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; }
  .ind-row { grid-template-columns: 34px 1fr 24px; gap: 12px; }
  .ind-row p { grid-column: 2 / -1; }
  .field-row { grid-template-columns: 1fr; }
  .mnav-cats { grid-template-columns: 1fr; }
  .dept-type { font-size: clamp(44px, 15vw, 90px); }
}
@media (max-width: 520px) {
  .prod-grid, .rel-grid, .bento, .tile-grid, .brandcards { grid-template-columns: 1fr; }
  .bento .w2, .bento .w3 { grid-column: span 1; }
  .ftr-top { grid-template-columns: 1fr; }
  .scrub { height: 180vh; }
}

/* pack stand-in, until the D2C photography is supplied */
.pack-stub { width: 100%; height: auto; max-height: 62svh; }

/* atmospheric film band (About) — poster paints first, video layers over it */
.about-film { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 21 / 9; background: var(--stone); }
.about-film img, .about-film video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-film video { z-index: 1; }

/* products awaiting photography — a designed absence, not a broken image */
.no-shot { display: block; text-align: center; font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; font-size: clamp(15px, 1.5vw, 20px); color: var(--ink-2); opacity: 0.5; padding: 0 12%; line-height: 1.15; }
.no-shot.big { position: relative; z-index: 1; color: #fff; opacity: 0.7; font-size: clamp(18px, 2vw, 30px); }

/* D2C photography sits in a rounded panel on the colour field. The supplied
   assets are room scenes rather than cut-outs, so they are framed rather
   than floated — same colour blocking, real product context. */
.d2c-shot { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28); background: rgba(255, 255, 255, 0.08); }
.d2c-shot img { width: 100%; height: auto; display: block; transform: none; filter: none; }
.d2c-pack { width: clamp(240px, 34vw, 470px); }
@media (max-width: 900px) { .d2c-pack { width: 100%; max-width: 460px; } }
