/* =========================================================================
   SLOMAX DESIGN SYSTEM v1
   Based on the agreed Distrib_C01 design (typography, radii, layout)
   + colour palette derived from OLDNEW_02 (warm-cream surfaces)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ── SURFACES (from OLDNEW_02 .home-modern) ────────────────────────── */
  --slm-page:           #F3F0E8;   /* page background — neutral cream */
  --slm-page-2:         #ECE5D8;   /* deeper cream, used for bands */
  --slm-panel-1:        #F6F2EA;   /* surface-soft — inner panel top */
  --slm-panel-2:        #ECE5D8;   /* surface-strong — inner panel bottom */
  --slm-card:           #FFFFFF;   /* pure white card surface */
  --slm-card-elev:      #FFFFFF;
  --slm-card-soft:      #F6F2EA;   /* soft-cream alternate card */
  --slm-tile:           #ECE5D8;   /* small icon tile background */
  --slm-band:           #ECE5D8;   /* full-bleed cream band */

  /* ── BRAND COLOURS ─────────────────────────────────────────────────── */
  --slm-green:          #5D8E62;   /* primary sage green */
  --slm-green-strong:   #4E7953;   /* darker sage — primary CTA */
  --slm-green-hover:    #3F6244;
  --slm-green-deep:     #355738;
  --slm-green-soft:     #EDF3EB;   /* very tinted bg */
  --slm-green-line:     #B5C4B3;

  /* ── BORDERS / LINES ───────────────────────────────────────────────── */
  --slm-line:           rgba(47, 52, 49, 0.08);
  --slm-line-soft:      rgba(47, 52, 49, 0.05);
  --slm-line-strong:    rgba(47, 52, 49, 0.16);

  /* ── TEXT ──────────────────────────────────────────────────────────── */
  --slm-fg:             #2F3431;   /* home-ink — dark with slight green */
  --slm-fg-2:           #6A6F69;   /* home-muted */
  --slm-fg-3:           #8A8F88;
  --slm-fg-4:           #B0B5B0;
  --slm-fg-on-green:    #FFFFFF;
  --slm-fg-on-green-2:  rgba(255, 255, 255, 0.78);

  /* ── ACCENTS ───────────────────────────────────────────────────────── */
  --slm-warn:           #B07A2A;
  --slm-error:          #B04A38;

  /* ── TYPE ──────────────────────────────────────────────────────────── */
  --slm-sans:           'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --slm-mono:           'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* ── RADII (from Distrib_C01) ──────────────────────────────────────── */
  --slm-r-tile:         8px;
  --slm-r-btn:          10px;
  --slm-r-card:         12px;
  --slm-r-card-lg:      16px;
  --slm-r-panel:        20px;
  --slm-r-pill:         999px;

  /* ── SHADOWS — cool, low-opacity (based on home-ink) ───────────────── */
  --slm-shadow-card:     0 1px 2px rgba(47, 52, 49, 0.04),
                         0 8px 30px rgba(47, 52, 49, 0.05);
  --slm-shadow-panel:    0 2px 4px rgba(47, 52, 49, 0.04),
                         0 22px 44px rgba(47, 52, 49, 0.08);
  --slm-shadow-callout:  0 4px 12px rgba(47, 52, 49, 0.06),
                         0 18px 36px rgba(47, 52, 49, 0.14);
  --slm-shadow-hover:    0 4px 12px rgba(47, 52, 49, 0.08),
                         0 22px 48px rgba(47, 52, 49, 0.14);
  --slm-inset:           inset 0 1px 0 rgba(255, 255, 255, 0.6),
                         inset 0 -1px 0 rgba(47, 52, 49, 0.04);

  /* ── SPACING ───────────────────────────────────────────────────────── */
  --slm-shell-x:        32px;
  --slm-shell-max:      1280px;
  --slm-section-py:     112px;

  /* ── MOTION ────────────────────────────────────────────────────────── */
  --slm-ease:           cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 768px) {
  :root { --slm-section-py: 72px; --slm-shell-x: 20px; }
}

/* =========================================================================
   BASE
   ========================================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--slm-page);
  color: var(--slm-fg);
  font-family: var(--slm-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }

/* =========================================================================
   SHELL + SECTION
   ========================================================================= */
.slm-shell {
  max-width: var(--slm-shell-max);
  margin-inline: auto;
  padding-inline: var(--slm-shell-x);
}
.slm-section { padding-block: var(--slm-section-py); }

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
.slm-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
}
.slm-eyebrow-green { color: var(--slm-fg-3); }

.slm-display {
  font-family: var(--slm-sans);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--slm-fg);
  margin: 0;
}
.slm-display em {
  font-style: normal;
  font-weight: 900;
}

.slm-h1 {
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--slm-fg);
}
/* Accent words inside headings — weight inversion, not italic / colour.
   Base heading = bold; emphasised words = light/regular, same colour.
   Covers ALL heading classes that may contain <em> or .slm-italic. */
.slm-italic,
.slm-h1 em, .slm-h2 em, .slm-h3 em, .slm-h4 em,
.slm-sec-title em, .slm-contact-title em, .slm-hero-title em,
.slm-h1 .slm-italic, .slm-h2 .slm-italic, .slm-h3 .slm-italic, .slm-h4 .slm-italic,
.slm-sec-title .slm-italic, .slm-contact-title .slm-italic, .slm-hero-title .slm-italic {
  font-family: var(--slm-sans);
  font-style: normal;
  font-weight: 400;
  color: inherit;
  letter-spacing: inherit;
}
.slm-h2 {
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--slm-fg);
}
.slm-h3 {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--slm-fg);
}
.slm-h4 {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--slm-fg);
  margin: 0;
}
.slm-body-lg {
  font-size: 17px;
  line-height: 1.55;
  color: var(--slm-fg-2);
}
.slm-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slm-fg-2);
}
.slm-caption {
  font-size: 13px;
  line-height: 1.5;
  color: var(--slm-fg-3);
}
.slm-mono {
  font-family: var(--slm-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slm-fg-3);
}

/* =========================================================================
   BUTTONS — rounded-rect 10px (NOT pill)
   ========================================================================= */
