/* ==========================================================================
   Imperial Tissue Limited — imperialtissue.com
   Design system: "Soft Strength — the science of clean"
   Palette drawn from the ITL mark: red labyrinth crown + navy wordmark.
   Signature: the "ply-line" — a triple hairline echoing tissue plies and
   the maze-weave of the logo. Used as dividers, eyebrows and section seams.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;
  /* Brand */
  --navy:      #262261;   /* sampled from the ITL wordmark */
  --navy-800:  #1c1a4d;
  --navy-900:  #14123a;
  --red:       #e31e24;   /* the crown red */
  --red-600:   #c81319;
  --heading:   #262261;   /* heading/strong text — flips light in dark mode */

  /* Paper / neutrals */
  --paper:     #f6f4ee;   /* soft tissue-white page ground */
  --paper-2:   #efece3;   /* recessed panels */
  --white:     #ffffff;
  --ink:       #201d3a;   /* body text */
  --muted:     #5c5972;   /* secondary text */
  --line:      #e3ddd0;   /* hairline on paper */
  --line-soft: #ece7db;

  /* Accent tints for category chips */
  --tint-tp:   #eaf0ff;   /* toilet paper */
  --tint-kt:   #fff2e6;   /* kitchen towels */
  --tint-np:   #eafaf1;   /* napkins */
  --tint-sv:   #fdeef0;   /* serviettes */

  /* Type */
  --f-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 74px;
  --shadow: 0 1px 2px rgba(20,18,58,.04), 0 18px 40px -24px rgba(20,18,58,.28);
  --shadow-lg: 0 30px 70px -34px rgba(20,18,58,.45);
  --ring: 0 0 0 3px rgba(38,34,97,.18);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
h1, h2, h3, h4, p, .eyebrow, .hero__title { overflow-wrap: break-word; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: clamp(16px, 1rem + .1vw, 17.5px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip (not hidden): stops sideways scroll WITHOUT making body a scroll
     container, which would break the sticky header. */
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(56px, 9vw, 116px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }

/* The weave signature: nested chevrons echoing the logo's labyrinth crown.
   Pure-CSS background so it can tint per-section without SVG id collisions. */
.weave {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='64'%3E%3Cpath d='M0 64 L64 6 L128 64 M0 64 L64 22 L128 64 M0 64 L64 38 L128 64' fill='none' stroke='%23a7a4c9' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 128px 64px;
  background-repeat: repeat;
}
.weave--light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='64'%3E%3Cpath d='M0 64 L64 6 L128 64 M0 64 L64 22 L128 64 M0 64 L64 38 L128 64' fill='none' stroke='%23ffffff' stroke-width='1.1'/%3E%3C/svg%3E");
}

/* The ply-line signature: three stacked hairlines */
.plyline { display: block; height: 7px; width: 46px; }
.plyline::before,
.eyebrow::before {
  content: "";
}
.plyline {
  background:
    linear-gradient(var(--red), var(--red)) top/100% 1px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center/100% 1px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom/100% 1px no-repeat;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; color: var(--heading); }
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1rem + .8vw, 1.5rem); }
p  { color: var(--ink); }
.lead { font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); color: var(--muted); line-height: 1.55; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: ""; width: 26px; height: 5px;
  background:
    linear-gradient(var(--red), var(--red)) top/100% 1px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center/100% 1px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom/100% 1px no-repeat;
}
.eyebrow--light { color: #ffd7d9; }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 62ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--f-body); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), background-color .2s, color .2s, box-shadow .25s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 14px 26px -14px rgba(227,30,36,.75); }
.btn--primary:hover { background: var(--red-600); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--heading); transform: translateY(-2px); }
.btn--on-navy { background: #fff; color: var(--navy); }
.btn--on-navy:hover { background: #ffe9ea; transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,244,238,.82);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand img { width: 56px; height: 56px; }
.brand__name { font-family: var(--f-display); font-weight: 800; letter-spacing: -.01em; color: var(--heading); font-size: 1.24rem; line-height: 1; }
.brand__tag { display: block; font-family: var(--f-body); font-weight: 600; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 9px 15px; border-radius: 999px; font-weight: 600; font-size: .96rem; color: var(--ink);
  transition: background-color .2s, color .2s;
}
.nav a:hover { background: var(--paper-2); }
.nav a[aria-current="page"] { color: var(--heading); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* Theme toggle */
.theme-toggle { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--white); display: grid; place-items: center; color: var(--heading); transition: background .2s, border-color .2s, transform .2s, color .2s; }
.theme-toggle:hover { border-color: var(--heading); transform: translateY(-1px); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle__sun { display: none; }
.theme-toggle__moon { display: block; }
[data-theme="dark"] .theme-toggle__moon { display: none; }
[data-theme="dark"] .theme-toggle__sun { display: block; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero (redesigned) ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(32px, 5vw, 72px); }
/* soft brand wash behind the whole hero */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 70% at 88% 18%, rgba(227,30,36,.06), transparent 60%),
    radial-gradient(55% 65% at 78% 92%, rgba(38,34,97,.06), transparent 60%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 4vw, 60px); align-items: center; }

/* Copy column */
.hero__copy { max-width: 580px; }
.hero__title { margin-top: 18px; font-size: clamp(2.3rem, 1.4rem + 3vw, 3.6rem); line-height: 1.05; letter-spacing: -.025em; }
.hero__title .accent { color: var(--red); }
.hero__sub { margin-top: 20px; max-width: 50ch; font-size: clamp(1.04rem, 1rem + .4vw, 1.2rem); color: var(--muted); line-height: 1.6; }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__brands { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap; }
.hero__brands-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero__brands strong { font-family: var(--f-display); font-weight: 800; font-size: 1.16rem; color: var(--heading); letter-spacing: -.01em; }

/* Showcase panel — colourful packs pop against a navy stage */
.hero__showcase { position: relative; }
.hero__panel {
  position: relative; border-radius: clamp(20px, 3vw, 32px); overflow: hidden;
  aspect-ratio: 1 / 1; box-shadow: var(--shadow-lg);
  background: radial-gradient(125% 110% at 50% 4%, #322c7d 0%, #241f5e 52%, #17143f 100%);
}
.hero__panel .weave { position: absolute; inset: 0; opacity: .14; }
.hero__panel::after { /* soft floor glow so packs feel grounded */
  content: ""; position: absolute; left: 12%; right: 12%; bottom: 8%; height: 22%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(255,255,255,.14), transparent 70%);
  filter: blur(4px);
}
.hero__badge {
  position: absolute; top: 20px; left: 20px; z-index: 6; display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .01em;
  padding: 9px 15px; border-radius: 999px; box-shadow: 0 12px 22px -8px rgba(227,30,36,.7);
}
/* Clean 2x2 arrangement — each pack in its own quadrant, never overlapping. */
.hero__packs { position: absolute; inset: 0; }
.hero__packs img { position: absolute; filter: drop-shadow(0 22px 28px rgba(0,0,0,.5)); }
.pack-main  { width: 39%; left: 7%;  top: 13%;    z-index: 3; animation: floaty 7s var(--ease) infinite; }      /* red — top-left */
.pack-right { width: 39%; right: 6%; top: 13%;    z-index: 3; animation: floaty 8s var(--ease) infinite 1.2s; } /* green — top-right */
.pack-left  { width: 39%; left: 7%;  bottom: 12%; z-index: 3; animation: floaty 7.6s var(--ease) infinite .6s; }/* blue — bottom-left */
.pack-front { width: 35%; right: 7%; bottom: 9%;  z-index: 4; animation: floaty 6.8s var(--ease) infinite .3s; }/* kitchen — bottom-right */
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }
@media (prefers-reduced-motion: reduce) { .hero__packs img { animation: none !important; } }

