/* =================================================================
   ACE SITHA — Shared Design System (v1.1, premium / elegant)
   Loaded by every page on the site. Inspired by Stripe / Bosch / editorial B2B.
   ACESITHA tokens (--ace-*) and Wanzl tokens (--wanzl-*) stay strictly separated.
   ================================================================= */
:root {
  /* Surface */
  --ace-page:        #FAFAF7;
  --ace-card:        #FFFFFF;
  --ace-surface-alt: #F4F4F0;

  /* Ink — warm-leaning palette for premium-print feel */
  --ace-ink-900:     #14110F;
  --ace-ink-800:     #1F1B17;
  --ace-ink-700:     #2A2620;
  --ace-ink-500:     #6E6B66;
  --ace-ink-400:     #94918C;
  --ace-ink-300:     #B2B0AC;
  --ace-ink-200:     #DCDAD6;

  /* Border */
  --ace-bd-300:      #DCDDE0;
  --ace-bd-200:      #ECEDEF;
  --ace-bd-100:      #F4F5F7;

  /* Brand accents */
  --ace-red:         #ED1C24;
  --ace-red-700:     #C01016;
  --ace-red-50:      #FFF4F4;

  /* Wanzl co-brand — uses the official Wanzl SVG logo (with baked-in blue #3a90d5 in the file).
     Token retained for any element that needs the Wanzl blue as a CSS color (badge border, accent text). */
  --wanzl-blue:      #3a90d5;  /* Matches the fill in the official Wanzl SVG */
  --wanzl-bg:        #FFFFFF;

  /* LINE */
  --line-green:      #00C300;

  /* Spacing */
  --s-1:  4px;  --s-2:  8px;  --s-3: 16px;  --s-4: 24px;
  --s-5: 32px;  --s-6: 48px;  --s-7: 64px;  --s-8: 96px;  --s-9: 128px;

  /* Radius */
  --r-sm: 4px;  --r-md: 10px;  --r-lg: 18px;  --r-pill: 999px;

  /* Shadow — warm paper-print tints instead of cool gray */
  --sh-1: 0 1px 2px rgba(56, 32, 20, 0.06);
  --sh-2: 0 8px 24px rgba(56, 32, 20, 0.07);
  --sh-3: 0 18px 48px rgba(56, 32, 20, 0.10);
  --sh-warm: 0 24px 64px -12px rgba(56, 32, 20, 0.18);

  /* Typography */
  --font-sans:    "Inter", "Sarabun", "IBM Plex Sans Thai", "Helvetica Neue", Arial, "Noto Sans Thai", sans-serif;
  --font-display: "Fraunces", "Inter", "Sarabun", Georgia, serif;

  /* Type scale */
  --fs-display: clamp(2.5rem, 5vw, 4rem);
  --fs-h1:      clamp(2rem, 4vw, 3rem);
  --fs-h2:      clamp(1.625rem, 3vw, 2.25rem);
  --fs-h3:      clamp(1.25rem, 2vw, 1.5rem);
  --fs-h4:      1.125rem;
  --fs-body-lg: 1.125rem;
  --fs-body:    1rem;
  --fs-sm:      0.875rem;
  --fs-micro:   0.75rem;

  /* Layout */
  --container: 1280px;
  --t-fast: .2s ease;
  --t-med:  .35s ease;
  --t-slow: .6s ease;
}

/* Reset / base */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--ace-ink-700);
  background: var(--ace-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  color: var(--ace-ink-900);
  font-weight: 500;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.015em;
  line-height: 1.32;  /* Thai-friendly default */
}
h1 { font-size: var(--fs-h1); line-height: 1.28; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.018em; line-height: 1.34; }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.01em; line-height: 1.42; }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.45; }
p  { margin: 0 0 var(--s-3); }
/* Thai-specific line-heights — Thai diacritics need vertical room */
:lang(th) h1 { line-height: 1.32; }
:lang(th) h2 { line-height: 1.4; }
:lang(th) h3 { line-height: 1.5; }
:lang(th) h4 { line-height: 1.55; }
:lang(th) p, :lang(th) li { line-height: 1.85; }
:lang(th) .lead, :lang(th) .hero-lead { line-height: 1.85; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 56px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Eyebrow + section title */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ace-ink-500);
  margin-bottom: var(--s-3);
}
.eyebrow .mark {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ace-red);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
  transform: translateY(-1px);
}
.section-title {
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.32;  /* Was 1.2 — Thai-friendly */
  max-width: 22ch;
  margin-bottom: var(--s-4);
}
/* Default em inside section titles — upright Inter Medium.
   Italic is now opt-in via the `.editorial` modifier so only key moments
   (About section 01, Featured strip h2) carry the editorial gesture. */
.section-title em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.section-title em.editorial,
.section-title .editorial {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.lead {
  font-size: var(--fs-body-lg);
  line-height: 1.75;
  color: var(--ace-ink-500);
  max-width: 60ch;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 14px 26px;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.02em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all var(--t-fast);
  text-align: center; line-height: 1.3;
  cursor: pointer;
}
.btn:focus-visible { outline: 3px solid var(--ace-red-50); outline-offset: 2px; }
.btn:active { transform: scale(.99); }
.btn-primary { background: var(--ace-ink-900); color: #fff; }
.btn-primary:hover { background: var(--ace-ink-800); transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn-accent { background: var(--ace-red); color: #fff; }
.btn-accent:hover { background: var(--ace-red-700); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(237,28,36,.22); }
.btn-outline { background: transparent; color: var(--ace-ink-900); border: 1px solid var(--ace-ink-300); }
.btn-outline:hover { background: var(--ace-ink-900); color: #fff; border-color: var(--ace-ink-900); }
.btn-line { background: var(--line-green); color: #fff; }
.btn-line:hover { background: #00A300; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,195,0,.22); }
.btn-ghost { background: transparent; color: var(--ace-ink-900); border: none; min-width: auto; padding: 8px 0; gap: 8px; }
.btn-ghost::after { content: "→"; transition: transform var(--t-fast); color: var(--ace-red); font-size: 14px; }
.btn-ghost:hover { color: var(--ace-red); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* Wanzl Authorized Distributor badge */
.wanzl-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 18px;
  background: var(--wanzl-bg);
  border: 1px solid var(--ace-bd-200);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
  transition: all var(--t-fast);
  text-decoration: none;
  color: var(--ace-ink-900);
}
.wanzl-badge:hover { box-shadow: var(--sh-2); transform: translateY(-1px); }
.wanzl-badge svg { display: block; flex-shrink: 0; }
.wanzl-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.wanzl-badge-label {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ace-ink-500);
}
.wanzl-badge-name {
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--ace-ink-900);
}
.wanzl-badge--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.10); }
.wanzl-badge--dark .wanzl-badge-label { color: rgba(255,255,255,.55); }
.wanzl-badge--dark .wanzl-badge-name  { color: #fff; }
.wanzl-badge--compact { padding: 6px 12px; gap: 8px; }
.wanzl-badge--compact svg { height: 12px; }
.wanzl-badge--compact .wanzl-badge-text { flex-direction: row; gap: 8px; align-items: center; }
.wanzl-badge--compact .wanzl-badge-label { font-size: 8.5px; }
.wanzl-badge--compact .wanzl-badge-name { font-size: 11px; }
.wanzl-mark-svg text { font-family: "Inter", Arial, sans-serif; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ace-bd-200);
}
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: var(--s-5);
  padding: 18px 0;
}
.logo-lockup { display: flex; flex-direction: column; gap: 4px; text-decoration: none; align-items: flex-start; }
.logo-img { display: block; width: auto; height: 32px; }
.site-header .logo-img { height: 32px; }
/* Footer uses the LIGHT variant on dark background for contrast */
.site-footer .logo-img { height: 40px; }
@media (max-width: 768px) {
  .site-header .logo-img { height: 26px; }
  .site-footer .logo-img { height: 34px; }
}
/* legacy typographic fallback if SVG fails to load */
.logo-wordmark {
  font-size: 21px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ace-ink-900); line-height: 1;
}
.logo-wordmark .accent { color: var(--ace-red); }
.logo-microline {
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  line-height: 1.3; color: var(--ace-ink-500);
}
/* Removed: .logo-microline.wanzl-mark-text — header microline was retired */
.main-nav { display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 36px; margin: 0; padding: 0; list-style: none; }
.main-nav a {
  position: relative; display: inline-block; padding: 8px 0;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--ace-ink-700);
}
.main-nav a:hover { color: var(--ace-ink-900); }
/* Active-page indicator — moves to whichever nav link matches the current URL */
.main-nav a[aria-current="page"] {
  color: var(--ace-ink-900);
  font-weight: 600;
}
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--ace-red);
  border-radius: 1px;
}
/* On hover (any nav link, even non-active), preview the indicator subtly */
.main-nav a:not([aria-current="page"])::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 2px;
  height: 2px;
  background: var(--ace-red);
  border-radius: 1px;
  opacity: 0;
  transition: left var(--t-fast), right var(--t-fast), opacity var(--t-fast);
}
.main-nav a:not([aria-current="page"]):hover::after {
  left: 0; right: 0; opacity: 0.4;
}
.header-right { display: flex; align-items: center; gap: var(--s-3); }

/* Language switcher — minimalist text pair (NYTimes / Apple-style)
   No pill, no border — just two letters with subtle italic separator. Premium restraint. */
.lang-switch {
  display: inline-flex; align-items: center; gap: 0; padding: 0;
  border: 0; border-radius: 0; background: transparent;
}
.lang-switch a {
  min-width: auto; min-height: auto;
  display: inline-block;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ace-ink-300);
  border-radius: 0;
  transition: color var(--t-fast);
  position: relative;
}
.lang-switch a[aria-current="true"] {
  background: transparent;
  color: var(--ace-ink-900);
  font-weight: 700;
}
.lang-switch a[aria-current="true"]::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; bottom: 2px;
  height: 1px;
  background: var(--ace-red);
}
.lang-switch a:hover { color: var(--ace-ink-900); }
.lang-switch span[aria-hidden="true"] {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ace-ink-300);
  margin: 0 -2px;
  line-height: 1;
}

/* Refined header CTAs — premium icon-button + minimalist quote pill */
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { min-width: auto; padding: 10px 18px; font-size: 12.5px; }

