@charset "utf-8";
/* ==========================================================================
   Alteks Boya — static site stylesheet
   1. Tokens          6. Buttons & links     11. Products
   2. Reset           7. Header & mega-menu  12. Printing designs
   3. Typography      8. Footer              13. Knowledge & articles
   4. Layout          9. Home                14. Forms (RFQ, contact, careers)
   5. Motion         10. Cards & media       15. Utilities & print
   ========================================================================== */

/* ------------------------------------------------------------ 1. Tokens -- */
:root {
  /* Surfaces — textile neutrals, warm off-whites, dark graphite */
  --paper:      #F7F6F3;
  --paper-2:    #EFEDE7;
  --paper-3:    #E4E1D8;
  --ink:        #0E1116;
  --ink-2:      #171B22;
  --ink-3:      #232833;

  /* Ink on paper */
  --text:       #14171C;
  --text-2:     #474C55;
  --muted:      #71757D;
  --warm:       #9A9282;

  /* Alteks red, used sparingly */
  --red:        #D8232A;
  --red-deep:   #A2151B;
  --red-tint:   rgba(216, 35, 42, .09);

  --line:       rgba(20, 23, 28, .14);
  --line-soft:  rgba(20, 23, 28, .07);
  --line-dark:  rgba(255, 255, 255, .14);
  --line-dark-soft: rgba(255, 255, 255, .07);

  --focus:      #1858D6;

  /* Type */
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
          "Helvetica Neue", "Noto Sans", "Noto Sans Arabic", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", "Roboto Mono",
          "Cascadia Mono", Menlo, Consolas, monospace;

  /* Fluid scale */
  --t-xs:   .75rem;
  --t-sm:   .8125rem;
  --t-base: 1.0625rem;
  --t-md:   clamp(1.125rem, .35vw + 1.05rem, 1.25rem);
  --t-lg:   clamp(1.35rem, .8vw + 1.15rem, 1.75rem);
  --t-xl:   clamp(1.75rem, 1.6vw + 1.35rem, 2.6rem);
  --t-2xl:  clamp(2.2rem, 3vw + 1.4rem, 4rem);
  --t-3xl:  clamp(2.6rem, 5.2vw + 1.2rem, 5.75rem);

  /* Rhythm */
  --wrap: 1440px;
  --gutter: clamp(1.15rem, 4vw, 4.5rem);
  --gap: clamp(1.25rem, 2.2vw, 2.5rem);
  --block: clamp(4rem, 8vw, 9rem);

  --radius: 2px;
  --radius-lg: 3px;
  --shadow: 0 1px 2px rgba(14, 17, 22, .05), 0 12px 34px -18px rgba(14, 17, 22, .35);
  --shadow-lift: 0 2px 6px rgba(14, 17, 22, .07), 0 26px 60px -28px rgba(14, 17, 22, .45);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* A fabric grid, used at very low opacity behind editorial blocks */
  --weave: repeating-linear-gradient(0deg, rgba(20,23,28,.05) 0 1px, transparent 1px 7px),
           repeating-linear-gradient(90deg, rgba(20,23,28,.05) 0 1px, transparent 1px 7px);
  --weave-dark: repeating-linear-gradient(0deg, rgba(255,255,255,.055) 0 1px, transparent 1px 7px),
                repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 7px);
}

/* ------------------------------------------------------------- 2. Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 var(--t-base)/1.65 var(--sans);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
[hidden] { display: none !important; }
img, svg, video, iframe { display: block; max-width: 100%; }
img, video { height: auto; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }
:target { scroll-margin-top: 7rem; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 1px;
}
.on-dark :focus-visible, .site-header :focus-visible, .foot :focus-visible { outline-color: #7FA9FF; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; inset-inline-start: 1rem; top: -100%; z-index: 200;
  background: var(--ink); color: #fff; padding: .85rem 1.4rem;
  font: 600 var(--t-sm)/1 var(--sans); letter-spacing: .04em; border-radius: var(--radius);
}
.skip:focus { top: 1rem; }
main:focus { outline: none; }

/* -------------------------------------------------------- 3. Typography -- */
.display, h1, h2, h3 { font-weight: 600; letter-spacing: -.025em; line-height: 1.08; }
h1 { font-size: var(--t-2xl); }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-lg); letter-spacing: -.018em; line-height: 1.2; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font: 500 var(--t-xs)/1 var(--mono);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.15rem;
}
.eyebrow__tick { width: 1.6rem; height: 2px; background: var(--red); flex: none; }
.on-dark .eyebrow { color: rgba(255, 255, 255, .58); }

.lead { font-size: var(--t-md); line-height: 1.55; color: var(--text-2); max-width: 62ch; }
.on-dark .lead { color: rgba(255, 255, 255, .74); }
.tech { font: 500 var(--t-sm)/1.4 var(--mono); letter-spacing: .02em; }