/* Floating trust card overlapping the panel */
.hero__float {
  position: absolute; right: -10px; bottom: -20px; z-index: 7;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero__float-ico { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--tint-tp); color: var(--navy); display: grid; place-items: center; }
.hero__float-ico svg { width: 22px; height: 22px; }
.hero__float strong { display: block; font-family: var(--f-display); color: var(--heading); font-size: 1rem; line-height: 1.1; }
.hero__float span { font-size: .82rem; color: var(--muted); }

/* ---------- Marquee strip (brands) ---------- */
.strip { border-block: 1px solid var(--line-soft); background: var(--white); }
.strip__row { display: flex; align-items: center; gap: clamp(28px, 6vw, 80px); padding-block: 20px; flex-wrap: wrap; justify-content: center; }
.strip__label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.strip__brand { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.1rem, .9rem + 1vw, 1.55rem); color: var(--heading); letter-spacing: -.01em; }
.strip__brand span { color: var(--red); }

/* ---------- Value props ---------- */
.props { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.props--3 { grid-template-columns: repeat(3, 1fr); }
.prop {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 28px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.prop::before { content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy)); border-radius: 0 0 3px 3px; transform: scaleX(.4); transform-origin: left; transition: transform .4s var(--ease); }
.prop:hover::before { transform: scaleX(1); }
.prop__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--tint-tp); color: var(--navy); display: grid; place-items: center; margin-bottom: 18px; }
.prop__ico svg { width: 24px; height: 24px; }
.prop h3 { font-size: 1.16rem; }
.prop p { margin-top: 9px; color: var(--muted); font-size: .96rem; }

/* ---------- Section framing on paper ---------- */
.panel { background: var(--white); border-block: 1px solid var(--line-soft); }
.panel--sunken { background: var(--paper-2); }