.slm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--slm-r-btn);
  cursor: pointer;
  transition: all 200ms var(--slm-ease);
  white-space: nowrap;
  line-height: 1;
}
.slm-btn:active { transform: translateY(1px); }
.slm-btn .arr { transition: transform 200ms var(--slm-ease); display: inline-block; }
.slm-btn:hover .arr { transform: translateX(3px); }
.slm-btn .ico { width: 16px; height: 16px; flex-shrink: 0; }

.slm-btn-primary {
  background: var(--slm-green-strong);
  color: #fff;
}
.slm-btn-primary:hover { background: var(--slm-green-hover); }

.slm-btn-secondary {
  background: var(--slm-card-elev);
  color: var(--slm-fg);
  border-color: var(--slm-line);
  box-shadow: var(--slm-shadow-card);
}
.slm-btn-secondary:hover { border-color: var(--slm-green); color: var(--slm-green); }

.slm-btn-ghost {
  background: transparent;
  color: var(--slm-fg);
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--slm-line-strong);
  font-weight: 500;
}
.slm-btn-ghost:hover { color: var(--slm-green); border-bottom-color: var(--slm-green); }

.slm-btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
}

/* =========================================================================
   STAMPS / PILLS — sole use of pill radius
   ========================================================================= */
.slm-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--slm-line-strong);
  border-radius: var(--slm-r-pill);
  background: var(--slm-card-soft);
  font-family: var(--slm-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--slm-fg-2);
  white-space: nowrap;
}
.slm-stamp .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--slm-green-strong);
}

/* =========================================================================
   HEADER (nav matching Distrib_C01)
   ========================================================================= */
.slm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 240, 232, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--slm-ease), background 200ms var(--slm-ease);
}
.slm-header.scrolled { border-bottom-color: var(--slm-line); }

.slm-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
.slm-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--slm-green);
}
.slm-logo img { display: block; height: 48px; width: auto; }
@media (max-width: 640px) {
  .slm-logo img { height: 40px; }
}

.slm-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.slm-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--slm-green-strong);
  text-decoration: none;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 200ms var(--slm-ease);
}
.slm-nav-item:hover { color: var(--slm-green-deep); }
.slm-nav-item.active {
  color: var(--slm-fg);
}
.slm-nav-item.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--slm-green-strong);
  border-radius: 2px;
}
.slm-nav-item .chev {
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  margin-top: -4px;
  margin-left: 2px;
}
@media (max-width: 1120px) {
  .slm-nav { gap: 22px; }
  .slm-nav-item { font-size: 14px; }
}
@media (max-width: 960px) { .slm-nav { display: none; } }

.slm-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* =========================================================================
   HERO BLOCK
   ========================================================================= */
.slm-hero {
  padding-block: 56px 96px;
}
.slm-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .slm-hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.slm-hero-eyebrow {
  display: inline-block;
  font-family: var(--slm-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
  margin-bottom: 36px;
}
.slm-hero-title {
  font-family: var(--slm-sans);
  font-weight: 600;            /* base = SemiBold ("EU snacks", "margin") */
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--slm-fg);
  margin: 0 0 32px;
  max-width: 12ch;
}
.slm-hero-title .l1,
.slm-hero-title .l2 {
  display: block;
  white-space: nowrap;
}
.slm-hero-title .lg {
  font-size: 1.25em;           /* keyword sizing — "margin" */
  font-weight: 600;            /* SemiBold */
  letter-spacing: -0.032em;
}
.slm-hero-title .sm {
  font-size: 0.78em;
  font-weight: 400;            /* Regular — "for", "reliable" */
  letter-spacing: -0.005em;
}
.slm-hero-h2 {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--slm-fg);
  margin: 0 0 20px;
  max-width: 28ch;
}
.slm-hero-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--slm-fg-2);
  margin: 0 0 36px;
  max-width: 52ch;
}
.slm-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Hero chips — unified 6-up row spanning full shell width, sits BELOW
   the hero grid. Replaces the older split between 4 inline trust tiles
   (left column) and 3 feature cards (left column). */
.slm-hero-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media (min-width: 640px) { .slm-hero-chips { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .slm-hero-chips { grid-template-columns: repeat(6, 1fr); } }

.slm-hero-chip {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--slm-shadow-card);
}
.slm-hero-chip-ic {
  width: 44px;
  height: 44px;
  border-radius: var(--slm-r-tile);
  background: var(--slm-tile);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--slm-green-strong);
}
.slm-hero-chip-ic svg { width: 22px; height: 22px; }
.slm-hero-chip-text {
  font-size: 13.5px;
  line-height: 1.25;
  color: var(--slm-fg);
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* hero media (image area) — no fixed aspect ratio; matches left column
   height via grid stretch. Photo is cropped from the top so the chips
   below can sit in a single row across the full shell width. */
.slm-hero-media {
  position: relative;
  min-height: 460px;
  border-radius: var(--slm-r-card-lg);
  overflow: hidden;
  background: var(--slm-tile);
  box-shadow: var(--slm-shadow-callout);
}
.slm-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  display: block;
}
.slm-hero-media .ph-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--slm-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.78);
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 4;
}
.slm-hero-scene {
  position: absolute;
  inset: 0;
}
.slm-hero-scene svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* floating "+28%" callout */
.slm-callout {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--slm-card-elev);
  border-radius: var(--slm-r-card);
  padding: 18px 20px;
  box-shadow: var(--slm-shadow-callout);
  min-width: 160px;
  z-index: 5;
}
.slm-callout-ic {
  width: 32px; height: 32px;
  border-radius: var(--slm-r-tile);
  background: var(--slm-tile);
  display: grid; place-items: center;
  color: var(--slm-green-strong);
  margin-bottom: 10px;
}
.slm-callout-ic svg { width: 18px; height: 18px; }
.slm-callout-num {
  font-family: var(--slm-sans);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.025em;
  color: var(--slm-fg);
  line-height: 1;
}
.slm-callout-label {
  font-size: 13px;
  color: var(--slm-fg-2);
  font-weight: 500;
  line-height: 1.25;
  margin-top: 6px;
}

/* (removed) feature cards row + trust tile row — both replaced by
   the single unified .slm-hero-chips row above. */

