/* ==========================================================================
   AXIOM INDUSTRIAL — Design System
   A blueprint-inspired language for industrial B2B.
   Sections: 01 Tokens · 02 Reset · 03 Type · 04 Layout · 05 Primitives
             06 Header · 07 Hero · 08 Home modules · 09 Products
             10 Single product · 11 Editorial · 12 Forms · 13 Footer
             14 Utilities · 15 Motion · 16 Responsive
   ========================================================================== */

/* 01 · TOKENS ------------------------------------------------------------ */
:root {
  /* Ink scale */
  --ink-900: #070B0F;
  --ink-800: #0C131A;
  --ink-700: #141D26;
  --ink-600: #1E2A36;
  --ink-500: #33424F;
  --ink-400: #5A6875;
  --ink-300: #8794A0;
  --ink-200: #BEB8AC;
  --ink-100: #E2DED6;
  --ink-050: #F0EEE9;
  --paper:   #FFFFFF;
  --mist:    #F7F5F0;

  /* Brand accent — brass, taken from the Yanfeng mark. Overridable in the Customizer */
  --signal:      #A87C2A;
  --signal-ink:  #8A6520;
  --signal-soft: rgba(168, 124, 42, .10);
  /* Lighter gold for use on dark surfaces, where the brass needs to lift */
  --gold:        #C9A55A;
  --ivory:       #F1ECE2;

  /* Semantic */
  --bg:          var(--paper);
  --fg:          var(--ink-800);
  --muted:       var(--ink-400);
  --line:        var(--ink-100);
  --line-strong: var(--ink-200);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", "PingFang SC", "Hiragino Sans GB",
               "Microsoft YaHei", sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "SF Mono", "JetBrains Mono",
               "Roboto Mono", Menlo, Consolas, monospace;

  --fs-micro: .6875rem;   /* 11 */
  --fs-xs:    .75rem;     /* 12 */
  --fs-sm:    .875rem;    /* 14 */
  --fs-base:  1rem;       /* 16 */
  --fs-md:    1.125rem;   /* 18 */
  --fs-lg:    1.375rem;   /* 22 */
  --fs-xl:    1.75rem;    /* 28 */
  --fs-2xl:   2.25rem;    /* 36 */
  --fs-3xl:   3rem;       /* 48 */
  --fs-4xl:   clamp(2.5rem, 5.2vw, 4.5rem);

  /* Space — 8pt grid */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --radius: 3px;
  --radius-lg: 5px;

  --wrap: 1280px;
  --wrap-narrow: 780px;
  --gutter: 24px;

  --shadow-sm: 0 1px 2px rgba(7, 11, 15, .05);
  --shadow-md: 0 4px 24px -8px rgba(7, 11, 15, .14);
  --shadow-lg: 0 24px 64px -24px rgba(7, 11, 15, .30);

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

  --header-h: 76px;
}

/* Blueprint grid, used as a background layer */
.bp-grid {
  background-image:
    linear-gradient(to right, rgba(30, 42, 54, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 42, 54, .05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.bp-grid--dark {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* 02 · RESET ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
  overflow-x: hidden;
}
img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-7) 0; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
::selection { background: var(--ink-800); color: #fff; }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink-900); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* 03 · TYPE -------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  margin: 0 0 var(--s-4);
  font-weight: 640;
  line-height: 1.12;
  letter-spacing: -.022em;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); letter-spacing: -.015em; }
h4 { font-size: var(--fs-md); letter-spacing: -.01em; }
p  { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

.display {
  font-size: var(--fs-4xl);
  font-weight: 660;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.lede { font-size: var(--fs-md); color: var(--ink-500); line-height: 1.6; }

/* Technical micro-label: the theme's signature */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--signal); flex: none;
}
.eyebrow--plain::before { display: none; }
.eyebrow--light { color: var(--ink-300); }
.eyebrow--light::before { background: var(--gold); }

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}

/* 04 · LAYOUT ------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--s-9); position: relative; }
.section--tight { padding-block: var(--s-8); }
.section--dark { background: var(--ink-900); color: var(--ink-200); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--mist { background: var(--mist); }
.section--line-top { border-top: 1px solid var(--line); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s-6); margin-bottom: var(--s-7);
}
.section-head__text { max-width: 620px; }
.section-head h2 { margin-bottom: var(--s-3); }
.section-head p { color: var(--ink-400); margin: 0; }

/* 05 · PRIMITIVES -------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink-900);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: -.005em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 14px; height: 14px; flex: none; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--signal { --btn-bg: var(--signal); --btn-fg: #fff; }
.btn--signal:hover { --btn-bg: var(--signal-ink); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink-800);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink-800); }
.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .28);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.btn--sm { padding: 10px 18px; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

/* Text link with an animated rule */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-sm); font-weight: 600;
  padding-bottom: 3px;
  background-image: linear-gradient(var(--signal), var(--signal));
  background-size: 0 1.5px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .35s var(--ease-out);
}
.tlink:hover { background-size: 100% 1.5px; }
.tlink svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.tlink:hover svg { transform: translateX(4px); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: .05em;
  color: var(--ink-500);
  text-transform: uppercase;
}
.chip--solid { background: var(--ink-050); border-color: transparent; }

/* Registration marks — technical drawing corners */
.ticked { position: relative; }
.ticked::before, .ticked::after {
  content: ""; position: absolute; width: 9px; height: 9px; pointer-events: none;
  opacity: 0; transition: opacity .3s var(--ease);
}
.ticked::before { top: -1px; left: -1px; border-top: 1px solid var(--signal); border-left: 1px solid var(--signal); }
.ticked::after  { bottom: -1px; right: -1px; border-bottom: 1px solid var(--signal); border-right: 1px solid var(--signal); }
.ticked:hover::before, .ticked:hover::after { opacity: 1; }

/* 06 · HEADER ------------------------------------------------------------ */
.topbar {
  background: var(--ink-900); color: var(--ink-300);
  font-size: var(--fs-xs); border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); min-height: 38px;
}
.topbar__list { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.topbar a:hover { color: #fff; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 13px; height: 13px; opacity: .6; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.96); }
.header__inner {
  display: flex; align-items: center; gap: var(--s-6);
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: auto; }
.brand img.brand__logo { max-height: none; }
.brand__mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  background: var(--ink-900); color: var(--ivory);
  font-family: var(--font-sans); font-size: 16px; font-weight: 700;
  letter-spacing: -.02em;
  border-radius: 50%;
}
.brand__name {
  font-size: var(--fs-md); font-weight: 680; letter-spacing: -.03em;
  color: var(--ink-900); line-height: 1.1;
}
.brand__tag {
  display: block; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 500;
}

.nav { margin-left: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav li { position: relative; }
.nav > ul > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; font-size: var(--fs-sm); font-weight: 550;
  color: var(--ink-600); border-radius: var(--radius);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav > ul > li > a:hover,
.nav > ul > li.current-menu-item > a,
.nav > ul > li.current-menu-parent > a { color: var(--ink-900); background: var(--ink-050); }
.nav .menu-item-has-children > a::after {
  content: ""; width: 5px; height: 5px; margin-left: 2px;
  border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .5;
}
.nav ul ul {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 232px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 6px; display: block; flex-direction: column; align-items: stretch;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .22s var(--ease); gap: 0;
}
.nav li:hover > ul, .nav li:focus-within > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.nav ul ul a {
  display: block; padding: 9px 12px; font-size: var(--fs-sm);
  color: var(--ink-500); border-radius: 2px;
}
.nav ul ul a:hover { background: var(--ink-050); color: var(--ink-900); }
.nav ul ul ul { top: -7px; left: 100%; }

.header__cta { display: flex; align-items: center; gap: var(--s-3); flex: none; }

.burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: transparent; border-radius: var(--radius); cursor: pointer;
  position: relative; flex: none;
}
.burger span {
  position: absolute; left: 11px; width: 18px; height: 1.5px; background: var(--ink-800);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; top: 0; z-index: 99;
  background: var(--paper); padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  overflow-y: auto; transform: translateX(100%);
  transition: transform .38s var(--ease-out); visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 15px 0; font-size: var(--fs-md); font-weight: 560; }
.mobile-nav ul ul { padding: 0 0 12px 16px; }
.mobile-nav ul ul a { font-size: var(--fs-sm); font-weight: 450; color: var(--ink-500); padding: 8px 0; }
.mobile-nav__foot { margin-top: var(--s-6); display: grid; gap: 12px; }

/* 06b · MEGA MENU -------------------------------------------------------- */
.nav li.has-mega { position: static; }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -28px rgba(7, 11, 15, .28);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .28s var(--ease-out), visibility .22s;
  z-index: 60;
}
.nav li.has-mega:hover > .mega,
.nav li.has-mega:focus-within > .mega { opacity: 1; visibility: visible; transform: translateY(0); }

.mega__inner { padding-block: var(--s-6) var(--s-5); }
.mega__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
}
.mega__card {
  display: block; padding: 10px; border-radius: var(--radius);
  position: relative;
  transition: background .22s var(--ease);
}
.mega__card:hover { background: var(--mist); }
.mega__thumb {
  display: block; aspect-ratio: 4 / 3; overflow: hidden;
  border: 1px solid var(--line); border-radius: 2px; background: var(--mist);
  margin-bottom: 10px;
}
.mega__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.mega__card:hover .mega__thumb img { transform: scale(1.05); }
.mega__no {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em;
  color: var(--signal); display: block; margin-bottom: 4px;
}
.mega__name {
  display: block; font-size: var(--fs-sm); font-weight: 620; color: var(--ink-900);
  letter-spacing: -.012em; line-height: 1.25; margin-bottom: 4px;
}
.mega__tag { display: block; font-size: var(--fs-xs); color: var(--ink-400); line-height: 1.4; }
.mega__count {
  display: block; margin-top: 6px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-300);
}

.mega__foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
  margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.mega__note { font-size: var(--fs-xs); color: var(--ink-400); }