/* ---------- Brands ---------- */
.brands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.brandcard {
  border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--line);
  background: var(--white); box-shadow: var(--shadow); display: flex; flex-direction: column; min-height: 220px;
}
.brandcard__name { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: var(--heading); }
.brandcard__badge { align-self: flex-start; margin-bottom: 16px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.badge--premium { background: #efe9ff; color: #4b32b5; }
.badge--value   { background: var(--tint-tp); color: var(--navy); }
.badge--essent  { background: var(--tint-np); color: #1f7a4d; }
.badge--bulk    { background: var(--tint-kt); color: #b5601a; }
.brandcard p { margin-top: 10px; color: var(--muted); font-size: .96rem; }
.brandcard__foot { margin-top: auto; padding-top: 18px; font-weight: 700; color: var(--red); font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Product grid ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.chip {
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white);
  font-weight: 600; font-size: .92rem; color: var(--ink); transition: all .2s;
}
.chip:hover { border-color: var(--navy); }
.chip[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.pcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #d7cfbe; }
.pcard__media { position: relative; aspect-ratio: 4 / 3; background: transparent; overflow: hidden; }
/* Image is absolutely positioned + centered so a taller/wider pack can never
   resize its tile — every card keeps an identical media box, and the
   transparent PNG sits directly on the card (no grey box). Height-first
   caps keep the visible pack height consistent across products. */
.pcard__media img { position: absolute; inset: 0; margin: auto; width: auto; height: auto; max-width: 88%; max-height: 86%; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(20,18,58,.18)); transition: transform .35s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.05) rotate(-1deg); }
.pcard__brand { position: absolute; top: 12px; left: 12px; font-family: var(--f-display); font-weight: 800; font-size: .8rem; color: var(--navy); background: rgba(255,255,255,.85); padding: 4px 10px; border-radius: 999px; }
.pcard__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard__cat { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.pcard__name { font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; color: var(--heading); margin-top: 6px; line-height: 1.15; }
.pcard__pack { font-size: .88rem; color: var(--muted); margin-top: 6px; }
.pcard__desc { font-size: .9rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.pcard__foot { margin-top: auto; padding-top: 16px; }
.pcard__enquire {
  width: 100%; padding: 12px 16px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); font-weight: 700; font-size: .92rem; color: var(--heading);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s;
}
.pcard__enquire:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pcard__enquire svg { width: 16px; height: 16px; }
.no-results { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 40px 0; display: none; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--white); padding: 30px 24px; }
.stat__v { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem); color: var(--red); line-height: 1; letter-spacing: -.02em; }
.stat__l { margin-top: 12px; font-size: .92rem; color: var(--muted); }

/* ---------- Split feature (about teaser) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); aspect-ratio: 5 / 4; display: grid; place-items: center; padding: 30px; position: relative; }
.split__media .weave { position: absolute; inset: 0; opacity: .3; }
.split__media img { position: relative; max-height: 100%; width: auto; filter: drop-shadow(0 20px 26px rgba(20,18,58,.2)); }
.checklist { margin-top: 24px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--red); margin-top: 1px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: #fff; border-radius: clamp(18px, 3vw, 28px); padding: clamp(38px, 6vw, 72px); }
.cta-band .weave { position: absolute; inset: 0; opacity: .16; }
.cta-band__in { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 14px; max-width: 46ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; margin-top: 40px; display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--heading); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 24px; height: 24px; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--red); border-radius: 2px; inset: 0; margin: auto; }
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; transition: transform .25s var(--ease); }
.faq-item[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item__body { padding: 0 22px 22px; color: var(--muted); }

/* ---------- Forms ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px); align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.field { margin-top: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--heading); margin-bottom: 7px; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--paper); font: inherit; color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); background: #fff; box-shadow: var(--ring); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23262261' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { margin-top: 18px; font-size: .85rem; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.form-note svg { flex: none; width: 18px; height: 18px; color: var(--navy); margin-top: 1px; }
.form-actions { margin-top: 24px; }
.field-error { display: none; color: var(--red-600); font-size: .82rem; font-weight: 600; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); }
.field.invalid .field-error { display: block; }

/* Aside contact details */
.contact-aside { display: grid; gap: 14px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.contact-line__ico { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--tint-tp); color: var(--navy); display: grid; place-items: center; }
.contact-line__ico svg { width: 20px; height: 20px; }
.contact-line h3 { font-size: 1rem; }
.contact-line a, .contact-line p { color: var(--muted); font-size: .95rem; margin-top: 3px; }
.contact-line a:hover { color: var(--red); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--white); border-bottom: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.page-hero .weave { position: absolute; inset: 0; opacity: .12; pointer-events: none; }
.page-hero__in { position: relative; padding-block: clamp(40px, 6vw, 76px); max-width: 64ch; }
.page-hero h1 { margin-top: 16px; }
.page-hero p { margin-top: 18px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--red); }
.crumbs span { color: var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); position: relative; overflow: hidden; }
.site-footer .weave { position: absolute; inset: 0; opacity: .1; }
.site-footer__grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; padding-block: clamp(48px, 6vw, 72px); }
.site-footer .brand__name { color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--f-display); font-size: 1rem; margin-bottom: 16px; letter-spacing: 0; }
.site-footer p { color: rgba(255,255,255,.66); font-size: .93rem; margin-top: 14px; max-width: 34ch; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact p { color: rgba(255,255,255,.66); }
.site-footer__bar { position: relative; border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: .86rem; }
.footer-brands { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-brands span { font-family: var(--f-display); font-weight: 700; color: rgba(255,255,255,.9); }
.footer-brochure { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; padding: 10px 16px; border-radius: 999px; background: var(--red); color: #fff !important; font-weight: 700; font-size: .9rem; line-height: 1; transition: transform .15s ease, filter .15s ease; }
.footer-brochure i { font-size: .95rem; }
.footer-brochure:hover { transform: translateY(-1px); filter: brightness(1.08); }

/* ---------- 404 ---------- */
.err { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: 80px; position: relative; }
.err__code { font-family: var(--f-display); font-weight: 800; font-size: clamp(5rem, 3rem + 14vw, 11rem); line-height: .9; color: var(--heading); letter-spacing: -.04em; }
.err__code span { color: var(--red); }
.err p { margin-top: 14px; color: var(--muted); max-width: 46ch; margin-inline: auto; }
.err__actions { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(30px); background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s var(--ease); z-index: 90; display: flex; gap: 10px; align-items: center; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: #7ee2a8; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1020px) {
  .props, .brands, .product-grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy, .hero__sub { max-width: none; }
  .hero__showcase { max-width: 460px; width: 100%; margin-inline: auto; }
  .hero__float { right: 0; }
  .split { grid-template-columns: 1fr; }
  .cta-band__in { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
  .form-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  /* Safari clips a position:fixed child of a backdrop-filtered ancestor to
     that ancestor's box — which would hide the drop-down menu. Drop the
     filter here and use a solid header so the fixed menu can escape it. */
  .site-header,
  [data-theme="dark"] .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--paper); }
  /* Mobile nav */
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 55; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 22px;
    transform: translateY(-130%); transition: transform .32s var(--ease), box-shadow .32s var(--ease);
    box-shadow: none; visibility: hidden;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateY(0); box-shadow: var(--shadow-lg); visibility: visible; }
  /* keep it visible through the slide-up close, then hide so no shadow peeks */
  .nav { transition: transform .32s var(--ease), box-shadow .32s var(--ease), visibility 0s linear .32s; }
  body.nav-open .nav { transition: transform .32s var(--ease), box-shadow .32s var(--ease), visibility 0s; }
  .nav a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
}
@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .props, .props--3, .brands, .product-grid, .stats, .site-footer__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  /* Tighter, balanced mobile header so logo + name + toggles never crowd */
  .brand__tag { display: none; }
  .brand img { width: 44px; height: 44px; }
  .brand { gap: 10px; }
  .brand__name { font-size: 1.05rem; }
  .site-header__bar { gap: 10px; }
  .theme-toggle, .nav-toggle { width: 42px; height: 42px; }
  .header-cta { gap: 8px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: clamp(1.95rem, 6.4vw, 2.5rem); }
  .page-hero h1 { font-size: clamp(1.9rem, 6.2vw, 2.6rem); }
  .hero__brands { gap: 10px 16px; }
  .hero__brands strong { font-size: 1.05rem; }
  .hero__float { position: static; margin: 16px auto 0; max-width: none; }
}

/* ==========================================================================
   Dark mode — token overrides. Brand navy stays a *background* colour;
   text that used navy now reads from --heading, which flips light here.
   ========================================================================== */