/* =========================================================================
   SECTION BAND ("Built for repeat orders")
   ========================================================================= */
.slm-band {
  background: var(--slm-band);
  border-block: 1px solid var(--slm-line-soft);
  padding-block: 48px;
}
.slm-band-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 900px) { .slm-band-row { grid-template-columns: 1fr 1fr; gap: 56px; } }
.slm-band-head {
  display: flex;
  gap: 20px;
  align-items: center;
}
.slm-band-ic {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--slm-green-strong);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.slm-band-ic svg { width: 28px; height: 28px; }
.slm-band-title {
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--slm-fg);
}
.slm-band-copy {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slm-fg-2);
  max-width: 56ch;
}

/* =========================================================================
   DS DOC — section headings, swatches, specimens
   ========================================================================= */
.ds-page {
  background: var(--slm-page);
}
.ds-toc {
  position: sticky;
  top: 80px;
  background: var(--slm-panel-1);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 18px 20px;
}
.ds-toc h6 {
  font-family: var(--slm-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
  margin: 0 0 12px;
}
.ds-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ds-toc a {
  font-size: 13px;
  color: var(--slm-fg-2);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  gap: 8px;
}
.ds-toc a:hover { color: var(--slm-green); }
.ds-toc a .num {
  font-family: var(--slm-mono);
  color: var(--slm-fg-4);
  font-size: 11px;
  width: 18px;
}

.ds-block {
  background: linear-gradient(180deg, var(--slm-panel-1), var(--slm-panel-2));
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-panel);
  padding: 48px;
  box-shadow: var(--slm-shadow-panel);
  margin-bottom: 32px;
}
@media (max-width: 768px) { .ds-block { padding: 28px; border-radius: var(--slm-r-card-lg); } }

.ds-block-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slm-line);
}
@media (min-width: 900px) { .ds-block-head { grid-template-columns: 200px 1fr; gap: 32px; align-items: baseline; } }
.ds-block-num {
  font-family: var(--slm-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--slm-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ds-block-title {
  font-family: var(--slm-sans);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--slm-fg);
  margin: 0;
}
.ds-block-sub {
  font-size: 15px;
  color: var(--slm-fg-2);
  margin-top: 8px;
  max-width: 60ch;
}

.ds-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.ds-grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .ds-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ds-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.ds-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.ds-grid-6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }

/* Colour swatch */
.ds-swatch {
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  overflow: hidden;
  background: var(--slm-card);
}
.ds-swatch-color { aspect-ratio: 4 / 3; }
.ds-swatch-meta { padding: 12px 14px; }
.ds-swatch-name {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--slm-fg);
  letter-spacing: -0.005em;
}
.ds-swatch-hex {
  font-family: var(--slm-mono);
  font-size: 11px;
  color: var(--slm-fg-3);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ds-swatch-tok {
  font-family: var(--slm-mono);
  font-size: 10px;
  color: var(--slm-fg-4);
  margin-top: 2px;
}

/* Type specimen card */
.ds-type {
  border-top: 1px solid var(--slm-line);
  padding-block: 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: baseline;
}
@media (max-width: 768px) { .ds-type { grid-template-columns: 1fr; gap: 12px; } }
.ds-type-label {
  font-family: var(--slm-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--slm-fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ds-type-spec {
  font-family: var(--slm-mono);
  font-size: 10px;
  color: var(--slm-fg-4);
  margin-top: 4px;
  display: block;
}

/* Radius specimen */
.ds-radius {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  aspect-ratio: 5 / 3;
  display: grid; place-items: center;
  text-align: center;
  padding: 16px;
  position: relative;
}
.ds-radius-name { font-family: var(--slm-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--slm-fg-2); }
.ds-radius-val { font-family: var(--slm-mono); font-size: 10px; color: var(--slm-fg-4); margin-top: 4px; }

/* Shadow specimen */
.ds-shadow {
  height: 90px;
  background: var(--slm-card-elev);
  border-radius: var(--slm-r-card);
  display: grid;
  place-items: center;
  font-family: var(--slm-mono);
  font-size: 11px;
  color: var(--slm-fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Component spec — a small caption above a component example */
.ds-spec {
  font-family: var(--slm-mono);
  font-size: 10px;
  color: var(--slm-fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Hero specimen wrapper */
.ds-hero-frame {
  background: var(--slm-page);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card-lg);
  padding: 40px;
  position: relative;
}
.ds-hero-frame::before {
  content: 'Hero specimen · 1280px frame';
  position: absolute;
  top: 12px; left: 16px;
  font-family: var(--slm-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
}

/* =========================================================================
   SECTION HEADERS — section-level eyebrow + title + sub
   ========================================================================= */
.slm-sec-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
  margin-bottom: 18px;
  display: inline-block;
}
.slm-sec-eyebrow .num {
  color: var(--slm-fg-3);
  margin-right: 8px;
  font-family: var(--slm-mono);
  letter-spacing: 0.1em;
}
.slm-sec-eyebrow.under-rule {
  border-bottom: 0;
  padding-bottom: 0;
  width: auto;
}

.slm-sec-title {
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--slm-fg);
  margin: 0 0 16px;
  max-width: none;
  text-wrap: pretty;
}
.slm-sec-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slm-fg-2);
  max-width: none;
  margin: 0;
}

/* =========================================================================
   WHY DISTRIBUTORS — 6-card grid + bottom trust strip
   ========================================================================= */
.slm-section-why {
  position: relative;
}
.slm-section-why::after {
  content: '';
  position: absolute;
  top: 80px; right: 24px;
  width: 220px; height: 220px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><g fill='none' stroke='%23C7BB99' stroke-width='1.2' opacity='0.5'><path d='M 120 30 Q 150 60 150 110 Q 150 160 120 200 Q 90 160 90 110 Q 90 60 120 30 Z'/><path d='M 90 80 Q 60 90 60 130 Q 60 170 100 180'/><path d='M 150 80 Q 180 90 180 130 Q 180 170 140 180'/><circle cx='120' cy='110' r='4'/><circle cx='90' cy='140' r='3'/><circle cx='160' cy='150' r='3'/></g></svg>") no-repeat center / contain;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.slm-why-head {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.slm-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) { .slm-why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .slm-why-grid { grid-template-columns: repeat(3, 1fr); } }

.slm-why-card {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 28px;
  box-shadow: var(--slm-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slm-why-card-ic {
  width: 48px; height: 48px;
  border-radius: var(--slm-r-tile);
  background: var(--slm-tile);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--slm-green-strong);
}
.slm-why-card-ic svg { width: 26px; height: 26px; }
.slm-why-card-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--slm-fg);
  max-width: 22ch;
}
.slm-why-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slm-fg-2);
}

/* Inline trust strip — single rounded rectangle with 5 items + interpunct */
.slm-trust-strip {
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--slm-card-soft);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-pill);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .slm-trust-strip { border-radius: var(--slm-r-card); gap: 16px; }
}
.slm-trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slm-fg);
  line-height: 1.3;
}
.slm-trust-strip-ic {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--slm-line);
  background: var(--slm-card);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--slm-green-strong);
}
.slm-trust-strip-ic svg { width: 14px; height: 14px; }