.mega__links { display: flex; gap: var(--s-6); flex-wrap: wrap; }
.mega__links .tlink { font-size: var(--fs-xs); }

@media (max-width: 1300px) { .mega__grid { grid-template-columns: repeat(4, 1fr); } }

/* Mobile collection list */
.mnav-collections { margin-top: var(--s-6); }
.mnav-collections ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.mnav-collections a {
  display: flex; align-items: center; gap: 12px; padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.mnav-collections img {
  width: 48px; height: 48px; object-fit: cover; flex: none;
  border: 1px solid var(--line); border-radius: 2px; background: var(--mist);
}
.mnav-collections b { display: block; font-size: var(--fs-sm); font-weight: 600; }
.mnav-collections em {
  display: block; font-style: normal; font-family: var(--font-mono);
  font-size: var(--fs-micro); letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}

/* 07 · HERO -------------------------------------------------------------- */
.hero {
  position: relative; background: var(--ink-900); color: var(--ink-200);
  overflow: hidden; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(255,90,31,.16) 0%, transparent 58%),
    linear-gradient(180deg, rgba(7,11,15,.72) 0%, rgba(7,11,15,.92) 78%);
}
.hero__inner { padding-block: clamp(80px, 11vw, 152px); position: relative; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .78fr); gap: var(--s-8); align-items: end; }
.hero h1 { color: #fff; margin-bottom: var(--s-5); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__lede { font-size: var(--fs-md); color: var(--ink-200); max-width: 54ch; margin-bottom: var(--s-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}
.hero__stat {
  padding: var(--s-5);
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.hero__stat b {
  display: block; font-size: var(--fs-xl); font-weight: 660; color: #fff;
  letter-spacing: -.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__stat span {
  display: block; margin-top: 8px; font-family: var(--font-mono);
  font-size: var(--fs-micro); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-300);
}

.hero__ribbon {
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.hero__ribbon-inner {
  display: flex; align-items: center; gap: var(--s-6);
  padding-block: var(--s-4); flex-wrap: wrap;
}
.hero__ribbon .mono { color: var(--ink-400); flex: none; text-transform: uppercase; letter-spacing: .14em; }
.hero__ribbon ul { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-6); margin: 0; padding: 0; }
.hero__ribbon li { font-size: var(--fs-sm); color: var(--ink-300); display: flex; align-items: center; gap: 8px; }
.hero__ribbon li::before { content: ""; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.hero__grid-layer { position: absolute; inset: 0; z-index: -1; opacity: .55; }

/* --- Hero slider ------------------------------------------------------- */
.hero--slider { padding: 0; }
.hero__slides { display: grid; }
.hero__slide {
  grid-area: 1 / 1;
  position: relative; isolation: isolate;
  opacity: 0; visibility: hidden;
  transition: opacity 1.05s var(--ease-out), visibility 1.05s;
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }

/* Slow drift on the active slide's photograph */
.hero__slide .hero__bg img {
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(.2, .6, .3, 1), opacity 1.2s var(--ease-out);
}
.hero__slide.is-active .hero__bg img { transform: scale(1); }

/* Copy lifts in, staggered, once the slide becomes active */
.hero__slide [data-anim] {
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
}
.hero__slide.is-active [data-anim] { opacity: 1; transform: none; }
.hero__slide.is-active [data-anim="1"] { transition-delay: .12s; }
.hero__slide.is-active [data-anim="2"] { transition-delay: .20s; }
.hero__slide.is-active [data-anim="3"] { transition-delay: .30s; }
.hero__slide.is-active [data-anim="4"] { transition-delay: .40s; }
.hero__slide.is-active [data-anim="5"] { transition-delay: .50s; }

.hero__controls {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); padding-bottom: var(--s-6); flex-wrap: wrap;
  margin-top: calc(var(--s-7) * -1);
}
.hero__dots { display: flex; gap: var(--s-5); }
.hero__dot {
  background: none; border: 0; padding: 0; cursor: pointer;
  display: grid; gap: 8px; width: 74px; text-align: left;
}
.hero__dot-bar {
  display: block; height: 2px; width: 100%;
  background: rgba(255, 255, 255, .22); overflow: hidden;
}
.hero__dot-fill {
  display: block; height: 100%; width: 0; background: var(--gold);
}
.hero__dot.is-active .hero__dot-fill { width: 100%; transition: width linear; }
.hero__dot-no {
  font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .14em; color: var(--ink-400);
  transition: color .3s var(--ease);
}
.hero__dot.is-active .hero__dot-no,
.hero__dot:hover .hero__dot-no { color: #fff; }

.hero__arrows { display: flex; gap: 8px; }
.hero__arrow {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: transparent; border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius); cursor: pointer; color: #fff;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero__arrow:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); }
.hero__arrow svg { width: 15px; height: 15px; }
.hero__arrow[data-prev] svg { transform: rotate(180deg); }

@media (max-width: 760px) {
  .hero__controls { margin-top: var(--s-2); padding-bottom: var(--s-5); }
  .hero__dot { width: 46px; }
  .hero__arrows { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide, .hero__slide [data-anim], .hero__slide .hero__bg img { transition: none !important; }
  .hero__dot.is-active .hero__dot-fill { width: 100%; transition: none; }
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--ink-900); color: var(--ink-200);
  padding-block: var(--s-8) var(--s-8); position: relative; overflow: hidden;
}
.page-hero__veil { position: absolute; inset: 0; background: radial-gradient(90% 100% at 88% 0%, rgba(255,90,31,.13), transparent 60%); }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; font-size: var(--fs-2xl); margin-bottom: var(--s-3); max-width: 22ch; }
.page-hero p { color: var(--ink-300); max-width: 60ch; margin: 0; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: var(--s-4); }
.crumbs, .crumbs a { font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-400); }
.crumbs a:hover { color: var(--gold); }
.crumbs span[aria-current] { color: var(--ink-200); }
.crumbs .sep { opacity: .45; }
.crumbs--light, .crumbs--light a { color: var(--ink-400); }

/* 08 · HOME MODULES ------------------------------------------------------ */
/* Value / capability cards */
.vcard {
  position: relative; padding: var(--s-6);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vcard:hover { border-color: var(--ink-200); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vcard__no {
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .14em;
  color: var(--signal); margin-bottom: var(--s-5); display: block;
}
.vcard__icon { width: 26px; height: 26px; color: var(--ink-800); margin-bottom: var(--s-4); }
.vcard h3 { font-size: var(--fs-md); margin-bottom: 10px; }
.vcard p { font-size: var(--fs-sm); color: var(--ink-400); margin: 0; }

/* Split feature */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-8); align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); object-fit: cover; }
.split__media::after {
  content: ""; position: absolute; inset: 0; border: 1px solid rgba(7,11,15,.10);
  border-radius: var(--radius); pointer-events: none;
}
.split__badge {
  position: absolute; left: -20px; bottom: -20px;
  background: var(--ink-900); color: #fff; padding: var(--s-5);
  border-radius: var(--radius); max-width: 232px; box-shadow: var(--shadow-lg);
}
.split__badge b { display: block; font-size: var(--fs-xl); letter-spacing: -.03em; line-height: 1; }
.split__badge span { display: block; margin-top: 8px; font-size: var(--fs-xs); color: var(--ink-300); }

/* Checklist */
.checklist { list-style: none; margin: var(--s-5) 0 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-500); }
.checklist svg { width: 16px; height: 16px; color: var(--signal); flex: none; margin-top: 3px; }

/* Process / capability strip */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.steps__item { padding: var(--s-6) var(--s-5) 0; border-right: 1px solid var(--line); position: relative; }
.steps__item:first-child { padding-left: 0; }
.steps__item:last-child { border-right: 0; }
.steps__item::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px;
  background: var(--signal); transition: width .6s var(--ease-out);
}
.steps__item.is-in::before { width: 100%; }
.steps__no { font-family: var(--font-mono); font-size: var(--fs-micro); color: var(--signal); letter-spacing: .14em; }
.steps__item h4 { margin: var(--s-4) 0 8px; font-size: var(--fs-base); }
.steps__item p { font-size: var(--fs-sm); color: var(--ink-400); }