/* LINE = icon-only circular button. Subtle, doesn't shout. */
.header-cta .btn-line {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--line-green);
  border: 1px solid var(--ace-bd-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: all var(--t-fast);
}
.header-cta .btn-line svg { width: 16px; height: 16px; }
.header-cta .btn-line span,
.header-cta .btn-line { font-size: 0; line-height: 0; }
.header-cta .btn-line svg { font-size: initial; line-height: initial; }
.header-cta .btn-line::before {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: var(--line-green);
  border-radius: 50%;
  margin: -28px 0 0 26px;
  pointer-events: none;
}
.header-cta .btn-line { position: relative; }
.header-cta .btn-line:hover {
  background: var(--line-green);
  color: #fff;
  border-color: var(--line-green);
  box-shadow: 0 6px 16px rgba(0,195,0,.22);
}

/* Quote = minimalist pill with arrow. More refined than a bold rect button. */
.header-cta .btn-primary {
  background: transparent;
  color: var(--ace-ink-900);
  border: 1px solid var(--ace-ink-900);
  border-radius: var(--r-pill);
  padding: 9px 18px 9px 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-fast);
}
.header-cta .btn-primary::after {
  content: "→";
  color: var(--ace-red);
  font-size: 14px;
  transition: transform var(--t-fast);
}
.header-cta .btn-primary:hover {
  background: var(--ace-ink-900);
  color: #fff;
  border-color: var(--ace-ink-900);
  box-shadow: var(--sh-2);
  transform: translateY(-1px);
}
.header-cta .btn-primary:hover::after {
  color: #fff;
  transform: translateX(3px);
}
.menu-toggle {
  display: none;
  background: transparent; border: 1px solid var(--ace-bd-200);
  border-radius: var(--r-md);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--ace-ink-900);
}
.menu-toggle svg { width: 20px; height: 20px; }

/* Hero */
.hero { position: relative; padding: clamp(72px, 9vw, 144px) 0 clamp(56px, 7vw, 112px); background: var(--ace-page); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s-8); align-items: center; }

/* Hero refinement layer — calmer spacing, more deliberate typographic rhythm,
   trust row that breathes, kicker that doesn't scream. Applied across both
   .hero (standard) and .hero--cinematic so every page feels of-a-piece. */
.hero .hero-kicker {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-4);
  color: var(--ace-ink-500);
}
.hero .hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 56px);
  padding-top: clamp(28px, 3.5vw, 44px);
  margin-top: clamp(28px, 3.5vw, 44px);
  border-top: 1px solid var(--ace-bd-200);
}
.hero .hero-trust-item .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  display: block;
  font-variant-numeric: tabular-nums;
}
.hero .hero-trust-item .label {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--ace-ink-500);
}
@media (max-width: 768px) {
  .hero .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
}

/* CINEMATIC HERO VARIANT (Option C) — full-bleed photo + dark gradient + centered editorial copy */
.hero--cinematic {
  background: var(--ace-ink-900);
  padding: 0;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
}
/* Subtraction: removed slow-pan animation. Static photos read more
   confident; the pan was drifty rather than cinematic. */
.hero--cinematic .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* DIALED BACK — photo is now visible and atmospheric. Glass card carries text contrast. */
  filter: saturate(0.65) contrast(1.06) brightness(0.85);
}
.hero--cinematic .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Lighter left-side gradient — photo character is preserved, but text-zone dims slightly */
    linear-gradient(90deg, rgba(15,12,10,0.55) 0%, rgba(15,12,10,0.38) 35%, rgba(15,12,10,0.18) 70%, rgba(15,12,10,0.10) 100%),
    /* Subtle bottom darkening */
    linear-gradient(180deg, rgba(15,12,10,0.12) 0%, rgba(15,12,10,0.18) 60%, rgba(15,12,10,0.40) 100%);
}
/* Glass card now carries the contrast load — stronger blur + slightly darker fill keep text legible while photo stays bright */
.hero--cinematic .hero-content {
  position: relative;
  padding: var(--s-7) var(--s-6);
  background: linear-gradient(135deg, rgba(15,12,10,0.55) 0%, rgba(15,12,10,0.30) 100%);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-left: 2px solid rgba(255,255,255,0.85);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 820px;
}
/* FORCE hero typography to white — wins over .hero h1 default ink color */
.hero.hero--cinematic h1,
.hero.hero--cinematic .hero-content h1,
.hero.hero--cinematic h1 .editorial,
.hero.hero--cinematic h1 .underline { color: #fff !important; }
.hero.hero--cinematic h1 { text-shadow: 0 2px 40px rgba(0,0,0,0.5); }
.hero.hero--cinematic .hero-lead { color: rgba(255,255,255,0.94) !important; text-shadow: 0 2px 30px rgba(0,0,0,0.45); }
.hero.hero--cinematic .hero-kicker { color: rgba(255,255,255,0.88) !important; }
.hero.hero--cinematic .hero-text-link { color: rgba(255,255,255,0.95) !important; border-bottom-color: rgba(255,255,255,0.6); }
.hero.hero--cinematic .hero-text-link:hover { color: #fff !important; border-bottom-color: var(--ace-red); }
.hero.hero--cinematic .hero-trust { border-top-color: rgba(255,255,255,0.22); }
.hero.hero--cinematic .hero-trust-item .num { color: #fff !important; }
.hero.hero--cinematic .hero-trust-item .label { color: rgba(255,255,255,0.78) !important; }
@media (max-width: 768px) {
  .hero--cinematic .hero-content { padding: var(--s-5) var(--s-4); }
}
.hero--cinematic .container { position: relative; z-index: 2; padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(64px, 8vw, 112px); }
.hero--cinematic .hero-content {
  max-width: 820px;
}
.hero--cinematic .hero-kicker {
  color: rgba(255,255,255,.78);
  margin-bottom: var(--s-4);
  letter-spacing: 0.24em;
}
/* Removed: .dot kicker mark — redundant with the engineering line below */
.hero--cinematic h1 {
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  font-weight: 300;
  line-height: 1.18;  /* Was 1.04 — Thai-friendly */
  letter-spacing: -0.034em;
  max-width: 20ch;     /* widened from 16ch — gives Thai headline room with the inline SVG */
  margin-bottom: var(--s-5);
}

/* Inline Wanzl wordmark inside the hero h1 — sized to read at the same
   weight presence as the surrounding Thai script. Uses em-relative height
   so it scales with the clamp() font-size. The SVG keeps its native
   Wanzl-blue (#3a90d5) so the mark works as a brand stamp on white type. */
.hero-wanzl-mark {
  display: inline-block;
  vertical-align: baseline;
  line-height: 0;
  margin: 0 0.05em;
}
.hero-wanzl-mark img {
  height: 0.62em;
  width: auto;
  display: inline-block;
  vertical-align: -0.04em;
  /* Subtle drop shadow so the blue mark doesn't get lost on the dark hero */
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35));
}
@media (max-width: 768px) {
  .hero-wanzl-mark img { height: 0.66em; vertical-align: -0.04em; }
}
.hero--cinematic h1 .editorial {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero--cinematic h1 .underline { background: linear-gradient(180deg, transparent 90%, rgba(237,28,36,.62) 90%, rgba(237,28,36,.62) 96%, transparent 96%); padding: 0 .04em; }
.hero--cinematic h1 .underline::after { display: none; }
.hero--cinematic .hero-lead {
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  font-size: var(--fs-body-lg);
  margin-bottom: var(--s-6);
}
.hero--cinematic .hero-cta-row { margin-bottom: var(--s-7); }
.hero--cinematic .hero-trust {
  border-top-color: rgba(255,255,255,.14);
  max-width: 760px;
}
.hero--cinematic .hero-trust-item .num { color: #fff; }
.hero--cinematic .hero-trust-item .label { color: rgba(255,255,255,.62); }

/* Hero text-link CTA (Option J) — replaces secondary outline button on the hero */
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  border-bottom: 1px solid currentColor;
  transition: all var(--t-fast);
  text-decoration: none;
}
.hero-text-link::after { content: "→"; color: var(--ace-red); transition: transform var(--t-fast); font-size: 16px; }
.hero-text-link:hover { color: #fff; border-bottom-color: var(--ace-red); }
.hero-text-link:hover::after { transform: translateX(4px); }
.hero--cinematic .hero-text-link { color: rgba(255,255,255,.85); }

@media (max-width: 1024px) {
  .hero--cinematic { min-height: 68vh; }
  .hero--cinematic .container { padding-top: var(--s-8); padding-bottom: var(--s-7); }
}
@media (max-width: 768px) {
  .hero--cinematic { min-height: 64vh; }
  .hero--cinematic h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ace-ink-500);
  margin-bottom: var(--s-4);
}
/* Removed: .dot — engineering line now carries the structural mark */
.hero h1 {
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1.18;  /* Was 1.08 — Thai diacritics need room */
  letter-spacing: -0.028em;
  color: var(--ace-ink-900);
  margin-bottom: var(--s-4);
  max-width: 14ch;
}
.hero h1 .editorial { font-family: var(--font-display); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.18em; background: rgba(237,28,36,.18); z-index: -1;
}
.hero-lead { font-size: var(--fs-body-lg); line-height: 1.75; color: var(--ace-ink-500); max-width: 50ch; margin-bottom: var(--s-5); }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: var(--s-7); }
.hero-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); padding-top: var(--s-5); border-top: 1px solid var(--ace-bd-200); }
.hero-trust-item .num {
  display: block; font-family: var(--font-display);
  font-size: 36px; font-weight: 500; line-height: 1;
  color: var(--ace-ink-900); letter-spacing: -0.02em;
}
.hero-trust-item .label {
  display: block; margin-top: 6px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--ace-ink-500);
}
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: var(--ace-card);
  border: 1px solid var(--ace-bd-200);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.hero-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; background: var(--ace-surface-alt); }
.hero-card-meta { display: flex; justify-content: space-between; align-items: center; padding: 16px 8px 6px; font-size: 12.5px; }
.hero-card-meta-label { color: var(--ace-ink-500); font-weight: 500; letter-spacing: 0.02em; }
.hero-card-meta-value { color: var(--ace-ink-900); font-weight: 600; }
.hero-badge-overlay { position: absolute; bottom: -22px; left: 28px; }