[data-theme="dark"] {
  color-scheme: dark;
  --paper:     #12102a;   /* page ground */
  --paper-2:   #1d1b3d;   /* recessed panels */
  --white:     #1a1838;   /* cards / panels */
  --ink:       #d8d6ea;
  --muted:     #a4a1c2;
  --heading:   #eceafa;
  --line:      #322f5c;
  --line-soft: #29274e;

  --tint-tp:   #22305c;
  --tint-kt:   #3a2c1e;
  --tint-np:   #1e3a2c;
  --tint-sv:   #3a2130;

  --shadow:    0 1px 2px rgba(0,0,0,.4), 0 18px 40px -24px rgba(0,0,0,.7);
  --shadow-lg: 0 30px 70px -34px rgba(0,0,0,.8);
  --ring:      0 0 0 3px rgba(150,146,224,.4);
}
[data-theme="dark"] body { background: var(--paper); }
[data-theme="dark"] .site-header { background: rgba(18,16,42,.82); border-bottom-color: var(--line-soft); }
/* Weave lines lift slightly so they read on the dark ground */
[data-theme="dark"] .weave {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='64'%3E%3Cpath d='M0 64 L64 6 L128 64 M0 64 L64 22 L128 64 M0 64 L64 38 L128 64' fill='none' stroke='%237b78ad' stroke-width='1'/%3E%3C/svg%3E");
}
[data-theme="dark"] .hero__stage .halo { background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.05), transparent 68%); }
[data-theme="dark"] .prop__ico, [data-theme="dark"] .contact-line__ico { color: var(--heading); }
[data-theme="dark"] .nav-toggle { background: var(--paper-2); }
[data-theme="dark"] .nav-toggle span,
[data-theme="dark"] .nav-toggle span::before,
[data-theme="dark"] .nav-toggle span::after { background: var(--heading); }
[data-theme="dark"] body.nav-open .nav-toggle span { background: transparent; }
[data-theme="dark"] .pcard__brand { background: rgba(20,18,44,.82); color: var(--heading); }
/* White button sitting on the navy CTA band — nudge for dark comfort */
[data-theme="dark"] .btn--on-navy { background: #eceafa; color: var(--navy); }
[data-theme="dark"] .btn--on-navy:hover { background: #fff; }
/* Select caret → light stroke so it shows on dark inputs */
[data-theme="dark"] .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9c7e6' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); }

/* ==========================================================================
   Product lightbox — bespoke, zero-dependency. Click a product image to open
   a larger, zoomable view with details and a prefilled enquiry link.
   ========================================================================== */
.pcard__media { cursor: zoom-in; }
.pcard__media::after {
  content: ""; position: absolute; right: 12px; bottom: 12px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23262261' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E") center/18px no-repeat;
  border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease); pointer-events: none;
}
.pcard:hover .pcard__media::after { opacity: 1; transform: translateY(0); }

.pmodal { position: fixed; inset: 0; z-index: 100; display: none; }
.pmodal.open { display: block; }
.pmodal__backdrop { position: absolute; inset: 0; background: rgba(16,14,40,.6); backdrop-filter: blur(5px); opacity: 0; transition: opacity .3s; }
.pmodal.open .pmodal__backdrop { opacity: 1; }
.pmodal__dialog {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%) scale(.98);
  width: min(940px, calc(100% - 36px)); max-height: calc(100% - 44px); overflow: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); opacity: 0; transition: transform .38s var(--ease), opacity .3s;
}
.pmodal.open .pmodal__dialog { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.pmodal__grid { display: grid; grid-template-columns: 1.05fr 1fr; }
.pmodal__media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 42%, var(--paper-2), var(--white));
}
.pmodal__media .weave { position: absolute; inset: 0; opacity: .22; }
.pmodal__media img {
  position: relative; max-width: 78%; max-height: 78%; width: auto; height: auto;
  filter: drop-shadow(0 22px 30px rgba(20,18,58,.22)); cursor: zoom-in;
  transition: transform .35s var(--ease); transform-origin: center center; will-change: transform;
}
.pmodal__media.zoomed { cursor: zoom-out; }
.pmodal__media.zoomed img { transform: scale(2.1); cursor: zoom-out; }
.pmodal__hint { position: absolute; left: 14px; bottom: 14px; font-size: .74rem; font-weight: 600; color: var(--muted); background: var(--white); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; }
.pmodal__body { padding: clamp(24px, 3.5vw, 40px); display: flex; flex-direction: column; }
.pmodal__brand { font-family: var(--f-display); font-weight: 800; font-size: .82rem; letter-spacing: .04em; color: var(--heading); }
.pmodal__cat { display: inline-block; margin-top: 4px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.pmodal__name { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); color: var(--heading); margin-top: 10px; line-height: 1.08; }
.pmodal__pack { color: var(--muted); font-weight: 600; margin-top: 8px; }
.pmodal__desc { color: var(--ink); margin-top: 16px; line-height: 1.6; }
.pmodal__specs { margin-top: 18px; display: grid; gap: 10px; }
.pmodal__specs li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: .95rem; }
.pmodal__specs svg { flex: none; width: 18px; height: 18px; color: var(--red); margin-top: 3px; }
.pmodal__actions { margin-top: auto; padding-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.pmodal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line); display: grid; place-items: center; color: var(--heading);
  box-shadow: var(--shadow); transition: transform .2s, border-color .2s;
}
.pmodal__close:hover { transform: rotate(90deg); border-color: var(--heading); }
.pmodal__close svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .pmodal__grid { grid-template-columns: 1fr; }
  .pmodal__media { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Product marquee — elegant auto-scrolling showcase of the full range.
   ========================================================================== */
.marquee-wrap {
  position: relative; overflow: hidden; margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marquee 80s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { flex: 0 0 auto; width: 184px; }
/* Transparent tiles — just the product image floating on the page, seamless. */
.marquee-card { background: transparent; border: none; box-shadow: none; padding: 6px; text-align: center; }
.marquee-media { position: relative; height: 176px; }
.marquee-media img { position: absolute; inset: 0; margin: auto; width: auto; height: auto; max-width: 92%; max-height: 92%; filter: drop-shadow(0 16px 20px rgba(20,18,58,.18)); transition: transform .35s var(--ease); }
.marquee-item:hover .marquee-media img { transform: translateY(-6px) scale(1.05); }
.marquee-cat, .marquee-name { display: none; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .marquee-wrap { overflow-x: auto; } }

/* ==========================================================================
   Fade slideshow — softly crossfades one product image at a time.
   ========================================================================== */
.fadeshow-stage { position: relative; height: clamp(240px, 34vw, 340px); max-width: 560px; margin: 44px auto 0; }
/* Grid-stack: every image occupies the same cell and is centered — reliable
   crossfade + centering (margin:auto absolute-centering fails on auto height). */
.fadeshow { position: absolute; inset: 0; display: grid; place-items: center; }
.fadeshow__img {
  grid-area: 1 / 1; width: auto; height: auto; max-width: 74%; max-height: 74%;
  opacity: 0; transition: opacity 1.1s var(--ease); filter: drop-shadow(0 20px 26px rgba(20,18,58,.2));
}
.fadeshow__img.is-active { opacity: 1; }
/* Hero panel is navy — bigger product + deeper shadow so it reads */
.hero__panel .fadeshow__img { max-width: 66%; max-height: 66%; filter: drop-shadow(0 26px 32px rgba(0,0,0,.55)); }
.hero__panel .fadeshow__img.is-active { animation: floaty 7s var(--ease) infinite; }
@media (prefers-reduced-motion: reduce) { .fadeshow__img { transition: none; } .hero__panel .fadeshow__img.is-active { animation: none; } }

/* ==========================================================================
   Product texture — faint grayscale product collage replacing the chevrons.
   ========================================================================== */
.prodbg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("/assets/img/brand/product-texture.png");
  background-size: 660px auto; background-repeat: repeat; opacity: .05;
}
[data-theme="dark"] .prodbg { filter: invert(1) brightness(1.5); opacity: .06; }

/* ==========================================================================
   Floating helpers — scroll-to-top + chat assistant (JS-injected).
   ========================================================================== */
.to-top {
  position: fixed; right: 22px; bottom: 94px; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%; background: var(--white); border: 1px solid var(--line);
  color: var(--heading); display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease), background .2s, color .2s, border-color .2s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.to-top svg { width: 20px; height: 20px; }
body.chat-open .to-top { opacity: 0; pointer-events: none; }

/* Launcher */
.chat-launcher {
  position: fixed; right: 22px; bottom: 22px; z-index: 82;
  width: 60px; height: 60px; border-radius: 50%; background: var(--red); color: #fff; border: none;
  display: grid; place-items: center; box-shadow: 0 16px 30px -10px rgba(227,30,36,.6);
  transition: transform .25s var(--ease), opacity .2s;
}
.chat-launcher:hover { transform: translateY(-3px) scale(1.04); }
.chat-launcher svg { width: 27px; height: 27px; }
.chat-launcher .chat-dot { position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; border-radius: 50%; background: #35c46f; border: 2.5px solid var(--paper); }
.chat-launcher::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--red); opacity: .5; animation: chatPulse 2.4s var(--ease) infinite; }
@keyframes chatPulse { 0% { transform: scale(1); opacity: .5; } 70% { transform: scale(1.35); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .chat-launcher::after { animation: none; } }
body.chat-open .chat-launcher { opacity: 0; pointer-events: none; }

/* Panel */
.chat-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 83;
  width: min(372px, calc(100vw - 32px)); height: min(560px, calc(100dvh - 90px));
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(.98); transform-origin: bottom right; pointer-events: none; visibility: hidden;
  transition: opacity .25s, transform .28s var(--ease), visibility 0s .28s;
}
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition: opacity .25s, transform .28s var(--ease), visibility 0s; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--navy); color: #fff; }
.chat-head__avatar { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex: none; }
.chat-head__avatar img { width: 30px; height: 30px; }
.chat-head__title { font-family: var(--f-display); font-weight: 800; font-size: 1rem; line-height: 1.1; }
.chat-head__status { font-size: .74rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.chat-head__status .d { width: 8px; height: 8px; border-radius: 50%; background: #35c46f; }
.chat-close { margin-left: auto; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; transition: background .2s; }
.chat-close:hover { background: rgba(255,255,255,.28); }
.chat-close svg { width: 18px; height: 18px; }

.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--paper); }
.chat-msg { max-width: 84%; padding: 10px 14px; border-radius: 15px; font-size: .92rem; line-height: 1.45; animation: chatIn .3s var(--ease); }
@keyframes chatIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.chat-msg--bot { align-self: flex-start; background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--ink); }
.chat-msg--user { align-self: flex-end; background: var(--navy); color: #fff; border-bottom-right-radius: 5px; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; margin-top: 2px; }
.chat-quick button { border: 1.5px solid var(--navy); color: var(--heading); background: var(--white); padding: 8px 13px; border-radius: 999px; font-weight: 600; font-size: .85rem; transition: all .2s; }
.chat-quick button:hover { background: var(--navy); color: #fff; }
.chat-typing { align-self: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 15px; border-bottom-left-radius: 5px; padding: 12px 16px; display: flex; gap: 5px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: chatBlink 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; } .chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatBlink { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.chat-send-cta { align-self: stretch; margin-top: 6px; }

.chat-foot { padding: 12px; border-top: 1px solid var(--line); background: var(--white); display: flex; gap: 8px; align-items: center; }
.chat-foot input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 15px; font: inherit; color: var(--ink); background: var(--paper); transition: border-color .2s, background .2s; }
.chat-foot input:focus { outline: none; border-color: var(--navy); background: #fff; }
.chat-foot__send { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; border: none; display: grid; place-items: center; transition: background .2s, transform .2s; }
.chat-foot__send:hover { background: var(--red-600); transform: scale(1.05); }
.chat-foot__send svg { width: 19px; height: 19px; }
.chat-foot[hidden] { display: none; }
.chat-note { text-align: center; font-size: .72rem; color: var(--muted); padding: 8px 12px 12px; background: var(--white); }

@media (max-width: 560px) {
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 12px; height: min(72dvh, 560px); }
  .chat-launcher { right: 16px; bottom: 16px; }
  .to-top { right: 18px; bottom: 86px; }
}

/* Font Awesome icons inside chat bubbles */
.chat-msg--bot .fas { color: var(--red); margin-right: 3px; }
.chat-launcher .chat-dot { z-index: 1; }

/* Chat product multi-select */
.chat-products { align-self: stretch; display: flex; flex-direction: column; gap: 6px; }
.chat-products__cat { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.chat-products__row { display: flex; flex-wrap: wrap; gap: 6px; }
.chat-prod { border: 1.5px solid var(--line); background: var(--white); color: var(--ink); padding: 7px 12px; border-radius: 999px; font-size: .82rem; font-weight: 600; transition: background .15s, color .15s, border-color .15s; display: inline-flex; align-items: center; gap: 6px; }
.chat-prod:hover { border-color: var(--navy); }
.chat-prod.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.chat-prod.on::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .68rem; }

/* Form multi-select (product picker on contact form) */
.ms-label-hint { font-weight: 500; color: var(--muted); font-size: .82rem; }
.multiselect { border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.field.invalid .multiselect { border-color: var(--red); }
.ms-group { display: flex; flex-direction: column; gap: 8px; }
.ms-group + .ms-group { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.ms-cat { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.ms-row { display: flex; flex-wrap: wrap; gap: 8px; }
.ms-chip { border: 1.5px solid var(--line); background: var(--white); color: var(--ink); padding: 8px 13px; border-radius: 999px; font-size: .86rem; font-weight: 600; transition: background .15s, color .15s, border-color .15s; display: inline-flex; align-items: center; gap: 7px; }
.ms-chip:hover { border-color: var(--navy); }
.ms-chip.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.ms-chip.on::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .72rem; }

/* Chat reset / start-over button */
.chat-reset { width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; margin-left: auto; transition: background .2s, transform .3s var(--ease); }
.chat-reset:hover { background: rgba(255,255,255,.28); transform: rotate(-45deg); }
.chat-reset i { font-size: 15px; }
.chat-head .chat-close { margin-left: 6px; }

/* ==========================================================================
   Order Planner
   ========================================================================== */
.planner-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(22px, 4vw, 44px); }
.pl-muted { color: var(--muted); margin-top: 8px; }
.pl-step-head { position: relative; margin-bottom: 22px; }
.pl-step-num { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.pl-step-head h2 { margin-top: 8px; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); }
.pl-h-ico { color: var(--red); margin-right: 6px; }
.pl-back { background: none; border: none; color: var(--muted); font-weight: 600; font-size: .9rem; padding: 0; margin-bottom: 12px; display: flex; width: fit-content; align-items: center; gap: 7px; transition: color .2s; }
.pl-back:hover { color: var(--heading); }

/* Step 1 — segment grid */
.pl-seg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pl-seg { text-align: left; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 18px 16px 16px; display: flex; flex-direction: column; gap: 4px; transition: transform .2s var(--ease), border-color .2s, background .2s; cursor: pointer; }
.pl-seg:hover { transform: translateY(-4px); border-color: var(--navy); background: var(--white); }
.pl-seg__ico { width: 44px; height: 44px; border-radius: 11px; background: var(--tint-tp); color: var(--navy); display: grid; place-items: center; font-size: 1.15rem; margin-bottom: 8px; }
.pl-seg__name { font-family: var(--f-display); font-weight: 700; color: var(--heading); font-size: 1.02rem; line-height: 1.15; }
.pl-seg__blurb { font-size: .84rem; color: var(--muted); }

/* Step 2 — inputs */
.pl-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pl-field label { display: block; font-weight: 700; font-size: .9rem; color: var(--heading); margin-bottom: 7px; }
.pl-input-wrap { position: relative; display: flex; align-items: center; }
.pl-input-wrap input { width: 100%; padding: 14px 46px 14px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--paper); font: inherit; font-weight: 700; font-size: 1.1rem; color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s; -moz-appearance: textfield; appearance: textfield; }
/* Hide the native number spinner so it doesn't overlap the suffix label */
.pl-input-wrap input::-webkit-outer-spin-button,
.pl-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pl-input-wrap input:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: var(--ring); }
.pl-suffix { position: absolute; right: 14px; font-size: .85rem; font-weight: 600; color: var(--muted); pointer-events: none; }
.pl-cta { margin-top: 24px; }
.pl-cta i { margin-left: 4px; }

/* Step 3 — results */
.pl-result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; }
.pl-rcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 16px; text-align: center; }
.pl-rcard__ico { width: 42px; height: 42px; margin: 0 auto 10px; border-radius: 11px; background: var(--white); border: 1px solid var(--line); color: var(--red); display: grid; place-items: center; font-size: 1.05rem; }
.pl-rcard__qty { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: var(--heading); line-height: 1; }
.pl-rcard__unit { display: block; font-size: .82rem; color: var(--muted); margin-top: 4px; }
.pl-rcard__cat { display: block; font-size: .8rem; font-weight: 700; color: var(--navy); margin-top: 10px; }
.pl-note { margin-top: 18px; font-size: .86rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.pl-note i { color: var(--navy); margin-top: 2px; }
.pl-note--lead { font-size: .98rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 22px; }
.pl-rec-head { margin-top: 30px; font-size: 1.15rem; display: flex; align-items: center; gap: 12px; }
.pl-tier { font-family: var(--f-body); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #4b32b5; background: #efe9ff; padding: 4px 10px; border-radius: 999px; }
.pl-rec { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.pl-rec-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 12px 14px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: transform .2s var(--ease), border-color .2s, background .2s, box-shadow .2s; }
.pl-rec-card:hover { transform: translateY(-4px); border-color: #d7cfbe; background: var(--white); box-shadow: var(--shadow); }
.pl-rec-card__media { position: relative; width: 100%; height: 92px; }
.pl-rec-card__media img { position: absolute; inset: 0; margin: auto; width: auto; height: auto; max-width: 86%; max-height: 86%; filter: drop-shadow(0 8px 12px rgba(20,18,58,.16)); }
.pl-rec-card__name { font-size: .82rem; font-weight: 700; color: var(--heading); line-height: 1.2; }
.pl-rec-card__cta { margin-top: auto; font-size: .74rem; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 5px; }
.pl-rec-card__cta i { font-size: .68rem; transition: transform .2s var(--ease); }
.pl-rec-card:hover .pl-rec-card__cta i { transform: translateX(3px); }
@media (max-width: 820px) { .pl-rec { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .pl-rec { grid-template-columns: repeat(2, 1fr); } }
.pl-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }

@media (prefers-reduced-motion: reduce) { .pl-seg:hover, .pl-rec__chip:hover { transform: none; } }
@media (max-width: 820px) {
  .pl-seg-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-result-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pl-form { grid-template-columns: 1fr; }
  .pl-seg-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Blog (listing + article) ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.blog-grid--2 { margin-top: 26px; }

.bcard {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 26px 22px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.bcard:hover { transform: translateY(-4px); border-color: var(--navy); box-shadow: 0 18px 44px rgba(38,34,97,.12); }
.bcard__link { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.bcard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bcard__cat {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--tint-tp); color: var(--navy);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.bcard__mins { font-size: .78rem; color: var(--muted); font-weight: 600; }
.bcard__mins i { margin-right: 4px; }
.bcard__title { font-family: var(--f-display); font-size: 1.32rem; line-height: 1.22; color: var(--heading); }
.bcard__excerpt { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.bcard__foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; color: var(--muted); font-weight: 600;
}
.bcard__go { color: var(--red); font-weight: 800; }
.bcard__go i { transition: transform .25s var(--ease); margin-left: 4px; }
.bcard:hover .bcard__go i { transform: translateX(4px); }

/* Article */
.post-hero { background: var(--white); border-bottom: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.post-hero .weave { position: absolute; inset: 0; opacity: .12; pointer-events: none; }
.post-hero__in { position: relative; padding-block: clamp(38px, 5.5vw, 68px); max-width: 62ch; }
.post-hero h1 { margin-top: 14px; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; }
.post-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; font-size: .85rem; color: var(--muted); font-weight: 600; }
.post-meta i { margin-right: 6px; color: var(--red); }

.post-wrap { max-width: 72ch; }
.prose { color: var(--ink); font-size: 1.02rem; line-height: 1.75; }
.prose > * + * { margin-top: 20px; }
.prose h2 {
  font-family: var(--f-display); color: var(--heading);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.25;
  margin-top: 44px; padding-top: 4px;
}
.prose h2 + p, .prose h2 + ul, .prose h2 + blockquote { margin-top: 14px; }
.prose p.lead { font-size: 1.16rem; line-height: 1.65; color: var(--ink); font-weight: 500; }
.prose strong { color: var(--heading); font-weight: 700; }
.prose a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--red-600); }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 2px; background: var(--red); transform: rotate(45deg);
}
.prose blockquote {
  margin-block: 30px; padding: 22px 26px; border-left: 3px solid var(--red);
  background: var(--paper-2); border-radius: 0 14px 14px 0;
}
.prose blockquote p { font-family: var(--f-display); font-size: 1.12rem; line-height: 1.5; color: var(--heading); margin: 0; }

.post-share { display: flex; align-items: center; gap: 12px; margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); }
.post-share span { font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.post-share a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy); background: var(--white); transition: all .2s;
}
.post-share a:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-2px); }