/* Logo wall */
.logos { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.logos__item {
  display: grid; place-items: center; padding: var(--s-6) var(--s-4); min-height: 108px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.logos__item img { max-height: 34px; width: auto; filter: grayscale(1); opacity: .55; transition: all .3s var(--ease); }
.logos__item:hover img { filter: grayscale(0); opacity: 1; }
.logos__item span {
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-300);
}

/* Stat band */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.statband__i { background: var(--ink-900); padding: var(--s-6) var(--s-5); }
.statband__i b { display: block; font-size: var(--fs-2xl); color: #fff; letter-spacing: -.035em; line-height: 1; font-variant-numeric: tabular-nums; }
.statband__i span { display: block; margin-top: 12px; font-size: var(--fs-sm); color: var(--ink-300); }

/* Case card */
.case-card {
  display: block; position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--ink-800);
}
.case-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); opacity: .9; }
.case-card:hover .case-card__img img { transform: scale(1.05); }
.case-card__body {
  position: absolute; inset: auto 0 0 0; padding: var(--s-5);
  background: linear-gradient(to top, rgba(7,11,15,.92) 12%, transparent 100%);
}
.case-card__body h3 { color: #fff; font-size: var(--fs-md); margin-bottom: 6px; }
.case-card__body span { font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .1em; text-transform: uppercase; color: var(--signal); }

/* Testimonial */
.quote {
  border-left: 2px solid var(--signal); padding-left: var(--s-6);
}
.quote blockquote { margin: 0; font-size: var(--fs-lg); line-height: 1.45; letter-spacing: -.018em; color: var(--ink-800); font-weight: 500; }
.quote figcaption { margin-top: var(--s-5); font-size: var(--fs-sm); color: var(--ink-400); }
.quote figcaption b { color: var(--ink-800); display: block; font-weight: 600; }

/* CTA band */
.cta-band { background: var(--ink-900); color: var(--ink-200); position: relative; overflow: hidden; }
.cta-band__inner {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--s-8);
  align-items: center; padding-block: var(--s-8); position: relative;
}
.cta-band h2 { color: #fff; margin-bottom: var(--s-3); }
.cta-band p { color: var(--ink-300); margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: flex-end; }

/* 09 · PRODUCTS ---------------------------------------------------------- */
.catalog { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: var(--s-8); align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 24px); }
.filters__group + .filters__group { margin-top: var(--s-6); padding-top: var(--s-6); border-top: 1px solid var(--line); }
.filters__title {
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-4);
}
.filters ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.filters li a {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 8px 10px; font-size: var(--fs-sm); color: var(--ink-500);
  border-radius: 2px; transition: all .2s var(--ease);
}
.filters li a:hover { background: var(--ink-050); color: var(--ink-900); }
.filters li.is-active a { background: var(--ink-900); color: #fff; }
.filters li a em { font-style: normal; font-family: var(--font-mono); font-size: var(--fs-micro); opacity: .55; }

.catalog__bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding-bottom: var(--s-4); margin-bottom: var(--s-6); border-bottom: 1px solid var(--line);
}
.catalog__count { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--muted); letter-spacing: .06em; }
.viewtoggle { display: flex; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.viewtoggle button {
  padding: 7px 11px; background: transparent; border: 0; cursor: pointer; color: var(--ink-300);
  display: grid; place-items: center;
}
.viewtoggle button svg { width: 15px; height: 15px; }
.viewtoggle button.is-active { background: var(--ink-900); color: #fff; }

/* The product card — spec-sheet style, not a shop tile */
.pcard {
  display: flex; flex-direction: column; position: relative;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.pcard:hover { border-color: var(--ink-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pcard__media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--mist);
  background-image:
    linear-gradient(to right, rgba(30,42,54,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30,42,54,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  display: grid; place-items: center;
}
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); mix-blend-mode: multiply; }
.pcard:hover .pcard__media img { transform: scale(1.045); }
.pcard__sku {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .08em;
  background: rgba(255,255,255,.92); border: 1px solid var(--line);
  padding: 4px 8px; border-radius: 2px; color: var(--ink-600);
}
.pcard__flag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .08em;
  background: var(--signal); color: #fff; padding: 4px 8px; border-radius: 2px;
  text-transform: uppercase;
}
.pcard__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.pcard__cat {
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.pcard h3 { font-size: var(--fs-base); margin-bottom: 10px; letter-spacing: -.012em; }
.pcard h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pcard__excerpt { font-size: var(--fs-sm); color: var(--ink-400); margin: 0 0 var(--s-4); }
.pcard__specs {
  margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px;
}
.pcard__spec dt {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-300); margin-bottom: 3px;
}
.pcard__spec dd { margin: 0; font-size: var(--fs-sm); font-weight: 560; color: var(--ink-800); }
.pcard__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--s-5); border-top: 1px solid var(--line); background: var(--mist);
}
.pcard__foot .tlink { font-size: var(--fs-xs); }
.pcard__quote {
  position: relative; z-index: 2;
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .08em;
  text-transform: uppercase; color: var(--signal); border: 1px solid currentColor;
  padding: 4px 9px; border-radius: 2px; background: transparent; cursor: pointer;
  transition: all .2s var(--ease);
}
.pcard__quote:hover { background: var(--signal); color: #fff; }

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }

/* Table view of the same products */
.ptable { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.ptable thead th {
  text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--ink-200);
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); font-weight: 500; white-space: nowrap;
}
.ptable tbody td { padding: 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.ptable tbody tr { transition: background .2s var(--ease); }
.ptable tbody tr:hover { background: var(--mist); }
.ptable__thumb { width: 56px; height: 44px; object-fit: cover; border: 1px solid var(--line); border-radius: 2px; background: var(--mist); }
.ptable__name { font-weight: 600; color: var(--ink-900); }
.ptable__sku { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--muted); }
.is-table-view .pgrid { display: none; }
.is-grid-view .ptable-wrap { display: none; }
.ptable-wrap { overflow-x: auto; }

/* 10 · SINGLE PRODUCT ---------------------------------------------------- */
.product-top { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: var(--s-8); align-items: start; }
.gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.gallery__main {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--mist);
  background-image:
    linear-gradient(to right, rgba(30,42,54,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30,42,54,.055) 1px, transparent 1px);
  background-size: 32px 32px;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.gallery__thumb {
  aspect-ratio: 1; border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
  background: var(--mist); cursor: pointer; padding: 0; transition: border-color .2s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--signal); }

.product-meta__head { border-bottom: 1px solid var(--line); padding-bottom: var(--s-5); margin-bottom: var(--s-5); }
.product-meta h1 { font-size: var(--fs-2xl); margin-bottom: var(--s-3); }
.product-meta__sku { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s-4); }
.product-meta__lede { color: var(--ink-500); font-size: var(--fs-md); margin: 0; }

.speclist { display: grid; gap: 0; margin: 0 0 var(--s-6); }
.speclist__row {
  display: grid; grid-template-columns: 42% 1fr; gap: var(--s-4);
  padding: 11px 0; border-bottom: 1px solid var(--line);
}
.speclist__row dt { font-size: var(--fs-sm); color: var(--ink-400); }
.speclist__row dd {
  margin: 0; font-size: var(--fs-sm); font-weight: 560; color: var(--ink-900);
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
}

.rfq-box {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--mist); padding: var(--s-5);
}
.rfq-box h4 { font-size: var(--fs-base); margin-bottom: 6px; }
.rfq-box p { font-size: var(--fs-sm); color: var(--ink-400); margin-bottom: var(--s-4); }
.rfq-box__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.tabs { border-top: 1px solid var(--line); margin-top: var(--s-9); }
.tabs__nav { display: flex; gap: 0; overflow-x: auto; border-bottom: 1px solid var(--line); }
.tabs__nav button {
  padding: 18px 22px; background: none; border: 0; cursor: pointer; white-space: nowrap;
  font-size: var(--fs-sm); font-weight: 560; color: var(--ink-400); position: relative;
  transition: color .2s var(--ease);
}
.tabs__nav button::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px;
  background: var(--signal); transform: scaleX(0); transition: transform .3s var(--ease-out);
}
.tabs__nav button:first-child { padding-left: 0; }
.tabs__nav button.is-active { color: var(--ink-900); }
.tabs__nav button.is-active::after { transform: scaleX(1); }
.tabs__panel { display: none; padding-top: var(--s-7); }
.tabs__panel.is-active { display: block; animation: fadeUp .4s var(--ease-out); }