/* Heritage strip */
.heritage-strip { background: var(--ace-ink-900); color: #fff; padding: clamp(22px, 2.6vw, 32px) 0; }
.heritage-inner { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 32px); flex-wrap: wrap; font-size: 12.5px; letter-spacing: 0.06em; color: rgba(255,255,255,.78); }
.heritage-inner .divider { color: var(--wanzl-blue); font-weight: 600; }
.heritage-inner strong { color: #fff; font-weight: 600; }

/* Section base */
.section { padding: var(--s-9) 0; position: relative; }
.section--alt { background: var(--ace-card); }
.section-head { margin-bottom: var(--s-7); }
.section-head--center { text-align: center; }
.section-head--center .section-title, .section-head--center .lead { margin-left: auto; margin-right: auto; }

/* Magazine-style section numerals — italic Fraunces inline + oversized rail at desktop */
.section-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--ace-ink-400);
  margin-bottom: var(--s-3);
  display: block;
  letter-spacing: 0.02em;
}
.section-num--rail {
  display: none;  /* hidden by default; only shown on desktop */
}
@media (min-width: 1280px) {
  .section .section-num--rail {
    display: block;
    position: absolute;
    top: var(--s-7);
    left: max(24px, calc((100vw - var(--container)) / 2 - 24px));
    font-family: var(--font-display);
    font-size: 128px;
    font-style: italic;
    font-weight: 400;
    color: var(--ace-ink-900);
    opacity: 0.06;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    margin: 0;
    user-select: none;
    z-index: 0;
    font-variation-settings: "opsz" 144, "SOFT" 80;
  }
  .section .container { position: relative; z-index: 1; }
}

/* Hairline section divider with red end-cap — editorial rhythm */
.hr-accent {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--ace-red) 0, var(--ace-red) 48px, var(--ace-bd-200) 48px, var(--ace-bd-200) 100%);
  margin: var(--s-7) 0;
}
.section + .section:not(.section--alt):not(.why-wanzl):not(.heritage-strip)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--container);
  height: 1px;
  background: linear-gradient(90deg, var(--ace-red) 0, var(--ace-red) 48px, var(--ace-bd-200) 48px, var(--ace-bd-200) 100%);
}

/* Subtle architectural grid background (Option D) — only on hero + about-grid contexts */
/* Subtraction commit:
   - Hero 48px grid background — removed (was invisible, added noise to CSS only)
   - Paper grain body::before overlay — removed (didn't read past first glance) */

/* Editorial italic kicker variant — Fraunces italic instead of all-caps Inter */
.eyebrow--editorial {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ace-ink-700);
  margin-bottom: var(--s-3);
  font-variation-settings: "opsz" 96, "SOFT" 80;
}
.eyebrow--editorial::before {
  content: "—— ";
  color: var(--ace-red);
  margin-right: 4px;
}

/* Subtraction: removed hero-card hairline corner marks — decorative-only */

/* Hero stat ticker (IO-triggered count-up) — applied via .num.ticker class */
.hero-trust-item .num {
  font-variant-numeric: tabular-nums;
  transition: color var(--t-fast);
}

/* ─── Featured product strip — editorial moment under the cinematic hero ─── */
.featured-strip {
  background: var(--ace-card);
  border-bottom: 1px solid var(--ace-bd-200);
  padding: clamp(48px, 7vw, 96px) 0;     /* was --s-6 — felt squeezed */
  position: relative;
  overflow: hidden;
}
.featured-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--container);
  height: 1px;
  background: linear-gradient(90deg, var(--ace-red) 0, var(--ace-red) 64px, var(--ace-bd-200) 64px, var(--ace-bd-200) 100%);
}
.featured-grid {
  display: grid;
  /* image gets more space — was 0.4fr 1fr (image only ~28%) */
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.featured-strip .featured-img {
  width: 100%;
  aspect-ratio: 5/4;                      /* was 4/3 — taller, more product presence */
  object-fit: cover;
  background: var(--ace-page);
  border-radius: var(--r-lg);
  border: none;                           /* removed thin frame — feels editorial now */
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -28px rgba(20,17,15,0.22),
    0 12px 24px -16px rgba(20,17,15,0.12);
}
.featured-meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.featured-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ace-red);
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 24, "SOFT" 40;
}
.featured-eyebrow::before { content: "—— "; margin-right: 6px; }
.featured-meta h2 {
  font-size: clamp(1.875rem, 3.4vw, 2.875rem);   /* was clamp(1.5rem,2.4vw,2rem) — substantially bigger */
  font-weight: 500;
  letter-spacing: -0.026em;
  line-height: 1.18;
  margin: 0;
  color: var(--ace-ink-900);
  max-width: 18ch;
}
.featured-meta h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 70;
  letter-spacing: -0.018em;
}
.featured-spec-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--ace-bd-200);
}
.featured-spec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.featured-spec-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
  font-weight: 700;
}
/* Spec numerals — Inter at 700 weight with tabular-nums.
   Bumped from 22 → 28px so the catalog data gets the presence it deserves
   in a featured editorial section. */
.featured-spec-value {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--ace-ink-900);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-5);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ace-ink-900);
  border-bottom: 1px solid var(--ace-ink-300);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: all var(--t-fast);
}
.featured-cta::after { content: "→"; color: var(--ace-red); transition: transform var(--t-fast); font-size: 15px; }
.featured-cta:hover { border-bottom-color: var(--ace-red); }
.featured-cta:hover::after { transform: translateX(6px); }

@media (max-width: 768px) {
  .featured-strip { padding: clamp(40px, 9vw, 64px) 0; }
  /* Mobile: stack with headline first, then image, then specs.
     Reverses default DOM order (image → meta) for a stronger editorial
     reading rhythm on small screens. */
  .featured-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "meta" "image";
    gap: var(--s-5);
  }
  .featured-grid .featured-img    { grid-area: image; aspect-ratio: 4/3; }
  .featured-grid .featured-meta   { grid-area: meta; }
  .featured-meta h2 { font-size: clamp(1.625rem, 6vw, 2rem); max-width: none; }
  .featured-spec-row { grid-template-columns: repeat(2, 1fr); gap: var(--s-4) var(--s-3); }
  .featured-spec-value { font-size: 20px; }
}

/* Breadcrumb */
.breadcrumb { font-size: 12px; color: var(--ace-ink-500); margin-bottom: var(--s-5); letter-spacing: 0.04em; }
.breadcrumb a { color: var(--ace-ink-500); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--ace-red); }
.breadcrumb .sep { color: var(--ace-ink-300); margin: 0 8px; }
.breadcrumb [aria-current="page"] { color: var(--ace-ink-900); font-weight: 600; }

/* About / 2-col */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
.about-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); border: 1px solid var(--ace-bd-200); background: var(--ace-surface-alt); }
.about-bullets { list-style: none; padding: 0; margin: var(--s-4) 0 0; }
.about-bullets li { position: relative; padding-left: 32px; margin-bottom: var(--s-3); line-height: 1.65; color: var(--ace-ink-700); }
.about-bullets li::before { content: ""; position: absolute; left: 0; top: 12px; width: 18px; height: 1px; background: var(--ace-red); }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.product-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--ace-card); border: 1px solid var(--ace-bd-200); border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: all var(--t-med);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--ace-bd-300); }
.product-card-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--ace-surface-alt); }
.product-card-body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; gap: 10px; }
.product-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ace-ink-500); }
.product-card-tag--wanzl { color: var(--wanzl-blue); font-weight: 700; }
.product-card-title { font-size: 19px; font-weight: 700; line-height: 1.35; letter-spacing: -0.014em; color: var(--ace-ink-900); margin: 0; }
.product-card-desc { color: var(--ace-ink-700); font-size: 13.5px; font-weight: 500; line-height: 1.65; flex: 1; margin: 0; font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1, "lnum" 1; }
.product-card-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ace-ink-900); letter-spacing: 0.02em; }
.product-card-cta::after { content: "→"; color: var(--ace-red); transition: transform var(--t-fast); }
.product-card:hover .product-card-cta::after { transform: translateX(4px); }
.product-card-wanzl-badge { position: absolute; top: 14px; right: 14px; z-index: 2; }

/* Why Wanzl */
.why-wanzl { background: var(--ace-surface-alt); border-top: 1px solid var(--ace-bd-200); border-bottom: 1px solid var(--ace-bd-200); }
.why-wanzl-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s-8); align-items: start; }
.why-wanzl-side .wanzl-pre-title {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: var(--wanzl-bg);
  border: 1px solid var(--wanzl-blue);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--wanzl-blue); margin-bottom: var(--s-3);
}
.why-wanzl-side h2 { font-weight: 500; letter-spacing: -0.024em; max-width: 20ch; margin-bottom: var(--s-3); }
.why-wanzl-side h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.why-wanzl-side p { color: var(--ace-ink-500); font-size: var(--fs-body-lg); line-height: 1.75; }
.why-wanzl-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-wanzl-block { background: var(--ace-card); border: 1px solid var(--ace-bd-200); border-radius: var(--r-lg); padding: var(--s-5); transition: all var(--t-med); }
.why-wanzl-block:hover { border-color: var(--ace-ink-300); }
.why-wanzl-block-num { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 500; line-height: 1; color: var(--wanzl-blue); margin-bottom: var(--s-3); letter-spacing: -0.02em; }
.why-wanzl-block h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.why-wanzl-block p { font-size: 13.5px; color: var(--ace-ink-500); margin: 0; line-height: 1.65; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.feature-card { padding: var(--s-5); border-radius: var(--r-lg); background: var(--ace-card); border: 1px solid var(--ace-bd-200); transition: all var(--t-med); }
/* Quietest hover — feature cards are reassurance, not primary action */
.feature-card:hover { border-color: var(--ace-ink-300); }
.feature-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ace-red-50);
  border-radius: 10px;
  color: var(--ace-red);
  margin-bottom: var(--s-3);
}
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.008em; }
.feature-card p { font-size: 13.5px; color: var(--ace-ink-500); line-height: 1.65; margin: 0; }

/* Use case */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.usecase-card { background: var(--ace-card); border: 1px solid var(--ace-bd-200); border-radius: var(--r-lg); overflow: hidden; transition: all var(--t-med); }
.usecase-card:hover { transform: translateY(-2px); box-shadow: var(--sh-2); border-color: var(--ace-ink-300); }
/* Subtraction: removed usecase image hover-scale — was decorative only */
.usecase-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--ace-surface-alt); }
.usecase-card-body { padding: var(--s-5); }
.usecase-card-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ace-red); margin-bottom: 8px; }
.usecase-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.014em; }
.usecase-card p { font-size: 13.5px; color: var(--ace-ink-500); line-height: 1.65; margin: 0 0 var(--s-3); }

/* SEO / editorial prose */
.seo-prose { max-width: 720px; margin: 0 auto; }
.seo-prose .eyebrow { display: block; }
.seo-prose h2 { font-size: var(--fs-h2); font-weight: 500; letter-spacing: -0.024em; margin: var(--s-7) 0 var(--s-3); }
.seo-prose h2:first-of-type { margin-top: 0; }
.seo-prose h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.seo-prose p { font-size: 17px; line-height: 1.8; color: var(--ace-ink-700); margin-bottom: var(--s-4); }
.seo-prose blockquote {
  margin: var(--s-5) 0;
  padding: 0 0 0 var(--s-4);
  border-left: 2px solid var(--ace-red);
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.5;
  color: var(--ace-ink-900);
  letter-spacing: -0.005em;
}