/* =========================================================================
   ONE FACTORY — 2 sibling cards
   ========================================================================= */
.slm-one-factory-head {
  max-width: 720px;
  text-align: center;
  margin-inline: auto;
}
.slm-one-factory-head .slm-sec-title { margin-inline: auto; }
.slm-one-factory-head .slm-sec-sub { margin-inline: auto; }
.slm-siblings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) { .slm-siblings-grid { grid-template-columns: 1fr 1fr; } }
.slm-sibling {
  background: var(--slm-card-soft);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 36px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 240ms var(--slm-ease), transform 240ms var(--slm-ease);
}
.slm-sibling:hover { box-shadow: var(--slm-shadow-hover); transform: translateY(-2px); }
.slm-sibling-eyebrow {
  font-family: var(--slm-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slm-green-strong);
}
.slm-sibling-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--slm-fg);
}
.slm-sibling-desc {
  font-size: 14px;
  color: var(--slm-fg-2);
  line-height: 1.55;
}
.slm-sibling-more {
  margin-top: 8px;
  color: var(--slm-green-strong);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================================
   RETAIL CUSTOMER mini-band — dark green narrow band
   ========================================================================= */
.slm-retail-band {
  background: linear-gradient(180deg, #2C4D31 0%, #20402A 100%);
  border-radius: var(--slm-r-card);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-block: 64px;
  color: #fff;
}
.slm-retail-left { display: flex; align-items: center; gap: 16px; flex: 1 1 400px; }
.slm-retail-ic {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.slm-retail-ic svg { width: 18px; height: 18px; }
.slm-retail-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: #fff;
}
.slm-retail-desc { font-size: 13px; color: rgba(255,255,255,0.78); margin-top: 2px; }
.slm-retail-cta {
  background: #fff;
  color: var(--slm-fg);
  padding: 11px 18px;
  border-radius: var(--slm-r-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--slm-sans);
}
.slm-retail-cta .arr { font-family: var(--slm-sans); font-weight: 700; }

/* =========================================================================
   BRAND PORTFOLIO
   ========================================================================= */
.slm-brand-panel {
  background: var(--slm-card-soft);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card-lg);
  padding: 56px;
}
@media (max-width: 768px) { .slm-brand-panel { padding: 32px; border-radius: var(--slm-r-card); } }

.slm-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 32px;
}

.slm-brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slm-brand-tab {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--slm-fg-2);
  background: transparent;
  border: 1px solid var(--slm-line-strong);
  border-radius: var(--slm-r-pill);
  padding: 12px 28px;
  cursor: pointer;
  transition: all 200ms var(--slm-ease);
  letter-spacing: -0.005em;
}
.slm-brand-tab:hover { color: var(--slm-fg); border-color: var(--slm-green); }
.slm-brand-tab.active {
  background: var(--slm-green-strong);
  border-color: var(--slm-green-strong);
  color: #fff;
}

.slm-brand-detail {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 40px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .slm-brand-detail { grid-template-columns: 6fr 7fr; gap: 48px; } }

.slm-brand-meta-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slm-green-strong);
  margin-bottom: 10px;
}
.slm-brand-meta-name {
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--slm-fg);
  margin-bottom: 12px;
}
.slm-brand-meta-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slm-fg-2);
  margin-bottom: 18px;
  max-width: 42ch;
}
.slm-brand-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.slm-brand-bag {
  margin-top: auto;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--slm-r-card);
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(199,187,153,0.18) 12px 13px),
    linear-gradient(180deg, #F3EAD2 0%, #E8DCB8 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.slm-brand-bag img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slm-brand-bag.is-contain img {
  object-fit: contain;
  padding: 22px;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22));
}
.slm-brand-bag svg { width: 60%; height: auto; }

.slm-brand-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.slm-brand-table th {
  text-align: left;
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--slm-line-strong);
}
.slm-brand-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--slm-line);
  vertical-align: top;
}
.slm-brand-table tr:last-child td { border-bottom: 0; }
.slm-brand-table .item {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--slm-fg);
  letter-spacing: -0.005em;
}
.slm-brand-table .mono {
  font-family: var(--slm-mono);
  font-size: 12.5px;
  color: var(--slm-fg);
  letter-spacing: 0.02em;
}

.slm-brand-detail-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}
.slm-brand-detail-foot .slm-btn-primary { padding: 12px 24px; border-radius: var(--slm-r-pill); font-size: 14px; }

/* =========================================================================
   COMMERCIAL TERMS — spec table
   ========================================================================= */
.slm-terms-panel {
  background: var(--slm-card-soft);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card-lg);
  padding: 64px 56px;
}
@media (max-width: 768px) { .slm-terms-panel { padding: 40px 28px; } }

.slm-terms-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 48px;
}
@media (min-width: 900px) {
  .slm-terms-head { grid-template-columns: 200px 1fr; gap: 64px; align-items: baseline; }
}