.section-head { max-width: 68ch; margin-bottom: clamp(2rem, 3.5vw, 3.4rem); }
.section-head__title { font-size: var(--t-xl); }
.section-head__intro { margin-top: 1rem; font-size: var(--t-md); color: var(--text-2); line-height: 1.55; }
.on-dark .section-head__intro { color: rgba(255, 255, 255, .72); }
.link-more {
  display: inline-block; margin-top: 1.4rem; font: 500 var(--t-sm)/1 var(--sans);
  letter-spacing: .04em; border-bottom: 1px solid var(--red); padding-bottom: .35rem;
  transition: color .2s var(--ease);
}
.link-more:hover { color: var(--red); }

/* ----------------------------------------------------------- 4. Layout -- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 980px; }
.wrap--reading { max-width: 760px; }
.block { padding-block: var(--block); }
.block--tight { padding-block: clamp(2.75rem, 5vw, 5rem); }
.on-dark { background: var(--ink); color: #fff; }
.on-dark--2 { background: var(--ink-2); color: #fff; }
.on-tint { background: var(--paper-2); }
.rule { height: 1px; background: var(--line); border: 0; }
.on-dark .rule { background: var(--line-dark); }

.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.cols-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }

/* Editorial asymmetry: 7/5 split that collapses cleanly */
.split { display: grid; gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
@media (min-width: 62rem) {
  .split { grid-template-columns: 7fr 5fr; }
  .split--reverse { grid-template-columns: 5fr 7fr; }
  .split--reverse > :first-child { order: 2; }
}

.crumbs { padding-block: 1.5rem .25rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; font: 400 var(--t-sm)/1.5 var(--sans); color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-inline-end: .5rem; color: var(--line); }
.crumbs a { border-bottom: 1px solid transparent; }
.crumbs a:hover { border-color: currentColor; }

/* ----------------------------------------------------------- 5. Motion -- */
[data-reveal] { opacity: 0; transform: translateY(18px); }
.js [data-reveal] { transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
html:not(.js) [data-reveal] { opacity: 1; transform: none; }

/* Opening film — a canvas of butterflies forming the wordmark */
.intro {
  position: fixed; inset: 0; z-index: 300;
  background:
    radial-gradient(120% 80% at 50% 45%, #1A1F29 0%, var(--ink) 62%),
    var(--ink);
  display: grid; place-items: center; overflow: hidden;
}
.intro[hidden] { display: none; }
.intro::after {                       /* the faintest weave, for texture */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--weave-dark); background-size: 8px 8px; opacity: .35;
}
.intro.is-out { opacity: 0; visibility: hidden; transition: opacity .7s var(--ease), visibility 0s .7s; }
.intro__stage { position: absolute; inset: 0; width: 100%; height: 100%; }
.intro__skip {
  position: absolute; inset-block-end: 2rem; inset-inline-end: 2rem; z-index: 2;
  color: rgba(255, 255, 255, .8); border: 1px solid var(--line-dark);
  padding: .6rem 1.15rem; border-radius: 999px;
  font: 500 var(--t-sm)/1 var(--sans); letter-spacing: .05em;
  background: rgba(14, 17, 22, .5); backdrop-filter: blur(6px);
}
.intro__skip:hover { color: #fff; border-color: rgba(255, 255, 255, .5); }

/* Pointer glow, fine-pointer devices only */
.pointer-glow {
  position: fixed; z-index: 1; width: 28rem; height: 28rem; border-radius: 50%;
  pointer-events: none; opacity: 0; mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(216,35,42,.16), transparent 62%);
  transform: translate(-50%, -50%); transition: opacity .5s var(--ease);
}
.on-dark:hover > .pointer-glow { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .intro { display: none !important; }
  .pointer-glow { display: none; }
}

/* ---------------------------------------------------------- 6. Buttons -- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--radius);
  font: 500 var(--t-sm)/1 var(--sans); letter-spacing: .045em;
  text-align: center; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn--accent { --btn-bg: var(--red); --btn-bd: var(--red); }
.btn--accent:hover { --btn-bg: var(--red-deep); --btn-bd: var(--red-deep); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--text); }
.on-dark .btn--ghost { --btn-fg: #fff; --btn-bd: var(--line-dark); }
.on-dark .btn--ghost:hover { --btn-bd: rgba(255,255,255,.55); }
.on-dark .btn--solid { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--sm { padding: .68rem 1.2rem; font-size: var(--t-xs); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.chev { width: 10px; height: 6px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; transition: transform .22s var(--ease); }
[aria-expanded="true"] > .chev { transform: rotate(180deg); }

/* ----------------------------------------------------- 7. Site header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 17, 22, .96); color: #fff;
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: saturate(150%) blur(10px);
}
.site-header__bar {
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem);
  max-width: var(--wrap); margin-inline: auto;
  padding: .85rem var(--gutter);
}
.brand { flex: none; display: block; }
.brand__mark { width: clamp(118px, 13vw, 168px); height: auto; }
.brand__mark--light { display: none; }

.nav { flex: 1 1 auto; min-width: 0; }
.nav__list { display: none; }
@media (min-width: 74rem) {
  .nav__list { display: flex; align-items: center; gap: .1rem; }
}
.nav__item { position: relative; display: flex; align-items: center; }
.nav__link {
  display: block; padding: .8rem .75rem; white-space: nowrap;
  font: 500 var(--t-sm)/1 var(--sans); letter-spacing: .035em;
  color: rgba(255, 255, 255, .82); transition: color .18s var(--ease);
}
.nav__item:hover .nav__link, .nav__link:hover, .nav__link[aria-current] { color: #fff; }
.nav__link[aria-current]::after {
  content: ""; display: block; height: 2px; background: var(--red); margin-top: .4rem;
}
.nav__disclosure { padding: .8rem .35rem .8rem 0; color: rgba(255, 255, 255, .5); }
.nav__item:hover .nav__disclosure { color: #fff; }

.mega {
  position: absolute; top: 100%; inset-inline-start: -1rem; z-index: 20;
  min-width: min(58rem, 78vw);
  background: var(--ink-2); color: #fff;
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8);
  /* A generous, invisible bridge so the pointer can travel into the panel */
  margin-top: 0;
}
.mega::before { content: ""; position: absolute; inset-inline: 0; top: -14px; height: 14px; }
.mega[hidden] { display: none; }
.mega__inner { display: grid; gap: clamp(1.5rem, 2.5vw, 3rem); padding: clamp(1.6rem, 2.4vw, 2.4rem); }
@media (min-width: 62rem) { .mega__inner { grid-template-columns: 15rem 1fr; } }
.mega__lead p { font-size: var(--t-sm); line-height: 1.6; color: rgba(255, 255, 255, .66); }
.mega__all { display: inline-block; margin-top: 1rem; font: 500 var(--t-sm)/1 var(--sans); border-bottom: 1px solid var(--red); padding-bottom: .3rem; }
.mega__cols { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); }
.mega__title {
  font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .45); margin-bottom: .9rem; min-height: 1em;
}
.mega__col li + li { margin-top: .1rem; }
.mega__col a {
  display: block; padding: .38rem 0; font-size: var(--t-sm); color: rgba(255, 255, 255, .8);
  border-bottom: 1px solid transparent; transition: color .16s var(--ease);
}
.mega__col a:hover { color: #fff; }

.site-header__actions { display: flex; align-items: center; gap: .5rem; margin-inline-start: auto; }
.site-header__actions .btn { display: none; }
@media (min-width: 52rem) { .site-header__actions .btn { display: inline-flex; } }

.lang { position: relative; }
.lang__toggle {
  display: flex; align-items: center; gap: .35rem; padding: .55rem .6rem;
  color: rgba(255, 255, 255, .82); font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .1em;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
}
.lang__toggle:hover { color: #fff; border-color: rgba(255, 255, 255, .35); }
.lang__list {
  position: absolute; top: calc(100% + .5rem); inset-inline-end: 0; z-index: 30;
  min-width: 12rem; padding: .4rem; background: var(--ink-2);
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .8);
}
.lang__list[hidden] { display: none; }
.lang__list a {
  display: flex; align-items: baseline; gap: .7rem; padding: .5rem .7rem;
  font-size: var(--t-sm); color: rgba(255, 255, 255, .8); border-radius: var(--radius);
}
.lang__list a:hover { background: rgba(255, 255, 255, .07); color: #fff; }
.lang__list a[aria-current] { color: #fff; }
.lang__list a[aria-current] .lang-code { color: var(--red); }
.lang-code { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .1em; opacity: .7; }
.lang--compact { margin-top: 1rem; }
.lang--compact .lang__list { position: static; box-shadow: none; margin-top: .5rem; }

.burger { display: inline-flex; padding: .6rem; color: #fff; }
@media (min-width: 74rem) { .burger { display: none; } }
.burger__bars { display: grid; gap: 4px; width: 20px; }
.burger__bars i { display: block; height: 1.5px; background: currentColor; transition: transform .25s var(--ease), opacity .2s; }
[aria-expanded="true"] .burger__bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
[aria-expanded="true"] .burger__bars i:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .burger__bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  background: var(--ink-2); border-top: 1px solid var(--line-dark);
  max-height: min(78vh, 44rem); overflow-y: auto; overscroll-behavior: contain;
}
.mobile-nav[hidden] { display: none; }
@media (min-width: 74rem) { .mobile-nav { display: none !important; } }
.mobile-nav__inner { padding: .5rem var(--gutter) 2rem; }
.mobile-nav__row { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid var(--line-dark-soft); }
.mobile-nav__link { padding: 1rem 0; font-size: var(--t-md); font-weight: 500; color: #fff; }
.mobile-nav__toggle { padding: 1rem .5rem; color: rgba(255, 255, 255, .6); }
.mobile-nav__panel { grid-column: 1 / -1; padding-bottom: 1.1rem; }
.mobile-nav__panel[hidden] { display: none; }
.mobile-nav__group { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); margin: .9rem 0 .5rem; }
.mobile-nav__panel a { display: block; padding: .45rem 0 .45rem 1rem; font-size: var(--t-sm); color: rgba(255, 255, 255, .78); border-inline-start: 1px solid var(--line-dark); }
.mobile-nav__foot { margin-top: 1.75rem; }

/* ----------------------------------------------------------- 8. Footer -- */
.foot { background: var(--ink); color: #fff; padding-top: clamp(3.5rem, 6vw, 6rem); }
.foot__top { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: 3.5rem; }
@media (min-width: 62rem) { .foot__top { grid-template-columns: 22rem 1fr; } }
.foot__brand img { width: 158px; height: auto; }
.foot__lead { margin-top: 1.4rem; font-size: var(--t-sm); color: rgba(255, 255, 255, .62); line-height: 1.65; }
.foot__address { margin-top: 1.5rem; display: grid; gap: .3rem; font-style: normal; font-size: var(--t-sm); color: rgba(255, 255, 255, .74); }
.foot__address a { border-bottom: 1px solid rgba(255, 255, 255, .22); width: fit-content; }
.foot__address a:hover { border-color: var(--red); }
.foot__social { display: flex; gap: .5rem; margin-top: 1.6rem; }
.social {
  display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .85rem;
  border: 1px solid var(--line-dark); border-radius: 999px;
  font: 500 var(--t-xs)/1 var(--sans); letter-spacing: .04em; color: rgba(255, 255, 255, .8);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.social:hover { color: #fff; border-color: var(--red); }
.social__icon { width: 15px; height: 15px; fill: currentColor; }
.foot__cols { display: grid; gap: 2.25rem; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); }
.foot__title { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 1.1rem; }
.foot__col a { display: block; padding: .34rem 0; font-size: var(--t-sm); color: rgba(255, 255, 255, .78); }
.foot__col a:hover { color: #fff; }
.foot__langs {
  display: flex; flex-wrap: wrap; gap: .35rem 1.15rem; align-items: baseline;
  padding-block: 1.6rem; border-top: 1px solid var(--line-dark);
  font-size: var(--t-sm); color: rgba(255, 255, 255, .66);
}
.foot__langs a:hover { color: #fff; border-bottom: 1px solid var(--red); }
.foot__langs-label { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .4); }
.foot__base {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-block: 1.5rem 2.25rem; border-top: 1px solid var(--line-dark);
  font-size: var(--t-xs); color: rgba(255, 255, 255, .48);
}
.foot__top-link:hover { color: #fff; }

/* ------------------------------------------------------------- 9. Home -- */
.hero.on-dark { background: var(--ink); }
.hero { position: relative; min-height: min(92svh, 54rem); display: grid; align-items: end; background: var(--ink); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,17,22,.72) 0%, rgba(14,17,22,.22) 34%, rgba(14,17,22,.86) 82%, rgba(14,17,22,.96) 100%),
    linear-gradient(90deg, rgba(14,17,22,.7), transparent 62%);
}
.hero__weave { position: absolute; inset: 0; background-image: var(--weave-dark); background-size: 7px 7px; opacity: .5; }
.hero__inner { position: relative; padding-block: clamp(6rem, 12vw, 9rem) clamp(3rem, 6vw, 5rem); }
.hero__title { font-size: var(--t-3xl); max-width: 18ch; }
.hero__intro { margin-top: 1.6rem; max-width: 56ch; font-size: var(--t-md); color: rgba(255, 255, 255, .82); line-height: 1.55; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .5rem 2rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); }
.hero__proof li { display: flex; align-items: center; gap: .55rem; font: 500 var(--t-xs)/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.hero__proof li::before { content: ""; width: 5px; height: 5px; background: var(--red); flex: none; }
.hero__mute {
  position: absolute; inset-block-end: 1.25rem; inset-inline-end: 1.25rem; z-index: 3;
  display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem;
  background: rgba(14,17,22,.6); border: 1px solid var(--line-dark); border-radius: 999px;
  color: #fff; font: 500 var(--t-xs)/1 var(--sans); letter-spacing: .05em;
}

/* Production journey — a numbered rail */
.journey { display: grid; gap: 0; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
@media (min-width: 44rem) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .journey { grid-template-columns: repeat(4, 1fr); } }
.journey__item { background: var(--paper); padding: clamp(1.5rem, 2.4vw, 2.25rem); display: grid; gap: .7rem; align-content: start;
  box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); }
.journey__num { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .14em; color: var(--red); }
.journey__item h3 { font-size: var(--t-md); letter-spacing: -.01em; }
.journey__item p { font-size: var(--t-sm); color: var(--text-2); line-height: 1.6; }

/* Colour strip */
.swatch-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(4.75rem, 1fr)); gap: 0; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.swatch { background: var(--paper); padding: .55rem .55rem .7rem; display: grid; gap: .45rem;
  box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); }
.swatch__chip { aspect-ratio: 1; border: 1px solid rgba(20,23,28,.16); border-radius: 1px; }
.swatch__code { font: 500 10px/1.3 var(--mono); letter-spacing: .02em; color: var(--muted); }
.swatch__name { font-size: 11px; line-height: 1.3; color: var(--text-2); }

.note {
  display: flex; gap: .75rem; padding: 1.1rem 1.25rem; margin-top: 1.75rem;
  background: var(--red-tint); border-inline-start: 2px solid var(--red);
  font-size: var(--t-sm); line-height: 1.6; color: var(--text-2);
}
.on-dark .note { background: rgba(216,35,42,.14); color: rgba(255,255,255,.82); }
.note strong { color: var(--text); font-weight: 600; }
.on-dark .note strong { color: #fff; }

/* Announcements */
.announce { display: grid; gap: 1px; background: var(--line); }
.announce__item { background: var(--paper); display: grid; gap: .5rem; padding: 1.5rem 0; }
@media (min-width: 50rem) { .announce__item { grid-template-columns: 9rem 1fr; gap: 2rem; align-items: baseline; } }
.announce__date { font: 500 var(--t-xs)/1.5 var(--mono); letter-spacing: .1em; color: var(--red); }
.announce__item h3 { font-size: var(--t-md); }
.announce__item p { font-size: var(--t-sm); color: var(--text-2); margin-top: .35rem; }

/* Group companies */
.group-card { display: grid; gap: .75rem; align-content: start; padding: 1.6rem; background: var(--paper); border: 1px solid var(--line); }
.on-dark .group-card { background: var(--ink-2); border-color: var(--line-dark); }
.group-card h3 { font-size: var(--t-md); }
.group-card__sector { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.group-card p { font-size: var(--t-sm); line-height: 1.6; color: var(--text-2); }
.on-dark .group-card p { color: rgba(255,255,255,.7); }

/* ------------------------------------------------- 10. Cards and media -- */
.figure { position: relative; overflow: hidden; background: var(--paper-3); }
.figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
a:hover > .figure img, .card:hover .figure img { transform: scale(1.035); }
.figure__cap {
  position: absolute; inset-block-end: 0; inset-inline: 0; padding: 1.5rem 1.25rem .95rem;
  background: linear-gradient(transparent, rgba(14,17,22,.85));
  color: #fff; font: 500 var(--t-xs)/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase;
}

.card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: rgba(20,23,28,.3); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.card__body { padding: 1.1rem 1.15rem 1.25rem; display: grid; gap: .5rem; align-content: start; flex: 1; }
.card__kicker { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.card__title { font-size: var(--t-base); font-weight: 600; letter-spacing: -.012em; line-height: 1.3; }
.card__meta { margin-top: auto; padding-top: .7rem; display: flex; flex-wrap: wrap; gap: .3rem .9rem; font: 500 var(--t-xs)/1.5 var(--mono); color: var(--text-2); border-top: 1px solid var(--line-soft); }

.tile { display: grid; gap: .9rem; }
.tile .figure { aspect-ratio: 4 / 3; }
.tile h3 { font-size: var(--t-md); }
.tile p { font-size: var(--t-sm); color: var(--text-2); line-height: 1.6; }
.on-dark .tile p { color: rgba(255,255,255,.7); }

.gallery { display: grid; gap: 2px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.gallery .figure { aspect-ratio: 3 / 4; }
.gallery .figure:nth-child(4n+1) { aspect-ratio: 3 / 4; }

/* ---------------------------------------------------------- 11. Products */
.toolbar {
  position: sticky; top: 4.4rem; z-index: 30; background: var(--paper);
  border-block: 1px solid var(--line); padding-block: 1rem; margin-bottom: 2.5rem;
}
.toolbar__inner { display: grid; gap: 1rem; }
.search {
  display: flex; align-items: center; gap: .6rem; padding: .1rem .9rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.search:focus-within { border-color: var(--text); }
.search svg { width: 15px; height: 15px; flex: none; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.search input { flex: 1; min-width: 0; padding: .75rem 0; border: 0; background: none; font-size: var(--t-sm); }
.search input:focus { outline: none; }
.search__clear { padding: .5rem; color: var(--muted); font-size: var(--t-xs); }

.filters { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.filters__label { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-inline-end: .35rem; }
.chip {
  padding: .5rem .85rem; border: 1px solid var(--line); border-radius: 999px;
  font: 500 var(--t-xs)/1 var(--sans); letter-spacing: .03em; color: var(--text-2); white-space: nowrap;
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip[aria-pressed="true"]::before { content: "✓ "; }

.result-count { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.empty { padding: 4rem 0; text-align: center; color: var(--muted); font-size: var(--t-md); }
.empty[hidden] { display: none; }

.product-grid { display: grid; gap: 0; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr)); }
.product-card { background: var(--paper); display: flex; flex-direction: column; transition: background .2s var(--ease);
  box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); }
.product-card:hover { background: #fff; }
.product-card[hidden] { display: none; }
.product-card__fig { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-3); }
.product-card__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.product-card:hover .product-card__fig img { transform: scale(1.04); }
.product-card__swatch {
  position: absolute; inset-block-start: .7rem; inset-inline-start: .7rem;
  width: 2.1rem; height: 2.1rem; border: 2px solid #fff; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.product-card__video {
  position: absolute; inset-block-end: .7rem; inset-inline-end: .7rem;
  display: inline-flex; align-items: center; gap: .3rem; padding: .3rem .55rem;
  background: rgba(14,17,22,.72); color: #fff; border-radius: 999px;
  font: 500 10px/1 var(--mono); letter-spacing: .08em;
}
.product-card__body { padding: .95rem 1rem 1.1rem; display: grid; gap: .4rem; flex: 1; align-content: start; }
.product-card__cat { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
.product-card__name { font-size: var(--t-sm); font-weight: 600; line-height: 1.35; }
.product-card__spec { margin-top: auto; padding-top: .6rem; border-top: 1px solid var(--line-soft); display: grid; gap: .18rem; font: 400 11px/1.45 var(--mono); color: var(--text-2); }
.product-card__pantone { color: var(--text); }

.load-more { display: flex; justify-content: center; margin-top: 2.5rem; }
.load-more[hidden] { display: none; }

/* Product detail */
.product-hero { display: grid; gap: clamp(2rem, 4vw, 4rem); }
@media (min-width: 64rem) {
  .product-hero { grid-template-columns: 1.15fr 1fr; align-items: start; }
  .product-hero > :first-child { position: sticky; top: 6rem; }
}
.media-main { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-3); border: 1px solid var(--line); }
.media-main > * { width: 100%; height: 100%; object-fit: cover; }
.media-main [hidden] { display: none; }
.media-thumbs { display: flex; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.media-thumb { width: 5.25rem; aspect-ratio: 4 / 3; border: 1px solid var(--line); overflow: hidden; background: var(--paper-3); padding: 0; }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-thumb[aria-selected="true"] { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.media-thumb__video { position: relative; }
.media-thumb__video::after { content: "▶"; position: absolute; inset: 0; display: grid; place-items: center; background: rgba(14,17,22,.45); color: #fff; font-size: 12px; }

.spec-table { margin-top: 1.75rem; border-top: 1px solid var(--line); }
.spec-table div { display: grid; grid-template-columns: minmax(8rem, 12rem) 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line-soft); }
.spec-table dt { font: 500 var(--t-xs)/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.spec-table dd { margin: 0; font-size: var(--t-sm); }

.pantone-picker { margin-top: 2rem; }
.pantone-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(3.6rem, 1fr)); gap: .4rem; margin-top: .9rem; max-height: 21rem; overflow-y: auto; padding: .15rem; }
.pantone-swatch { display: grid; gap: .3rem; padding: 0; text-align: start; }
.pantone-swatch[hidden] { display: none; }
.pantone-swatch__chip { aspect-ratio: 1; border: 1px solid rgba(20,23,28,.18); border-radius: 1px; transition: box-shadow .18s var(--ease), transform .18s var(--ease); }
.pantone-swatch:hover .pantone-swatch__chip { transform: scale(1.05); }
.pantone-swatch[aria-pressed="true"] .pantone-swatch__chip { box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--red); }
.pantone-swatch__code { font: 500 9px/1.25 var(--mono); color: var(--muted); }
.pantone-selected { margin-top: 1rem; padding: .85rem 1rem; border: 1px solid var(--line); display: flex; align-items: center; gap: .8rem; font-size: var(--t-sm); }
.pantone-selected__chip { width: 2.2rem; height: 2.2rem; border: 1px solid rgba(20,23,28,.2); flex: none; }

/* ------------------------------------------------- 12. Printing designs -- */
.design-grid { display: grid; gap: 0; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); grid-template-columns: repeat(auto-fill, minmax(min(50%, 13rem), 1fr)); }
.design { background: var(--paper); display: flex; flex-direction: column;
  box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); }
.design[hidden] { display: none; }
.design__fig { aspect-ratio: 1; overflow: hidden; background: var(--paper-3); }
.design__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.design:hover .design__fig img { transform: scale(1.06); }
.design__body { padding: .8rem .9rem 1rem; display: grid; gap: .25rem; flex: 1; align-content: start; }
.design__code { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .08em; color: var(--red); }
.design__name { font-size: var(--t-sm); font-weight: 600; line-height: 1.35; }
.design__theme { font: 400 11px/1.4 var(--mono); color: var(--muted); }
.design__cta { margin-top: .55rem; font: 500 var(--t-xs)/1 var(--sans); letter-spacing: .04em; border-bottom: 1px solid var(--red); padding-bottom: .3rem; width: fit-content; }

/* --------------------------------------------- 13. Knowledge & articles -- */
.article-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.article-row { background: var(--paper); display: grid; gap: 1rem; padding: 1.5rem 0; transition: background .2s var(--ease);
  box-shadow: 0 1px 0 var(--line); }
.article-row[hidden] { display: none; }
@media (min-width: 54rem) { .article-row { grid-template-columns: 11rem 1fr 8rem; gap: 2rem; align-items: start; padding-inline: .75rem; } }
.article-row:hover { background: #fff; }
.article-row__fig { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-3); }
.article-row__fig img { width: 100%; height: 100%; object-fit: cover; }
.article-row h3 { font-size: var(--t-md); }
.article-row p { margin-top: .5rem; font-size: var(--t-sm); color: var(--text-2); line-height: 1.6; }
.article-row__meta { display: flex; flex-wrap: wrap; gap: .35rem .9rem; font: 500 var(--t-xs)/1.5 var(--mono); letter-spacing: .06em; color: var(--muted); }
@media (min-width: 54rem) { .article-row__meta { display: grid; gap: .3rem; text-align: end; } }

.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.35rem; }
.prose h2 { font-size: var(--t-lg); margin-top: 2.75rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.prose h3 { font-size: var(--t-md); margin-top: 2rem; }
.prose p { font-size: var(--t-base); line-height: 1.75; color: var(--text-2); }
.prose li { font-size: var(--t-base); line-height: 1.7; color: var(--text-2); }
.prose ul, .prose ol { display: grid; gap: .6rem; padding-inline-start: 1.35rem; }
.prose ul li { list-style: none; position: relative; }
.prose ul li::before { content: ""; position: absolute; inset-inline-start: -1.15rem; top: .72em; width: 5px; height: 1px; background: var(--red); }
.prose ol { list-style: decimal; }
.prose ol li::marker { font: 500 var(--t-sm) var(--mono); color: var(--muted); }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { border-bottom: 1px solid var(--red); }
.prose .article-lead { font-size: var(--t-md); line-height: 1.6; color: var(--text); }
.prose table { margin-top: 1.5rem; font-size: var(--t-sm); }
.prose th, .prose td { padding: .7rem .8rem; border-bottom: 1px solid var(--line-soft); text-align: start; }
.prose th { font: 500 var(--t-xs)/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.table-scroll { overflow-x: auto; }

.article-head { padding-block: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 3vw, 2.5rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-top: 1.5rem; font: 500 var(--t-xs)/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.article-hero { aspect-ratio: 21 / 9; overflow: hidden; background: var(--paper-3); margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

.faq { margin-top: 3rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary { padding: 1.1rem 0; font-size: var(--t-md); font-weight: 600; cursor: pointer; list-style: none; display: flex; gap: 1rem; justify-content: space-between; align-items: baseline; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-weight: 400; font-size: 1.35em; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { padding-bottom: 1.25rem; font-size: var(--t-sm); line-height: 1.7; color: var(--text-2); }

.disclaimer { margin-top: 2.5rem; padding: 1.35rem 1.5rem; background: var(--paper-2); border: 1px solid var(--line); font-size: var(--t-sm); line-height: 1.65; color: var(--text-2); }
.disclaimer h2 { font-size: var(--t-sm); font-weight: 600; letter-spacing: .02em; margin-bottom: .5rem; color: var(--text); }
.sources { margin-top: 1rem; display: grid; gap: .45rem; }
.sources a { font-size: var(--t-sm); border-bottom: 1px solid var(--line); width: fit-content; }
.sources a:hover { border-color: var(--red); }

.stage-nav { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2.5rem; }
.guide-list { display: grid; gap: 0; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); grid-template-columns: repeat(auto-fill, minmax(min(100%, 19rem), 1fr)); }
.guide { background: var(--paper); padding: 1.35rem 1.4rem 1.5rem; display: grid; gap: .55rem; align-content: start; transition: background .2s var(--ease);
  box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); }
.guide[hidden] { display: none; }
.guide:hover { background: #fff; }
.guide__num { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .12em; color: var(--red); }
.guide h3 { font-size: var(--t-base); letter-spacing: -.01em; }
.guide p { font-size: var(--t-sm); line-height: 1.6; color: var(--text-2); }
.controls { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .35rem; }
.controls li { font: 400 11px/1 var(--mono); padding: .35rem .6rem; border: 1px solid var(--line); border-radius: 999px; color: var(--text-2); }

/* ------------------------------------------------------------ 14. Forms -- */
.form { display: grid; gap: clamp(1.75rem, 3vw, 2.75rem); }
.fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 1rem; }
.fieldset > legend {
  padding: 0 0 1rem; width: 100%; border-bottom: 1px solid var(--line); margin-bottom: .5rem;
  font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
.field-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.field { display: grid; gap: .4rem; }
.field--wide { grid-column: 1 / -1; }
.field > label { font: 500 var(--t-xs)/1.4 var(--sans); letter-spacing: .05em; text-transform: uppercase; color: var(--text-2); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); font-size: var(--t-sm);
  transition: border-color .18s var(--ease);
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: right 1rem center, right .72rem center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-inline-end: 2.25rem; }
.rtl .field select { background-position: left 1rem center, left .72rem center; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--text); outline: none; }
.field input:user-invalid, .field textarea:user-invalid, .field select:user-invalid { border-color: var(--red); }
.field__hint { font-size: var(--t-xs); color: var(--muted); line-height: 1.5; }
.field__error { font-size: var(--t-xs); color: var(--red-deep); font-weight: 500; }
.field__error[hidden] { display: none; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; padding: 1.1rem 1.2rem; background: var(--paper-2); border: 1px solid var(--line); }
.consent input { width: 1.05rem; height: 1.05rem; margin-top: .25rem; accent-color: var(--red); }
.consent label { font-size: var(--t-sm); line-height: 1.55; color: var(--text-2); }
/* Honeypot: off-screen rather than display:none, because some bots skip
   hidden inputs but not positioned ones. Never announced to assistive tech. */
.hp { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form__actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.form__status { font-size: var(--t-sm); line-height: 1.6; padding: 1rem 1.15rem; border-inline-start: 2px solid var(--red); background: var(--red-tint); }
.form__status[hidden] { display: none; }
/* Post-submit handoff: the request rendered on the page, so it survives a
   missing mail client or an over-length mailto. */
.handoff {
  margin-top: 1.5rem; padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--paper-2); border: 1px solid var(--line);
  border-inline-start: 3px solid var(--red); border-radius: var(--radius);
  /* An explicit definite column: a textarea carries an intrinsic cols width,
     and in an auto-sized grid track `width:100%` resolves against that instead
     of the panel. */
  display: grid; gap: .85rem; grid-template-columns: minmax(0, 1fr);
}
.handoff:focus { outline: none; }
.handoff:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.handoff__title { font-size: var(--t-md); }
.handoff__body { font-size: var(--t-sm); line-height: 1.6; color: var(--text-2); }
.handoff__to { font: 500 var(--t-sm)/1.5 var(--mono); }
.handoff__to span { color: var(--muted); }
.handoff__to a { border-bottom: 1px solid var(--red); }
.handoff__note {
  padding: .8rem 1rem; background: var(--red-tint); border-inline-start: 2px solid var(--red);
  font-size: var(--t-sm); line-height: 1.55; color: var(--text-2);
}
.handoff__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.handoff__text {
  width: 100%; resize: vertical; padding: .9rem 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  font: 400 var(--t-sm)/1.6 var(--mono); color: var(--text);
  white-space: pre; overflow-wrap: normal; overflow-x: auto;
  min-width: 0; max-width: 100%;
}
.rtl .handoff__text, .rtl .handoff__to { direction: ltr; text-align: start; }

.form__aside { position: sticky; top: 6rem; display: grid; gap: 1rem; align-content: start; padding: 1.5rem; background: var(--ink); color: #fff; }
.form__aside h2 { font-size: var(--t-md); }
.form__aside p, .form__aside li { font-size: var(--t-sm); line-height: 1.6; color: rgba(255,255,255,.72); }
.summary-list { display: grid; gap: .45rem; font: 400 var(--t-sm)/1.5 var(--mono); }
.summary-list div { display: grid; grid-template-columns: 8.5rem 1fr; gap: .6rem; }
.summary-list dt { color: rgba(255,255,255,.5); font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .08em; }
.summary-list dd { margin: 0; color: #fff; }

.map-embed { aspect-ratio: 16 / 9; border: 1px solid var(--line); background: var(--paper-3); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-list { display: grid; gap: 1.4rem; }
.contact-list dt { font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.contact-list dd { margin: 0; font-size: var(--t-md); }
.contact-list a { border-bottom: 1px solid var(--line); }
.contact-list a:hover { border-color: var(--red); }

/* ------------------------------------------------- 15. Utilities, print -- */
.stack { display: grid; gap: 1rem; align-content: start; }
.stack--lg { gap: 2rem; }
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3.5rem); }
.hairline { border: 0; border-top: 1px solid var(--line); margin-block: clamp(2.5rem, 5vw, 4.5rem); }
.on-dark .hairline { border-color: var(--line-dark); }
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .7rem; border: 1px solid var(--line); border-radius: 999px; font: 500 var(--t-xs)/1 var(--mono); letter-spacing: .07em; color: var(--text-2); }
.on-dark .pill { border-color: var(--line-dark); color: rgba(255,255,255,.75); }

/* RTL adjustments that direction alone does not cover */
.rtl .eyebrow__tick { transform: scaleX(-1); }
.rtl .link-more span, .rtl .mega__all span, .rtl .foot__top-link span { display: inline-block; transform: scaleX(-1); }
.rtl .tech, .rtl .swatch__code, .rtl .design__code, .rtl .product-card__spec { direction: ltr; text-align: start; unicode-bidi: isolate; }

@media print {
  .site-header, .foot, .intro, .toolbar, .load-more, .btn, .pointer-glow { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .prose { max-width: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}

@media (forced-colors: active) {
  .chip[aria-pressed="true"], .btn { border: 1px solid ButtonText; }
  .swatch__chip, .pantone-swatch__chip, .product-card__swatch { forced-color-adjust: none; }
}

/* ------------------------------------------------------- WhatsApp action -- */
/* Floating on every page. Sits above content but below the opening film and
   the sticky header's dropdowns, and moves clear of the RTL gutter. */
.wa {
  position: fixed; z-index: 90;
  inset-block-end: clamp(1rem, 3vw, 1.75rem);
  inset-inline-end: clamp(1rem, 3vw, 1.75rem);
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .8rem 1.1rem;
  background: #25D366; color: #05341A;
  border-radius: 999px; box-shadow: 0 6px 24px -6px rgba(0, 0, 0, .45);
  font: 600 var(--t-sm)/1 var(--sans); letter-spacing: .01em;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(0, 0, 0, .5); }
.wa:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.wa__icon { width: 22px; height: 22px; fill: currentColor; flex: none; }
/* On small screens it collapses to the mark alone so it never covers content. */
@media (max-width: 40rem) {
  .wa { padding: .85rem; }
  .wa__text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
}
@media print { .wa { display: none; } }