/* PREMIUM SPEC TABLE — editorial engineering reference. Generous spacing,
   italic Fraunces numerals, hairline rules only, model name in display type.
   Inspired by Bosch / Leica / B&O technical reference sheets. */
.spec-table-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 0;
  border-top: 1px solid var(--ace-ink-900);
  border-bottom: 1px solid var(--ace-ink-900);
  border-radius: 0;
  background: transparent;
  margin: var(--s-7) 0;
  padding: 0;
}
.spec-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.spec-table thead { background: transparent; }
.spec-table thead th {
  padding: var(--s-3) var(--s-4) var(--s-3) 0;
  text-align: left;
  border-bottom: 1px solid var(--ace-bd-300);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
  white-space: nowrap;
  vertical-align: bottom;
}
.spec-table thead th:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ace-ink-700);
  font-weight: 400;
}
.spec-table tbody td {
  padding: var(--s-4) var(--s-4) var(--s-4) 0;
  text-align: left;
  border-bottom: 1px solid var(--ace-bd-200);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ace-ink-900);
  white-space: nowrap;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 96, "SOFT" 60;
}
.spec-table tbody td:first-child {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ace-ink-900);
  text-transform: none;
}
.spec-table tbody tr:last-child td { border-bottom: 0; }
.spec-table tbody tr { transition: background var(--t-fast); }
.spec-table tbody tr:hover { background: var(--ace-surface-alt); }
.spec-table tbody tr:hover td:first-child { color: var(--ace-red); }
@media (max-width: 768px) {
  .spec-table thead th { padding: 12px 12px 12px 0; font-size: 9px; }
  .spec-table tbody td { padding: 14px 12px 14px 0; font-size: 17px; }
  .spec-table tbody td:first-child { font-size: 15px; }
}
.spec-chip {
  display: inline-block;
  padding: 4px 12px;
  margin: 2px 4px 2px 0;
  font-size: 11.5px; font-weight: 600;
  background: var(--ace-surface-alt);
  border: 1px solid var(--ace-bd-200);
  border-radius: var(--r-pill);
  color: var(--ace-ink-700);
  letter-spacing: 0.04em;
}

/* FAQ accordion */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-item { border-bottom: 1px solid var(--ace-bd-200); padding: var(--s-3) 0; }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 16px; color: var(--ace-ink-900); padding: 8px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--ace-red); transition: transform var(--t-fast); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--ace-ink-500); font-size: 15px; line-height: 1.75; margin: 8px 0 8px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s-8); align-items: start; }
/* PREMIUM CONTACT INFORMATION — editorial typography, generous breathing room */
.contact-info h2 { font-size: var(--fs-h2); font-weight: 400; letter-spacing: -0.022em; max-width: 14ch; }
.contact-info-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ace-ink-700);
  margin: var(--s-4) 0 var(--s-6);
  max-width: 32ch;
}
.contact-info-intro::before { content: "—— "; color: var(--ace-red); }
.contact-info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.contact-info-list li {
  display: block;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--ace-bd-200);
}
.contact-info-list li:first-child { padding-top: 0; }
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
  margin-bottom: 4px;
}
.contact-info-value {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ace-ink-900);
  line-height: 1.3;
}
.contact-info-value a {
  color: var(--ace-ink-900);
  border-bottom: 1px solid transparent;
  transition: all var(--t-fast);
}
.contact-info-value a:hover { border-bottom-color: var(--ace-red); }
.contact-info-value-secondary {
  display: block;
  font-size: 14px;
  color: var(--ace-ink-500);
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0;
}

/* Google Map placeholder/embed container */
.contact-map {
  margin-top: var(--s-6);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--ace-bd-200);
  background: var(--ace-surface-alt);
  aspect-ratio: 16/10;
  position: relative;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ace-ink-500);
  text-align: center;
  padding: var(--s-5);
  background: var(--ace-surface-alt);
  background-image:
    linear-gradient(to right, rgba(20,17,15,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,17,15,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.contact-map-placeholder-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ace-ink-500); margin-bottom: 8px;
}
.contact-map-placeholder-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ace-ink-700);
  margin-bottom: 4px;
}
.contact-map-placeholder-meta {
  font-size: 13px;
  color: var(--ace-ink-500);
  max-width: 36ch;
  line-height: 1.6;
}

/* PREMIUM CONTACT FORM — sectioned editorial layout in a refined container.
   Warm-paper card with hairline rule on left, generous internal padding. */
.contact-form {
  background: var(--ace-card);
  border: 1px solid var(--ace-bd-200);
  border-left: 3px solid var(--ace-red);
  border-radius: var(--r-md);
  padding: var(--s-7) var(--s-6);
  box-shadow: var(--sh-2);
  position: relative;
}
.contact-form::before {
  content: "Inquiry · 2026";
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ace-ink-300);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .contact-form { padding: var(--s-5) var(--s-4); }
  .contact-form::before { display: none; }
}
.form-section {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--ace-bd-200);
}
.form-section:last-of-type { border-bottom: 0; }
.form-section-heading {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.form-section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ace-red);
  font-weight: 400;
  line-height: 1;
}
.form-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ace-ink-700);
  margin: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); margin-bottom: var(--s-3); }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; gap: var(--s-3); } }

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--s-5);
}
.form-field label {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ace-ink-500);
  pointer-events: none;
  transition: all var(--t-fast);
  text-transform: none;
}
.form-field label .req { color: var(--ace-red); margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 0 8px;
  font: inherit;
  font-size: 15px;
  color: var(--ace-ink-900);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ace-bd-300);
  border-radius: 0;
  transition: border-color var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: transparent; }
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%236E6B66' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
}
/* SELECT-specific: label is always in "up" position (no floating animation) so
   it doesn't overlap with the dropdown's own placeholder text. Special-cased. */
.form-field--select { padding-top: 18px; }
.form-field--select label {
  position: static;
  top: auto;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ace-ink-700) !important;
  margin-bottom: 4px;
  pointer-events: auto;
  order: -1;
}
.form-field--select select { padding: 12px 24px 12px 0; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--ace-ink-900);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label {
  top: -10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ace-ink-700);
  text-transform: uppercase;
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-6); align-items: flex-start; }
.form-helper { font-size: 12px; color: var(--ace-ink-500); letter-spacing: 0.02em; }
.form-submit .btn-primary {
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.form-or {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ace-ink-500);
}
.form-line-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--line-green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line-green);
  padding-bottom: 2px;
  transition: all var(--t-fast);
}
.form-line-link:hover { color: var(--ace-ink-900); border-bottom-color: var(--ace-ink-900); }

/* Footer — refined signature using Inter (light/thin) for a more architectural feel
   instead of the previous Fraunces italic. Aligned LEFT with hairline rule above the brand line. */
.site-footer {
  background: #14110F;
  color: rgba(255,255,255,.72);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footer-signature {
  padding: var(--s-8) 0 var(--s-6);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  text-align: left;
}
.footer-signature p {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 200;             /* Inter Thin — modernist, architectural */
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  max-width: 28ch;
  margin: 0;
}
.footer-signature p .accent {
  /* Holds the inline Wanzl SVG wordmark — alignment is delicate against
     Inter Thin at 2.75rem. Image height is set in em so it scales with
     the headline; vertical-align nudges the wordmark to the visual
     baseline instead of the typographic descender line. */
  display: inline-block;
  vertical-align: baseline;
  line-height: 0;
  color: transparent;            /* hide any fallback text */
  letter-spacing: 0;
}
.footer-signature p .accent img {
  height: 0.72em;
  width: auto;
  display: inline-block;
  vertical-align: -0.06em;
  /* The official Wanzl wordmark uses Wanzl-blue (#3a90d5) — render the SVG
     at full opacity, no recoloring, so brand integrity is preserved. */
}
.footer-signature p .since {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.55em;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}
.footer-signature .signature-divider {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--ace-red);
  margin: var(--s-4) 0 var(--s-3);
}
/* Editorial pull-quote under the signature meta — colophon-style closing line.
   Italic Fraunces, hairline opening/closing quote marks, restrained tracking. */
.footer-signature .signature-quote {
  margin: var(--s-3) 0 0;
  max-width: 38ch;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.005em;
  font-variation-settings: "opsz" 96, "SOFT" 70;
}
.footer-signature .signature-quote em {
  font-style: italic;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.footer-signature .signature-quote span[aria-hidden] {
  color: rgba(255,255,255,0.32);
  margin: 0 2px;
  font-size: 1.1em;
  vertical-align: -0.05em;
}

.footer-signature .signature-meta {
  margin-top: 0;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  /* Always one line — letter-spacing scales down on narrow viewports so the line never wraps */
  white-space: nowrap;
  font-size: clamp(8.5px, 1.6vw, 11px);
  letter-spacing: clamp(0.10em, 0.7vw, 0.22em);
}
/* Subtraction: removed .footer-watermark CSS rule — markup also stripped.
   Footer already carries the Wanzl badge in the brand column; the giant
   faded second mark was rhetoric. */
.site-footer .container { position: relative; z-index: 1; }
.site-footer > .container,
.site-footer .footer-grid-wrap {
  padding-top: var(--s-7);
}
/* ─── Premium footer column grid — italic Fraunces heads, refined link hover ─── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s-8);
  margin-bottom: var(--s-7);
  padding-top: var(--s-7);
}
.footer-col {
  position: relative;
}
/* Column heads use italic Fraunces with a thin red em-dash prefix — magazine-style */
.footer-col h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--s-4);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer-col h4::before {
  content: "—";
  color: var(--ace-red);
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 400;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 8px 0; }
.footer-col a {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.005em;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.footer-col a::before {
  content: "→";
  color: var(--ace-red);
  font-size: 12px;
  opacity: 0;
  margin-left: -16px;
  transition: opacity var(--t-fast), margin-left var(--t-fast);
}
.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-col a:hover::before {
  opacity: 1;
  margin-left: 0;
}

/* Brand column — logo bigger, description in italic for editorial moment */
.footer-brand .logo-img {
  height: 48px !important;
  margin-bottom: var(--s-4);
}
.footer-brand p {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.7;
  max-width: 38ch;
  margin: 0 0 var(--s-4);
  font-weight: 300;
}
.footer-juristic {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.42);
  margin-top: var(--s-4);
  line-height: 1.8;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 38ch;
}
.footer-juristic strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
  display: block;
  margin-bottom: 3px;
}