.slm-terms-table {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  overflow: hidden;
}
.slm-terms-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--slm-line);
}
@media (min-width: 768px) {
  .slm-terms-row { grid-template-columns: 200px 1fr 1fr; }
}
.slm-terms-row:last-child { border-bottom: 0; }
.slm-terms-label {
  padding: 22px 24px;
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
}
.slm-terms-value {
  padding: 22px 24px;
  font-family: var(--slm-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--slm-fg);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.slm-terms-note {
  padding: 22px 24px;
  font-size: 13.5px;
  color: var(--slm-fg-2);
  line-height: 1.5;
}
.slm-tba {
  display: inline-block;
  font-family: var(--slm-sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
  border: 1px solid var(--slm-line-strong);
  padding: 3px 8px;
  border-radius: var(--slm-r-pill);
  font-weight: 600;
}
.slm-terms-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}
.slm-terms-foot .slm-caption { max-width: 60ch; }

/* =========================================================================
   ONBOARDING — 3 steps + side card
   ========================================================================= */
.slm-onboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .slm-onboard-grid { grid-template-columns: 3fr 1fr; gap: 32px; }
}
.slm-onboard-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .slm-onboard-steps { grid-template-columns: repeat(3, 1fr); }
}
.slm-onboard-step {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.slm-onboard-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.slm-onboard-step-ic {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--slm-tile);
  display: grid; place-items: center;
  color: var(--slm-green-strong);
  flex-shrink: 0;
}
.slm-onboard-step-ic svg { width: 18px; height: 18px; }
.slm-onboard-step-num {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.025em;
  color: var(--slm-fg);
  line-height: 1;
}
.slm-onboard-step-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
}
.slm-onboard-step-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--slm-fg);
  line-height: 1.3;
}
.slm-onboard-step-desc { font-size: 13.5px; color: var(--slm-fg-2); line-height: 1.5; }
.slm-onboard-step-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--slm-line);
  font-family: var(--slm-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--slm-fg-3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.slm-onboard-step-meta svg { width: 12px; height: 12px; }

.slm-onboard-side {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.slm-onboard-side-ic {
  width: 40px; height: 40px;
  border-radius: var(--slm-r-tile);
  background: var(--slm-tile);
  display: grid; place-items: center;
  color: var(--slm-green-strong);
}
.slm-onboard-side-ic svg { width: 20px; height: 20px; }
.slm-onboard-side-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--slm-fg);
  line-height: 1.2;
}
.slm-onboard-side-desc { font-size: 14px; color: var(--slm-fg-2); line-height: 1.55; }

/* =========================================================================
   PRODUCTION QUALITY — 4 quality cards + photo + doc row
   ========================================================================= */
.slm-quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .slm-quality-grid { grid-template-columns: 1fr 1.05fr; gap: 64px; }
}
.slm-quality-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .slm-quality-cards { grid-template-columns: 1fr 1fr; }
}
.slm-quality-card {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slm-quality-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.slm-quality-card-ic {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--slm-tile);
  display: grid; place-items: center;
  color: var(--slm-green-strong);
  flex-shrink: 0;
}
.slm-quality-card-ic svg { width: 22px; height: 22px; }
.slm-quality-card-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slm-green-strong);
}
.slm-quality-card-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--slm-fg);
}
.slm-quality-card-desc { font-size: 13.5px; color: var(--slm-fg-2); line-height: 1.55; }

.slm-quality-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--slm-r-card-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, #6B5944 0%, #3D3225 60%, #211B12 100%);
  position: relative;
}
.slm-quality-photo .ph-label {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--slm-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.78);
  padding: 5px 10px;
  border-radius: 4px;
}
.slm-quality-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slm-quality-photo-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--slm-card);
  border-top: 1px solid var(--slm-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.slm-quality-photo-cell {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--slm-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.slm-quality-photo-cell:last-child { border-right: 0; }
.slm-quality-photo-cell .ic {
  width: 26px; height: 26px;
  border-radius: 999px;
  border: 1px solid var(--slm-line);
  display: grid; place-items: center;
  color: var(--slm-green-strong);
}
.slm-quality-photo-cell .ic svg { width: 14px; height: 14px; }
.slm-quality-photo-cell .lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--slm-fg);
  line-height: 1.25;
  text-wrap: balance;
}

.slm-doc-row {
  margin-top: 32px;
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.slm-doc-left { display: flex; align-items: center; gap: 18px; }
.slm-doc-ic {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--slm-tile);
  display: grid; place-items: center;
  color: var(--slm-green-strong);
  flex-shrink: 0;
}
.slm-doc-ic svg { width: 20px; height: 20px; }
.slm-doc-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
  margin-bottom: 4px;
}
.slm-doc-text {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--slm-fg);
  letter-spacing: -0.005em;
}

/* =========================================================================
   CONTACT — dark green panel
   ========================================================================= */
.slm-contact-panel {
  background: linear-gradient(180deg, #1F3724 0%, #142719 100%);
  border-radius: var(--slm-r-card-lg);
  padding: 80px 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .slm-contact-panel { padding: 48px 28px; border-radius: var(--slm-r-card); } }
.slm-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) { .slm-contact-grid { grid-template-columns: 1fr 1.05fr; gap: 80px; } }

.slm-contact-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 18px;
}
.slm-contact-title {
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px;
  text-wrap: balance;
}
.slm-contact-lead {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin: 0 0 32px;
}

.slm-contact-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.slm-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--slm-r-btn);
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 200ms var(--slm-ease);
}
.slm-contact-cta:hover { background: rgba(255,255,255,0.12); }
.slm-contact-cta svg { width: 16px; height: 16px; opacity: 0.8; }

.slm-contact-stamps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.slm-contact-stamp {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}
.slm-contact-stamp-ic {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
}
.slm-contact-stamp-ic svg { width: 14px; height: 14px; }

.slm-contact-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.slm-contact-footnote-ic {
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}
.slm-contact-footnote-ic svg { width: 12px; height: 12px; }
.slm-contact-footnote strong { color: rgba(255,255,255,0.95); font-weight: 600; }

.slm-contact-form { display: flex; flex-direction: column; gap: 18px; }
.slm-cf-row { display: flex; flex-direction: column; gap: 6px; }
.slm-cf-row label {
  font-family: var(--slm-sans);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}