.spec-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.spec-table caption {
  text-align: left; font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding-bottom: 12px;
}
.spec-table th, .spec-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table thead th { background: var(--ink-900); color: #fff; font-weight: 560; border-bottom: 0; }
.spec-table thead th:first-child { border-top-left-radius: 2px; }
.spec-table tbody tr:nth-child(even) { background: var(--mist); }
.spec-table td { font-variant-numeric: tabular-nums; }

.dl-list { display: grid; gap: 10px; }
.dl-item {
  display: flex; align-items: center; gap: var(--s-4); padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.dl-item:hover { border-color: var(--ink-300); background: var(--mist); }
.dl-item svg { width: 18px; height: 18px; color: var(--signal); flex: none; }
.dl-item b { font-size: var(--fs-sm); font-weight: 600; }
.dl-item span { font-family: var(--font-mono); font-size: var(--fs-micro); color: var(--muted); margin-left: auto; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 40px 20px 0; font-size: var(--fs-base); font-weight: 560;
  color: var(--ink-900); position: relative;
}
.faq-item__q::after {
  content: ""; position: absolute; right: 6px; top: 27px; width: 9px; height: 9px;
  border-right: 1.5px solid var(--ink-300); border-bottom: 1.5px solid var(--ink-300);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item.is-open .faq-item__q::after { transform: rotate(-135deg); }
.faq-item__a { display: none; padding-bottom: 20px; color: var(--ink-400); font-size: var(--fs-sm); max-width: 72ch; }
.faq-item.is-open .faq-item__a { display: block; animation: fadeUp .35s var(--ease-out); }

/* 11 · EDITORIAL --------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; gap: var(--s-4); }
.post-card__img { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); background: var(--mist); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.post-card:hover .post-card__img img { transform: scale(1.04); }
.post-card__meta { font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.post-card h3 { font-size: var(--fs-md); margin: 0; }
.post-card p { font-size: var(--fs-sm); color: var(--ink-400); margin: 0; }

.entry { max-width: 760px; }
.entry > * { margin-bottom: var(--s-4); }
.entry h2 { font-size: var(--fs-xl); margin-top: var(--s-7); }
.entry h3 { font-size: var(--fs-lg); margin-top: var(--s-6); }
.entry img { border-radius: var(--radius); }
.entry ul, .entry ol { padding-left: 1.15em; }
.entry li { margin-bottom: 8px; }
.entry blockquote {
  margin: var(--s-6) 0; padding-left: var(--s-5);
  border-left: 2px solid var(--signal); font-size: var(--fs-md); color: var(--ink-600);
}
.entry a:not(.btn) { color: var(--signal-ink); text-decoration: underline; text-underline-offset: 3px; }
.entry code { font-family: var(--font-mono); font-size: .9em; background: var(--ink-050); padding: 2px 6px; border-radius: 2px; }
.entry table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.entry th, .entry td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.entry figure { margin: var(--s-6) 0; }
.entry figcaption { font-size: var(--fs-xs); color: var(--muted); margin-top: 8px; }

.pagination { display: flex; gap: 6px; justify-content: center; margin-top: var(--s-8); flex-wrap: wrap; }
.pagination .page-numbers {
  min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: var(--fs-sm); font-family: var(--font-mono); color: var(--ink-500);
  transition: all .2s var(--ease);
}
.pagination .page-numbers:hover { border-color: var(--ink-800); color: var(--ink-900); }
.pagination .page-numbers.current { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }

/* 12 · FORMS ------------------------------------------------------------- */
.field { display: grid; gap: 7px; }
.field > label {
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.field > label .req { color: var(--signal); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="url"], .field input[type="number"], .field select, .field textarea,
.search-field {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--paper); font-size: var(--fs-sm); color: var(--ink-900);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6875' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 38px;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink-800); box-shadow: 0 0 0 3px rgba(30,42,54,.08);
}
.field--check { display: flex; gap: 10px; align-items: flex-start; }
.field--check input { margin-top: 4px; flex: none; }
.field--check label { font-size: var(--fs-xs); color: var(--ink-400); text-transform: none; letter-spacing: 0; font-family: var(--font-sans); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.form-grid .full { grid-column: 1 / -1; }
.form-note { font-size: var(--fs-xs); color: var(--muted); }
.hp-field { position: absolute !important; left: -9999px; opacity: 0; height: 0; }

.form-alert {
  padding: 14px 16px; border-radius: var(--radius); font-size: var(--fs-sm);
  border: 1px solid; margin-bottom: var(--s-4); display: none;
}
.form-alert.is-visible { display: block; animation: fadeUp .3s var(--ease-out); }
.form-alert--ok { background: #ECFAF1; border-color: #A8E0BE; color: #17663C; }
.form-alert--err { background: #FDF0EC; border-color: #F5BDA9; color: #9C3812; }

.form-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); padding: var(--s-7); box-shadow: var(--shadow-md);
}

.is-loading { opacity: .6; pointer-events: none; }

/* RFQ drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(7,11,15,.5); z-index: 200;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(480px, 100%); z-index: 201;
  background: var(--paper); transform: translateX(100%);
  transition: transform .4s var(--ease-out); overflow-y: auto; box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-6); border-bottom: 1px solid var(--line); position: sticky; top: 0;
  background: var(--paper); z-index: 2;
}
.drawer__head h3 { margin: 0 0 4px; font-size: var(--fs-md); }
.drawer__head p { margin: 0; font-size: var(--fs-xs); color: var(--muted); }
.drawer__close {
  width: 34px; height: 34px; border: 1px solid var(--line); background: none;
  border-radius: var(--radius); cursor: pointer; display: grid; place-items: center; flex: none;
}
.drawer__close svg { width: 15px; height: 15px; }
.drawer__body { padding: var(--s-6); }

/* 13 · FOOTER ------------------------------------------------------------ */
.site-footer { background: var(--ink-900); color: var(--ink-300); }
.footer__top { padding-block: var(--s-9) var(--s-8); }
.footer__grid { display: grid; grid-template-columns: 1.25fr .8fr .9fr 1.45fr; gap: var(--s-7) var(--s-6); }
.footer__brand .brand__mark { background: var(--ivory); color: var(--ink-900); }
.footer__brand .brand__name { color: #fff; }
.footer__about { font-size: var(--fs-sm); color: var(--ink-400); margin: var(--s-5) 0; max-width: 40ch; }
.footer__col h4 {
  color: #fff; font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .14em; text-transform: uppercase; font-weight: 500; margin-bottom: var(--s-4);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a { font-size: var(--fs-sm); color: var(--ink-300); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__contact li { display: flex; gap: 10px; font-size: var(--fs-sm); color: var(--ink-300); }
.footer__contact svg { width: 15px; height: 15px; color: var(--ink-500); flex: none; margin-top: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding-block: var(--s-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  flex-wrap: wrap; font-size: var(--fs-xs); color: var(--ink-400);
}
.footer__bottom a:hover { color: #fff; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink-900); }
.socials svg { width: 15px; height: 15px; }

.certs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s-5); }
.certs span {
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.16); padding: 5px 10px; border-radius: 2px; color: var(--ink-300);
}

/* Back to top */
.totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--ink-900); color: #fff; display: grid; place-items: center;
  border: 0; cursor: pointer; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .3s var(--ease);
}
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop svg { width: 16px; height: 16px; }

/* 12b · CATALOGUE COMPONENTS --------------------------------------------- */
/* Collection card (homepage + catalogue landing) */
.ccard {
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .3s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.ccard:hover { border-color: var(--ink-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ccard__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.ccard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.ccard:hover .ccard__media img { transform: scale(1.045); }
.ccard__body { padding: var(--s-5); }
.ccard__no {
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .14em;
  color: var(--signal); display: block; margin-bottom: 8px;
}
.ccard h3 { font-size: var(--fs-md); margin-bottom: 6px; }
.ccard p { font-size: var(--fs-sm); color: var(--ink-400); margin: 0; }
.ccard__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--s-5); border-top: 1px solid var(--line); background: var(--mist);
  font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.ccard__foot span:last-child { color: var(--signal); }

/* Order code builder */
.ordercode { border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.ordercode__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.ordercode__cell { padding: var(--s-5); border-right: 1px solid var(--line); }
.ordercode__cell:last-child { border-right: 0; }
.ordercode__label {
  display: block; font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.ordercode__cell b { font-size: var(--fs-xl); letter-spacing: -.03em; display: block; line-height: 1; }
.ordercode__cell em { font-style: normal; font-size: var(--fs-sm); color: var(--ink-400); display: block; margin-top: 8px; }
.ordercode__result {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-4) var(--s-5); background: var(--ink-900); flex-wrap: wrap;
}
.ordercode__result .ordercode__label { margin: 0; color: var(--ink-400); }
.ordercode__result strong {
  font-family: var(--font-mono); font-size: var(--fs-md); letter-spacing: .08em; color: var(--gold);
}

/* Finish swatches */
.swatches {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.swatch { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.swatches--compact { grid-template-columns: repeat(3, 1fr); }
.swatch { background: var(--paper); padding: var(--s-4); }
.swatch__chip {
  display: block; width: 100%; aspect-ratio: 3 / 2; border-radius: 2px;
  border: 1px solid rgba(7, 11, 15, .14); margin-bottom: 12px;
}
.swatch--lg .swatch__chip { aspect-ratio: 4 / 3; }
.swatch__code {
  display: block; font-family: var(--font-mono); font-size: var(--fs-xs);
  font-weight: 600; letter-spacing: .08em; color: var(--ink-900);
}
.swatch__name { display: block; font-size: var(--fs-xs); color: var(--ink-400); margin-top: 3px; }

/* Certificate cards */
.certcard { margin: 0; }
.certcard img {
  width: 100%; height: auto; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper);
}
.certcard figcaption {
  margin-top: 12px; font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

/* FAQ groups */
.faq-group { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: var(--s-7); padding-block: var(--s-6); border-top: 1px solid var(--line); }
.faq-group:first-of-type { border-top: 0; padding-top: 0; }
.faq-group__title { font-size: var(--fs-lg); margin: 0; position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }

/* Footer contact grid */
.footer__col--contact { min-width: 0; }
.fcontact { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--s-5) var(--s-4); }
.fcontact__item { min-width: 0; }
.fcontact__label {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-500); margin-bottom: 5px;
}
.fcontact__label::before { content: ""; width: 5px; height: 5px; background: var(--gold); flex: none; }
.fcontact__item a { font-size: 13px; color: var(--ink-200); overflow-wrap: anywhere; hyphens: none; line-height: 1.5; display: inline-block; }
.fcontact__item a:hover { color: var(--gold); }
.fcontact__address {
  margin: var(--s-5) 0 0; padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,.09);
  font-size: var(--fs-xs); color: var(--ink-400); line-height: 1.6;
}
.fcontact__hours { margin: 6px 0 0; font-size: var(--fs-xs); color: var(--ink-500); }

.footer__strip {
  border-top: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.02);
}
.footer__strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); padding-block: var(--s-4); flex-wrap: wrap;
}
.footer__strip .mono { color: var(--ink-500); letter-spacing: .12em; text-transform: uppercase; font-size: var(--fs-micro); }
.footer__since { color: var(--gold) !important; }

@media (max-width: 1180px) {
  .swatches { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .ordercode__row { grid-template-columns: repeat(2, 1fr); }
  .ordercode__cell:nth-child(2) { border-right: 0; }
  .ordercode__cell:nth-child(1), .ordercode__cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .faq-group { grid-template-columns: 1fr; gap: var(--s-4); }
  .faq-group__title { position: static; }
}
@media (max-width: 900px) {
  .fcontact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .swatches, .swatches--compact { grid-template-columns: repeat(2, 1fr); }
  .ordercode__row { grid-template-columns: 1fr; }
  .ordercode__cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .fcontact { grid-template-columns: 1fr; }
}

/* Google Map */
.mapwrap {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ink-050);
}
.mapwrap iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(.25) contrast(1.02); }
.mapwrap__link {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: var(--fs-xs); font-weight: 600; color: var(--ink-900);
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease);
}
.mapwrap__link:hover { transform: translateY(-2px); }
.mapwrap__link svg { width: 14px; height: 14px; color: var(--signal); }
@media (max-width: 760px) { .mapwrap iframe { height: 340px; } }

/* 13b · FLOATING CONTACT DOCK -------------------------------------------- */
.dock {
  position: fixed; top: 50%; transform: translateY(-50%);
  z-index: 95; pointer-events: none;
}
.dock--right { right: 0; }
.dock--left  { left: 0; }

.dock__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  background: var(--ink-900);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  overflow: visible;
}
.dock--right .dock__list { border-right: 0; border-radius: var(--radius) 0 0 var(--radius); }
.dock--left  .dock__list { border-left: 0;  border-radius: 0 var(--radius) var(--radius) 0; }

.dock__item { position: relative; }
.dock__item + .dock__item::before {
  content: ""; position: absolute; top: 0; left: 12px; right: 12px;
  height: 1px; background: rgba(255, 255, 255, .10);
}