/* Vertical hairlines between columns at desktop — quiet structural detail */
@media (min-width: 1024px) {
  .footer-col:not(.footer-brand)::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-1 * var(--s-8) / 2);
    width: 1px;
    height: 64px;
    background: rgba(255,255,255,0.10);
  }
}
.footer-social { display: flex; gap: 10px; margin-top: var(--s-4); }
.footer-social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  transition: all var(--t-fast);
  overflow: hidden;
  padding-left: 0 !important;   /* cancel .footer-col a:hover left-pad shift */
}
/* Suppress the red hover arrow that .footer-col a::before applies — social
   icons are visual chips, not text links, and shouldn't inherit it. */
.footer-social a::before { content: none !important; display: none; }
.footer-social a:hover { padding-left: 0 !important; }
.footer-social a img { width: 22px; height: 22px; display: block; }
.footer-social a.social-facebook:hover { background: #0866FF; }
.footer-social a.social-line:hover { background: #06C755; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,.08); font-size: 11.5px; color: rgba(255,255,255,.4); gap: var(--s-3); flex-wrap: wrap; }
.wanzl-trademark { font-size: 11px; color: rgba(255,255,255,.4); max-width: 60ch; line-height: 1.7; }

/* Sticky mobile cluster + floating LINE */
.mobile-cta-cluster {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,.98);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--ace-bd-200);
  padding: 8px; gap: 8px;
  grid-template-columns: 1fr 1fr 1fr;
}
.mobile-cta-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; border-radius: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; }
.mobile-cta-btn-line { background: var(--line-green); color: #fff; }
.mobile-cta-btn-call { background: var(--ace-ink-900); color: #fff; }
.mobile-cta-btn-mail { background: var(--ace-card); color: var(--ace-ink-900); border: 1px solid var(--ace-bd-200); }

.floating-line {
  position: fixed; right: 28px; bottom: 28px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--line-green); color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 14px 40px rgba(0,195,0,.32);
  font-weight: 600; font-size: 13px; text-decoration: none;
  transition: all var(--t-fast);
}
.floating-line:hover { background: #00A300; transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0,195,0,.4); }

/* Scroll-reveal — scoped to the cinematic hero only.
   Premium sites animate the hero once; everything else loads visible.
   .reveal elements OUTSIDE .hero render normally — the JS still sets
   .is-revealed but with no matching opacity:0 rule it's a no-op. */
.hero .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.hero .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal.reveal-1 { transition-delay: 0.05s; }
.hero .reveal.reveal-2 { transition-delay: 0.15s; }
.hero .reveal.reveal-3 { transition-delay: 0.25s; }
.hero .reveal.reveal-4 { transition-delay: 0.35s; }

/* Subtraction: removed .reveal-stagger nth-child rules — no longer needed
   now that reveal is scoped to .hero only. */

@media (prefers-reduced-motion: reduce) {
  .hero .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 1fr auto; gap: var(--s-3); }
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .lang-switch { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero { padding: var(--s-7) 0 var(--s-6); }
  .hero h1 { max-width: none; }
  .hero-trust { grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: 1fr; }
  .why-wanzl-inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .why-wanzl-blocks { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }

  .section { padding: var(--s-8) 0; }
}

@media (max-width: 768px) {
  :root { --fs-display: 2.25rem; }
  .section { padding: var(--s-7) 0; }
  .hero { padding: var(--s-6) 0 var(--s-5); }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .product-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .feature-card { padding: var(--s-4); }
  .why-wanzl-blocks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .floating-line { display: none; }
  .mobile-cta-cluster { display: grid; }
  body { padding-bottom: 76px; }

  .heritage-inner { font-size: 11px; gap: 12px; }
  .seo-prose blockquote { font-size: 18px; }
  .spec-table th, .spec-table td { padding: 12px 14px; font-size: 13px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-cta-row .btn { min-width: 140px; padding: 12px 18px; font-size: 12.5px; }
}

@media print {
  .site-header, .floating-line, .mobile-cta-cluster, .heritage-strip { display: none !important; }
  .hero { padding: 0 0 24px; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
}

/* ==========================================================================
   WANZL LOGO — context-aware sizing for the real SVG (1000:207.69 ≈ 4.81:1)
   These rules override inline height="X" attributes set in HTML.
   The real SVG is much wider than the previous placeholder, so each context
   gets its own height calibrated against its surroundings.
   ========================================================================== */
.wanzl-logo {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  /* prevent the browser-attribute height from squashing the SVG */
}

/* Heritage strip — tier-1 trust band beneath the hero, must read clearly */
.heritage-strip .wanzl-logo            { height: 22px; }

/* Compact card chip — top-right corner of product cards */
.product-card-wanzl-badge .wanzl-logo  { height: 14px; }
.wanzl-badge--compact .wanzl-logo      { height: 14px; }

/* Editorial pre-title pairing — homepage + why-wanzl section heads */
.wanzl-pre-title .wanzl-logo           { height: 18px; }

/* Footer Authorized-Distributor block (dark background, tight space) */
.wanzl-badge--dark .wanzl-logo         { height: 18px; }

/* Hero badge — if we ever inline a Wanzl badge inside hero copy */
.hero-content .wanzl-logo              { height: 26px; }

/* About-page Wanzl partnership rail */
.about-wanzl-rail .wanzl-logo          { height: 26px; }

/* Mobile compaction — heritage band on small screens */
@media (max-width: 768px) {
  .heritage-strip .wanzl-logo          { height: 18px; }
  .wanzl-pre-title .wanzl-logo         { height: 16px; }
  .wanzl-badge--dark .wanzl-logo       { height: 16px; }
}

/* ==========================================================================
   HERO ENGINEERING LINE — Option D
   A 1px Wanzl-blue rule that draws across the cinematic hero on load.
   Bosch / Siemens engineering-drawing aesthetic — confident, deliberate,
   one moment of motion. Pairs with an italic Fraunces label that fades
   in once the line completes.
   ========================================================================== */
.hero--cinematic .hero-engineering-line {
  position: relative;
  display: block;
  height: 1px;
  width: 0;
  max-width: 480px;
  /* Soft warm-white rule that harmonizes with the hero photo and white type
     instead of fighting it with saturated blue. Reads as a technical datum
     mark without breaking the cinematic atmosphere. */
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 14%,
    rgba(255,255,255,0.55) 86%,
    rgba(255,255,255,0) 100%);
  margin: 0 0 22px;
  animation: heroLineDraw 1.45s cubic-bezier(0.65, 0, 0.35, 1) 0.35s both;
  transform-origin: left center;
  pointer-events: none;
}

.hero--cinematic .hero-engineering-line::before {
  /* small warm-white tick at the left origin — engineering datum mark */
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 1px;
  height: 7px;
  background: rgba(255,255,255,0.7);
  opacity: 0;
  animation: heroLineTickFade 0.4s ease-out 0.25s both;
}

/* Subtraction: removed engineering-line ::after italic label.
   The 1px line alone is the structural mark — the label competed with the
   kicker above it for the same job. */

@keyframes heroLineDraw {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes heroLineTickFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero--cinematic .hero-engineering-line {
    animation: none;
    width: 100%;
  }
  .hero--cinematic .hero-engineering-line::before { animation: none; opacity: 1; }
}

@media (max-width: 768px) {
  .hero--cinematic .hero-engineering-line { max-width: 320px; margin-bottom: 18px; }
}

/* ==========================================================================
   THAI LINE-HEIGHT REFINEMENTS
   Thai script can stack two upper diacritics + a tone mark + a lower vowel.
   The defaults set above (h1 1.32, h2 1.4, h3 1.5, p 1.85) hold for body
   prose — but localized rules with higher specificity were squeezing certain
   block-level headings tighter than the global :lang(th) rule. Re-assert
   Thai-friendly leading at higher specificity for those exact contexts.
   ========================================================================== */
:lang(th) .hero h1                     { line-height: 1.32; }
:lang(th) .hero--cinematic h1          { line-height: 1.34; }
:lang(th) .hero--cinematic .hero-lead  { line-height: 1.85; }
:lang(th) .hero--cinematic .hero-kicker{ line-height: 1.65; }

:lang(th) .section-title               { line-height: 1.4; }
:lang(th) .featured-meta h2            { line-height: 1.42; }
:lang(th) .why-wanzl-side h2           { line-height: 1.42; }
:lang(th) .why-wanzl-block h3          { line-height: 1.5; }
:lang(th) .feature-card h3             { line-height: 1.5; }
:lang(th) .usecase-card h3             { line-height: 1.5; }
:lang(th) .product-card-title          { line-height: 1.55; }
:lang(th) .product-card-desc           { line-height: 1.78; }
:lang(th) .feature-card p              { line-height: 1.78; }
:lang(th) .why-wanzl-block p           { line-height: 1.78; }
:lang(th) .usecase-card p              { line-height: 1.78; }
:lang(th) .about-bullets li            { line-height: 1.85; padding-top: 2px; }
:lang(th) .seo-prose p                 { line-height: 1.92; }
:lang(th) .seo-prose blockquote        { line-height: 1.78; }
:lang(th) .faq-item summary            { line-height: 1.6; }
:lang(th) .faq-item p                  { line-height: 1.85; }
:lang(th) .footer-juristic             { line-height: 1.85; }
:lang(th) .footer p                    { line-height: 1.85; }

/* Inline italic "editorial" wrapper is Latin-only; it should not pull the
   surrounding Thai line tighter than the Thai script needs. Force a min
   line-height that respects the stacked diacritics around it. */
:lang(th) .editorial,
:lang(th) em.editorial { line-height: inherit; }

/* Thai eyebrow / kicker / section-num — small caps Latin labels mixed with
   Thai context need a slightly looser leading than their Latin defaults. */
:lang(th) .eyebrow                     { line-height: 1.5; }
:lang(th) .featured-eyebrow            { line-height: 1.5; }
:lang(th) .product-card-tag            { line-height: 1.5; }

/* Hero trust row — Thai labels under big Latin numerals can clip tone marks */
:lang(th) .hero-trust-item .label      { line-height: 1.5; }

/* ==========================================================================
   FINAL FIX BATCH — audit items A-L + 5 new items
   ========================================================================== */

/* --- Item L: token for image transitions (used by usecase-card image zoom) */
:root { --t-image: 0.6s; }

/* Subtraction: removed why-wanzl-block hover accent line — decorative-only */
/* Subtraction: removed footer-watermark (replaced by quiet brand discipline elsewhere) */
/* Subtraction: removed hero-bg pan + .hero-bg--still opt-out */

/* --- Item I: Heritage strip dividers neutralized (was Wanzl-blue, competes
       with white text on black band). Now a quiet hairline accent. */
.heritage-inner .divider { color: rgba(255,255,255,0.42); font-weight: 400; }

/* --- Item J: SEO long-form sub-section H2 — slightly smaller than the
       main section title so hierarchy reads cleanly. */
.seo-prose h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);   /* sub-section size, not section-title size */
  letter-spacing: -0.022em;
}

/* --- Item K + new #5: Hide mobile CTA cluster on homepage hero only */
@media (max-width: 768px) {
  body.home .mobile-cta-cluster {
    display: none;
    transition: opacity 0.4s ease;
  }
  body.home.is-past-hero .mobile-cta-cluster {
    display: grid;
    opacity: 1;
  }
}

/* --- Item B: Mobile kicker anchor bar — replaces the visual function of
       the removed dot on small viewports where the engineering line is
       compressed. */
@media (max-width: 768px) {
  .hero--cinematic .hero-kicker {
    position: relative;
    padding-left: 12px;
  }
  .hero--cinematic .hero-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.18em;
    height: 0.9em;
    width: 2px;
    background: var(--wanzl-blue);
    opacity: 0.85;
  }
}