[data-theme="dark"] .bcard,
[data-theme="dark"] .post-share a { background: var(--paper-2); }
[data-theme="dark"] .bcard__cat { background: rgba(255,255,255,.07); color: #fff; }
[data-theme="dark"] .prose blockquote { background: rgba(255,255,255,.05); }

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-wrap { max-width: none; }
  .prose { font-size: .99rem; }
  .post-share { flex-wrap: wrap; }
}

/* ---------- Find us (map) ---------- */
.map-card {
  margin-top: 28px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--paper-2); box-shadow: 0 14px 40px rgba(38,34,97,.08);
}
.map-frame { display: block; width: 100%; height: clamp(280px, 42vh, 420px); border: 0; }
.map-actions {
  margin-top: 20px; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.map-addr { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.map-addr strong { color: var(--heading); }
.hours-closed { color: var(--red); font-weight: 700; }

/* ---------- Testimonials ---------- */
.tstm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.tstm {
  position: relative; display: flex; flex-direction: column; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tstm:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(38,34,97,.10); }
.tstm__mark { font-family: var(--f-display); font-size: 3rem; line-height: 1; color: var(--red); opacity: .28; }
.tstm__quote { color: var(--ink); font-size: 1rem; line-height: 1.7; flex: 1; }
.tstm__who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.tstm__logo {
  width: 44px; height: 44px; border-radius: 10px; object-fit: contain;
  background: var(--paper-2); border: 1px solid var(--line-soft); padding: 5px; flex: none;
}
.tstm__name { font-weight: 800; color: var(--heading); font-size: .95rem; }
.tstm__role { font-size: .82rem; color: var(--muted); }

[data-theme="dark"] .tstm { background: var(--paper-2); }

@media (max-width: 900px) { .tstm-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .map-actions { flex-direction: column; align-items: flex-start; } }

/* ---------- Footer social (renders when profile URLs are supplied) ---------- */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: #fff; transition: all .2s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* Footer phone lines (sales vs office) */
.foot-tel span { display:inline-block; min-width:46px; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:rgba(255,255,255,.45); }

/* ITL-0152 / catalogue — product spec chips on cards (matches brochure) */
.pcard__specs{ display:flex; flex-wrap:wrap; gap:6px; margin:2px 0 12px; }
.pcard__specs .spec{ font-size:.72rem; font-weight:600; background:var(--paper); color:var(--navy);
  border:1px solid var(--line); border-radius:999px; padding:4px 10px; line-height:1; white-space:nowrap; }
.pcard__specs .spec--code{ background:var(--navy); color:#fff; border-color:var(--navy); letter-spacing:.02em; }

/* ==========================================================================
   Cookie notice — sits bottom-LEFT because the chat launcher owns bottom-right.
   Uses the ply-line signature so it reads as part of the site, not a bolt-on.
   ========================================================================== */
.ckcard {
  position: fixed; z-index: 1200;
  left: var(--gutter); bottom: var(--gutter);
  width: min(420px, calc(100vw - (var(--gutter) * 2)));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(.985);
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}
.ckcard.is-open { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .ckcard { transition: none; } }

/* the signature: three hairlines, tissue plies */
.ckcard__ply {
  height: 5px;
  background:
    linear-gradient(var(--red), var(--red)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 0 2px / 100% 1px no-repeat,
    linear-gradient(var(--red), var(--red)) 0 4px / 100% 1px no-repeat;
  opacity: .85;
}
.ckcard__in { padding: 20px 22px 18px; }
.ckcard .eyebrow { margin-bottom: 8px; }
.ckcard__title {
  font-family: var(--f-display); color: var(--heading);
  font-size: 1.22rem; line-height: 1.25; margin-bottom: 8px;
}
.ckcard__body { font-size: .93rem; line-height: 1.6; color: var(--muted); }

.ckcard__rows { margin: 16px 0 0; display: grid; gap: 2px; }
.ckrow {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-top: 1px solid var(--line-soft);
}
.ckrow__name { display: block; font-weight: 700; font-size: .9rem; color: var(--heading); }
.ckrow__note { display: block; font-size: .8rem; line-height: 1.45; color: var(--muted); margin-top: 2px; }
.ckrow__locked {
  flex: none; font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); background: var(--paper-2); border-radius: 999px; padding: 5px 10px;
}

/* toggle */
.ckswitch {
  flex: none; display: inline-flex; align-items: center; gap: 9px;
  background: none; border: 0; padding: 4px; border-radius: 999px;
}
.ckswitch__track {
  width: 42px; height: 24px; border-radius: 999px; background: #cfc9bb;
  position: relative; transition: background .2s var(--ease); display: block;
}
.ckswitch__dot {
  position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); box-shadow: 0 1px 3px rgba(20,18,58,.35);
  transition: transform .2s var(--ease);
}
.ckswitch[aria-checked="true"] .ckswitch__track { background: var(--navy); }
.ckswitch[aria-checked="true"] .ckswitch__dot { transform: translateX(18px); }
.ckswitch__label {
  font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); min-width: 26px; text-align: left;
}
.ckswitch[aria-checked="true"] .ckswitch__label { color: var(--navy); }

.ckcard__actions { display: flex; gap: 10px; margin-top: 18px; }
.ckcard__actions .btn { flex: 1; justify-content: center; padding-inline: 14px; font-size: .9rem; }
.ckcard__links {
  margin-top: 14px; display: flex; gap: 10px; align-items: center;
  font-size: .8rem; color: var(--muted);
}
.ckcard__links a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.ckcard__links a:hover { color: var(--red); }

[data-theme="dark"] .ckcard { background: var(--paper-2); border-color: var(--line); }
[data-theme="dark"] .ckswitch__track { background: #4a4663; }
/* --navy on a dark ground is invisible, so the "on" state reads from --heading,
   which flips light in dark mode, and the track picks up a lighter blue. */
[data-theme="dark"] .ckswitch[aria-checked="true"] .ckswitch__track { background: #5b57b8; }
[data-theme="dark"] .ckswitch[aria-checked="true"] .ckswitch__label { color: var(--heading); }
[data-theme="dark"] .ckrow__locked { background: var(--line-soft); color: var(--ink); }

@media (max-width: 560px) {
  .ckcard {
    left: 10px; right: 10px; bottom: 10px;
    width: auto; max-height: 82vh; overflow-y: auto;
  }
  .ckcard__actions { flex-direction: column-reverse; }
}

/* the footer's cookie-settings link */
.footer-links button[data-cookie-prefs] {
  background: none; border: 0; padding: 0; text-align: left;
  font: inherit; color: inherit; cursor: pointer;
}

/* footer legal row + inline "looks like a link" buttons */
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; }
.footer-legal a, .footer-legal button {
  font-size: .82rem; color: rgba(255,255,255,.72);
  background: none; border: 0; padding: 0; font-family: inherit; cursor: pointer;
}
.footer-legal a:hover, .footer-legal button:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.linkish {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px;
}
.linkish:hover { color: var(--red-600); }

/* Skip link — invisible until it is focused by keyboard or screen reader. */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
  font-weight: 700; font-size: .9rem; transition: top .18s var(--ease);
}
.skip:focus { top: 12px; }

/* Legal pages lean on h3 inside .prose; give it a size of its own. */
.prose h3 {
  font-family: var(--f-display); color: var(--heading);
  font-size: 1.06rem; line-height: 1.3; margin-top: 28px;
}
.prose h3 + p, .prose h3 + ul { margin-top: 10px; }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em; background: var(--paper-2); border: 1px solid var(--line-soft);
  border-radius: 6px; padding: 1px 6px;
}