.dock__btn {
  position: relative;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  color: var(--ink-200);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.dock__btn:hover, .dock__btn:focus-visible { color: #fff; background: rgba(255, 255, 255, .06); }
.dock__icon { width: 21px; height: 21px; }

.dock__item--whatsapp .dock__btn:hover { color: #25D366; }
.dock__item--wechat .dock__btn:hover,
.dock__item--wechat.is-open .dock__btn { color: #07C160; background: rgba(255, 255, 255, .06); }
.dock__item--email .dock__btn:hover,
.dock__item--rfq .dock__btn:hover { color: var(--signal); }

/* Slide-out label */
.dock__label {
  position: absolute; top: 50%; transform: translateY(-50%);
  white-space: nowrap;
  background: var(--ink-900);
  color: #fff;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: -.005em;
  padding: 8px 12px; border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  opacity: 0; visibility: hidden;
  transition: opacity .22s var(--ease), transform .28s var(--ease-out), visibility .22s;
  pointer-events: none;
}
.dock--right .dock__label { right: calc(100% + 10px); transform: translateY(-50%) translateX(8px); }
.dock--left  .dock__label { left: calc(100% + 10px);  transform: translateY(-50%) translateX(-8px); }
.dock__btn:hover .dock__label,
.dock__btn:focus-visible .dock__label {
  opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0);
}

/* WeChat popover */
.dock__pop {
  position: absolute; top: 50%;
  width: 232px; padding: 14px;
  background: var(--paper); color: var(--ink-800);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .3s var(--ease-out), visibility .25s;
  text-align: center;
}
.dock--right .dock__pop { right: calc(100% + 14px); transform: translateY(-50%) translateX(10px); }
.dock--left  .dock__pop { left: calc(100% + 14px);  transform: translateY(-50%) translateX(-10px); }
.dock__item.is-open .dock__pop {
  opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0);
}
.dock__pop::after {
  content: ""; position: absolute; top: 50%; margin-top: -6px;
  border: 6px solid transparent;
}
.dock--right .dock__pop::after { left: 100%; border-left-color: var(--paper); }
.dock--left  .dock__pop::after { right: 100%; border-right-color: var(--paper); }

.dock__pop-close {
  position: absolute; top: 6px; right: 6px;
  width: 26px; height: 26px; display: grid; place-items: center;
  background: none; border: 0; cursor: pointer; color: var(--ink-300); border-radius: 2px;
}
.dock__pop-close:hover { color: var(--ink-900); background: var(--ink-050); }
.dock__pop-close svg { width: 13px; height: 13px; }

.dock__qr {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff;
}
.dock__pop-note {
  margin: 10px 0 0; font-size: var(--fs-xs); color: var(--ink-400); line-height: 1.45;
}
.dock__wxid {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px; padding: 7px 10px;
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-700);
}
.dock__copy {
  background: none; border: 0; cursor: pointer; color: var(--ink-300);
  display: grid; place-items: center; padding: 2px;
}
.dock__copy:hover { color: var(--signal); }
.dock__copy svg { width: 13px; height: 13px; }
.dock__copy.is-copied { color: #17663C; }

/* Phones: bottom bar */
@media (max-width: 760px) {
  .dock { display: none; }
  .dock--mobile {
    display: block;
    top: auto; bottom: 0; left: 0; right: 0;
    transform: none;
  }
  .dock--mobile .dock__list {
    flex-direction: row;
    border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0;
    box-shadow: 0 -6px 24px -12px rgba(7, 11, 15, .5);
  }
  .dock--mobile .dock__item { flex: 1; }
  .dock--mobile .dock__item + .dock__item::before {
    top: 12px; bottom: 12px; left: 0; right: auto; width: 1px; height: auto;
  }
  .dock--mobile .dock__btn {
    width: 100%; height: 58px; gap: 4px;
    grid-auto-flow: row; align-content: center;
  }
  .dock--mobile .dock__icon { width: 19px; height: 19px; }
  .dock--mobile .dock__label {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: none; border: 0; padding: 0;
    font-size: 10px; font-weight: 500; color: inherit;
  }
  .dock--mobile .dock__pop {
    position: fixed; top: auto; bottom: 72px; left: 50%; right: auto;
    transform: translateX(-50%) translateY(10px);
    width: min(280px, calc(100vw - 40px));
  }
  .dock--mobile .dock__item.is-open .dock__pop { transform: translateX(-50%) translateY(0); }
  .dock--mobile .dock__pop::after { display: none; }
  .site-footer { padding-bottom: 58px; }
  .totop { bottom: 72px; }
}

@media print { .dock { display: none !important; } }

/* 13c · FINISH BOARD & REFERENCE PHOTOS ---------------------------------- */
.swatch__chip--photo { padding: 0; overflow: hidden; border-color: var(--line); }
.swatch__chip--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.finishboard { margin: 0; }
.finishboard img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: var(--radius);
}

.refshot { margin: 0 0 var(--s-5); }
.refshot img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--mist);
}
.refshot__empty {
  aspect-ratio: 14 / 9;
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
  background:
    linear-gradient(to right, rgba(30,42,54,.04) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(to bottom, rgba(30,42,54,.04) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--mist);
  display: grid; place-items: center;
}
.refshot__empty .mono { color: var(--muted); letter-spacing: .14em; }
.refshot figcaption {
  margin-top: 10px; font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

/* 13e · CATALOGUE / PDF LIBRARY ------------------------------------------ */
.docgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }

.doccard {
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  transition: border-color .4s var(--ease), box-shadow .45s var(--ease), transform .45s var(--ease-out);
}
.doccard:hover { border-color: var(--ink-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.doccard__cover {
  display: block; position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  background: var(--mist); border-bottom: 1px solid var(--line);
}
.doccard__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.doccard:hover .doccard__cover img { transform: scale(1.04); }
.doccard__ph {
  position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 12px;
  color: var(--ink-300); text-align: center; padding: var(--s-5);
  background:
    linear-gradient(to right, rgba(30,42,54,.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(to bottom, rgba(30,42,54,.045) 1px, transparent 1px) 0 0 / 26px 26px;
}
.doccard__ph svg { width: 30px; height: 30px; }
.doccard__ph .mono { letter-spacing: .12em; font-size: var(--fs-micro); }
.doccard__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--signal); color: #fff; padding: 5px 10px; border-radius: 2px;
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .08em; text-transform: uppercase;
}
.doccard__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.doccard h3 { font-size: var(--fs-md); margin-bottom: 8px; }
.doccard__body p { font-size: var(--fs-sm); color: var(--ink-400); margin: 0 0 var(--s-4); }
.doccard__meta { color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: auto !important; }
.doccard__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: var(--s-4); }

.docviewer {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); overflow: hidden; box-shadow: var(--shadow-md);
}
.docviewer__bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--mist); flex-wrap: wrap;
}
.docviewer__name {
  font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500);
}
.docviewer__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.docviewer__frame { background: var(--ink-050); }
.docviewer__frame iframe { display: block; width: 100%; height: var(--viewer-h, 820px); border: 0; }
.docviewer__fallback {
  margin: 0; padding: 10px 16px; border-top: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--muted); background: var(--mist);
}
.docviewer__fallback a { color: var(--signal-ink); text-decoration: underline; text-underline-offset: 3px; }
.docviewer--empty {
  display: grid; place-items: center; text-align: center;
  min-height: 320px; padding: var(--s-7);
  border-style: dashed; border-color: var(--line-strong); box-shadow: none; background: var(--mist);
}
.docviewer--empty .mono { letter-spacing: .14em; color: var(--muted); margin-bottom: 8px; }

.dock__item--catalogue .dock__btn:hover { color: var(--gold); }

@media (max-width: 1024px) { .docgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .docgrid { grid-template-columns: 1fr; }
  .docviewer__frame iframe { height: min(70vh, 560px); }
}

/* 13f · LOGO ------------------------------------------------------------- */
.brand__logo { width: auto; max-height: none; display: block; object-fit: contain; }
.brand__text { display: block; }
.brand--image .brand__text { padding-left: 2px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: var(--ink-400); }
@media (max-width: 760px) {
  .brand__text .brand__name { font-size: var(--fs-base); }
}

/* 13d · PREMIUM PASS ------------------------------------------------------ */
:root {
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
}

/* A whisper of grain lifts the flat blacks off the screen */
.hero::after, .section--dark::after, .cta-band::after, .page-hero::after, .site-footer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: .035; mix-blend-mode: overlay; z-index: 1;
}
.hero, .section--dark, .cta-band, .page-hero, .site-footer { position: relative; }
.hero > *, .section--dark > *, .cta-band > *, .page-hero > *, .site-footer > * { position: relative; z-index: 2; }

/* Gold hairline under the top bar and above the footer */
.site-header { border-top: 2px solid var(--signal); }
.site-footer {
  border-top: 1px solid transparent;
  background-image: linear-gradient(90deg, var(--signal) 0%, rgba(201,165,90,.35) 42%, transparent 78%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

/* Serif numerals give the collection cards an editorial feel */
.ccard__no, .vcard__no, .steps__no, .mega__no { font-feature-settings: "tnum" 1; }
.ccard__no::first-letter { font-family: inherit; }
.numeral {
  font-family: var(--font-display); font-size: var(--fs-2xl);
  line-height: 1; color: var(--signal); font-style: italic;
}

/* Softer, slower, more expensive-feeling interactions */
.btn { transition: transform .35s var(--ease-out), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease); }
.btn--signal { box-shadow: inset 0 1px 0 rgba(255,255,255,.16); }
.btn--signal:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 26px -14px rgba(168,124,42,.9); }
.pcard, .ccard, .vcard { transition: border-color .4s var(--ease), box-shadow .45s var(--ease), transform .45s var(--ease-out); }
.pcard:hover, .ccard:hover { box-shadow: 0 26px 50px -34px rgba(7,11,15,.42); }

/* Gold rule that draws itself on hover */
.ccard::after, .pcard::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--signal), rgba(201,165,90,.25));
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease-out); z-index: 3;
}
.ccard:hover::after, .pcard:hover::after { transform: scaleX(1); }