/* Subtraction: removed featured-strip 64px grid (companion to dropped hero grid) */

/* --- New Item 3: EN 1929 trust-row certification stamp — italic Fraunces,
       smaller than counted statistics, with a hairline frame */
.hero-trust-item .num.num--cert {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.005em;
  font-variation-settings: "opsz" 48, "SOFT" 50;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 3px;
  line-height: 1.1;
  opacity: 0.92;
}
.hero--cinematic .hero-trust-item .num.num--cert {
  border-color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
  .hero-trust-item .num.num--cert { font-size: 17px; padding: 3px 8px; }
}

/* --- Item H: Adopt staggered reveal on homepage grids without HTML changes.
       Children already have .reveal-N classes; this just adds a secondary
       nth-child delay system for any reveal children inside these grids,
       which compounds with the existing .reveal-N rules for a tighter
       premium-tier cascade. */
.product-grid > .reveal:nth-child(n),
.feature-grid > .reveal:nth-child(n),
.usecase-grid > .reveal:nth-child(n),
.why-wanzl-blocks > .reveal:nth-child(n) {
  /* No-op base — actual delays come from .reveal-N classes on each child */
}

/* Section 2 (Products) and Section 4 (Why ACE SITHA) — without the rail
   numeral, they need a quieter substitute mark so they still feel chaptered.
   A subtle italic Fraunces lowercase number, top-left, 0.5 opacity. */
.section:not([data-no-mark])::before {}    /* placeholder for future use */

/* ==========================================================================
   HERO — EDITORIAL SPLIT (new style)
   Departure from the cinematic dark-photo hero. The product becomes an
   artifact, not atmosphere; typography carries the room. Stripe + Bosch +
   Loro Piana sensibility.
   ========================================================================== */
.hero--editorial {
  background: var(--ace-page);
  color: var(--ace-ink-900);
  padding: clamp(80px, 10vw, 168px) 0 clamp(72px, 9vw, 128px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ace-bd-200);
}
/* Subtraction: removed hero-stage-mark (year-mark + small caps line) */
.hero--editorial .hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* Text column */
.hero--editorial .hero-kicker {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ace-ink-500);
  margin-bottom: clamp(28px, 3vw, 44px);
  padding-left: 0;
}
/* Subtraction (rec #8): removed red hairline before kicker — decoration without function */
.hero--editorial h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.032em;
  line-height: 1.08;
  color: var(--ace-ink-900);
  max-width: 14ch;
  margin-bottom: clamp(24px, 3vw, 40px);
  text-shadow: none;
}
:lang(th) .hero--editorial h1 { line-height: 1.22; max-width: 16ch; }
/* Subtraction: removed .h1-accent italic + red underline */
.hero--editorial .hero-lead {
  font-size: clamp(15.5px, 1.35vw, 18px);
  line-height: 1.72;
  color: var(--ace-ink-700);
  font-weight: 400;
  max-width: 44ch;
  margin-bottom: clamp(32px, 3.5vw, 48px);
  text-shadow: none;
}
.hero--editorial .hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.hero--editorial .hero-text-link {
  color: var(--ace-ink-700);
  border-bottom-color: var(--ace-ink-300);
}
.hero--editorial .hero-text-link:hover {
  color: var(--ace-ink-900);
  border-bottom-color: var(--ace-red);
}

/* Quiet credit footer — replaces the engineering line in this layout.
   The italic Fraunces label sits at the bottom of the text column with
   a 1px rule, like a colophon mark in a catalog. */
.hero--editorial .hero-credit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid var(--ace-bd-200);
  max-width: 360px;
}
.hero--editorial .hero-credit-mark {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ace-ink-300);
  flex-shrink: 0;
}
.hero--editorial .hero-credit-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
  font-variation-settings: "opsz" 18, "SOFT" 30;
}

/* Image column — product as artifact in a soft framed surface */
.hero--editorial .hero-split__image {
  position: relative;
  background: var(--ace-card);
  border: 1px solid var(--ace-bd-200);
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: clamp(32px, 4.5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(56,32,20,0.04),
    0 40px 80px -32px rgba(20,17,15,0.22),
    0 16px 32px -20px rgba(20,17,15,0.10);
  margin: 0;
}
.hero--editorial .hero-split__image img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.hero--editorial .hero-image-credit {
  position: absolute;
  left: clamp(20px, 2.5vw, 32px);
  right: clamp(20px, 2.5vw, 32px);
  bottom: clamp(20px, 2.5vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.hero--editorial .hero-image-credit .model { color: var(--ace-ink-900); }
.hero--editorial .hero-image-credit .spec  {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
  font-variation-settings: "opsz" 18, "SOFT" 30;
}

/* Wanzl SVG inline mark — on cream background, no shadow needed */
.hero--editorial .hero-wanzl-mark img {
  height: 0.62em;
  vertical-align: -0.02em;
  filter: none;
}

/* Chapter tag on the image card — top-left, sits as a quiet pre-mark.
   Mimics catalog "01 · Featured" treatment from premium product books. */
/* Subtraction: removed hero-image-tag chapter mark on product photo */
/* Subtraction: removed hero-scroll-cue + animated vertical line */

/* ==========================================================================
   FEATURED SPOTLIGHT — magazine-spread series feature
   Replaces the previous flat featured-strip. Layout is asymmetric, with a
   large overprinted display letterform behind the product photo and a
   catalog-style spec block on the text side.
   ========================================================================== */
/* Dark surface — the page's one tonal punctuation. Gives the featured
   product image a focal point and breaks the cream rhythm with intent. */
.featured-spotlight {
  background: var(--ace-ink-900);
  color: rgba(255,255,255,0.92);
  padding: clamp(96px, 11vw, 168px) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}
.featured-spotlight__grid {
  display: grid;
  /* Image gets more space than the text — feels editorial, not card-like */
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.featured-spotlight__media {
  position: relative;
  aspect-ratio: 5/4;
  /* Soft cream inner card on the dark surface — product photo gets its
     own gallery wall, like artwork mounted on a deep gallery background. */
  background: var(--ace-page);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 80px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 60px 100px -40px rgba(0,0,0,0.5),
    0 24px 48px -28px rgba(0,0,0,0.35);
}
.featured-spotlight__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Subtraction: removed featured-spotlight__overprint letterform */

/* Text column */
.featured-spotlight__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  color: var(--ace-red);
  letter-spacing: -0.01em;
  margin-bottom: clamp(12px, 1.4vw, 18px);
  font-variation-settings: "opsz" 96, "SOFT" 60;
}
.featured-spotlight__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.featured-spotlight__eyebrow em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ace-red);
  margin-right: 4px;
  vertical-align: -0.04em;
}
.featured-spotlight__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.026em;
  line-height: 1.14;
  color: #fff;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  max-width: 16ch;
}
:lang(th) .featured-spotlight__title { line-height: 1.26; }
.featured-spotlight__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  letter-spacing: -0.018em;
  color: rgba(255,255,255,0.85);
}
.featured-spotlight__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.72;
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
  margin: 0 0 clamp(32px, 3.5vw, 48px);
}

/* Spec block — inverted hairlines for dark surface */
.featured-spotlight__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.32);
  border-bottom: 1px solid rgba(255,255,255,0.32);
  margin: 0 0 clamp(32px, 3.5vw, 44px);
}
.featured-spotlight__specs > div {
  padding: clamp(18px, 1.8vw, 24px) 0;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.featured-spotlight__specs > div:nth-child(2),
.featured-spotlight__specs > div:nth-child(4) {
  border-right: 0;
  padding-left: clamp(20px, 2vw, 28px);
}
.featured-spotlight__specs > div:nth-child(1),
.featured-spotlight__specs > div:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.featured-spotlight__specs > div:nth-child(1),
.featured-spotlight__specs > div:nth-child(3) {
  padding-right: clamp(20px, 2vw, 28px);
}
.featured-spotlight__specs dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin: 0;
}
.featured-spotlight__specs dd {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.featured-spotlight__specs dd em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 50;
  letter-spacing: 0;
}
.featured-spotlight__specs dd .dash {
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  margin: 0 2px;
}
.featured-spotlight__specs dd .unit {
  font-size: 0.6em;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  margin-left: 4px;
  align-self: flex-end;
  padding-bottom: 0.1em;
}

.featured-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: all var(--t-fast);
}
.featured-spotlight__cta:hover { color: var(--ace-red); border-bottom-color: var(--ace-red); }
.featured-spotlight__cta:hover svg { transform: translateX(4px); color: var(--ace-red); }
.featured-spotlight__cta svg { transition: transform var(--t-fast); }

/* Mobile — stack image above text, compress spec grid */
@media (max-width: 1024px) {
  .featured-spotlight__grid {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 56px);
  }
  .featured-spotlight__title { max-width: none; }
}
@media (max-width: 640px) {
  .featured-spotlight__specs > div { padding: 14px 0 !important; padding-left: 0 !important; padding-right: 0 !important; border-right: 0; }
  .featured-spotlight__specs > div:nth-child(odd) { border-right: 1px solid var(--ace-bd-200); padding-right: 16px !important; }
  .featured-spotlight__specs > div:nth-child(even) { padding-left: 16px !important; }
  .featured-spotlight__specs dd { font-size: 20px; }
}

/* ==========================================================================
   ABOUT EDITORIAL — chapter card + drop-cap lead + italic pull-quote
   ========================================================================== */