.slm-cf-row input,
.slm-cf-row select,
.slm-cf-row textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--slm-r-btn);
  padding: 12px 16px;
  color: #fff;
  font-family: var(--slm-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 200ms var(--slm-ease), background 200ms var(--slm-ease);
}
.slm-cf-row input::placeholder,
.slm-cf-row textarea::placeholder { color: rgba(255,255,255,0.4); }
.slm-cf-row input:focus,
.slm-cf-row select:focus,
.slm-cf-row textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}
.slm-cf-row select {
  appearance: none;
  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='rgba(255,255,255,0.5)' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.slm-cf-row textarea { min-height: 96px; resize: vertical; }
.slm-cf-submit {
  background: #A8C390;
  border: 0;
  color: #1F3724;
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--slm-r-btn);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: background 200ms var(--slm-ease);
}
.slm-cf-submit:hover { background: #BDD3A7; }
.slm-cf-fineprint {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.slm-footer {
  background: var(--slm-page);
  padding-block: 80px 32px;
}
.slm-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .slm-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.slm-footer-col h4 {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slm-fg-3);
  margin: 0 0 16px;
}
.slm-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.slm-footer-col a { color: var(--slm-fg-2); text-decoration: none; font-size: 14px; }
.slm-footer-col a:hover { color: var(--slm-green-strong); }
.slm-footer-col p { color: var(--slm-fg-2); font-size: 13px; line-height: 1.5; margin: 12px 0; }
.slm-footer-stamps { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.slm-footer-legal {
  border-top: 1px solid var(--slm-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--slm-fg-4);
}
.slm-footer-legal .reg { font-family: var(--slm-mono); letter-spacing: 0.04em; }
.slm-footer-legal a { color: inherit; text-decoration: underline; }
.slm-fade.pending {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--slm-ease), transform 600ms var(--slm-ease);
}
.slm-fade.pending.in, .slm-fade.in { opacity: 1; transform: none; }

/* =========================================================================
   DISTRIBUTOR · "Why it pays to work with us" — numbered rows
   ========================================================================= */
.slm-pays-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
.slm-pays-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slm-pays-row {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  box-shadow: var(--slm-shadow-card);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .slm-pays-row { grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
}
.slm-pays-row-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.slm-pays-row-ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--slm-r-tile);
  background: var(--slm-tile);
  display: grid; place-items: center;
  color: var(--slm-green-strong);
}
.slm-pays-row-ic svg { width: 22px; height: 22px; }
.slm-pays-row-num {
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: var(--slm-green-strong);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.slm-pays-row-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--slm-fg);
}
.slm-pays-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 32px;
}
@media (min-width: 640px) { .slm-pays-bullets { grid-template-columns: 1fr 1fr; } }
.slm-pays-bullet-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--slm-fg);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.slm-pays-bullet-title::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--slm-green-strong);
  flex-shrink: 0;
  transform: translateY(-2px);
}
.slm-pays-bullet-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slm-fg-2);
  padding-left: 14px;
}

/* bottom partnership banner */
.slm-pays-banner {
  margin-top: 24px;
  background: var(--slm-green-soft);
  border: 1px solid var(--slm-green-line);
  border-radius: var(--slm-r-card);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.slm-pays-banner-left { display: flex; align-items: center; gap: 18px; }
.slm-pays-banner-ic {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--slm-green-strong);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.slm-pays-banner-ic svg { width: 24px; height: 24px; }
.slm-pays-banner-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--slm-fg);
}
.slm-pays-banner-desc { font-size: 13.5px; color: var(--slm-fg-2); margin-top: 2px; max-width: 56ch; }

/* =========================================================================
   DISTRIBUTOR · "Three steps to our first meeting"
   ========================================================================= */
.slm-meet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .slm-meet-grid { grid-template-columns: 340px 1fr; gap: 32px; align-items: start; }
}
.slm-meet-route {
  background: linear-gradient(180deg, #2C4D31 0%, #1F3724 100%);
  color: #fff;
  border-radius: var(--slm-r-card-lg);
  padding: 36px;
  position: sticky;
  top: 96px;
}
.slm-meet-route-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.slm-meet-route-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.slm-meet-route-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.slm-meet-route-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #A8C390;
  color: #1F3724;
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: var(--slm-r-btn);
  text-decoration: none;
  transition: background 200ms var(--slm-ease);
}
.slm-meet-route-cta:hover { background: #BDD3A7; }

.slm-meet-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slm-meet-step {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  box-shadow: var(--slm-shadow-card);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: center;
}
.slm-meet-step-eyebrow {
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slm-green-strong);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slm-meet-step-eyebrow svg { width: 13px; height: 13px; }
.slm-meet-step-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--slm-fg);
  margin-bottom: 8px;
}
.slm-meet-step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slm-fg-2);
  max-width: 60ch;
}
.slm-meet-step-num {
  grid-row: span 2;
  align-self: center;
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--slm-green-soft);
}
.slm-meet-foot {
  margin-top: 24px;
  background: var(--slm-card-soft);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.slm-meet-foot-text { font-size: 13.5px; color: var(--slm-fg-2); flex: 1 1 300px; }

/* =========================================================================
   DISTRIBUTOR · FAQ (single-column accordion) + CTA row
   ========================================================================= */
.slm-dfaq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: none;
}
.slm-dfaq-item {
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  box-shadow: var(--slm-shadow-card);
  overflow: hidden;
}
.slm-dfaq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 28px;
  font-family: var(--slm-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--slm-fg);
  letter-spacing: -0.005em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.3;
}
.slm-dfaq-toggle {
  width: 26px; height: 26px;
  flex-shrink: 0;
  position: relative;
  border-radius: 999px;
  border: 1px solid var(--slm-line-strong);
  display: grid; place-items: center;
  color: var(--slm-fg-2);
  transition: all 240ms var(--slm-ease);
}
.slm-dfaq-toggle::before,
.slm-dfaq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 240ms var(--slm-ease), opacity 240ms var(--slm-ease);
}
.slm-dfaq-toggle::before { left: 8px; right: 8px; height: 1.5px; top: 50%; transform: translateY(-50%); }
.slm-dfaq-toggle::after  { top: 8px; bottom: 8px; width: 1.5px; left: 50%; transform: translateX(-50%); }
.slm-dfaq-item.open .slm-dfaq-toggle { background: var(--slm-green-strong); border-color: var(--slm-green-strong); color: #fff; }
.slm-dfaq-item.open .slm-dfaq-toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.slm-dfaq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--slm-ease);
}
.slm-dfaq-item.open .slm-dfaq-a { max-height: 360px; }
.slm-dfaq-a-inner {
  padding: 0 28px 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slm-fg-2);
  max-width: 80ch;
}
.slm-dfaq-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