/* Quieter section rhythm at desktop widths */
@media (min-width: 1100px) {
  .section { padding-block: 120px; }
  .section--tight { padding-block: 88px; }
  .wrap { padding-inline: 40px; }
}

/* Editorial pull quote */
.pullquote {
  font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1.4;
  color: var(--ink-800); font-style: italic; letter-spacing: -.01em;
  border-left: 2px solid var(--signal); padding-left: var(--s-6);
}

/* Centered ornament divider */
.ornament { display: flex; align-items: center; gap: 14px; color: var(--line-strong); }
.ornament::before, .ornament::after { content: ""; height: 1px; background: currentColor; flex: 1; }
.ornament span { width: 5px; height: 5px; background: var(--signal); transform: rotate(45deg); }

/* 14 · UTILITIES --------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; } .mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); } .mt-7 { margin-top: var(--s-7); } .mt-8 { margin-top: var(--s-8); }
.mb-0 { margin-bottom: 0; } .mb-4 { margin-bottom: var(--s-4); } .mb-6 { margin-bottom: var(--s-6); }
.muted { color: var(--ink-400); }
.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }
.nowrap { white-space: nowrap; }

/* 15 · MOTION ------------------------------------------------------------ */
/* Cross-document view transitions where the browser supports them */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut .28s var(--ease) both; }
::view-transition-new(root) { animation: vtIn .42s var(--ease-out) both; }
@keyframes vtOut { to { opacity: 0; } }
@keyframes vtIn { from { opacity: 0; transform: translateY(8px); } }