.about-editorial {
  padding: clamp(96px, 11vw, 160px) 0;
}
.about-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.about-editorial__media {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}
.about-editorial__chapter {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--ace-bd-300);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.about-editorial__chapter-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ace-red);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 96, "SOFT" 60;
}
.about-editorial__chapter-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ace-ink-700);
}
.about-editorial__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--ace-surface-alt);
  display: block;
  margin: 0;
}
.about-editorial__image-caption {
  display: block;
  margin-top: 14px;
  padding-left: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12.5px;
  color: var(--ace-ink-500);
  letter-spacing: 0.005em;
  font-variation-settings: "opsz" 18, "SOFT" 30;
}

.about-editorial__text { padding-top: 0; }
.about-editorial__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: var(--ace-ink-900);
  margin: 0 0 clamp(28px, 3vw, 44px);
  max-width: 18ch;
}
:lang(th) .about-editorial__title { line-height: 1.22; }
.about-editorial__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  letter-spacing: -0.018em;
}

/* Lead with drop-cap. Drop-cap is italic Fraunces, sized to span ~2 lines. */
.about-editorial__lead {
  font-size: clamp(16.5px, 1.45vw, 19px);
  line-height: 1.75;
  color: var(--ace-ink-900);
  font-weight: 400;
  margin: 0 0 clamp(28px, 3vw, 40px);
  max-width: 52ch;
}
/* Subtraction: removed drop-cap (English-script borrowed onto Thai paragraph) */
/* Subtraction: removed pull-quote (one too many editorial moments per section) */
.about-editorial__lead strong {
  color: var(--ace-ink-900);
  font-weight: 600;
}
/* Inline ACE SITHA brandmark — replaces the words "ACE SITHA" at the start
   of the lead paragraph with the official vector logo, sized to the surrounding
   text height. */
.about-editorial__brandmark {
  display: inline-block;
  vertical-align: baseline;
  line-height: 0;
  margin-right: 0.18em;
}
.about-editorial__brandmark img {
  height: 0.88em;
  width: auto;
  display: inline-block;
  vertical-align: -0.14em;
}

.about-editorial__body {
  font-size: clamp(15px, 1.3vw, 16.5px);
  line-height: 1.78;
  color: var(--ace-ink-700);
  margin: 0 0 clamp(32px, 3.5vw, 44px);
  max-width: 52ch;
}

/* Numbered bullet list — catalog style with italic Fraunces numbers */
.about-editorial__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(36px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ace-bd-300);
}
.about-editorial__bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: baseline;
  padding: clamp(16px, 1.8vw, 22px) 0;
  border-bottom: 1px solid var(--ace-bd-200);
}
.about-editorial__bullets .bullet-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ace-red);
  letter-spacing: -0.01em;
  min-width: 2.5em;
  font-variation-settings: "opsz" 48, "SOFT" 60;
}
.about-editorial__bullets .bullet-text {
  font-size: clamp(14.5px, 1.15vw, 16px);
  line-height: 1.65;
  color: var(--ace-ink-900);
  font-weight: 400;
}

.about-editorial__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ace-ink-900);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ace-ink-900);
  transition: all var(--t-fast);
}
.about-editorial__cta:hover { color: var(--ace-red); border-bottom-color: var(--ace-red); }
.about-editorial__cta:hover svg { transform: translateX(4px); color: var(--ace-red); }
.about-editorial__cta svg { transition: transform var(--t-fast); }

@media (max-width: 1024px) {
  .about-editorial__grid { grid-template-columns: 1fr; }
  .about-editorial__media { position: static; }
  .about-editorial__title { max-width: none; }
}

/* Trust band — sits BELOW the hero as its own quiet statement.
   Three-up horizontal row with hairline rules between, on cream surface. */
.hero-trust-band {
  background: var(--ace-page);
  border-bottom: 1px solid var(--ace-bd-200);
  padding: clamp(28px, 3.5vw, 44px) 0;
}
.hero-trust-band__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.hero-trust-band .trust-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.hero-trust-band .trust-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1;
  color: var(--ace-ink-900);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.hero-trust-band .trust-num em {
  /* When wrapping EN 1929 cert stamp */
  font-style: italic;
  font-weight: 400;
}
.hero-trust-band .trust-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
}
.hero-trust-band .trust-rule {
  width: 1px;
  height: 32px;
  background: var(--ace-bd-200);
  display: block;
}

/* Mobile — stack image below text, compress trust band to a 3-column row */
@media (max-width: 1024px) {
  .hero--editorial .hero-split {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 56px);
  }
  .hero--editorial h1 { max-width: none; }
  .hero--editorial .hero-split__image { aspect-ratio: 5 / 4; }
}
@media (max-width: 640px) {
  .hero-trust-band__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .hero-trust-band .trust-rule { display: none; }
  .hero-trust-band .trust-num { font-size: 18px; }
  .hero-trust-band .trust-label { font-size: 9.5px; letter-spacing: 0.10em; }
}

/* ==========================================================================
   LOWER HOMEPAGE — restrained editorial language
   Consistent vocabulary across: catalog-index, reasons, values, applications.
   Section heads share: italic Fraunces numeral + sans headline + lead.
   Section padding consistent on cream surface, no card surfaces, no shadows.
   ========================================================================== */

/* Shared section-head vocabulary used by every lower section */
.catalog-index__head,
.reasons__head,
.values__head,
.applications__head {
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 64ch;
}
.catalog-index__num,
.reasons__num,
.values__num,
.applications__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  color: var(--ace-red);
  letter-spacing: -0.01em;
  margin-bottom: clamp(20px, 2.2vw, 28px);
  font-variation-settings: "opsz" 96, "SOFT" 60;
}
.catalog-index__title,
.reasons__title,
.values__title,
.applications__title {
  font-family: var(--font-sans);
  font-size: clamp(1.875rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.16;
  color: var(--ace-ink-900);
  margin: 0 0 clamp(16px, 2vw, 24px);
}
:lang(th) .catalog-index__title,
:lang(th) .reasons__title,
:lang(th) .values__title,
:lang(th) .applications__title { line-height: 1.26; }
.catalog-index__title em,
.reasons__title em,
.values__title em,
.applications__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  letter-spacing: -0.018em;
}
.catalog-index__title-quiet {
  color: var(--ace-ink-500);
  font-weight: 300;
}
.catalog-index__lead,
.reasons__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.72;
  color: var(--ace-ink-700);
  margin: 0;
  max-width: 48ch;
}

/* --- CATALOG INDEX (replaces product-card grid) --- */
.catalog-index {
  background: var(--ace-page);
  padding: clamp(80px, 10vw, 144px) 0;
  border-bottom: 1px solid var(--ace-bd-200);
}
.catalog-index__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 4.5vw, 72px) clamp(32px, 3.5vw, 56px);
}
.catalog-entry {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.catalog-entry__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ace-surface-alt);
  border-radius: var(--r-md);
  margin-bottom: clamp(16px, 1.6vw, 22px);
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.catalog-entry:hover .catalog-entry__img {
  transform: translateY(-4px);
}
.catalog-entry__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.catalog-entry__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
}
.catalog-entry__tag--wanzl { color: var(--wanzl-blue); }
.catalog-entry__title {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.45vw, 19px);
  font-weight: 600;
  line-height: 1.32;
  color: var(--ace-ink-900);
  letter-spacing: -0.012em;
  margin: 0;
  transition: color var(--t-fast);
}
.catalog-entry:hover .catalog-entry__title { color: var(--ace-red); }
.catalog-entry__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ace-ink-500);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
  .catalog-index__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .catalog-index__grid { grid-template-columns: 1fr; }
}

/* --- REASONS (Why Wanzl) — sticky title + numbered list --- */
.reasons {
  background: var(--ace-card);
  padding: clamp(96px, 11vw, 168px) 0;
  position: relative;
  border-bottom: 1px solid var(--ace-bd-200);
}
.reasons__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.reasons__head {
  position: sticky;
  top: 100px;
  margin-bottom: 0;
}
.reasons__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 2.5vw, 32px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ace-ink-900);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ace-ink-900);
  transition: all var(--t-fast);
}
.reasons__cta:hover { color: var(--ace-red); border-bottom-color: var(--ace-red); }
.reasons__cta:hover svg { transform: translateX(4px); }
.reasons__cta svg { transition: transform var(--t-fast); }
.reasons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ace-bd-300);
}
.reasons__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  padding: clamp(24px, 2.6vw, 36px) 0;
  border-bottom: 1px solid var(--ace-bd-200);
  align-items: baseline;
}
.reasons__item-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  color: var(--ace-red);
  letter-spacing: -0.015em;
  line-height: 1;
  min-width: 1.6em;
  font-variation-settings: "opsz" 96, "SOFT" 60;
}
.reasons__item-body h3 {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ace-ink-900);
  margin: 0 0 8px;
  line-height: 1.32;
}
:lang(th) .reasons__item-body h3 { line-height: 1.5; }
.reasons__item-body p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--ace-ink-700);
  margin: 0;
}
@media (max-width: 1024px) {
  .reasons__grid { grid-template-columns: 1fr; }
  .reasons__head { position: static; }
}

/* --- VALUES (What ACE SITHA brings) — 3-column prose, no cards --- */
.values {
  background: var(--ace-page);
  padding: clamp(96px, 11vw, 160px) 0;
  border-bottom: 1px solid var(--ace-bd-200);
}
.values__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.values__head .values__title { margin-left: auto; margin-right: auto; max-width: 22ch; }
.values__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  border-top: 1px solid var(--ace-bd-300);
  padding-top: clamp(40px, 4.5vw, 64px);
}
.values__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.values__col-title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.016em;
  color: var(--ace-ink-900);
  margin: 0;
  line-height: 1.28;
}
:lang(th) .values__col-title { line-height: 1.42; }
.values__col-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ace-red);
  font-variation-settings: "opsz" 96, "SOFT" 60;
  letter-spacing: -0.012em;
  margin-right: 2px;
}
.values__col p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--ace-ink-700);
  margin: 0;
}
@media (max-width: 900px) {
  .values__columns { grid-template-columns: 1fr; gap: 32px; }
}