/* ═══ GETTING STARTED · VARIANT B (canvas + numbered steps) ═══════════ */
.slm-gsb-canvas {
  position: relative;
  background: linear-gradient(180deg, var(--slm-panel-1) 0%, var(--slm-panel-2) 100%);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card-lg);
  box-shadow: var(--slm-shadow-card);
  padding: 44px;
  overflow: hidden;
}
.slm-gsb-canvas::before {
  content: "";
  position: absolute;
  right: -70px; bottom: -130px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(78,121,83,0.16), rgba(78,121,83,0));
  pointer-events: none;
}
@media (max-width: 768px) { .slm-gsb-canvas { padding: 26px; } }

.slm-gsb-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.72fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}
@media (max-width: 980px) { .slm-gsb-top { grid-template-columns: 1fr; gap: 24px; } }

.slm-gsb-title {
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--slm-fg);
  margin: 14px 0 16px;
  max-width: 12ch;
}
.slm-gsb-lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--slm-fg);
  max-width: 44ch;
  margin: 0 0 12px;
}
.slm-gsb-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slm-fg-2);
  max-width: 52ch;
  margin: 0;
}

.slm-gsb-note {
  position: relative;
  background: var(--slm-card-soft);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  padding: 24px;
  box-shadow: var(--slm-shadow-card);
}
.slm-gsb-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: var(--slm-r-pill);
  background: var(--slm-green-soft);
  border: 1px solid var(--slm-green-line);
  color: var(--slm-green-deep);
  font-family: var(--slm-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slm-gsb-note-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--slm-fg);
  margin: 16px 0 12px;
}
.slm-gsb-note-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--slm-fg-2);
  margin: 0 0 20px;
}

.slm-gsb-steps {
  position: relative;
  display: grid;
  gap: 16px;
}
.slm-gsb-step {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr 120px;
  gap: 28px;
  align-items: center;
  background: var(--slm-card);
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  box-shadow: var(--slm-shadow-card);
  padding: 22px 26px 22px 24px;
  overflow: hidden;
}
.slm-gsb-step::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--slm-green-strong);
  opacity: 0.55;
}
.slm-gsb-step-head { padding-left: 8px; }
.slm-gsb-step-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--slm-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slm-fg-2);
  margin-bottom: 12px;
}
.slm-gsb-dot {
  width: 24px; height: 24px;
  border-radius: 999px;
  display: inline-grid; place-items: center;
  background: var(--slm-green-soft);
  border: 1px solid var(--slm-green-line);
  color: var(--slm-green-strong);
  font-size: 12px;
  line-height: 1;
}
.slm-gsb-step-title {
  font-family: var(--slm-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--slm-fg);
  margin: 0;
  max-width: 14ch;
}
.slm-gsb-step-desc {
  padding-left: 26px;
  border-left: 1px solid var(--slm-line);
  font-size: 16px;
  line-height: 1.45;
  color: var(--slm-fg-2);
  max-width: 52ch;
}
.slm-gsb-step-num {
  text-align: right;
  font-family: var(--slm-sans);
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(78,121,83,0.18);
}
@media (max-width: 880px) {
  .slm-gsb-step { grid-template-columns: 1fr; gap: 16px; }
  .slm-gsb-step-desc { padding-left: 0; border-left: 0; border-top: 1px solid var(--slm-line); padding-top: 16px; }
  .slm-gsb-step-num { text-align: left; font-size: 48px; }
}

.slm-gsb-foot {
  position: relative;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.slm-gsb-foot-micro {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--slm-fg-2);
  max-width: 42ch;
}
.slm-gsb-foot-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--slm-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--slm-green-strong);
}
@media (max-width: 640px) {
  .slm-gsb-foot { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   SHARED SITE CHROME + FLAT DISTRIBUTOR SECTIONS · 2026-07-24
   ========================================================================= */

/* All page-level H1 headings use the same extra-bold treatment. */
.slm-hero-title,
.slm-pl-hero-title,
.w3-hero-title {
  font-size: clamp(39px, 4.6vw, 42px);
  font-weight: 900;
  line-height: 1.02;
}

.slm-heading-accent {
  color: var(--slm-green-strong);
  font-weight: 900;
}

.slm-gsb-title {
  font-weight: 900;
}

/* Complete shared navigation and EN / CS / DE interface switcher. */
.slm-header > .slm-shell {
  position: relative;
}

.slm-nav {
  gap: clamp(16px, 1.7vw, 28px);
}

.slm-nav-item {
  font-size: 14px;
  font-weight: 700;
}

.slm-header-right {
  flex: 0 0 auto;
  gap: 12px;
}

.slm-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-card);
  background: rgba(255, 255, 255, 0.72);
}

.slm-lang-button {
  min-width: 34px;
  min-height: 32px;
  padding: 6px 8px;
  border: 0;
  border-radius: var(--slm-r-tile);
  background: transparent;
  color: var(--slm-fg-2);
  font-family: var(--slm-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.slm-lang-button.active {
  background: var(--slm-green-strong);
  color: #fff;
}

.slm-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: var(--slm-r-btn);
  background: var(--slm-green-strong);
  color: #fff;
  font-family: var(--slm-sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.slm-header-cta:hover {
  background: var(--slm-green-hover);
}

.slm-menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--slm-line);
  border-radius: var(--slm-r-btn);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.slm-menu-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--slm-fg);
  transition: transform 180ms var(--slm-ease), opacity 180ms var(--slm-ease);
}