/* First paint settles in rather than snapping */
body { animation: pageIn .5s var(--ease-out) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* Images fade up as they decode instead of popping in */
.pcard__media img, .ccard__media img, .mega__thumb img,
.post-card__img img, .case-card__img img, .gallery__main img,
.split__media img, .certcard img {
  opacity: 0; transition: opacity .6s var(--ease-out), transform .7s var(--ease-out);
}
.pcard__media img.is-loaded, .ccard__media img.is-loaded, .mega__thumb img.is-loaded,
.post-card__img img.is-loaded, .case-card__img img.is-loaded, .gallery__main img.is-loaded,
.split__media img.is-loaded, .certcard img.is-loaded { opacity: 1; }
.no-js .pcard__media img, .no-js .ccard__media img { opacity: 1; }

/* Anchor jumps land softly under the sticky header */
:target { scroll-margin-top: calc(var(--header-h) + 24px); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* 16 · RESPONSIVE -------------------------------------------------------- */
@media (max-width: 1180px) {
  .logos { grid-template-columns: repeat(3, 1fr); }
  .catalog { grid-template-columns: 232px minmax(0, 1fr); gap: var(--s-6); }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1280px) {
  .footer__grid { grid-template-columns: 1.2fr .9fr 1fr; }
  .footer__col--contact { grid-column: 1 / -1; padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,.09); }
  .fcontact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  :root { --gutter: 20px; }
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; margin-left: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-7); align-items: start; }
  .product-top { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .split, .split--wide-left { grid-template-columns: 1fr; gap: var(--s-6); }
  .split__badge { position: static; margin-top: var(--s-4); max-width: none; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps__item:nth-child(2) { border-right: 0; }
  .steps__item:nth-child(3) { padding-left: 0; }
  .catalog { grid-template-columns: 1fr; }
  .filters { position: static; padding-bottom: var(--s-5); border-bottom: 1px solid var(--line); }
  .filters ul { display: flex; flex-wrap: wrap; gap: 8px; }
  .filters li a { border: 1px solid var(--line); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --fs-3xl: 2.1rem; --fs-2xl: 1.75rem; --fs-xl: 1.4rem; }
  .section { padding-block: var(--s-8); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr; }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps__item { border-right: 0; border-bottom: 1px solid var(--line); padding: var(--s-5) 0; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .topbar__inner { justify-content: center; min-height: 34px; }
  .topbar__list--right { display: none; }
  .form-card { padding: var(--s-5); }
  .tabs__nav button { padding: 14px 16px; }
  .tabs__nav button:first-child { padding-left: 0; }
}

/* Print */
@media print {
  .site-header, .site-footer, .totop, .drawer, .drawer-backdrop, .rfq-box, .topbar { display: none !important; }
  body { color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10px; color: #555; }
}

/* WordPress core classes */
.alignleft { float: left; margin: 0 var(--s-5) var(--s-4) 0; }
.alignright { float: right; margin: 0 0 var(--s-4) var(--s-5); }
.aligncenter { margin-inline: auto; }
.alignwide { width: min(1100px, 100vw - 2 * var(--gutter)); margin-inline: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption-text { font-size: var(--fs-xs); color: var(--muted); }
.sticky, .gallery-caption, .bypostauthor {}

/* ========================================================================
   14 · v2.3 — SOCIAL ICONS, COMPANY PAGE, WORKSHOP GALLERY
   ===================================================================== */

/* 14a · Social icons ------------------------------------------------------ */
.socials {
  display: flex; flex-wrap: wrap; gap: 8px;
  --soc-size: 40px; --soc-radius: 10px;
}
.socials a.social {
  width: var(--soc-size); height: var(--soc-size); border-radius: var(--soc-radius);
  display: grid; place-items: center; flex: none;
  border: 1px solid rgba(255, 255, 255, .16);
  color: currentColor; background: transparent;
  transition: background .28s var(--ease-out), color .28s var(--ease-out),
              border-color .28s var(--ease-out), transform .28s var(--ease-out);
}
.socials a.social:hover, .socials a.social:focus-visible { transform: translateY(-3px); }
.socials .social__svg {
  width: calc(var(--soc-size) * .46); height: calc(var(--soc-size) * .46);
  display: block; transition: transform .28s var(--ease-out);
}

/* Real brand colour appears on hover */
.socials--brand a.social:hover,
.socials--brand a.social:focus-visible {
  background: var(--soc-brand); border-color: var(--soc-brand); color: #fff;
}

/* Real brand colour always on */
.socials--brand-solid a.social {
  background: var(--soc-brand); border-color: var(--soc-brand); color: #fff;
}
.socials--brand-solid a.social:hover { filter: brightness(1.12); }

/* One custom colour */
.socials--custom a.social:hover,
.socials--custom a.social:focus-visible {
  background: var(--soc-brand); border-color: var(--soc-brand); color: #fff;
}

/* Monochrome — matches the theme accent */
.socials--mono a.social:hover,
.socials--mono a.social:focus-visible {
  background: var(--gold); border-color: var(--gold); color: var(--ink-900);
}

/* On light backgrounds the hairline has to flip */
.socials--light a.social,
.section:not(.section--dark) .socials a.social { border-color: var(--line); color: var(--ink-700); }
.socials--brand-solid a.social,
.section:not(.section--dark) .socials--brand-solid a.social { color: #fff; }

/* Yellow-on-white brands need a darker glyph so they stay legible */
.socials--brand-solid .social--snapchat { color: #111; }

/* 14b · Company page ------------------------------------------------------ */
.co-h1 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.12; margin-bottom: var(--s-5); }
.co-h1 em { font-style: normal; color: var(--signal); }

.co-photo { border-radius: var(--radius); overflow: hidden; background: var(--mist); }
.co-photo img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.co-photo--tall img { aspect-ratio: 4 / 5; }

.steps--co { grid-template-columns: repeat(4, 1fr); row-gap: var(--s-7); }
.steps--co .steps__item { border-top: 1px solid var(--line); padding-top: var(--s-5); }
.steps--co .steps__item h3 { margin: var(--s-4) 0 8px; font-size: var(--fs-base); }
.steps--co .steps__item p { font-size: var(--fs-sm); color: var(--ink-400); }

.co-equip .dl-item, .dl-item dt, .dl-item dd { margin: 0; }
.dl-item dt { font-size: var(--fs-sm); font-weight: 600; }
.dl-item dd { font-family: var(--font-mono); font-size: var(--fs-micro); color: var(--muted); margin-left: auto; text-align: right; }

.co-cap .vcard { text-align: left; }
.co-cap__no {
  display: block; font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px);
  line-height: 1; color: var(--signal); font-variant-numeric: tabular-nums;
}
.co-cap__lb {
  display: block; margin-top: 10px; font-family: var(--font-mono);
  font-size: var(--fs-micro); letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

.co-qc th { text-align: left; width: 34%; font-weight: 600; }

.co-timeline-sec { padding-block: clamp(64px, 7vw, 104px); }
.co-timeline-sec__h { color: #fff; margin-bottom: var(--s-7); }
.co-tl { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.co-tl__i {
  display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: var(--s-6);
  padding: var(--s-5) 0; border-top: 1px solid rgba(255, 255, 255, .12); align-items: start;
}
.co-tl__i:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.co-tl__y {
  font-family: var(--font-mono); font-size: var(--fs-sm); letter-spacing: .1em;
  color: var(--gold); padding-top: 2px;
}
.co-tl__i p { margin: 0; color: var(--ink-300); font-size: var(--fs-sm); max-width: 78ch; }

@media (max-width: 980px) {
  .steps--co { grid-template-columns: repeat(2, 1fr); }
  .co-tl__i { grid-template-columns: 88px minmax(0, 1fr); gap: var(--s-4); }
}
@media (max-width: 620px) {
  .steps--co { grid-template-columns: 1fr; }
  .steps--co .steps__item { border-right: 0; padding-left: 0; }
  .co-tl__i { grid-template-columns: 1fr; gap: 6px; }
  .dl-item { flex-wrap: wrap; }
  .dl-item dd { text-align: left; margin-left: 0; }
}

/* 14c · Workshop gallery -------------------------------------------------- */
.wsgal-sec { padding-block: clamp(48px, 6vw, 88px); }
.wsgal__head { margin-bottom: var(--s-7); max-width: 68ch; }
.wsgal__head h2 { margin-bottom: 10px; }

.wsgal {
  --wsgal-cols: 3;
  display: grid; grid-template-columns: repeat(var(--wsgal-cols), minmax(0, 1fr)); gap: 10px;
}
.wsgal__item {
  display: block; position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--mist); line-height: 0; aspect-ratio: 4 / 3;
}
.wsgal__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease-out), filter .4s var(--ease-out);
}
.wsgal__item::after {
  content: ""; position: absolute; inset: 0; background: rgba(7, 11, 15, .18);
  opacity: 0; transition: opacity .35s var(--ease-out);
}
a.wsgal__item:hover img, a.wsgal__item:focus-visible img { transform: scale(1.05); }
a.wsgal__item:hover::after, a.wsgal__item:focus-visible::after { opacity: 1; }
.wsgal__item--empty { filter: grayscale(.15); }

/* Every third photo runs wide so the grid reads like a contact sheet */
.wsgal__item:nth-child(7n + 1) { grid-column: span 2; aspect-ratio: 8 / 3; }

/* Inline --wsgal-cols would beat a var override, so the property itself is reset. */
@media (max-width: 900px) { .wsgal { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .wsgal { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .wsgal__item:nth-child(7n + 1) { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* 14d · Lightbox ---------------------------------------------------------- */
.lbx {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(7, 11, 15, .93); padding: clamp(16px, 4vw, 56px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease-out), visibility .3s;
}
.lbx.is-open { opacity: 1; visibility: visible; }
.lbx img {
  max-width: 100%; max-height: 88vh; object-fit: contain; display: block;
  border-radius: 4px; transform: scale(.97); transition: transform .4s var(--ease-out);
}
.lbx.is-open img { transform: scale(1); }
.lbx__btn {
  position: absolute; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  color: #fff; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  cursor: pointer; transition: background .25s var(--ease-out);
}
.lbx__btn:hover { background: rgba(255, 255, 255, .18); }
.lbx__close { top: 20px; right: 20px; font-size: 20px; line-height: 1; }
.lbx__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lbx__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lbx__count {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .12em; color: rgba(255,255,255,.7);
}
@media (max-width: 560px) {
  .lbx__prev { left: 8px; } .lbx__next { right: 8px; }
}

.footer__social { margin-top: var(--s-5); }

/* 14e · Homepage "inside the factory" ------------------------------------- */
.fac { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.fac__media { border-radius: var(--radius); overflow: hidden; background: var(--ink-050); position: sticky; top: calc(var(--header-h) + 24px); }
.fac__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 5; }
.fac__steps { list-style: none; margin: 0 0 var(--s-6); padding: 0; }
.fac__steps li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: var(--s-4); padding: var(--s-5) 0; border-top: 1px solid var(--line); }
.fac__steps li:first-child { border-top: 0; padding-top: 0; }
.fac__no { font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .12em; color: var(--signal); padding-top: 4px; }
.fac__steps h3 { margin: 0 0 6px; font-size: var(--fs-base); }
.fac__steps p { margin: 0; font-size: var(--fs-sm); color: var(--ink-400); }
.fac__cap { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); padding: var(--s-5) 0; border-block: 1px solid var(--line); }
.fac__cap b { display: block; font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); line-height: 1; color: var(--ink-900); font-variant-numeric: tabular-nums; }
.fac__cap span { display: block; margin-top: 8px; font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.fac__links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s-5); }
@media (max-width: 900px) {
  .fac { grid-template-columns: 1fr; }
  .fac__media { position: static; }
  .fac__media img { aspect-ratio: 16 / 10; }
  .fac__cap { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* 14f · Static hero fix --------------------------------------------------- */
/* `.hero > *` (section 13d) promotes every direct child to z-index 2, which
   pushes the background layers in front of the copy when the slider is off
   and hero-static.php puts them directly inside .hero. */
.hero > .hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero > .hero__veil { position: absolute; inset: 0; z-index: -1; }
.hero > .hero__grid-layer { position: absolute; inset: 0; z-index: -1; }

/* 14g · Hero stats panel -------------------------------------------------- */
/* The stat block sits over the lightest part of the photograph, so it carries
   its own frosted panel instead of relying on the scrim. */
.hero__stats {
  background: rgba(7, 11, 15, .46);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__stat span { color: rgba(255, 255, 255, .78); }
.hero__stat b { text-shadow: 0 1px 12px rgba(0, 0, 0, .45); }

/* The eyebrow and lede also sit on bare photograph on wide screens. */
.hero .eyebrow--light { color: rgba(255, 255, 255, .88); }
.hero__lede { color: rgba(255, 255, 255, .9); }

/* 14h · Hero colours + floating object ------------------------------------ */
.hero { --hero-text: #ffffff; --hero-accent: var(--gold); }
.hero h1 { color: var(--hero-text); }
.hero h1 em { color: var(--hero-accent); }
.hero .eyebrow--light { color: color-mix(in srgb, var(--hero-text) 82%, transparent); }
.hero__lede { color: color-mix(in srgb, var(--hero-text) 88%, transparent); }
.hero__stat b { color: var(--hero-text); }
.hero__stat span { color: color-mix(in srgb, var(--hero-text) 72%, transparent); }
.hero .eyebrow--light::before, .hero .eyebrow::before { background: var(--hero-accent); }

/* Browsers without color-mix still get a readable colour. */
@supports not (color: color-mix(in srgb, #fff 50%, transparent)) {
  .hero .eyebrow--light, .hero__lede, .hero__stat span { color: var(--hero-text); }
}

/* A second image floated over the background, positioned by the client. */
.hero__object {
  position: absolute; z-index: 1; pointer-events: none;
  left: var(--ox, 74%); top: var(--oy, 52%); width: var(--ow, 40%);
  transform: translate(-50%, -50%);
}
.hero__object img { width: 100%; height: auto; display: block; }
.hero__object--shadow img { filter: drop-shadow(0 34px 64px rgba(0, 0, 0, .55)); }

/* It fades in with its slide, like the rest of the panel. */
.hero__slide .hero__object { opacity: 0; transform: translate(-50%, -46%); transition: opacity 1s var(--ease-out) .15s, transform 1.2s var(--ease-out) .15s; }
.hero__slide.is-active .hero__object { opacity: 1; transform: translate(-50%, -50%); }

@media (max-width: 860px) {
  .hero__object {
    position: relative; left: auto; top: auto; transform: none;
    width: min(calc(var(--ow, 40%) * 1.7), 68%); margin: 0 auto var(--s-7);
  }
  .hero__slide .hero__object { transform: none; }
  .hero__slide.is-active .hero__object { transform: none; }
  .hero__object--desktop { display: none; }
}

/* ========================================================================
   15 · v2.4 — IMAGE FRAMING, EDITOR BLOCKS, PREMIUM PASS 2
   ===================================================================== */

/* 15a · Media framing ----------------------------------------------------- */
/* Every media wrapper is an element-level box with a real aspect ratio, so a
   portrait upload can never stretch the tile. `--img-fit: contain` keeps a
   product cut-out whole; `cover` fills and crops a lifestyle photograph. */
:root { --img-ratio: 4 / 3; --img-fit: contain; --img-pad: 8%; }

.ccard__media,
.pcard__media,
.mega__thumb,
.case-card__img,
.post-card__img,
.gallery__main,
.gallery__thumb {
  display: block; position: relative; overflow: hidden;
}
.ccard__media,
.pcard__media,
.mega__thumb { aspect-ratio: var(--img-ratio); background: var(--paper); }

.ccard__media img,
.pcard__media img,
.mega__thumb img {
  width: 100%; height: 100%; display: block;
  object-fit: var(--img-fit); object-position: center;
}
/* Cut-outs need breathing room; a cropped photograph must not be inset. */
.ccard__media img,
.pcard__media img { padding: var(--img-pad); }
.ccard__media--cover img,
.pcard__media--cover img,
:root[data-imgfit="cover"] .ccard__media img,
:root[data-imgfit="cover"] .pcard__media img { padding: 0; }

/* The product grid drops the multiply blend, which greys white backgrounds. */
.pcard__media img { mix-blend-mode: normal; }

/* 15b · Core block editor -------------------------------------------------- */
/* Core puts the class on the button wrapper, not the anchor. */
.wp-block-button.btn > .wp-block-button__link,
.wp-block-button > .wp-block-button__link.btn {
  all: unset;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: .01em; padding: 14px 22px; border-radius: var(--radius);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.wp-block-button.btn--signal > .wp-block-button__link { background: var(--signal); color: #fff; }
.wp-block-button.btn--signal > .wp-block-button__link:hover { background: var(--signal-ink); transform: translateY(-2px); }
.wp-block-button.btn--ghost > .wp-block-button__link { border: 1px solid var(--line-strong); color: var(--ink-900); }
.wp-block-button.btn--ghost > .wp-block-button__link:hover { background: var(--ink-900); color: #fff; }
.wp-block-button.btn--sm > .wp-block-button__link { padding: 10px 16px; font-size: var(--fs-xs); }

.entry .wp-block-image img { border-radius: var(--radius); }
.entry .wp-block-columns { gap: var(--s-6); }
.entry .wp-block-table table { width: 100%; }
.entry .statband, .entry .steps, .entry .certs, .entry .cta-band { margin-block: var(--s-7); }
.entry .wp-block-group.vcard { height: 100%; }
.entry .cta-band .wp-block-columns { align-items: center; }

/* 15c · Type & rhythm ------------------------------------------------------ */
.section-head { align-items: end; }
.section-head__text { max-width: 68ch; }
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 52px); line-height: 1.06; letter-spacing: -.02em;
  margin-bottom: var(--s-4);
}
.section-head__text > p:last-child { font-size: var(--fs-md); color: var(--ink-400); max-width: 62ch; }

/* Eyebrow gets a gold rule and reads as a label, not a sentence. */
.eyebrow, .eyebrow--light {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: var(--s-4);
}
.eyebrow::before, .eyebrow--light::before {
  content: ""; width: 28px; height: 1px; background: var(--signal); flex: none;
}
.eyebrow--plain::before { display: none; }

/* 15d · The section rule -------------------------------------------------- */
.section--line-top { border-top: 1px solid var(--line); }
.section--rule > .wrap::before {
  content: ""; display: block; height: 1px; margin-bottom: var(--s-7);
  background: linear-gradient(90deg, var(--signal) 0 92px, var(--line) 92px 100%);
}

/* 15e · Collection cards, editorial ---------------------------------------- */
.ccollections {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr; gap: var(--s-5);
}
/* The lead collection is a two-by-two poster; the remaining eight fill the
   grid exactly, so no card is ever left stranded on its own row. */
.ccollections .ccard:first-child { grid-column: span 2; grid-row: span 2; }
.ccollections .ccard:first-child .ccard__media { aspect-ratio: auto; flex: 1; min-height: 0; }
.ccollections .ccard:first-child h3 { font-size: clamp(24px, 2.4vw, 34px); }
.ccollections .ccard:first-child .ccard__body { flex: none; padding: var(--s-6); }
.ccollections .ccard:first-child .ccard__body p { font-size: var(--fs-base); max-width: 46ch; }

.ccard { isolation: isolate; }
.ccard::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--signal); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out); z-index: 3;
}
.ccard:hover::after, .ccard:focus-visible::after { transform: scaleX(1); }
.ccard:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -28px rgba(12, 16, 20, .35); }
.ccard__foot span:last-child { display: inline-flex; align-items: center; gap: 6px; transition: gap .3s var(--ease-out); }
.ccard:hover .ccard__foot span:last-child { gap: 12px; }

@media (max-width: 980px) {
  .ccollections { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .ccollections .ccard:first-child { grid-column: span 2; grid-row: span 1; }
  .ccollections .ccard:first-child .ccard__media { aspect-ratio: 16 / 9; flex: none; }
}
@media (max-width: 620px) {
  .ccollections { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .ccollections .ccard:first-child { grid-column: span 1; grid-row: span 1; }
  .ccollections .ccard:first-child .ccard__media { aspect-ratio: var(--img-ratio); flex: none; }
}

/* 15f · Reveal animations -------------------------------------------------- */
/* Headings wipe up from behind a mask; media uncovers from a gold panel. */
.mask { display: block; overflow: hidden; }
.mask > * {
  display: block; transform: translateY(105%);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}
.mask.is-in > * { transform: translateY(0); }

.uncover { position: relative; overflow: hidden; }
.uncover::after {
  content: ""; position: absolute; inset: 0; background: var(--signal);
  transform: scaleX(1); transform-origin: right; z-index: 2;
  transition: transform 1.05s cubic-bezier(.76, 0, .24, 1);
}
.uncover.is-in::after { transform: scaleX(0); }

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.reveal[data-d="1"].is-in { transition-delay: .08s; }
.reveal[data-d="2"].is-in { transition-delay: .16s; }
.reveal[data-d="3"].is-in { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .mask > *, .uncover::after, .reveal { transform: none !important; opacity: 1 !important; transition: none !important; }
}

/* 15g · Marquee ------------------------------------------------------------ */
.marquee {
  --marquee-speed: 44s;
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--paper); padding-block: var(--s-5);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.section--dark .marquee, .marquee--dark { background: transparent; border-color: rgba(255, 255, 255, .1); }
.marquee__track { display: flex; width: max-content; animation: axiom-marquee var(--marquee-speed) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: var(--s-6); padding-inline: var(--s-6);
  font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: -.01em; color: var(--ink-300); white-space: nowrap;
}
.marquee--dark .marquee__item { color: rgba(255, 255, 255, .34); }
.marquee__item::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); flex: none; }
@keyframes axiom-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* 15h · Spotlight that follows the pointer on dark bands ------------------- */
.spotlight { position: relative; isolation: isolate; }
.spotlight::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 165, 90, .16), transparent 62%);
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.spotlight:hover::before { opacity: 1; }

/* 15i · Buttons ------------------------------------------------------------ */
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn--signal::before {
  content: ""; position: absolute; inset: 0; background: var(--ink-900);
  transform: translateY(101%); transition: transform .45s var(--ease-out); z-index: 0;
}
.btn--signal:hover::before { transform: translateY(0); }
.btn svg { transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

/* 15j · Header ------------------------------------------------------------- */
.site-header {
  transition: box-shadow .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 10px 40px -24px rgba(12, 16, 20, .5);
}

/* 15k · Section index numbers ---------------------------------------------- */
.section-head { position: relative; }
.section-head__no {
  position: absolute; right: 0; top: -6px;
  font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .2em; color: var(--muted);
}
@media (max-width: 860px) { .section-head__no { display: none; } }

/* 15l · Parallax hook ------------------------------------------------------ */
[data-parallax] img { transform: translate3d(0, var(--py, 0), 0); will-change: transform; }

/* 15m · Card and column balance -------------------------------------------- */
.ccard { display: flex; flex-direction: column; }
.ccard__body { flex: 1; }
.reasons .vcard { height: 100%; }
@media (max-width: 720px) { .reasons { grid-template-columns: 1fr; } }

/* ========================================================================
   16 · v2.5 — VIDEO, EDIT PINS, PREMIUM PASS 3
   ===================================================================== */

/* 16a · Video player ------------------------------------------------------- */
.vplayer {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: var(--v-ratio, 16 / 9); background: var(--ink-900);
  isolation: isolate; cursor: pointer;
}
.vplayer__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.1s var(--ease-out), filter .6s var(--ease-out);
}
.vplayer__poster--empty { background: linear-gradient(140deg, #1a2027, #0c1014); }
.vplayer:hover .vplayer__poster { transform: scale(1.035); filter: brightness(.86); }
.vplayer::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% 46%, rgba(7, 11, 15, .5), transparent 70%),
    linear-gradient(180deg, rgba(7, 11, 15, .22) 0%, rgba(7, 11, 15, .66) 100%);
}

.vplayer__play {
  position: absolute; inset: 0; z-index: 2; margin: 0; padding: 0;
  display: grid; place-items: center; gap: 0;
  background: none; border: 0; color: #fff; cursor: pointer;
  grid-auto-flow: row;
}
.vplayer__play svg { width: 28px; height: 28px; grid-area: 1 / 1; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); transition: transform .35s var(--ease-out); }
.vplayer__ring {
  grid-area: 1 / 1; width: 92px; height: 92px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(12, 16, 20, .42);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 12px 40px -14px rgba(0, 0, 0, .8);
  transition: transform .45s var(--ease-out), background .35s var(--ease-out), border-color .35s var(--ease-out);
}
.vplayer:hover .vplayer__ring { transform: scale(1.08); background: var(--signal); border-color: var(--signal); }
.vplayer:hover .vplayer__play svg { transform: scale(1.1) translateX(2px); }

/* A second ring that pulses outward, so the play button reads as live. */
.vplayer__play::before {
  content: ""; position: absolute; width: 92px; height: 92px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  animation: axiom-pulse 2.8s var(--ease-out) infinite;
}
@keyframes axiom-pulse {
  0% { transform: scale(1); opacity: .8; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .vplayer__play::before { animation: none; } }

.vplayer__label {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
  font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .82);
  white-space: nowrap;
}
.vplayer.is-playing .vplayer__play,
.vplayer.is-playing .vplayer__poster,
.vplayer.is-playing::after { display: none; }
.vplayer iframe, .vplayer > video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3;
  object-fit: cover; background: #000;
}

/* 16b · Film band ---------------------------------------------------------- */
.film { padding-block: clamp(64px, 8vw, 120px); }
.film__inner { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.film__copy h2 { color: #fff; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.08; margin-bottom: var(--s-4); }
.film__copy .lede { color: var(--ink-300); max-width: 46ch; }
.vplayer--feature { box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .85); }
@media (max-width: 900px) { .film__inner { grid-template-columns: 1fr; } }

/* 16c · Hero background film ----------------------------------------------- */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 0;
  opacity: var(--hero-img-opacity, .72);
}
.hero__bg:has(.hero__video) img { display: none; }
@media (max-width: 780px) { .hero__video { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }

/* 16d · Premium pass 3 ----------------------------------------------------- */
/* A hairline progress bar that fills as the page is read. */
.readbar {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 60;
  background: linear-gradient(90deg, var(--signal), var(--gold));
  transform: scaleX(var(--read, 0)); transform-origin: left;
  transition: transform .12s linear; pointer-events: none;
}

/* Corner ticks: a draughtsman's frame on the important media. */
.tick { position: relative; }
.tick::before, .tick::after {
  content: ""; position: absolute; width: 22px; height: 22px; z-index: 4; pointer-events: none;
  border: 1px solid var(--signal); opacity: .75;
}
.tick::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.tick::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* Dark sections get a brass wash from the corner instead of flat black. */
.section--dark, .cta-band {
  background-image: radial-gradient(90% 120% at 100% 0%, rgba(168, 124, 42, .14), transparent 58%);
}

/* Statistic numbers sit on a hairline grid rather than floating. */
.statband__i { position: relative; }
.statband__i::before {
  content: ""; position: absolute; left: 0; top: 22px; width: 18px; height: 1px; background: var(--signal);
}
.statband__i b { padding-top: 14px; display: block; }

/* Links in body copy get a brass underline that draws on hover. */
.entry a:not(.btn) {
  background-image: linear-gradient(var(--signal), var(--signal));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .4s var(--ease-out);
  text-decoration: none;
}
.entry a:not(.btn):hover { background-size: 100% 1px; }

/* Section rhythm: more air between bands on a large screen. */
@media (min-width: 1100px) {
  .section { padding-block: clamp(72px, 7.5vw, 128px); }
  .section--tight { padding-block: clamp(52px, 5vw, 84px); }
}

.axiom-videoblock { margin-block: var(--s-7); }
.axiom-videoblock .wp-block-embed__wrapper { border-radius: var(--radius); overflow: hidden; }
.axiom-videoblock figcaption { font-size: var(--fs-sm); color: var(--muted); margin-top: 12px; }