/* --- APPLICATIONS — three stacked editorial moments, alternating sides --- */
.applications {
  background: var(--ace-card);
  padding: clamp(96px, 11vw, 168px) 0;
  position: relative;
  border-bottom: 1px solid var(--ace-bd-200);
}
.application {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 5vw, 72px) 0;
  border-top: 1px solid var(--ace-bd-200);
}
.application:last-of-type { border-bottom: 1px solid var(--ace-bd-200); }
.application--image-left .application__media { order: 0; }
.application--image-left .application__text  { order: 1; }
.application--image-right .application__media { order: 1; }
.application--image-right .application__text  { order: 0; }
.application__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--ace-surface-alt);
  border-radius: var(--r-md);
}
.application__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ace-red);
  margin-bottom: clamp(16px, 1.8vw, 24px);
}
.application__title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.18;
  color: var(--ace-ink-900);
  margin: 0 0 clamp(14px, 1.6vw, 20px);
  max-width: 16ch;
}
:lang(th) .application__title { line-height: 1.3; }
.application__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ace-red);
  font-variation-settings: "opsz" 96, "SOFT" 70;
  letter-spacing: 0;
}
.application__body {
  font-size: clamp(14.5px, 1.2vw, 16px);
  line-height: 1.72;
  color: var(--ace-ink-700);
  margin: 0 0 clamp(20px, 2vw, 28px);
  max-width: 44ch;
}
.application__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ace-ink-900);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ace-ink-900);
  transition: all var(--t-fast);
}
.application__cta:hover { color: var(--ace-red); border-bottom-color: var(--ace-red); }
.application__cta:hover svg { transform: translateX(4px); }
.application__cta svg { transition: transform var(--t-fast); }

@media (max-width: 900px) {
  .application,
  .application--image-left,
  .application--image-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .application__media { order: 0 !important; }
  .application__text  { order: 1 !important; }
  .application__title { max-width: none; }
}

/* ==========================================================================
   ESSAY (Section 06) — long-form editorial closing
   ========================================================================== */
.essay {
  background: var(--ace-page);
  padding: clamp(96px, 11vw, 168px) 0;
  border-bottom: 0;
}
.essay__head {
  max-width: 36ch;
  margin: 0 0 clamp(48px, 5vw, 72px);
}
.essay__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  color: var(--ace-red);
  letter-spacing: -0.01em;
  margin-bottom: clamp(16px, 1.8vw, 22px);
  font-variation-settings: "opsz" 96, "SOFT" 60;
}
.essay__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ace-ink-500);
  margin-bottom: clamp(16px, 1.8vw, 22px);
}
.essay__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.026em;
  line-height: 1.16;
  color: var(--ace-ink-900);
  margin: 0;
  max-width: 22ch;
}
:lang(th) .essay__title { line-height: 1.28; }
.essay__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  letter-spacing: -0.018em;
}

.essay__body {
  max-width: 64ch;
  margin: 0;
}
.essay__body p {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.8;
  color: var(--ace-ink-700);
  margin: 0 0 clamp(24px, 2.4vw, 36px);
}

/* Pull-quote — large italic Fraunces with left red rule and generous space */
.essay__quote {
  margin: clamp(40px, 4.5vw, 64px) 0;
  padding: clamp(16px, 2vw, 28px) 0 clamp(16px, 2vw, 28px) clamp(24px, 3vw, 40px);
  border-left: 2px solid var(--ace-red);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.42;
  color: var(--ace-ink-900);
  letter-spacing: -0.008em;
  max-width: 46ch;
  font-variation-settings: "opsz" 144, "SOFT" 70;
}
.essay__quote em { font-style: italic; }

.essay__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.22;
  color: var(--ace-ink-900);
  margin: clamp(40px, 4vw, 56px) 0 clamp(20px, 2vw, 28px);
  max-width: 22ch;
}
:lang(th) .essay__subtitle { line-height: 1.32; }
.essay__subtitle em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 70;
  letter-spacing: -0.012em;
}

/* ==========================================================================
   CONCLUDE — closing CTA panel, dark surface, page's final punctuation mark
   ========================================================================== */
.conclude {
  background: var(--ace-ink-900);
  color: rgba(255,255,255,0.92);
  padding: clamp(96px, 12vw, 168px) 0;
  position: relative;
  overflow: hidden;
}
.conclude__inner {
  max-width: 56ch;
  margin: 0 auto;
  text-align: center;
}
.conclude__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ace-red);
  margin: 0 0 clamp(20px, 2.4vw, 32px);
}
.conclude__title {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
}
:lang(th) .conclude__title { line-height: 1.24; font-weight: 400; }
.conclude__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  letter-spacing: -0.018em;
  color: rgba(255,255,255,0.88);
}
.conclude__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
  margin: 0 0 clamp(40px, 4.5vw, 56px);
}

.conclude__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 32px);
}
.conclude__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: clamp(14px, 1.4vw, 18px) clamp(24px, 2.5vw, 32px);
  background: var(--ace-red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: all var(--t-fast);
}
.conclude__cta-primary:hover {
  background: #fff;
  color: var(--ace-ink-900);
}
.conclude__cta-primary:hover svg { transform: translateX(4px); }
.conclude__cta-primary svg { transition: transform var(--t-fast); }

.conclude__divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.20);
  margin: 0 clamp(4px, 0.5vw, 8px);
}

.conclude__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--t-fast);
}
.conclude__contact:hover { opacity: 1; }
.conclude__contact:hover .conclude__contact-value {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.6);
}
.conclude__contact-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-variation-settings: "opsz" 18, "SOFT" 30;
}
.conclude__contact-value {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.005em;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  transition: all var(--t-fast);
}

@media (max-width: 768px) {
  .conclude__cta-row {
    flex-direction: column;
    gap: 24px;
  }
  .conclude__divider { display: none; }
  .conclude__contact { align-items: center; text-align: center; }
}

/* ==========================================================================
   SERVICE GUARANTEES BAND
   Replaces the generic stats trust band with three concrete procurement
   promises: quote response time, EN 1929 cert (visually dominant), and
   parts availability. Sits between hero and catalog — the first thing a
   scanning procurement manager sees about service.
   ========================================================================== */
.service-band {
  background: var(--ace-page);
  border-bottom: 1px solid var(--ace-bd-200);
  padding: clamp(40px, 5vw, 64px) 0;
}
.service-band__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0;
}
.service-item__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ace-red);
  font-variation-settings: "opsz" 18, "SOFT" 30;
  margin-bottom: 8px;
}
.service-item__title {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ace-ink-900);
  margin: 0;
  line-height: 1.28;
}
:lang(th) .service-item__title { line-height: 1.4; }
.service-item__detail {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--ace-ink-500);
  margin: 0;
}
.service-rule {
  width: 1px;
  background: var(--ace-bd-300);
}

/* EN 1929 cert stamp — the actual proof point, made visually dominant.
   Larger italic Fraunces inside the second service-item's title. */
.cert-stamp {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  color: var(--ace-ink-900);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--ace-ink-900);
  border-radius: 4px;
}

@media (max-width: 900px) {
  .service-band__inner { grid-template-columns: 1fr; gap: 28px; }
  .service-rule { display: none; }
  .cert-stamp { font-size: clamp(24px, 6vw, 32px); }
}

/* ==========================================================================
   PARTNERSHIP — merged Why-Wanzl + Why-ACE-SITHA into one chapter
   Two-column layout: ENGINEERED (Wanzl side) | DELIVERED (ACE SITHA side).
   Each column carries its own brand mark and three reasons.
   ========================================================================== */
.partnership {
  background: var(--ace-page);
  padding: clamp(96px, 11vw, 168px) 0;
  border-bottom: 1px solid var(--ace-bd-200);
}
.partnership__head {
  text-align: center;
  max-width: 40ch;
  margin: 0 auto clamp(64px, 7vw, 96px);
}
.partnership__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  color: var(--ace-red);
  letter-spacing: -0.01em;
  margin-bottom: clamp(20px, 2.2vw, 28px);
  font-variation-settings: "opsz" 96, "SOFT" 60;
}
.partnership__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.18;
  color: var(--ace-ink-900);
  margin: 0 auto clamp(20px, 2.4vw, 28px);
  max-width: 24ch;
}
:lang(th) .partnership__title { line-height: 1.3; }
.partnership__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  letter-spacing: -0.018em;
}
.partnership__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.72;
  color: var(--ace-ink-700);
  margin: 0 auto;
  max-width: 56ch;
}

.partnership__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  position: relative;
}
.partnership__columns::before {
  /* Vertical hairline between the two halves — single architectural detail */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--ace-bd-200);
}
.partnership__side { padding: 0; }
.partnership__side-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(32px, 3.5vw, 48px);
  padding-bottom: clamp(20px, 2.2vw, 28px);
  border-bottom: 1px solid var(--ace-bd-300);
}
.partnership__side-mark {
  height: 22px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.partnership__side--ace .partnership__side-mark { height: 26px; }
.partnership__side-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ace-red);
  font-variation-settings: "opsz" 18, "SOFT" 30;
  margin-left: auto;
}
.partnership__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.partnership__list li {
  padding: clamp(20px, 2.2vw, 28px) 0;
  border-bottom: 1px solid var(--ace-bd-200);
}
.partnership__list li:last-child { border-bottom: 0; }
.partnership__list h3 {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ace-ink-900);
  margin: 0 0 8px;
  line-height: 1.32;
}
:lang(th) .partnership__list h3 { line-height: 1.5; }
.partnership__list p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ace-ink-700);
  margin: 0;
}

.partnership__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: clamp(48px, 5vw, 72px) auto 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ace-ink-900);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ace-ink-900);
  transition: all var(--t-fast);
  text-align: center;
}
.partnership .container > .partnership__cta {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.partnership__cta:hover { color: var(--ace-red); border-bottom-color: var(--ace-red); }
.partnership__cta:hover svg { transform: translateX(4px); }
.partnership__cta svg { transition: transform var(--t-fast); }

@media (max-width: 900px) {
  .partnership__columns { grid-template-columns: 1fr; gap: 48px; }
  .partnership__columns::before {
    /* horizontal divider on mobile */
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
  }
}

/* ==========================================================================
   RECOMMENDATION #7 — Unify image card surface.
   Image frames lose their cream-card background, use white inner with
   a 1px soft border. Reserves cream-card exclusively for section surfaces.
   ========================================================================== */
.hero--editorial .hero-split__image,
.featured-spotlight__media,
.about-editorial__image {
  background: #ffffff;
  border: 1px solid var(--ace-bd-200);
}
/* Featured spotlight inner card on dark surface keeps its lift but inherits
   the white inner so all image frames share one treatment. */
.featured-spotlight__media {
  border-color: rgba(255,255,255,0.10);
}

/* ==========================================================================
   RECOMMENDATION #9 — Unified documentary aspect ratio: 5:4 landscape.
   Hero photo, about photo, applications photos. Catalog stays 4:3 (tighter grid).
   ========================================================================== */
.hero--editorial .hero-split__image  { aspect-ratio: 5 / 4; }
.about-editorial__image              { aspect-ratio: 5 / 4; }
/* .featured-spotlight__media already at 5/4. .application__media already 5/4.
   .catalog-entry__img stays at 4/3 — different grid role. */