.slm-menu-toggle span:nth-child(1) { top: 13px; }
.slm-menu-toggle span:nth-child(2) { top: 20px; }
.slm-menu-toggle span:nth-child(3) { top: 27px; }
.slm-header.menu-open .slm-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.slm-header.menu-open .slm-menu-toggle span:nth-child(2) { opacity: 0; }
.slm-header.menu-open .slm-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.slm-mobile-menu {
  display: none;
}

@media (max-width: 1120px) {
  .slm-header-row {
    height: 76px;
  }

  .slm-nav,
  .slm-header-right > .slm-header-cta {
    display: none;
  }

  .slm-menu-toggle {
    display: inline-block;
  }

  .slm-mobile-menu {
    position: absolute;
    top: 100%;
    left: var(--slm-shell-x);
    right: var(--slm-shell-x);
    display: grid;
    gap: 20px;
    max-height: 0;
    padding: 0 22px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    border: 1px solid transparent;
    border-radius: 0 0 var(--slm-r-card-lg) var(--slm-r-card-lg);
    background: rgba(243, 240, 232, 0.98);
    box-shadow: var(--slm-shadow-panel);
    transition: max-height 260ms var(--slm-ease), padding 260ms var(--slm-ease), opacity 180ms var(--slm-ease);
  }

  .slm-header.menu-open .slm-mobile-menu {
    max-height: 620px;
    padding-block: 22px;
    visibility: visible;
    opacity: 1;
    border-color: var(--slm-line);
  }

  .slm-mobile-nav {
    display: grid;
  }

  .slm-mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--slm-line);
    color: var(--slm-fg);
    font-family: var(--slm-sans);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .slm-mobile-nav a.active {
    color: var(--slm-green-strong);
  }

  .slm-mobile-menu-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .slm-header-right > .slm-language-switcher {
    display: none;
  }

  .slm-mobile-menu-foot {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Remove only the redundant outer frame; inner cards stay intact. */
.slm-brand-panel,
.slm-terms-panel,
.slm-gsb-canvas {
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.slm-gsb-canvas::before {
  display: none;
}

@media (max-width: 768px) {
  .slm-brand-panel,
  .slm-terms-panel,
  .slm-gsb-canvas {
    padding: 0;
    border-radius: 0;
  }
}

/* Footer content and layout are identical on every page. */
.footer-home {
  margin-top: 52px;
  background: var(--slm-page);
  color: var(--slm-fg);
}

.footer-home__top {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px clamp(22px, 4vw, 44px);
  border-top: 1px solid var(--slm-line);
}

.footer-home__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-home__intro,
.footer-home__group {
  display: grid;
  align-content: start;
}

.footer-home__intro {
  gap: 18px;
}

.footer-home__logo img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.footer-home__intro p {
  margin: 0;
  color: var(--slm-fg-2);
  font-size: 15px;
  line-height: 1.8;
}

.footer-home__contacts {
  display: grid;
  gap: 8px;
}

.footer-home__contacts a,
.footer-home__contacts span,
.footer-home__group a {
  color: var(--slm-fg);
  text-decoration: none;
}

.footer-home__contacts a:hover,
.footer-home__group a:hover {
  color: var(--slm-green-strong);
}

.footer-home__group {
  gap: 16px;
}

.footer-home__group h3 {
  margin: 0;
  color: var(--slm-green-strong);
  font-family: var(--slm-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-home__group ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-home__group li {
  margin: 0;
}

.footer-home__group a {
  font-size: 15px;
  font-weight: 500;
}

.footer-home__base {
  padding: 22px 20px 28px;
  border-top: 1px solid var(--slm-line);
  text-align: center;
}

.footer-home__base p {
  margin: 0;
  color: var(--slm-fg-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .footer-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .footer-home__top {
    width: min(100%, calc(100% - 28px));
    padding: 32px 20px;
  }

  .footer-home__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-home__base {
    padding-bottom: 24px;
  }
}

/* =========================================================================
   DISTRIBUTOR PAGE · tighter rhythm and document revisions · 2026-07-31
   ========================================================================= */
body.distributors-page {
  --slm-section-py: 56px;
}

body.distributors-page .slm-hero {
  padding-block: 32px 40px;
}

body.distributors-page .slm-hero-ctas {
  margin-bottom: 0;
}

body.distributors-page .slm-hero-chips {
  margin-top: 32px;
}

body.distributors-page .slm-pays-intro .slm-sec-sub {
  width: 100%;
  max-width: none;
}

body.distributors-page .slm-pays-banner {
  background: linear-gradient(135deg, #2c4d31 0%, #1f3724 100%);
  border-color: transparent;
  color: #fff;
}

body.distributors-page .slm-pays-banner-left {
  flex: 1 1 620px;
  min-width: 0;
}

body.distributors-page .slm-pays-banner-left > div:last-child {
  flex: 1;
  min-width: 0;
}

body.distributors-page .slm-pays-banner-ic {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

body.distributors-page .slm-pays-banner-title {
  color: #fff;
}

body.distributors-page .slm-pays-banner-desc {
  width: 100%;
  max-width: none;
  color: rgba(255, 255, 255, 0.78);
}

body.distributors-page .slm-pays-banner .slm-btn-primary {
  background: #fff;
  color: var(--slm-green-deep);
}

body.distributors-page .slm-pays-banner .slm-btn-primary:hover {
  background: var(--slm-green-soft);
}

body.distributors-page .slm-brand-caption {
  font-size: 16px;
  line-height: 1.6;
}

body.distributors-page .slm-terms-head--stacked {
  display: block;
  margin-bottom: 36px;
}

body.distributors-page .slm-terms-foot--centered,
body.distributors-page .slm-gsb-foot--contact {
  justify-content: center;
}

body.distributors-page .slm-gsb-note {
  margin-top: 52px;
}

body.distributors-page .slm-doc-row {
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  body.distributors-page .slm-hero-media-column {
    display: flex;
    min-height: 0;
  }

  body.distributors-page .slm-hero-media {
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 980px) {
  body.distributors-page .slm-gsb-note {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  body.distributors-page {
    --slm-section-py: 44px;
  }

  body.distributors-page .slm-hero {
    padding-block: 24px 32px;
  }

  body.distributors-page .slm-hero-chips {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  body.distributors-page .slm-pays-banner-left {
    align-items: flex-start;
  }
}