/* ==========================================================================
   Product enquiry — two columns instead of one long scroll.
   Mayur, 2 Sep 2026: the form ran the full height of the page while the space
   either side of it sat empty. The product picker is what made it tall, so it
   takes a column of its own and everything else sits beside it.
   ========================================================================== */
.form-card--wide { max-width: 1120px; margin: 34px auto 0; }

.enquiry-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(22px, 3vw, 44px); align-items: start; }
.enquiry-grid__products, .enquiry-grid__fields { min-width: 0; }

/* The first control in each column sets its own top edge, so the two columns
   start level instead of one sitting 18px lower than the other. */
.enquiry-grid .field--flush { margin-top: 0; }

/* Four categories in one column reads as a list; two-by-two reads as a menu
   and halves the height again. Only where there is room for it. */
@media (min-width: 1120px) {
  .enquiry-grid__products .multiselect {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; align-content: start;
  }
  .enquiry-grid__products .ms-group + .ms-group {
    margin-top: 0; padding-top: 0; border-top: 0;
  }
  /* Toilet Paper carries ten of the nineteen chips; let it keep the full width
     so the other three are not squeezed into a ragged column beside it.
     Serviettes has only two, so it spans the foot of the block rather than
     dangling in one column with empty space beside it — which is what made the
     left side run past the bottom of the right. */
  .enquiry-grid__products .ms-group:first-child,
  .enquiry-grid__products .ms-group:last-child { grid-column: 1 / -1; }
}

/* The note and the button belong to the right column, not the page. */
.enquiry-grid .form-note { margin-top: 16px; }
.enquiry-grid .form-actions { margin-top: 18px; }

@media (max-width: 900px) {
  .enquiry-grid { grid-template-columns: 1fr; }
  .enquiry-grid .field--flush { margin-top: 18px; }
  .enquiry-grid__products .field--flush { margin-top: 0; }
}

/* The enquiry section is mostly a form, so it does not need a full-height
   marketing header above it. Compact padding, and a heading that sits on the
   left of the card rather than centred over 62 characters of empty space —
   which was costing more vertical room than the two fields beside it. */
.section--form { padding-block: clamp(40px, 5vw, 64px); }
.section--form .section-head { max-width: 1120px; margin-inline: auto; text-align: left; }
.section--form .section-head h2 { margin-top: 8px; font-size: clamp(1.5rem, 1.2rem + 1vw, 1.9rem); }
.section--form .section-head p { margin-top: 8px; max-width: 62ch; }
.section--form .eyebrow--center { text-align: left; }
.section--form .form-card--wide { margin-top: 20px; }
@media (max-width: 900px) {
  .section--form .section-head { text-align: center; }
  .section--form .eyebrow--center { text-align: center; }
}
