/* =============================================================
   SACG · SARATOGA German Office — Redesign v4
   Editorial · Restraint · Inter · Asymmetric
   ============================================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  /* Palette — derived from logo (OKLCH) */
  --bg:           #ffffff;
  --bg-2:         #f7f7f5;
  --bg-3:         #ececea;

  --ink:          oklch(0.18 0.005 240);
  --ink-2:        oklch(0.30 0.005 240);
  --ink-3:        oklch(0.50 0.005 240);
  --ink-muted:    oklch(0.60 0.005 240);
  --ink-soft:     oklch(0.74 0.004 240);

  --line:         oklch(0.92 0.004 240);
  --line-2:       oklch(0.86 0.004 240);

  --accent:       oklch(0.42 0.18 260);          /* SARATOGA blue */
  --accent-2:     oklch(0.36 0.19 260);
  --accent-soft:  oklch(0.95 0.025 260);
  --accent-on-dark: oklch(0.74 0.16 260);

  --dark:         oklch(0.16 0.005 240);
  --dark-2:       oklch(0.22 0.005 240);
  --on-dark:      oklch(0.96 0.003 240);
  --on-dark-2:    oklch(0.72 0.005 240);
  --on-dark-3:    oklch(0.55 0.005 240);

  /* Sharp geometry — minimal radii */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius:    6px;

  --ease:       cubic-bezier(.2, .7, .2, 1);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);

  --container:  1320px;
  --pad: clamp(20px, 4vw, 80px);

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

  --font:  "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Editorial palette (skill tokens) */
  --ed-ink:     #0d0f12;
  --ed-ink-2:   #3a3d47;
  --ed-ink-3:   #8a8f9e;
  --ed-surface: #ffffff;
  --ed-surf-2:  #f7f7f5;
  --ed-border:  #e8e8e4;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  font-feature-settings: "ss01", "kern", "liga", "calt";
}
h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "ss01", "kern", "liga", "calt";
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--accent); color: #fff; }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: 16px; top: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform .2s var(--ease);
  z-index: 200;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 2px; }

/* Global focus-visible */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}
.btn:focus-visible { outline-offset: 4px; }
.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--accent-on-dark);
  box-shadow: 0 1px 0 0 var(--accent-on-dark);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.muted { color: var(--ink-muted); }
.muted-dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: currentColor;
  opacity: .3;
  margin: 0 8px;
  vertical-align: middle;
}

/* ----- Cursor dot — disabled by default; enable with JS only when in use */
.cursor-dot { display: none; }

/* =============================================================
   Kicker / Eyebrow — flat label
   ============================================================= */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 var(--s-5);
}
.kicker i {
  width: 32px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.kicker--light { color: var(--on-dark-2); }
.kicker--light i { background: var(--accent-on-dark); }

/* =============================================================
   Navigation
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--on-dark);
}
.nav.is-scrolled {
  background: oklch(0.16 0.005 240 / 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-color: oklch(1 0 0 / 0.08);
  padding: 12px 0;
}
.nav.is-light { color: var(--ink); }
.nav.is-light.is-scrolled {
  background: oklch(1 0 0 / 0.88);
  border-color: var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: var(--s-5);
}

/* Language toggle */
.nav__lang {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  opacity: .9;
}
.nav__lang button {
  padding: 4px 6px;
  color: currentColor;
  opacity: .55;
  cursor: pointer;
  transition: opacity .25s var(--ease);
  border-radius: 2px;
}
.nav__lang button:hover { opacity: .85; }
.nav__lang button.is-active { opacity: 1; }
.nav__lang button.is-active::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--accent);
  margin-top: 3px;
}
.nav.is-light .nav__lang button.is-active::after { background: var(--accent); }
.nav__lang span { opacity: .35; }

.nav__brand {
  display: inline-flex; align-items: center;
}
.nav__logo {
  height: 76px;
  width: auto;
  transition: filter .35s var(--ease), height .35s var(--ease);
}
.nav.is-scrolled .nav__logo { height: 54px; }
.nav:not(.is-light) .nav__logo {
  filter: invert(1) hue-rotate(180deg);
}

.nav__menu {
  display: flex; gap: var(--s-6);
  justify-self: center;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  position: relative;
  padding: 6px 0;
  opacity: .82;
  transition: opacity .25s var(--ease);
}
.nav__menu a:hover { opacity: 1; }
.nav__menu a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__menu a.is-active { opacity: 1; }
.nav__menu a.is-active::after {
  transform: scaleX(1);
  background: var(--accent);
  height: 1.5px;
}
.nav.is-light .nav__menu a.is-active::after { background: var(--accent); }

/* Dropdown wrapper (Partners) */
.nav__item {
  position: relative;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav__item--has-menu > a { display: inline-flex; align-items: center; }
.nav__chev {
  opacity: .6;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
  margin-bottom: -1px;
}
.nav__item--has-menu:hover .nav__chev,
.nav__item--has-menu:focus-within .nav__chev {
  opacity: 1;
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding-top: 16px;     /* hover bridge */
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease), transform .3s var(--ease-out);
  z-index: 110;
}
.dropdown__inner {
  width: 540px;
  max-width: calc(100vw - 32px);
  background: oklch(0.16 0.005 240 / 0.94);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid oklch(1 0 0 / 0.10);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -16px oklch(0 0 0 / 0.45);
  padding: var(--s-3);
  color: var(--on-dark);
}
/* Mega menu variant — wider, with featured + grid */
.dropdown__inner.mega {
  width: 700px;
  padding: var(--s-2);
}
.nav.is-light .dropdown__inner {
  background: oklch(1 0 0 / 0.96);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 24px 48px -20px oklch(0 0 0 / 0.18);
}

/* Reveal on hover/focus (hover-capable devices only) */
@media (hover: hover) {
  .nav__item--has-menu:hover .dropdown,
  .nav__item--has-menu:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* Featured row */
.dropdown__featured {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-3);
  border-radius: var(--radius-sm);
  background: oklch(0.42 0.18 260 / 0.12);
  border: 1px solid oklch(0.42 0.18 260 / 0.22);
  transition: background .25s var(--ease), border-color .25s var(--ease);
  color: inherit;
  text-decoration: none;
}
.nav.is-light .dropdown__featured {
  background: oklch(0.42 0.18 260 / 0.06);
  border-color: oklch(0.42 0.18 260 / 0.18);
}
.dropdown__featured:hover {
  background: oklch(0.42 0.18 260 / 0.20);
  border-color: oklch(0.42 0.18 260 / 0.40);
}
.dropdown__featured img {
  height: 28px; width: auto;
  justify-self: center;
}
.nav:not(.is-light) .dropdown__featured img { filter: invert(1); }
.dropdown__featured-text { display: flex; flex-direction: column; gap: 3px; }
.dropdown__tag {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
}
.nav.is-light .dropdown__tag { color: var(--accent); }
.dropdown__featured strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .03em;
}
.dropdown__featured small {
  font-size: 12px;
  color: var(--on-dark-2);
  line-height: 1.4;
}
.nav.is-light .dropdown__featured small { color: var(--ink-3); }
.dropdown__featured svg { opacity: .5; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.dropdown__featured:hover svg { opacity: 1; transform: translateX(3px); }

/* Partners list */
.dropdown__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: var(--s-3) 0;
  padding: var(--s-3) 0;
  border-top: 1px solid oklch(1 0 0 / 0.08);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.nav.is-light .dropdown__list {
  border-color: var(--line);
}
.dropdown__list li { margin: 0; }
.dropdown__list a {
  display: block;
  padding: 7px 12px;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: var(--on-dark-2);
  border-radius: var(--radius-xs);
  transition: color .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
}
.nav.is-light .dropdown__list a { color: var(--ink-3); }
.dropdown__list a:hover {
  color: var(--on-dark);
  background: oklch(1 0 0 / 0.06);
}
.nav.is-light .dropdown__list a:hover {
  color: var(--ink);
  background: var(--bg-2);
}

/* View all link */
.dropdown__all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  text-decoration: none;
  transition: gap .25s var(--ease);
}
.nav.is-light .dropdown__all { color: var(--accent); }
.dropdown__all:hover { gap: 12px; }
.dropdown__all svg { transition: transform .25s var(--ease); }
.dropdown__all:hover svg { transform: translateX(3px); }

/* =============================================================
   MEGA MENU (Partners)
   ============================================================= */
.mega__featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.mega__featured {
  display: grid;
  grid-template-rows: 100px auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: oklch(1 0 0 / 0.03);
  border: 1px solid oklch(1 0 0 / 0.06);
  text-decoration: none;
  color: inherit;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .35s var(--ease-out);
  position: relative;
}
.mega__featured:hover {
  background: oklch(from var(--brand, oklch(0.78 0.13 260)) l c h / 0.10);
  border-color: oklch(from var(--brand, oklch(0.78 0.13 260)) l c h / 0.30);
  transform: translateY(-1px);
}
/* Full-width featured (BHOUT) — image fills the banner, text overlaid bottom-left */
.mega__featured--wide {
  grid-template-rows: 120px;
  grid-template-columns: 1fr;
  min-height: 0;
}
.mega__featured--wide .mega__featured-thumb {
  grid-area: 1 / 1;
  height: 120px;
  min-height: 0;
}
.mega__featured--wide .mega__featured-overlay {
  background: linear-gradient(180deg,
    oklch(0.10 0.01 290 / .12) 0%,
    oklch(0.08 0.01 290 / .50) 52%,
    oklch(0.05 0.01 290 / .85) 100%);
}
.mega__featured--wide .mega__featured-body {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 12px 16px;
  gap: 4px;
}
.mega__featured--wide .mega__featured-logo,
.nav.is-light .mega__featured--wide .mega__featured-logo--invert { height: 26px; margin: 2px 0 5px; filter: invert(1); }
.mega__featured--wide .mega__featured small,
.nav.is-light .mega__featured--wide .mega__featured small { color: oklch(1 0 0 / 0.86); }
.mega__featured--wide .mega__tag,
.nav.is-light .mega__featured--wide .mega__tag { color: var(--accent-on-dark); }
.mega__featured-thumb {
  position: relative;
  overflow: hidden;
  background: oklch(0.20 0.005 240);
}
.mega__featured-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(.9);
  transition: transform .8s var(--ease-out);
}
.mega__featured:hover .mega__featured-thumb img { transform: scale(1.05); }
.mega__featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.10 0.005 240 / .30) 0%, oklch(0.10 0.005 240 / .65) 100%);
  z-index: 1;
}
.mega__featured-thumb--skinial {
  background-color: #c5eaf6;
  background-image: url("/assets/partners/skinial-logo.png");
  background-size: 58%;
  background-position: center;
  background-repeat: no-repeat;
}
.mega__featured-body {
  padding: var(--s-3) 14px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.mega__featured-logo {
  height: 22px;
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  margin: 4px 0 6px;
}
.mega__featured-logo--invert {
  filter: invert(1);
}
.nav.is-light .mega__featured-logo--invert {
  filter: none;
}
.mega__tag {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
}
.nav.is-light .mega__tag { color: var(--accent); }
.mega__featured small {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--on-dark-2);
}
.nav.is-light .mega__featured small { color: var(--ink-3); }

.mega__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-3) var(--s-2) var(--s-2);
  margin-top: 2px;
  border-top: 1px solid oklch(1 0 0 / 0.08);
}
.nav.is-light .mega__head { border-color: var(--line); }
.mega__head > span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.nav.is-light .mega__head > span { color: var(--ink-muted); }
.mega__head a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  transition: gap .25s var(--ease);
}
.nav.is-light .mega__head a { color: var(--accent); }
.mega__head a:hover { gap: 12px; }

.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mega__card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background .2s var(--ease);
  position: relative;
}
.mega__card::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 2px; height: 0;
  background: var(--brand, var(--accent-on-dark));
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height .25s var(--ease);
}
.mega__card:hover {
  background: oklch(from var(--brand, oklch(0.78 0.13 260)) l c h / 0.10);
}
.mega__card:hover::before { height: 70%; }

.mega__card-logo {
  width: 44px; height: 32px;
  flex-shrink: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  padding: 5px;
}
.mega__card-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  filter: none;
  opacity: 1;
}

.mega__card-text {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.mega__card-text strong {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--on-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav.is-light .mega__card-text strong { color: var(--ink); }
.mega__card-text small {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.nav.is-light .mega__card-text small { color: var(--ink-muted); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.nav__cta:hover { background: currentColor; color: var(--dark); }
.nav.is-light .nav__cta:hover { color: #fff; }
.nav__cta:active { transform: translateY(1px); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 1.4px; background: currentColor;
  transform: translate(-50%, -50%) translateY(-3px);
  transition: transform .3s var(--ease);
}
.nav__toggle span:last-child { transform: translate(-50%, -50%) translateY(3px); }
.nav__toggle.is-open span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle.is-open span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  color: var(--on-dark);
  z-index: 90;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 100px var(--pad) 40px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: var(--s-4); }
.mobile-menu__nav a {
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.mobile-menu__foot {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  opacity: .6;
  letter-spacing: .04em;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  padding-top: var(--s-5);
}

/* =============================================================
   HERO  — left-aligned, lower height, refined
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--on-dark);
  padding: clamp(120px, 14vh, 150px) 0 clamp(32px, 4vh, 48px);
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute; inset: 0;
  z-index: -2;
  background: var(--dark);
}
.hero__video video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.85) brightness(.74);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.12 0.005 240 / .55) 0%, oklch(0.12 0.005 240 / .25) 30%, oklch(0.12 0.005 240 / .85) 100%),
    linear-gradient(90deg, oklch(0.12 0.005 240 / .68) 0%, oklch(0.12 0.005 240 / .25) 55%, oklch(0.12 0.005 240 / 0) 100%);
  z-index: -1;
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(oklch(1 0 0 / 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .5;
  z-index: 0;
}

.hero__content {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Hero stat bar (bottom of hero, over video) */
.hero__stats {
  margin-top: clamp(36px, 6vh, 72px);
}
.hero__stats-inner {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid oklch(1 0 0 / 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.hstat { display: flex; flex-direction: column; gap: 6px; }
.hstat__n {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--on-dark);
}
.hstat__n--text {
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -0.02em;
}
.hstat__l {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--on-dark-2);
  max-width: 24ch;
}
@media (max-width: 760px) {
  .hero__stats-inner { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
}
@media (max-width: 420px) {
  .hero__stats { margin-top: var(--s-5); }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; gap: var(--s-3); padding-top: var(--s-4); }
  .hstat__n { font-size: 24px; }
  .hstat__l { font-size: 11.5px; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.78);
  margin-bottom: var(--s-6);
  max-width: max-content;
  /* flat label, NOT pill */
  border-top: 1px solid oklch(1 0 0 / 0.22);
  padding-top: var(--s-3);
}
.hero__eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--accent-on-dark);
  border-radius: 0;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.85); }
}

.hero__title {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0 0 var(--s-4);
  max-width: 20ch;
  text-wrap: balance;
}
.hero__accent {
  color: var(--accent-on-dark);
  font-weight: 500;
  font-style: italic;
}
.intro .hero__accent,
.about__text .hero__accent,
.section-head .hero__accent,
.quote .hero__accent { color: var(--accent); }

.hero__sub {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.5;
  color: oklch(1 0 0 / 0.78);
  margin: 0 0 var(--s-7);
  max-width: 52ch;
  text-shadow: 0 1px 12px rgba(10,10,10,.4);
}

.hero__actions {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost {
  background: oklch(1 0 0 / 0.04);
  color: currentColor;
  border-color: oklch(1 0 0 / 0.32);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: oklch(1 0 0 / 0.10); border-color: oklch(1 0 0 / 0.5); }
.btn--block { width: 100%; justify-content: center; padding: 16px 22px; }

.hero__rail {
  width: 100%;
  max-width: var(--container);
  margin: var(--s-8) auto 0;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  border-top: 1px solid oklch(1 0 0 / 0.14);
  padding-top: var(--s-5);
}
.hero__rail-row {
  display: flex; align-items: baseline; gap: var(--s-3);
  font-size: 13px;
  color: var(--on-dark-2);
  letter-spacing: -0.005em;
}
.hero__rail-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--accent-on-dark);
}

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  background: var(--dark);
  color: var(--on-dark);
  padding: 26px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 90s linear infinite;
  animation-play-state: running;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__row {
  display: flex; align-items: center; gap: var(--s-6);
  padding-right: var(--s-6);
  font-family: var(--font);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.marquee__row span:nth-child(8n+1),
.marquee__row span:nth-child(8n+5) {
  color: var(--accent-on-dark);
  font-style: italic;
  font-weight: 300;
}
.marquee__dot {
  width: 4px; height: 4px;
  background: var(--accent-on-dark);
  flex-shrink: 0;
  opacity: .55;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   SECTION primitives
   ============================================================= */
section { padding: clamp(56px, 7vw, 96px) 0; position: relative; }

.section-head {
  max-width: 64ch;
  margin-bottom: clamp(56px, 6vw, 88px);
}
.section-title {
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
.section-desc {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0;
}

/* =============================================================
   INTRO — asymmetric split
   ============================================================= */
.intro {
  padding-block: clamp(64px, 8vw, 110px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.intro__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.intro__meta {
  display: flex; flex-direction: column; gap: var(--s-2);
  padding-top: var(--s-3);
}
.intro__caption {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.intro__lead {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  max-width: 28ch;
  color: var(--ink);
}
.intro__lead .hero__accent { font-style: italic; font-weight: 500; }

/* =============================================================
   STATS — divider grid, no boxes
   ============================================================= */
.stats {
  background: var(--bg);
  color: var(--ink);
  padding-block: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
}
.stats__head { margin-bottom: var(--s-6); }
.stats .kicker--light { color: var(--ink-3); }
.stats .kicker--light i { background: var(--accent); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6) clamp(24px, 3vw, 48px);
}
.stat {
  display: flex; flex-direction: column; gap: 10px;
}
.stat__num {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat__num--text {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.stat__label {
  font-size: 13.5px;
  color: var(--ink-3);
  max-width: 28ch;
  line-height: 1.5;
}

/* =============================================================
   SERVICES — flat editorial grid, no card windows
   ============================================================= */
.services { background: var(--bg); padding-block: clamp(48px, 6vw, 88px); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.srv {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
  background: var(--bg);
  border: 1px solid var(--line-2);
  transition: border-color .35s var(--ease);
}
.srv:hover { border-color: oklch(from var(--accent) l c h / 0.45); }
.srv__head {
  display: flex; align-items: center; justify-content: flex-end;
  margin-bottom: var(--s-5);
}
.srv__num {
  font-family: var(--mono);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: oklch(from var(--accent) l c h / 0.16);
}
.srv__body h3 {
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 var(--s-3);
  text-wrap: balance;
  color: var(--ink);
}
.srv__body p {
  color: var(--ink-3);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}
/* legacy chip list (no longer used post-rewrite) */

/* =============================================================
   ABOUT — split, asymmetric, flat
   ============================================================= */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__media { position: relative; }
.about__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--dark);
}
.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.04);
  transition: transform 1.4s var(--ease);
}
.about__image:hover img { transform: scale(1.04); }
.about__caption {
  display: flex; align-items: baseline; gap: var(--s-3); flex-wrap: wrap;
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-2);
}
.about__caption em {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.about__caption small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: .04em;
}
.about__caption small::before {
  content: "·";
  margin-right: 8px;
  opacity: .4;
}

.about__text p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 var(--s-4);
  max-width: 56ch;
}
.about__text p strong { font-weight: 500; color: var(--ink); }
.about__text p em { font-style: normal; }

.about__bullets {
  margin-top: var(--s-7);
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-2);
  max-width: 56ch;
}
.about__bullets li {
  display: flex; gap: var(--s-4); align-items: flex-start;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.5;
}
.about__bullets .dot {
  width: 5px; height: 5px;
  background: var(--accent);
  margin-top: 9px;
  flex-shrink: 0;
}
.about__bullets strong { font-weight: 500; color: var(--ink); }

/* =============================================================
   INDUSTRIES — flat numbered list, NO icons, NO cards
   ============================================================= */
.industries { background: var(--bg); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.industries__grid > .ind:nth-last-child(-n+2) { border-bottom: 0; }
.ind {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  align-items: start;
  padding: var(--s-7) var(--s-5) var(--s-7) 0;
  border-bottom: 1px solid var(--line-2);
  transition: background .4s var(--ease);
  cursor: default;
}
.ind:nth-child(even) {
  padding-left: var(--s-7);
  border-left: 1px solid var(--line-2);
}
.ind:hover { background: var(--bg-2); }
.ind__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--accent);
  padding-top: 6px;
}
.ind__body {
  display: flex; flex-direction: column;
  gap: var(--s-3);
  max-width: 48ch;
}
.ind__body h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}
.ind__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}

/* =============================================================
   APPROACH — clean stepper
   ============================================================= */
.approach {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(56px, 7vw, 100px);
}
.approach__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  border-top: 1px solid var(--line-2);
  padding-top: var(--s-6);
}
.step {
  display: flex; flex-direction: column;
  gap: var(--s-4);
  position: relative;
  padding-right: var(--s-5);
}
.step__head {
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-2);
}
.step__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .12em;
}
.step__line {
  flex: 1;
  height: 1px;
  background: var(--line-2);
}
.step h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 var(--s-2);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* =============================================================
   IMAGE BAND + ABOUT PROSE (about page)
   ============================================================= */
.imgband { background: var(--bg); padding-block: clamp(8px, 2vw, 28px); }
.imgband__frame {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--dark);
}
.imgband__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.imgband__cap {
  margin-top: var(--s-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 700px) { .imgband__frame { aspect-ratio: 4 / 3; } }

.about-prose {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(56px, 7vw, 100px);
}
.about-prose .intro__meta { padding-top: 4px; }
.about-prose .kicker { margin: 0; }

/* =============================================================
   PARTNERS
   ============================================================= */
.partners {
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

/* Featured partner (BHOUT) */
.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--s-8);
  border: 1px solid oklch(1 0 0 / 0.06);
}
.featured__media {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  min-height: 360px;
}
.featured__thumb { position: absolute; inset: 0; }
.featured__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.65) saturate(.85);
  transition: transform 1.2s var(--ease), filter .4s var(--ease);
}
.featured__media:hover .featured__thumb img { transform: scale(1.04); filter: brightness(.75) saturate(.95); }
.featured__play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: oklch(0.96 0.003 240 / 0.92);
  color: var(--ink);
  padding-left: 4px;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.featured__media:hover .featured__play { background: #fff; transform: translate(-50%, -50%) scale(1.06); }

.featured__body {
  padding: clamp(28px, 3.5vw, 56px);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: var(--s-3);
}
.featured__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
}
.featured__logo {
  height: 40px; width: auto;
  margin: var(--s-2) 0 var(--s-4);
  color: var(--on-dark);
  align-self: flex-start;
}
.featured__tagline {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--on-dark);
  max-width: 34ch;
  text-wrap: balance;
}
.featured__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--on-dark-2);
  margin: var(--s-2) 0 var(--s-3);
  max-width: 50ch;
}
.featured__actions {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
  margin-top: var(--s-3);
}
.btn--ghost-dark {
  background: oklch(1 0 0 / 0.04);
  color: var(--on-dark);
  border-color: oklch(1 0 0 / 0.22);
}
.btn--ghost-dark:hover { background: oklch(1 0 0 / 0.10); border-color: oklch(1 0 0 / 0.4); }
.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost-light:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Home services overview — bridge section */
.home-svc {
  background: var(--bg);
  padding-block: clamp(64px, 8vw, 110px);
  border-top: 1px solid var(--line);
}
.home-svc__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.home-svc__intro { position: sticky; top: 100px; }
.home-svc__title {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: var(--s-4) 0 var(--s-4);
  color: var(--ink);
  max-width: 16ch;
  text-wrap: balance;
}
.home-svc__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0 0 var(--s-5);
  max-width: 44ch;
}
.home-svc__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .25s var(--ease);
}
.home-svc__link:hover { gap: 14px; }

.home-svc__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-2);
}
.home-svc__list li { margin: 0; }
.home-svc__list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-4);
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--line-2);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left .3s var(--ease), color .25s var(--ease);
}
.home-svc__list a:hover { padding-left: 10px; }
.home-svc__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--accent);
}
.home-svc__name {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.home-svc__list a svg { color: var(--ink-3); transition: transform .25s var(--ease), color .25s var(--ease); }
.home-svc__list a:hover svg { color: var(--accent); transform: translateX(4px); }

@media (max-width: 860px) {
  .home-svc__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .home-svc__intro { position: static; }
}

/* Standalone partner logo strip (own section between hero and intro) */
.logo-strip {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 3.5vw, 40px) 0;
}
.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: clamp(48px, 9vw, 120px);
  pointer-events: none;
  z-index: 2;
}
.logo-strip::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.logo-strip::after { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }
.logo-strip__track {
  display: flex;
  width: max-content;
  animation: partners-marquee 55s linear infinite;
  will-change: transform;
}
.logo-strip__row {
  display: flex; align-items: center;
  gap: clamp(48px, 6vw, 96px);
  padding-right: clamp(48px, 6vw, 96px);
}
.logo-strip__row img {
  height: var(--ls-h, 34px);
  width: auto;
  object-fit: contain;
  opacity: .9;
  transition: opacity .35s var(--ease);
  flex-shrink: 0;
}
.logo-strip__row img:hover { opacity: 1; }

/* Per-logo optical sizing — equalize visual mass across the conveyor bands.
   Wide wordmarks get less height; square marks get more, so widths land in a
   similar range and no single logo dominates. Applies to both bands. */
.logo-strip__row img[src*="real-bhout"],     .partners__row img[src*="real-bhout"]     { --ls-h: 40px; }
.logo-strip__row img[src*="skinial-logo"],   .partners__row img[src*="skinial-logo"]   { --ls-h: 25px; }
.logo-strip__row img[src*="01-skinial"],     .partners__row img[src*="01-skinial"]     { --ls-h: 27px; }
.logo-strip__row img[src*="real-comptoir"],  .partners__row img[src*="real-comptoir"]  { --ls-h: 34px; }
.logo-strip__row img[src*="le-tanneur"],     .partners__row img[src*="le-tanneur"]     { --ls-h: 24px; }
.logo-strip__row img[src*="lollipops"],      .partners__row img[src*="lollipops"]      { --ls-h: 26px; }
.logo-strip__row img[src*="real-mezzo"],     .partners__row img[src*="real-mezzo"]     { --ls-h: 46px; }
.logo-strip__row img[src*="nata-logo"],      .partners__row img[src*="nata-logo"]      { --ls-h: 54px; }
.logo-strip__row img[src*="neuners"],        .partners__row img[src*="neuners"]        { --ls-h: 46px; }
.logo-strip__row img[src*="pronuptia-logo"], .partners__row img[src*="pronuptia-logo"] { --ls-h: 46px; }
.logo-strip__row img[src*="jacadi-logo"],    .partners__row img[src*="jacadi-logo"]    { --ls-h: 38px; }
@media (prefers-reduced-motion: reduce) {
  .logo-strip__track { animation: none; }
}

/* Home variant — partner band sits directly under hero */
.partners--home {
  padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 80px);
  background: var(--bg);
}
.partners-home__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--s-5);
  gap: var(--s-4);
}
.partners-home__head .kicker { margin-bottom: 0; }
.partners-home__view {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .25s var(--ease);
}
.partners-home__view:hover { gap: 12px; }
.partners-home__view svg { transition: transform .25s var(--ease); }
.partners-home__view:hover svg { transform: translateX(3px); }

.partners--home .partners__belt {
  margin: 0;
  background: transparent;
  border-color: var(--line);
}
.partners--home .partners__belt::before { background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.partners--home .partners__belt::after { background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }

/* Conveyor band */
.partners__belt {
  position: relative;
  margin: 0 0 var(--s-8);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  isolation: isolate;
}
.partners__belt::before,
.partners__belt::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: clamp(60px, 10vw, 140px);
  pointer-events: none;
  z-index: 2;
}
.partners__belt::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2) 0%, transparent 100%);
}
.partners__belt::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-2) 0%, transparent 100%);
}
.partners__track {
  display: flex;
  width: max-content;
  animation: partners-marquee 50s linear infinite;
  animation-play-state: running;
  will-change: transform;
}
/* Never pause — always running */
.partners__row {
  display: flex; align-items: center;
  gap: clamp(40px, 6vw, 88px);
  padding-right: clamp(40px, 6vw, 88px);
}
.partners__row img {
  height: var(--ls-h, 34px);
  width: auto;
  object-fit: contain;
  color: var(--ink-2);
  opacity: .55;
  filter: grayscale(100%);
  transition: opacity .35s var(--ease), filter .35s var(--ease);
  flex-shrink: 0;
}
.partners__row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes partners-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Static grid */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.partner {
  display: flex; align-items: center; justify-content: center;
  padding: clamp(40px, 5vw, 72px) var(--s-5);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  background: var(--bg);
  transition: background .3s var(--ease), color .3s var(--ease);
  min-height: clamp(160px, 18vw, 220px);
}
.partner:hover {
  background: var(--bg-2);
  color: var(--ink);
}
.partner img {
  height: var(--pg-h, 44px);
  width: auto;
  max-width: 74%;
  opacity: 1;
  transition: transform .3s var(--ease);
}
/* per-logo optical balancing in the grid — full-colour brand logos */
.partner img[src*="skinial-logo"]   { --pg-h: 34px; }
.partner img[src*="real-comptoir"]  { --pg-h: 56px; }
.partner img[src*="le-tanneur"]     { --pg-h: 46px; }
.partner img[src*="lollipops"]      { --pg-h: 36px; }
.partner img[src*="real-mezzo"]     { --pg-h: 84px; }
.partner img[src*="nata-logo"]      { --pg-h: 86px; }
.partner img[src*="neuners"]        { --pg-h: 74px; }
.partner img[src*="pronuptia-logo"] { --pg-h: 58px; }
.partner img[src*="jacadi"]         { --pg-h: 46px; }
.partner:hover img {
  transform: scale(1.05);
}
.partner--featured {
  background: var(--ink);
  color: var(--on-dark);
  border: 0;
  cursor: pointer;
  font: inherit;
  position: relative;
}
.partner--featured img {
  opacity: 1;
  filter: invert(1);
}
.partner--featured::after {
  content: "★";
  position: absolute;
  top: 8px; right: 10px;
  font-size: 10px;
  color: var(--accent-on-dark);
}
.partner--featured:hover { background: var(--dark-2); }

.partners__note {
  margin: var(--s-6) 0 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

/* =============================================================
   MODAL
   ============================================================= */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: oklch(0 0 0 / 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100dvh - 60px);
  overflow: auto;
  background: var(--dark);
  color: var(--on-dark);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -20px oklch(0 0 0 / 0.6);
  transform: translateY(16px) scale(0.985);
  transition: transform .4s var(--ease-out);
  /* Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: oklch(1 0 0 / 0.18) transparent;
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__close {
  position: sticky;
  top: 14px;
  left: 100%;
  margin: 14px 14px 0 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.08);
  color: var(--on-dark);
  z-index: 2;
  transition: background .25s var(--ease);
  float: right;
}
.modal__close:hover { background: oklch(1 0 0 / 0.16); }

.modal__inner {
  padding: clamp(24px, 3vw, 48px) clamp(24px, 3vw, 56px) clamp(24px, 3vw, 56px);
}

.modal__head { display: flex; align-items: center; gap: var(--s-4); margin-bottom: var(--s-4); }
.modal__logo { height: 36px; width: auto; color: var(--on-dark); }
.modal__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  padding: 4px 10px;
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: 999px;
}

.modal__title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-6);
  max-width: 28ch;
  text-wrap: balance;
}

.modal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--s-6);
}
.modal__video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.modal__copy p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--on-dark-2);
  margin: 0 0 var(--s-4);
  max-width: 64ch;
}
.modal__copy p strong { color: var(--on-dark); font-weight: 500; }

.modal__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: var(--s-6) 0;
  border-top: 1px solid oklch(1 0 0 / 0.12);
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
}
.modal__facts > div {
  padding: var(--s-4) var(--s-3) var(--s-4) 0;
  border-right: 1px solid oklch(1 0 0 / 0.10);
  display: flex; flex-direction: column; gap: 6px;
}
.modal__facts > div:last-child { border-right: 0; }
.modal__facts span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.modal__facts strong {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--on-dark);
}

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

body.modal-open { overflow: hidden; }

/* =============================================================
   PERSISTENT LEAD WIDGET
   ============================================================= */
.lead {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 90;
  width: min(360px, calc(100vw - 32px));
  background: oklch(0.16 0.005 240 / 0.92);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  color: var(--on-dark);
  border: 1px solid oklch(1 0 0 / 0.10);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -16px oklch(0 0 0 / 0.45);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .35s var(--ease);
}
.lead.is-collapsed { transform: translateY(0); }
.lead__toggle {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--on-dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .25s var(--ease);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.lead__toggle:hover { background: oklch(1 0 0 / 0.04); }
.lead__toggle-label { display: inline-flex; align-items: center; gap: 10px; }
.lead__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-on-dark);
  box-shadow: 0 0 0 3px oklch(0.74 0.16 260 / 0.20);
  animation: pulse 2.4s var(--ease) infinite;
}
.lead__chev { transition: transform .3s var(--ease); }
.lead.is-collapsed .lead__chev { transform: rotate(-90deg); }
.lead.is-collapsed .lead__toggle { border-bottom: 0; }

.lead__form {
  display: grid;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-4) var(--s-4);
  transition: max-height .4s var(--ease), opacity .3s var(--ease), padding .4s var(--ease);
  max-height: 400px;
  overflow: hidden;
}
.lead.is-collapsed .lead__form {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}
.lead__hint {
  font-size: 12.5px;
  color: var(--on-dark-2);
  margin: 0 0 4px;
  line-height: 1.5;
}
.lead__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lead__form input,
.lead__form textarea {
  font-family: inherit;
  font-size: 13.5px;
  width: 100%;
  color: var(--on-dark);
  background: oklch(1 0 0 / 0.04);
  border: 1px solid oklch(1 0 0 / 0.10);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  outline: none;
  resize: vertical;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.lead__form input::placeholder,
.lead__form textarea::placeholder { color: oklch(1 0 0 / 0.42); }
.lead__form input:focus,
.lead__form textarea:focus {
  border-color: var(--accent-on-dark);
  background: oklch(1 0 0 / 0.06);
}
.lead__send {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background .25s var(--ease), transform .15s var(--ease);
}
.lead__send:hover { background: var(--accent-2); }
.lead__send:active { transform: translateY(1px); }
.lead__send svg { transition: transform .25s var(--ease); }
.lead__send:hover svg { transform: translateX(3px); }
.lead__status {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--accent-on-dark);
  min-height: 1.2em;
}

/* =============================================================
   QUOTE — large editorial typography
   ============================================================= */
.quote {
  background: var(--bg);
  text-align: left;
  padding-block: clamp(64px, 9vw, 110px);
  border-top: 1px solid var(--line);
}
.quote .container { max-width: 1080px; }
.quote blockquote {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 var(--s-6);
  max-width: 22ch;
  text-wrap: balance;
  color: var(--ink);
}
.quote .hero__accent { font-style: italic; font-weight: 400; }
.quote cite {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-2);
  max-width: 280px;
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact { background: var(--dark); color: var(--on-dark); }
.contact .section-title { color: var(--bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact__lead {
  color: var(--on-dark-2);
  margin: 0 0 var(--s-7);
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.6;
}
.contact__details {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid oklch(1 0 0 / 0.16);
}
.contact__details > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s-5);
  align-items: baseline;
  padding: var(--s-5) 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.10);
}
.contact__details span:first-child {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.contact__details a, .contact__details address {
  color: var(--bg);
  font-style: normal;
  line-height: 1.55;
  font-size: 15px;
  transition: color .3s var(--ease);
  text-decoration: underline;
  text-decoration-color: oklch(1 0 0 / 0.2);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.contact__details address { text-decoration: none; }
.contact__details a:hover {
  color: var(--accent-on-dark);
  text-decoration-color: var(--accent-on-dark);
}
.contact__social { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }

/* Offices — DE / CH / AT */
.contact__offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid oklch(1 0 0 / 0.16);
}
.office {
  display: flex; flex-direction: column; gap: var(--s-2);
}
.office span {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
}
.office address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-dark-2);
}

.hero__accent--soft { color: var(--accent-on-dark) !important; }

/* form — flat, underline-only */
.contact__form {
  background: transparent;
  border: 1px solid oklch(1 0 0 / 0.14);
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; gap: var(--s-5);
}
.field { display: flex; flex-direction: column; gap: var(--s-2); position: relative; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.field label .muted { text-transform: none; letter-spacing: 0; opacity: .7; }
/* Contact / franchise form labels — larger & more readable (not mono caps) */
.contact__form .field label {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: oklch(0.86 0.004 240);
}
.field__req {
  color: var(--accent-on-dark);
  font-size: 10px;
  letter-spacing: 0;
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-bottom-color: oklch(0.65 0.18 25);
}
.field input:user-valid,
.field textarea:user-valid {
  border-bottom-color: oklch(0.62 0.13 150);
}
.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 15px;
  color: var(--bg);
  background: transparent;
  border: none;
  border-bottom: 1px solid oklch(1 0 0 / 0.20);
  padding: 12px 0;
  border-radius: 0;
  outline: none;
  transition: border-color .3s var(--ease);
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--accent-on-dark); }
.field input::placeholder,
.field textarea::placeholder { color: oklch(1 0 0 / 0.4); }
.field select {
  -webkit-appearance: none; appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5l3-3' stroke='%23ffffff' stroke-opacity='0.5' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 22px;
}
.field select option { color: #111; }

/* Franchise form — header + 2-col field grid */
.ff__head { max-width: 64ch; margin: 0 auto var(--s-7); text-align: center; }
.ff__head .kicker { justify-content: center; }
.ff__head .contact__lead { margin-inline: auto; }
.ff { max-width: 860px; margin: 0 auto; }
.ff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5) clamp(20px, 3vw, 40px);
  margin-bottom: var(--s-6);
}
.ff .field--full { grid-column: 1 / -1; }

.form-status {
  margin: var(--s-1) 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--accent-on-dark);
  min-height: 1.2em;
}

/* =============================================================
   BHOUT-themed franchise form (neon blue-purple, glowing card)
   ============================================================= */
.contact--bhout {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(40px, 4.5vw, 64px);
  background-color: oklch(0.18 0.09 265);
  background-image: url("/assets/partners/bhout-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* moving neon light beams over the static BHOUT background */
.contact--bhout::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -60%; right: -60%;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(90deg,
    transparent 0 96px,
    oklch(0.86 0.15 200 / 0.32) 96px 99px,
    transparent 99px 200px,
    oklch(0.72 0.23 322 / 0.28) 200px 203px,
    transparent 203px 320px);
  filter: blur(1.5px);
  mix-blend-mode: screen;
  will-change: transform;
  animation: bhout-beams 16s linear infinite;
}
@keyframes bhout-beams {
  from { transform: translateX(0); }
  to   { transform: translateX(320px); }
}
@media (prefers-reduced-motion: reduce) {
  .contact--bhout::before { animation: none; }
}
.contact--bhout > .container { position: relative; z-index: 2; }

/* the big rounded glowing card = the form itself */
.contact--bhout .contact__form {
  background: oklch(0.52 0.16 283 / 0.32);
  border: 1px solid oklch(1 0 0 / 0.30);
  border-radius: 26px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow:
    0 0 70px oklch(0.70 0.16 288 / 0.40),
    inset 0 1px 0 oklch(1 0 0 / 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  gap: var(--s-4);
}
/* compact heading + tighter grid (was too tall) */
.contact--bhout .section-title { font-size: clamp(23px, 2.6vw, 36px); margin-bottom: var(--s-3); }
.contact--bhout .ff__head { margin-bottom: 0; }
.contact--bhout .ff__head .contact__lead { margin-bottom: 0; }
.contact--bhout .ff__grid { gap: var(--s-4) clamp(20px, 3vw, 40px); margin-bottom: 0; }

/* header — left aligned inside the card */
.contact--bhout .ff__head {
  max-width: none;
  margin: 0 0 var(--s-2);
  text-align: left;
}
.contact--bhout .ff__head .kicker { justify-content: flex-start; }
.contact--bhout .ff__head .contact__lead { margin-inline: 0; }
.contact--bhout .kicker--light { color: oklch(0.92 0.06 288); }
.contact--bhout .kicker i { background: oklch(0.85 0.10 290); }
.contact--bhout .hero__accent--soft { color: oklch(0.90 0.08 292); }
.contact--bhout .field label { color: oklch(1 0 0 / 0.92); }
.contact--bhout .field__req { color: oklch(0.86 0.10 292); }

/* rounded input boxes (not underlines) */
.contact--bhout .field input,
.contact--bhout .field textarea,
.contact--bhout .field select {
  background: oklch(1 0 0 / 0.07);
  border: 1px solid oklch(1 0 0 / 0.28);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
}
.contact--bhout .field textarea { border-radius: 18px; }
.contact--bhout .field input::placeholder,
.contact--bhout .field textarea::placeholder { color: oklch(1 0 0 / 0.45); }
.contact--bhout .field input:focus,
.contact--bhout .field textarea:focus,
.contact--bhout .field select:focus {
  border-color: oklch(1 0 0 / 0.70);
  background: oklch(1 0 0 / 0.11);
  box-shadow: 0 0 0 3px oklch(0.78 0.12 288 / 0.28);
}
.contact--bhout .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5l3-3' stroke='%23ffffff' stroke-opacity='0.8' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

/* centered white glowing SEND pill */
.contact--bhout .ff__send {
  align-self: center;
  margin-top: var(--s-2);
  background: #fff;
  color: oklch(0.42 0.18 280);
  border-radius: 999px;
  padding: 16px 46px;
  font-weight: 600;
  letter-spacing: .06em;
  box-shadow: 0 0 40px oklch(0.88 0.10 290 / 0.85), 0 12px 34px oklch(0.30 0.18 280 / 0.5);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease);
}
.contact--bhout .ff__send:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 0 54px oklch(0.90 0.10 290 / 1), 0 16px 44px oklch(0.30 0.18 280 / 0.6);
}
.contact--bhout .ff__send:active { transform: translateY(0) scale(0.99); }
.contact--bhout .form-status { color: oklch(0.94 0.05 290); text-align: center; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--bg);
  color: var(--ink);
  padding: var(--s-6) 0 var(--s-6);
}
.footer__hero {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--line);
}
.footer__logo {
  width: 150px;
  height: 72px;
  object-fit: cover;
  object-position: center;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--line);
}
.footer__col {
  display: flex; flex-direction: column; gap: var(--s-3);
}
.footer__col span:first-child {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-2);
}
.footer__col a {
  font-size: 14px;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--accent); }
.footer__col .muted { color: var(--ink-muted); font-size: 13.5px; }

.footer__bar {
  display: flex; justify-content: space-between; gap: var(--s-5);
  padding-top: var(--s-5);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-muted);
  flex-wrap: wrap;
}

/* =============================================================
   PAGE HEADER (subpages)
   ============================================================= */
.page-header {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(140px, 18vh, 220px) 0 clamp(72px, 10vw, 120px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 50% at 0% 100%, oklch(0.42 0.18 260 / 0.18) 0%, transparent 60%),
    radial-gradient(40% 40% at 100% 0%, oklch(0.42 0.18 260 / 0.10) 0%, transparent 70%);
  z-index: -1;
}
.page-header__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.page-header__meta { padding-bottom: 12px; }
.page-header__kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 var(--s-4);
}
.page-header__kicker i {
  width: 28px; height: 1px;
  background: var(--accent-on-dark);
  display: inline-block;
}
.page-header__title {
  font-size: clamp(36px, 6.4vw, 88px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0 0 var(--s-4);
  max-width: 18ch;
  text-wrap: balance;
}
.page-header__lead {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--on-dark-2);
  margin: 0;
  max-width: 50ch;
}

/* Imprint: compact legal page with an editorial information grid */
.page-header--legal {
  padding-bottom: clamp(56px, 7vw, 88px);
}
.page-header--legal .page-header__title {
  max-width: none;
}
.legal {
  --legal-surface: #f5f5f2;
  --legal-ink: #111418;
  --legal-muted: #676b72;
  --legal-line: rgb(17 20 24 / 0.14);
  --legal-notice: #eaf1ff;
  color: var(--legal-ink);
  background: var(--legal-surface);
  padding: clamp(72px, 9vw, 128px) 0;
}
.legal__grid {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 144px);
  align-items: start;
}
.legal__summary {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 0;
}
.legal__eyebrow,
.legal__summary-block > span,
.legal__number {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.legal__eyebrow {
  display: block;
  color: var(--accent);
  margin-bottom: 28px;
}
.legal__summary-block {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--legal-line);
}
.legal__summary-block:last-child {
  border-bottom: 1px solid var(--legal-line);
}
.legal__summary-block > span {
  color: var(--legal-muted);
}
.legal__summary strong,
.legal__summary address,
.legal__summary a {
  font-size: 15px;
  line-height: 1.55;
  color: var(--legal-ink);
}
.legal address {
  font-style: normal;
}
.legal a {
  color: var(--legal-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.legal a:hover {
  color: var(--accent);
}
.legal__content {
  min-width: 0;
}
.legal__intro {
  padding-bottom: clamp(40px, 5vw, 64px);
}
.legal__intro h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.legal__section {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(30px, 4vw, 48px) 0;
  border-top: 1px solid var(--legal-line);
}
.legal__number {
  color: var(--accent);
  padding-top: 6px;
}
.legal__section h3 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -.02em;
}
.legal__section p,
.legal__section address {
  max-width: 64ch;
  margin: 0;
  color: var(--legal-muted);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.7;
}
.legal__section strong {
  color: var(--legal-ink);
  font-weight: 600;
}
.legal__section--notice {
  margin-top: 16px;
  padding-inline: clamp(22px, 3vw, 36px);
  border: 1px solid rgb(27 83 188 / 0.18);
  background: var(--legal-notice);
}

@media (max-width: 760px) {
  .page-header--legal {
    padding-bottom: 56px;
  }
  .legal__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .legal__summary {
    position: static;
  }
  .legal__section {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }
  .legal__section--notice {
    margin-inline: -12px;
  }
}
.page-header--photo {
  min-height: clamp(560px, 72vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: clamp(150px, 19vh, 210px) 0 clamp(64px, 8vw, 104px);
}
.page-header--photo::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(5 13 23 / 0.94) 0%, rgb(5 13 23 / 0.76) 48%, rgb(5 13 23 / 0.26) 82%),
    linear-gradient(180deg, rgb(5 13 23 / 0.48) 0%, transparent 32%, rgb(5 13 23 / 0.72) 100%);
}
.page-header__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header--services .page-header__photo {
  object-position: center 52%;
  filter: saturate(.88) contrast(1.05);
}
.page-header--about .page-header__photo {
  object-position: center 50%;
  filter: saturate(.86) contrast(1.04);
}
.page-header--clients .page-header__photo {
  object-position: center 52%;
  filter: saturate(.88) contrast(1.05);
}
.page-header--photo .page-header__grid {
  align-items: end;
}
.page-header--photo .page-header__title {
  text-shadow: 0 4px 30px rgb(0 0 0 / 0.38);
}
.page-header--photo .page-header__lead {
  color: rgb(255 255 255 / 0.78);
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.42);
}

@media (max-width: 700px) {
  .page-header--photo {
    min-height: 620px;
    padding: 120px 0 64px;
  }
  .page-header--photo::before {
    background:
      linear-gradient(180deg, rgb(5 13 23 / 0.38) 0%, rgb(5 13 23 / 0.54) 36%, rgb(5 13 23 / 0.94) 100%);
  }
  .page-header--photo .page-header__grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .page-header--photo .page-header__meta {
    padding-bottom: 0;
  }
  .page-header--services .page-header__photo {
    object-position: 62% center;
  }
  .page-header--about .page-header__photo {
    object-position: 72% center;
  }
  .page-header--clients .page-header__photo {
    object-position: 66% center;
  }
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  margin-bottom: var(--s-4);
}
.breadcrumb a { transition: color .25s var(--ease); }
.breadcrumb a:hover { color: var(--on-dark); }
.breadcrumb svg { opacity: .4; }

/* =============================================================
   BHOUT detail page — cinematic hero
   ============================================================= */
.bhout-vhero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 86vh;
  background: var(--dark);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.bhout-vhero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.bhout-vhero__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, oklch(0.10 0.01 265 / .45) 0%, transparent 28%, transparent 50%, oklch(0.08 0.01 265 / .85) 100%);
}
.bhout-vhero__overlay {
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(96px, 13vh, 130px);
  padding-bottom: clamp(28px, 4vw, 52px);
}
.bhout-vhero .breadcrumb { color: oklch(1 0 0 / 0.7); margin: 0; }
.bhout-vhero .breadcrumb a:hover { color: #fff; }
.bhout-vhero__bottom {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
}
.bhout-vhero__tag {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-on-dark);
}
.bhout-vhero__logo {
  height: clamp(48px, 6vw, 84px);
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px oklch(0 0 0 / .5));
}
.bhout-vhero__tagline {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: oklch(1 0 0 / 0.9);
  max-width: 40ch;
  margin: 0;
  text-shadow: 0 2px 20px oklch(0 0 0 / 0.5);
}
.bhout-vhero__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: clamp(64px, 6.5vw, 92px);
  height: clamp(64px, 6.5vw, 92px);
  display: grid; place-items: center;
  border-radius: 999px;
  color: #fff;
  background: oklch(1 0 0 / 0.14);
  border: 1px solid oklch(1 0 0 / 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px -8px oklch(0 0 0 / 0.55);
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.bhout-vhero__play svg { margin-left: 4px; }
.bhout-vhero__play:hover {
  background: oklch(1 0 0 / 0.24);
  border-color: oklch(1 0 0 / 0.6);
  transform: translate(-50%, -50%) scale(1.07);
}
.bhout-vhero__play:active { transform: translate(-50%, -50%) scale(0.98); }

/* As seen on — press marquee */
.press {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
  border-top: 1px solid oklch(1 0 0 / 0.08);
  overflow: hidden;
}
.press__label {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--on-dark-2);
  text-align: center;
  margin: 0 0 var(--s-6);
}
.press__belt { position: relative; overflow: hidden; }
.press__belt::before, .press__belt::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: clamp(48px, 9vw, 120px); z-index: 2; pointer-events: none;
}
.press__belt::before { left: 0; background: linear-gradient(90deg, var(--dark) 0%, transparent 100%); }
.press__belt::after { right: 0; background: linear-gradient(270deg, var(--dark) 0%, transparent 100%); }
.press__track {
  display: flex; align-items: center;
  gap: clamp(40px, 5vw, 80px);
  width: max-content;
  animation: partners-marquee 45s linear infinite;
  will-change: transform;
}
.press__logo {
  display: block;
  width: auto;
  height: clamp(25px, 2.5vw, 36px);
  max-width: none;
  flex-shrink: 0;
  opacity: .72;
  filter: grayscale(1) brightness(0) invert(1);
  transition: opacity .25s var(--ease);
}
.press__logo:hover { opacity: .96; }
.press__logo--time { height: clamp(27px, 2.7vw, 39px); }
.press__logo--vogue { height: clamp(25px, 2.5vw, 36px); }
.press__logo--forbes { height: clamp(28px, 2.8vw, 40px); }
.press__logo--fast-company { height: clamp(25px, 2.5vw, 36px); }
.press__logo--athletech { height: clamp(24px, 2.4vw, 34px); }
.press__logo--t3 { height: clamp(29px, 2.9vw, 41px); }
.press__logo--mens-health { height: clamp(27px, 2.7vw, 39px); }
.press__logo--daily-star {
  height: clamp(42px, 4.2vw, 58px);
  opacity: .82;
  filter: none;
}
@media (prefers-reduced-motion: reduce) { .press__track { animation: none; } }

.bhout-detail {
  background: var(--dark);
  color: var(--on-dark);
  padding-block: clamp(40px, 5vw, 80px);
}
.bhout-detail__grid {
  display: grid;
  grid-template-columns: 6.6fr 5fr;
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}
.bhout-detail .kicker { color: var(--on-dark-2); margin-bottom: var(--s-4); }
.bhout-detail .kicker i { background: var(--accent-on-dark); }

/* Copy hierarchy: lead → body → accented key statement */
.bhout-detail__copy p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--on-dark-2);
  margin: 0 0 var(--s-4);
  max-width: 56ch;
}
.bhout-detail__copy p:last-child { margin-bottom: 0; }
.bhout-detail__copy p strong { font-weight: 500; color: var(--on-dark); }
.bhout-detail__copy p.bhout-detail__lead {
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--on-dark);
  max-width: 30ch;
  margin-bottom: var(--s-4);
}
.bhout-detail__copy p.bhout-detail__lead strong { font-weight: 600; }
.bhout-detail__copy p.bhout-detail__key {
  font-size: clamp(16px, 1.35vw, 18.5px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  max-width: 46ch;
  margin-top: var(--s-5);
}
.bhout-detail__copy p.bhout-detail__key strong { font-weight: 500; color: var(--on-dark); }
.bhout-detail__copy .hero__accent { color: var(--accent-on-dark); }

/* Facts — editorial spec list: hairline rules, label left / value right, no card */
.bhout-detail__facts {
  display: flex;
  flex-direction: column;
}
.bhout-detail__facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-5);
  padding: clamp(15px, 1.5vw, 21px) 2px;
  border-top: 1px solid oklch(1 0 0 / 0.13);
}
.bhout-detail__facts > div:last-child { border-bottom: 1px solid oklch(1 0 0 / 0.13); }
.bhout-detail__facts span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  flex: none;
}
.bhout-detail__facts strong {
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--on-dark);
  text-align: right;
}

.muted-soft { color: var(--on-dark-2); }

/* =============================================================
   Partner detail pages (themable per brand)
   ============================================================= */
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Spectral:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Caveat:wght@400;500;600;700&family=Sansita:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");



/* Default tokens (dark theme, blue accent) — overridden per .partner--brand class */
.partner-page {
  --theme-bg:          var(--dark);
  --theme-bg-2:        var(--dark-2);
  --theme-text:        var(--on-dark);
  --theme-text-muted:  var(--on-dark-2);
  --theme-line:        oklch(1 0 0 / 0.12);
  --theme-line-strong: oklch(1 0 0 / 0.18);
  --theme-accent:      var(--accent-on-dark);
  --theme-accent-2:    var(--theme-accent);
  --theme-hero-base:   #06090d;
  --theme-hero-accent: #ffffff;
  --theme-overlay-1:   oklch(0.12 0.005 240 / .55);
  --theme-overlay-2:   oklch(0.42 0.18 260 / .18);
}

.partner-page .page-header { background: var(--theme-bg); color: var(--theme-text); }
.partner-page .page-header::before {
  background:
    radial-gradient(70% 50% at 0% 100%, var(--theme-overlay-2) 0%, transparent 60%),
    radial-gradient(40% 40% at 100% 0%, var(--theme-overlay-2) 0%, transparent 70%);
  opacity: .8;
}
.partner-page .page-header__kicker { color: var(--theme-accent); }
.partner-page .page-header__kicker i { background: var(--theme-accent); }
.partner-page .page-header__title { color: var(--theme-text); }
.partner-page .page-header__lead { color: var(--theme-text-muted); }
.partner-page .breadcrumb { color: var(--theme-text-muted); }
.partner-page .breadcrumb a:hover { color: var(--theme-text); }
.partner-page .hero__accent { color: var(--theme-accent) !important; }

.partner-detail {
  background: var(--theme-bg);
  color: var(--theme-text);
  padding-block: clamp(48px, 7vw, 96px);
}
.partner-detail__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.partner-detail__logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: var(--s-5);
}
.partner-detail__logo--invert { filter: invert(1); }
.partner-detail__copy p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--theme-text-muted);
  margin: 0 0 var(--s-4);
  max-width: 58ch;
}
.partner-detail__copy p strong { color: var(--theme-text); font-weight: 500; }
.partner-detail__copy .hero__accent { color: var(--theme-accent); }

.partner-detail__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--theme-line-strong);
}
.partner-detail__facts > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--theme-line);
  align-items: baseline;
}
.partner-detail__facts span {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--theme-text-muted);
}
.partner-detail__facts strong {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--theme-text);
}

.partner-back {
  background: var(--theme-bg);
  color: var(--theme-text);
  border-top: 1px solid var(--theme-line);
  padding: var(--s-6) 0;
}
.partner-back__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--theme-text-muted);
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.partner-back__link:hover { color: var(--theme-text); gap: 14px; }

/* =============================================================
   Per-brand themes
   ============================================================= */

/* SKINIAL — exact cyan wordmark on clinical deep blue */
.partner--skinial {
  --theme-bg: #062b3a;
  --theme-bg-2: #0a3445;
  --theme-text: #f5fcff;
  --theme-text-muted: #a5ddec;
  --theme-line: rgb(255 255 255 / 0.11);
  --theme-line-strong: rgb(255 255 255 / 0.19);
  --theme-accent: #00a5dd;
  --theme-accent-2: #68d2f1;
  --theme-hero-base: #052a3b;
  --theme-hero-accent: #48c9f2;
  --theme-overlay-1: rgb(5 42 59 / 0.62);
  --theme-overlay-2: rgb(0 165 221 / 0.20);
}

/* Comptoir des Cotonniers — official burgundy */
.partner--comptoir-des-cotonniers {
  --theme-bg: #f8eff1;
  --theme-bg-2: #efe1e4;
  --theme-text: #2b0b12;
  --theme-text-muted: #74535a;
  --theme-line: rgb(43 11 18 / 0.11);
  --theme-line-strong: rgb(43 11 18 / 0.22);
  --theme-accent: #99001b;
  --theme-accent-2: #d4a1aa;
  --theme-hero-base: #38020c;
  --theme-hero-accent: #ffdce2;
  --theme-overlay-1: rgb(56 2 12 / 0.58);
  --theme-overlay-2: rgb(153 0 27 / 0.17);
}

/* Le Tanneur — black wordmark, warm leather-neutral support */
.partner--le-tanneur {
  --theme-bg: #f4f1eb;
  --theme-bg-2: #e8e2d9;
  --theme-text: #050505;
  --theme-text-muted: #5d5953;
  --theme-line: rgb(5 5 5 / 0.11);
  --theme-line-strong: rgb(5 5 5 / 0.22);
  --theme-accent: #050505;
  --theme-accent-2: #af9a80;
  --theme-hero-base: #111111;
  --theme-hero-accent: #f2e9dd;
  --theme-overlay-1: rgb(17 17 17 / 0.58);
  --theme-overlay-2: rgb(175 154 128 / 0.14);
}

/* Lollipops Paris — official monochrome identity */
.partner--lollipops {
  --theme-bg: #f8f6f3;
  --theme-bg-2: #ede9e4;
  --theme-text: #111111;
  --theme-text-muted: #625d58;
  --theme-line: rgb(17 17 17 / 0.10);
  --theme-line-strong: rgb(17 17 17 / 0.20);
  --theme-accent: #111111;
  --theme-accent-2: #b8afa7;
  --theme-hero-base: #111111;
  --theme-hero-accent: #ffffff;
  --theme-overlay-1: rgb(17 17 17 / 0.58);
  --theme-overlay-2: rgb(255 255 255 / 0.10);
}

/* Mezzo di Pasta — official green and pasta yellow */
.partner--mezzo-di-pasta {
  --theme-bg: #005f40;
  --theme-bg-2: #067f54;
  --theme-text: #fffdeb;
  --theme-text-muted: #d2dfb5;
  --theme-line: rgb(255 253 235 / 0.12);
  --theme-line-strong: rgb(255 253 235 / 0.22);
  --theme-accent: #dce98b;
  --theme-accent-2: #067f54;
  --theme-hero-base: #003a29;
  --theme-hero-accent: #e6ef9c;
  --theme-overlay-1: rgb(0 58 41 / 0.62);
  --theme-overlay-2: rgb(220 233 139 / 0.16);
}

/* Nata Lisboa — exact custard yellow from the official logo */
.partner--nata-lisboa {
  --theme-bg: #fecf22;
  --theme-bg-2: #e2b81c;
  --theme-text: #171717;
  --theme-text-muted: #56470f;
  --theme-line: rgb(23 23 23 / 0.13);
  --theme-line-strong: rgb(23 23 23 / 0.25);
  --theme-accent: #171717;
  --theme-accent-2: #fff3bd;
  --theme-hero-base: #332806;
  --theme-hero-accent: #fecf22;
  --theme-overlay-1: rgb(51 40 6 / 0.55);
  --theme-overlay-2: rgb(254 207 34 / 0.18);
}

/* Neuner's Pizza — official cream, red and green */
.partner--neuners-pizza {
  --theme-bg: #fff7e1;
  --theme-bg-2: #f1e6c9;
  --theme-text: #3a1716;
  --theme-text-muted: #6d544b;
  --theme-line: rgb(58 23 22 / 0.11);
  --theme-line-strong: rgb(58 23 22 / 0.22);
  --theme-accent: #c11526;
  --theme-accent-2: #008234;
  --theme-hero-base: #301010;
  --theme-hero-accent: #fff7e1;
  --theme-overlay-1: rgb(48 16 16 / 0.58);
  --theme-overlay-2: rgb(193 21 38 / 0.17);
}

/* Pronuptia — official slate blue-grey */
.partner--pronuptia {
  --theme-bg: #f1f4f5;
  --theme-bg-2: #e2e7e9;
  --theme-text: #3f535e;
  --theme-text-muted: #6f7b82;
  --theme-line: rgb(63 83 94 / 0.12);
  --theme-line-strong: rgb(63 83 94 / 0.23);
  --theme-accent: #3f535e;
  --theme-accent-2: #aeb9be;
  --theme-hero-base: #26373f;
  --theme-hero-accent: #dce4e8;
  --theme-overlay-1: rgb(38 55 63 / 0.58);
  --theme-overlay-2: rgb(63 83 94 / 0.18);
}

/* Jacadi — exact Parisian blue from the official logo */
.partner--jacadi {
  --theme-bg: #eef1f7;
  --theme-bg-2: #dfe5f0;
  --theme-text: #273452;
  --theme-text-muted: #68728d;
  --theme-line: rgb(39 52 82 / 0.11);
  --theme-line-strong: rgb(39 52 82 / 0.22);
  --theme-accent: #576ea5;
  --theme-accent-2: #91a1c6;
  --theme-hero-base: #253454;
  --theme-hero-accent: #c8d2eb;
  --theme-overlay-1: rgb(37 52 84 / 0.58);
  --theme-overlay-2: rgb(87 110 165 / 0.18);
}

/* Light-theme variants: invert logo filter back to non-inverted */
.partner--comptoir-des-cotonniers .partner-detail__logo--invert,
.partner--lollipops .partner-detail__logo--invert,
.partner--nata-lisboa .partner-detail__logo--invert,
.partner--neuners-pizza .partner-detail__logo--invert,
.partner--pronuptia .partner-detail__logo--invert {
  filter: none;
}

/* =============================================================
   Per-partner enquiry form — restrained editorial panel
   ============================================================= */
.pform-section {
  position: relative;
  isolation: isolate;
  background: var(--theme-bg);
  color: var(--theme-text);
  border-top: 1px solid var(--theme-line);
  padding-block: clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.pform {
  --form-surface: #fff;
  --form-input: #f6f6f3;
  --form-ink: #171717;
  --form-muted: #6f706b;
  --form-line: rgb(23 23 23 / 0.14);
  --form-line-strong: rgb(23 23 23 / 0.24);
  --form-button-text: #fff;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  column-gap: clamp(40px, 6vw, 84px);
  row-gap: var(--s-4);
  align-items: start;
  background: var(--form-surface);
  border: 1px solid var(--form-line);
  border-top: 4px solid var(--theme-accent);
  border-radius: 18px;
  padding: clamp(32px, 4.5vw, 58px);
  box-shadow: 0 26px 70px -48px rgb(0 0 0 / 0.48);
}
.pform__head {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-right: clamp(0px, 2vw, 24px);
}
.pform__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--theme-accent);
}
.pform__kicker i { width: 22px; height: 1px; background: var(--theme-accent); display: inline-block; }
.pform__title {
  font-size: clamp(27px, 3vw, 40px); font-weight: 500;
  line-height: 1.06; letter-spacing: -0.035em;
  color: var(--form-ink); margin: var(--s-2) 0 0; max-width: 12ch; text-wrap: balance;
}
.pform__lead {
  font-size: 14.5px; line-height: 1.6;
  color: var(--form-muted); margin: 0; max-width: 30ch;
}
.pform__grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pform__field { display: flex; flex-direction: column; gap: 8px; }
.pform__field--full { grid-column: 1 / -1; }
.pform__field label {
  font-size: 12.5px; font-weight: 600; color: var(--form-ink);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: .01em;
}
.pform__req { color: var(--theme-accent); font-size: 12px; }
.pform__field input,
.pform__field textarea,
.pform__field select {
  font: inherit; font-size: 14px;
  color: var(--form-ink);
  background: var(--form-input);
  border: 1px solid var(--form-line);
  border-radius: 10px;
  min-height: 52px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  resize: vertical;
}
.pform__field textarea { min-height: 124px; border-radius: 10px; }
.pform__field input::placeholder,
.pform__field textarea::placeholder { color: var(--form-muted); opacity: .7; }
.pform__field input:focus,
.pform__field textarea:focus,
.pform__field select:focus {
  border-color: var(--theme-accent);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-accent) 15%, transparent);
}
.pform__field select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5l3-3' stroke='%23888888' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px;
}
.pform__field select option { color: #111; }
.pform__send {
  grid-column: 2;
  justify-self: start;
  margin-top: 2px;
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 600; letter-spacing: .025em;
  color: var(--form-button-text);
  background: var(--theme-accent);
  border-radius: 10px;
  padding: 14px 22px;
  box-shadow: 0 12px 24px -18px color-mix(in srgb, var(--theme-accent) 75%, #000);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), filter .25s var(--ease);
}
.pform__send::after { content: "→"; font-size: 16px; line-height: 1; }
.pform__send:hover {
  transform: translateY(-2px);
  filter: brightness(.92);
  box-shadow: 0 16px 28px -18px color-mix(in srgb, var(--theme-accent) 80%, #000);
}
.pform__send:active { transform: translateY(0) scale(0.99); }
.pform__status {
  grid-column: 2;
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  min-height: 1.2em;
  margin: 0;
  color: var(--theme-accent);
}
.partner--skinial .pform,
.partner--mezzo-di-pasta .pform { --form-button-text: #042d24; }

@media (max-width: 820px) {
  .pform {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .pform__head,
  .pform__grid,
  .pform__send,
  .pform__status {
    grid-column: 1;
    grid-row: auto;
  }
  .pform__head { padding-right: 0; }
  .pform__title { max-width: 18ch; }
  .pform__lead { max-width: 48ch; }
}
@media (max-width: 640px) {
  .pform-section { padding-block: 32px; }
  .pform__grid { grid-template-columns: 1fr; gap: 16px; }
  .pform {
    padding: 28px 20px;
    border-radius: 14px;
  }
  .pform__send { width: 100%; justify-content: space-between; }
}

/* SKINIAL — form section in the same light blue as the section above */
.partner--skinial .pform-section {
  background: #c9effa;
  color: #07506b;
  border-top: 1px solid rgb(0 165 221 / 0.20);
}
.partner--skinial .pform {
  background: #ffffff;
  border-color: rgb(0 165 221 / 0.24);
  box-shadow: 0 30px 60px -30px rgb(0 87 122 / 0.34);
}
.partner--skinial .pform__kicker,
.partner--skinial .pform__req,
.partner--skinial .pform__status { color: #008fbe; }
.partner--skinial .pform__kicker i { background: #00a5dd; }
.partner--skinial .pform__title { color: #063f57; }
.partner--skinial .pform__lead { color: #07506b; }
.partner--skinial .pform__field label { color: #063f57; }
.partner--skinial .pform__field input,
.partner--skinial .pform__field textarea,
.partner--skinial .pform__field select {
  color: #0e3a52;
  background: #f3fbff;
  border-color: rgb(0 165 221 / 0.28);
}
.partner--skinial .pform__field input::placeholder,
.partner--skinial .pform__field textarea::placeholder { color: rgb(7 80 107 / 0.58); }
.partner--skinial .pform__field input:focus,
.partner--skinial .pform__field textarea:focus,
.partner--skinial .pform__field select:focus {
  border-color: #00a5dd;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgb(0 165 221 / 0.22);
}
.partner--skinial .pform__send {
  background: #00a5dd;
  color: #ffffff;
  box-shadow: 0 14px 30px -12px rgb(0 111 150 / 0.55);
}
.partner--skinial .pform__send:hover {
  box-shadow: 0 18px 40px -12px rgb(0 111 150 / 0.70);
}
/* SKINIAL form — square (no rounded corners) */
.partner--skinial .pform,
.partner--skinial .pform__field input,
.partner--skinial .pform__field textarea,
.partner--skinial .pform__field select,
.partner--skinial .pform__send { border-radius: 0; }

/* =============================================================
   Brand-personalized HERO
   ============================================================= */
.partner-hero {
  position: relative;
  background: var(--theme-bg);
  color: var(--theme-text);
  padding: clamp(120px, 16vh, 200px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.partner-hero__motif {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.partner-hero__inner { position: relative; z-index: 1; }

/* Photo hero — full-bleed brand photo with CENTERED content. Deliberately
   different from the homepage hero (which is left-aligned with a bottom stats
   bar): here everything is centered and the section is shorter. Falls back to
   the themed motif hero when no image loads. */
.partner-hero__photo {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  display: none;
  filter: brightness(0.58) saturate(0.95);
}
.partner-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  display: none;
  background:
    radial-gradient(130% 85% at 50% 42%, transparent 24%, color-mix(in srgb, var(--theme-hero-base) 64%, transparent) 100%),
    linear-gradient(180deg,
      color-mix(in srgb, var(--theme-hero-base) 52%, transparent) 0%,
      color-mix(in srgb, var(--theme-accent) 12%, transparent) 45%,
      color-mix(in srgb, var(--theme-hero-base) 74%, transparent) 100%);
}
.partner-hero.has-photo {
  background: #0a0a0d;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  padding-top: clamp(96px, 11vh, 130px);
  padding-bottom: clamp(36px, 5vw, 64px);
  text-align: center;
}
.partner-hero.has-photo .partner-hero__photo { display: block; }
.partner-hero.has-photo .partner-hero__motif { display: none; }
.partner-hero.has-photo .partner-hero__scrim { display: block; }
.partner-hero.has-photo .partner-hero__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(8px, 1.4vw, 16px);
}
.partner-hero.has-photo .breadcrumb { justify-content: center; color: oklch(1 0 0 / 0.7); margin: 0; }
.partner-hero.has-photo .breadcrumb a:hover { color: #fff; }
.partner-hero.has-photo .partner-hero__stage {
  align-items: center; text-align: center;
  max-width: 42ch; margin: 0; gap: var(--s-3);
}
.partner-hero.has-photo .partner-hero__caption { color: var(--theme-hero-accent); }
.partner-hero.has-photo .partner-hero__logo {
  filter: brightness(0) invert(1) drop-shadow(0 6px 26px oklch(0 0 0 / 0.6));
  max-height: 100px; margin-bottom: var(--s-1);
}
/* keep full-colour logos (e.g. detailed badges) — no whitening, just lift off the photo */
.partner-hero.has-photo .partner-hero__logo--keep {
  filter: drop-shadow(0 8px 30px oklch(0 0 0 / 0.7));
  max-height: 132px;
}
.partner-hero.has-photo .partner-hero__tagline {
  color: #fff; max-width: 30ch;
  font-size: clamp(19px, 2.3vw, 32px);
  line-height: 1.2;
}
.partner-hero.has-photo .partner-hero__meta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  border-top: none; padding-top: 0; margin: var(--s-2) 0 0;
}
.partner-hero.has-photo .partner-hero__meta > div { border-right: none; padding: 0; text-align: center; }
.partner-hero.has-photo .partner-hero__meta dt {
  color: color-mix(in srgb, var(--theme-hero-accent) 72%, transparent);
}
.partner-hero.has-photo .partner-hero__meta dd { color: #fff; }
@media (max-width: 640px) { .partner-hero.has-photo { min-height: 100dvh; } }

.partner-hero .breadcrumb {
  color: var(--theme-text-muted);
  margin-bottom: var(--s-7);
}
.partner-hero .breadcrumb a { color: inherit; }
.partner-hero .breadcrumb a:hover { color: var(--theme-text); }

.partner-hero__stage {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
  margin: clamp(40px, 6vw, 80px) 0 clamp(48px, 8vw, 96px);
  max-width: 64ch;
}
.partner-hero__logo {
  max-width: min(420px, 60vw);
  width: auto;
  height: auto;
  max-height: 160px;
  margin-bottom: var(--s-3);
}
.partner-hero__logo--invert { filter: invert(1); }

.partner-hero__caption {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--theme-accent);
  margin: 0 0 var(--s-2);
}

.partner-hero__tagline {
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--theme-text);
  max-width: 22ch;
  font-weight: 400;
  text-wrap: balance;
}

.partner-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--theme-line-strong);
  padding-top: var(--s-5);
  margin: 0;
}
.partner-hero__meta > div {
  padding: 0 var(--s-5) 0 0;
  border-right: 1px solid var(--theme-line);
}
.partner-hero__meta > div + div { padding-left: var(--s-5); }
.partner-hero__meta > div:last-child { border-right: 0; padding-right: 0; }
.partner-hero__meta dt {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--theme-text-muted);
  margin: 0 0 6px;
}
.partner-hero__meta dd {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--theme-text);
  margin: 0;
}

/* Narrative section (replaces partner-detail for brand pages) */
.partner-narrative {
  background: var(--theme-bg-2);
  color: var(--theme-text);
  padding-top: clamp(56px, 7vw, 100px);
  padding-bottom: clamp(40px, 4.5vw, 64px);
  border-top: 1px solid var(--theme-line);
}
.partner-narrative__inner {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.partner-narrative__aside .kicker {
  color: var(--theme-accent);
  margin: 0;
}
.partner-narrative__aside .kicker i { background: var(--theme-accent); }
.partner-narrative__body { max-width: 720px; }
@media (max-width: 900px) {
  .partner-narrative__inner { grid-template-columns: 1fr; gap: clamp(16px, 4vw, 28px); }
  .partner-narrative__aside { position: static; }
}
.partner-narrative p {
  font-size: clamp(16px, 1.35vw, 18.5px);
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--theme-text-muted);
  margin: 0 0 var(--s-5);
  text-wrap: pretty;
}
.partner-narrative p:first-child {
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--theme-text);
  margin-bottom: var(--s-6);
}
.partner-narrative p:last-child { margin-bottom: 0; }
.partner-narrative p strong { color: var(--theme-text); font-weight: 500; }
.partner-narrative .hero__accent { color: var(--theme-accent); }

/* What SARATOGA delivered — themed checklist */
.partner-work {
  background: var(--theme-bg-2);
  color: var(--theme-text);
  padding-top: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(56px, 7vw, 100px);
}
.partner-work__inner { display: block; }
.partner-work__head { margin: 0 0 clamp(32px, 4.5vw, 56px); }
.partner-work__head .kicker { color: var(--theme-accent); margin-bottom: var(--s-3); }
.partner-work__head .kicker i { background: var(--theme-accent); }
.partner-work__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--theme-text);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
/* Leistungen — accordion list (clear list of services, expandable detail) */
.partner-work__list {
  list-style: none; margin: 0; padding: 0;
}
.lstg { border-bottom: 1px solid var(--theme-line-strong); }
.lstg:first-child > .lstg__summary { padding-top: 0; }
.lstg__summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: clamp(18px, 1.9vw, 26px) 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--theme-text);
  transition: color .25s var(--ease);
}
.lstg__summary::-webkit-details-marker { display: none; }
.lstg__summary:hover { color: var(--theme-accent); }
.lstg__chev {
  flex: none; width: 20px; height: 20px;
  color: var(--theme-accent);
  transition: transform .35s var(--ease);
}
.lstg[open] .lstg__chev { transform: rotate(180deg); }
.lstg__body {
  padding: 0 0 clamp(18px, 1.9vw, 26px);
  max-width: 72ch;
}
.lstg__body p {
  margin: 0;
  color: var(--theme-text-muted);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
}

/* =============================================================
   BRAND MOTIFS — per-partner background patterns + typography
   ============================================================= */

/* SKINIAL — clinical dot grid */
.partner--skinial .partner-hero__motif {
  background-image:
    radial-gradient(oklch(1 0 0 / 0.10) 1px, transparent 1.5px);
  background-size: 28px 28px;
}
.partner--skinial .partner-hero.has-photo .partner-hero__logo--keep {
  width: clamp(230px, 24vw, 330px);
  max-width: 76vw;
  max-height: none;
  margin: 0 0 var(--s-2);
  filter: drop-shadow(0 5px 18px rgb(0 20 36 / 0.42));
}

/* Comptoir des Cotonniers — refined editorial cotton/linen weave */
.partner--comptoir-des-cotonniers .partner-hero__motif {
  background-image:
    repeating-linear-gradient(45deg, transparent 0 9px, oklch(0.22 0.012 50 / 0.06) 9px 10px),
    repeating-linear-gradient(-45deg, transparent 0 9px, oklch(0.22 0.012 50 / 0.06) 9px 10px);
}
.partner--comptoir-des-cotonniers .partner-hero__tagline {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* Le Tanneur — leather grain + heritage serif */
.partner--le-tanneur .partner-hero__motif {
  background-image:
    radial-gradient(circle at 15% 25%, oklch(1 0 0 / 0.04) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 60%, oklch(1 0 0 / 0.03) 1px, transparent 1.5px),
    radial-gradient(circle at 40% 80%, oklch(1 0 0 / 0.04) 0.8px, transparent 1.5px),
    linear-gradient(135deg, oklch(0 0 0 / 0.10), transparent 60%);
  background-size: 90px 90px, 130px 130px, 70px 70px, 100% 100%;
}
.partner--le-tanneur .partner-hero__tagline {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Lollipops Paris — playful polka dots + script accent */
.partner--lollipops .partner-hero__motif {
  background-image:
    radial-gradient(circle, var(--theme-accent) 3px, transparent 4px);
  background-size: 56px 56px;
  opacity: 0.18;
}
.partner--lollipops .partner-hero__tagline {
  font-family: "Caveat", "Bradley Hand", cursive;
  font-weight: 600;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  color: var(--theme-accent);
}

/* Mezzo di Pasta — Italian tricolor stripe + bold italic */
.partner--mezzo-di-pasta .partner-hero__motif {
  background:
    linear-gradient(180deg, transparent 0%, transparent 90%, oklch(0.50 0.22 145 / 0.45) 90%, oklch(0.50 0.22 145 / 0.45) 93.3%, oklch(0.97 0.01 60 / 0.12) 93.3%, oklch(0.97 0.01 60 / 0.12) 96.6%, oklch(0.60 0.22 30 / 0.45) 96.6%);
}
.partner--mezzo-di-pasta .partner-hero__tagline {
  font-family: "Sansita", "Satoshi", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 56px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Nata Lisboa — azulejos tile pattern + script */
.partner--nata-lisboa .partner-hero__motif {
  background-image:
    linear-gradient(45deg, var(--theme-accent) 1px, transparent 1px),
    linear-gradient(-45deg, var(--theme-accent) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
  opacity: 0.12;
}
.partner--nata-lisboa .partner-hero__tagline {
  font-family: "Spectral", "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

/* Neuner's Pizza — red checker (subtle tablecloth) */
.partner--neuners-pizza .partner-hero__motif {
  background-image:
    linear-gradient(45deg, var(--theme-accent) 25%, transparent 25%, transparent 75%, var(--theme-accent) 75%),
    linear-gradient(45deg, var(--theme-accent-2) 25%, transparent 25%, transparent 75%, var(--theme-accent-2) 75%);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  opacity: 0.06;
}
.partner--neuners-pizza .partner-hero__tagline {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.025em;
}

/* Pronuptia — elegant floral motif + italic serif */
.partner--pronuptia .partner-hero__motif {
  background-image:
    radial-gradient(circle at 20% 30%, var(--theme-accent) 1.2px, transparent 1.8px),
    radial-gradient(circle at 70% 60%, var(--theme-accent) 1px, transparent 1.5px),
    radial-gradient(circle at 50% 85%, var(--theme-accent) 1.4px, transparent 2px);
  background-size: 110px 110px, 90px 90px, 130px 130px;
  opacity: 0.22;
}
.partner--pronuptia .partner-hero__tagline {
  font-family: "Spectral", "Times New Roman", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* Jacadi — fine grid motif + serif tagline */
.partner--jacadi .partner-hero__motif {
  background-image:
    linear-gradient(var(--theme-accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--theme-accent) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.06;
}
.partner--jacadi .partner-hero__tagline {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* Smaller hero on mobile */
@media (max-width: 640px) {
  .partner-hero { padding: 100px 0 var(--s-7); }
  .partner-hero__logo { max-width: 240px; max-height: 100px; }
  .partner--skinial .partner-hero.has-photo .partner-hero__logo--keep {
    width: min(68vw, 250px);
    max-width: none;
    margin-bottom: var(--s-1);
  }
  .partner-hero__stage { margin: var(--s-5) 0 var(--s-6); gap: var(--s-3); }
  .partner-hero__meta {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--theme-line-strong);
  }
  .partner-hero__meta > div {
    padding: var(--s-3) 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--theme-line);
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); align-items: baseline;
  }
  .partner-hero__meta > div:last-child { border-bottom: 0; }
  .partner-hero__meta dd { text-align: right; }
}

/* =============================================================
   TEASERS (Home page subpage links)
   ============================================================= */
.teasers {
  background: var(--bg);
  padding-block: clamp(56px, 7vw, 96px);
}
.teasers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.teaser {
  display: flex; flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-7) var(--s-5);
  border-right: 1px solid var(--line);
  transition: background .35s var(--ease);
  position: relative;
  min-height: 280px;
}
.teaser:last-child { border-right: 0; }
.teaser:hover { background: var(--bg-2); }
.teaser__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--accent);
}
.teaser h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.teaser p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
  max-width: 38ch;
}
.teaser__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  transition: gap .3s var(--ease);
}
.teaser:hover .teaser__cta { gap: 14px; }
.teaser__cta svg { transition: transform .3s var(--ease); }
.teaser:hover .teaser__cta svg { transform: translateX(4px); }

/* =============================================================
   CTA STRIP
   ============================================================= */
.cta-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(56px, 7vw, 88px);
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-7);
  align-items: end;
}
.cta-strip__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 24ch;
  text-wrap: balance;
}
.cta-strip__actions {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
}

/* =============================================================
   Reveal animations
   ============================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .marquee__track { animation: none !important; }
}

/* =============================================================
   Responsive
   ============================================================= */
/* Tablet */
@media (max-width: 1024px) {
  :root { --pad: clamp(20px, 4vw, 40px); }

  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  /* Explicitly pin lang + toggle to the right so they don't fall into the 1fr column */
  .nav__lang   { grid-column-start: 3; }
  .nav__toggle { grid-column-start: 4; }

  /* Hide dropdown on small screens — mobile menu handles navigation instead */
  .dropdown { display: none; }

  .hero__rail { grid-template-columns: 1fr; gap: var(--s-2); }

  .intro__grid { grid-template-columns: 1fr; gap: var(--s-5); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .services__grid, .industries__grid { grid-template-columns: 1fr; }
  .approach__list { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-5); }
  .ind:nth-child(even) { border-left: 0; padding-left: 0; }
  .ind { padding: var(--s-7) 0 !important; }

  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: var(--s-7); }

  .page-header__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .teasers__grid { grid-template-columns: 1fr; border-bottom: 0; }
  .teaser { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; padding: var(--s-6) 0; }
  .teaser:last-child { border-bottom: 1px solid var(--line); }

  .cta-strip__inner { grid-template-columns: 1fr; gap: var(--s-5); }

  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .partners__grid > .partner:last-child { grid-column: 1 / -1; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --pad: 22px; }

  /* Featured sections — shorter on mobile */
  .showcase, .skinial { min-height: 0; }
  .skinial { grid-template-columns: 1fr; }
  .skinial__content { align-items: center; text-align: center; padding: clamp(36px,9vw,56px) var(--pad) var(--s-4); }
  .skinial__results { padding: 0 var(--pad) clamp(36px,9vw,56px); }
  /* Sections — tighter rhythm */
  section { padding-block: clamp(64px, 14vw, 96px); }
  .approach__list { grid-template-columns: 1fr; gap: var(--s-6); }
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: clamp(28px, 7.4vw, 36px); letter-spacing: -0.025em; line-height: 1.08; }
  .section-desc { font-size: 15px; }
  .kicker { font-size: 10px; margin-bottom: var(--s-4); }
  .kicker i { width: 20px; }

  /* Nav */
  .nav { padding: 10px 0; }
  .nav__inner { gap: 10px; grid-template-columns: auto 1fr auto auto; }
  .nav__logo { height: 56px; }
  .nav.is-scrolled .nav__logo { height: 44px; }
  .nav__lang { font-size: 10px; gap: 4px; }
  .nav__lang button { padding: 6px 6px; min-height: 32px; min-width: 28px; }
  .nav__toggle { width: 40px; height: 40px; }

  /* Hero — compact, premium */
  .hero { min-height: 84dvh; padding: 96px 0 40px; }
  .hero__title {
    font-size: clamp(34px, 9.2vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: var(--s-4);
  }
  .hero__sub {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: var(--s-6);
    max-width: 38ch;
  }
  .hero__eyebrow {
    font-size: 10px;
    padding-top: 10px;
    margin-bottom: var(--s-5);
  }
  .hero__actions { gap: 8px; width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; padding: 13px 18px; font-size: 13px; }
  .hero__rail {
    margin-top: var(--s-6);
    padding-top: var(--s-4);
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .hero__rail-row { font-size: 12px; }

  /* Marquee */
  .marquee { padding: 18px 0; }
  .marquee__row { font-size: 18px; gap: var(--s-4); padding-right: var(--s-4); }
  .marquee__track { animation-duration: 60s; }

  /* Intro / Manifest */
  .intro { padding-block: clamp(72px, 14vw, 110px); }
  .intro__lead { font-size: clamp(22px, 6.4vw, 28px); line-height: 1.18; }
  .intro__grid { gap: var(--s-4); }
  .intro__caption { font-size: 10px; }

  /* Access */
  .access .section-desc { font-size: 14.5px; }

  /* Stats */
  .stats { padding-block: var(--s-8); }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-4); }
  .stat__num { font-size: clamp(34px, 9vw, 46px); }
  .stat__num--text { font-size: clamp(22px, 6vw, 30px); }
  .stat__label { font-size: 12.5px; max-width: none; }

  /* Services */
  .srv { padding: var(--s-6); }
  .srv__head { margin-bottom: var(--s-4); }
  .srv__body h3 { font-size: 22px; line-height: 1.15; margin-bottom: var(--s-3); }
  .srv__body p { font-size: 14.5px; }

  /* About */
  .about__image { aspect-ratio: 4 / 3; }
  .about__caption { margin-top: var(--s-3); padding-top: var(--s-3); }
  .about__caption em { font-size: 13px; }
  .about__caption small { font-size: 10.5px; }
  .about__text p { font-size: 15.5px; line-height: 1.6; }
  .about__bullets { margin-top: var(--s-5); }
  .about__bullets li { font-size: 14.5px; padding: var(--s-3) 0; }

  /* Industries */
  .ind {
    grid-template-columns: 48px 1fr;
    gap: var(--s-3);
    padding: var(--s-5) 0 !important;
  }
  .ind__num { font-size: 10.5px; padding-top: 4px; }
  .ind__body h3 { font-size: 22px; }

  /* Partners */
  .partners__belt { padding: var(--s-5) 0; margin-bottom: var(--s-6); }
  .partners__row { gap: var(--s-5); padding-right: var(--s-5); }
  .partners__row img { height: 24px; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .partner { padding: clamp(28px, 8vw, 44px) var(--s-4); min-height: 128px; }
  .partner img { height: calc(var(--pg-h, 40px) * 0.66); }
  .partners__note { font-size: 10.5px; margin-top: var(--s-5); }

  /* Page header */
  .page-header { padding: 120px 0 var(--s-7); }
  .page-header__title { font-size: clamp(32px, 9vw, 44px); }
  .page-header__kicker { font-size: 10px; }

  /* Teasers */
  .teaser h3 { font-size: 22px; }

  /* CTA strip */
  .cta-strip { padding-block: var(--s-7); }
  .cta-strip__title { font-size: clamp(24px, 7.2vw, 32px); }

  /* BHOUT detail */
  .bhout-detail__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .bhout-detail__copy p { font-size: 15px; }
  .bhout-detail__copy p.bhout-detail__lead { font-size: 19px; max-width: none; }
  .bhout-detail__copy p.bhout-detail__key { margin-top: var(--s-4); }

  /* Partner detail (standard) */
  .partner-detail__grid { grid-template-columns: 1fr; }
  .partner-detail__logo { max-width: 180px; }
  .partner-detail__facts > div { grid-template-columns: 100px 1fr; gap: var(--s-3); }

  /* BHOUT video hero — taller ratio on mobile so it isn't a thin strip */
  .bhout-vhero { aspect-ratio: 4 / 5; max-height: none; }
  .bhout-vhero__logo { height: clamp(44px, 14vw, 64px); }
  .bhout-vhero__tagline { font-size: 16px; max-width: 28ch; }

  /* Featured */
  .featured { grid-template-columns: 1fr; margin-bottom: var(--s-6); }
  .featured__media { min-height: 220px; }
  .featured__play { width: 56px; height: 56px; }
  .featured__body { padding: var(--s-5); }
  .featured__logo { height: 32px; }
  .featured__tagline { font-size: 18px; }
  .featured__desc { font-size: 14px; }
  .featured__actions { flex-direction: column; align-items: stretch; }
  .featured__actions .btn { justify-content: center; }

  /* Modal */
  .modal { padding: 0; }
  .modal__panel {
    width: 100%; max-height: 100dvh;
    border-radius: 0; border: 0;
    transform: translateY(40px);
  }
  .modal__close { margin: 10px 10px 0 0; width: 36px; height: 36px; }
  .modal__inner { padding: var(--s-6) var(--s-4) calc(var(--s-6) + 80px); }
  .modal__title { font-size: clamp(22px, 6.8vw, 30px); }
  .modal__facts { grid-template-columns: 1fr 1fr; }
  .modal__facts > div:nth-child(2) { border-right: 0; }
  .modal__facts > div:nth-child(odd) { padding-right: var(--s-3); }
  .modal__facts > div:nth-child(even) { padding-left: var(--s-3); }
  .modal__facts > div { padding-block: var(--s-3); }

  /* Lead widget — bottom sheet on mobile */
  .lead {
    right: 8px; left: 8px; bottom: 8px;
    width: auto;
  }
  .lead__form { gap: var(--s-2); padding: var(--s-3); }
  .lead__row { grid-template-columns: 1fr; }
  .lead__form input,
  .lead__form textarea { font-size: 16px; padding: 12px 12px; }
  .lead__send { padding: 13px 14px; }
  .lead__hint { font-size: 12px; }

  /* Quote */
  .quote { padding-block: clamp(72px, 16vw, 110px); }
  .quote blockquote { font-size: clamp(28px, 8.4vw, 40px); }
  .quote cite { font-size: 10.5px; padding-top: var(--s-3); }

  /* Contact */
  .contact__details > div { grid-template-columns: 1fr; gap: 6px; padding: var(--s-4) 0; }
  .contact__lead { font-size: 15px; margin-bottom: var(--s-5); }
  .contact__form { padding: var(--s-5) var(--s-4); margin-top: var(--s-5); }
  .ff__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .ff { padding: var(--s-5) var(--s-4); }
  .contact__offices { grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-5); padding-top: var(--s-5); }

  /* iOS — 16px on inputs prevents auto-zoom on focus */
  .field input,
  .field textarea {
    font-size: 16px;
    padding: 14px 0;
  }
  .field label { font-size: 10.5px; }

  /* Footer */
  .footer { padding: var(--s-5) 0 var(--s-5); padding-bottom: max(var(--s-5), env(safe-area-inset-bottom)); }
  .footer__hero { margin-bottom: var(--s-5); padding-bottom: var(--s-5); }
  .footer__logo { width: 120px; height: 58px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); padding-bottom: var(--s-5); }
  .footer__col span:first-child { font-size: 10px; }
  .footer__col a { font-size: 13.5px; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 6px; padding-top: var(--s-4); }

  /* Mobile menu */
  .mobile-menu { padding: 88px var(--pad) 32px; }
  .mobile-menu__nav a { font-size: clamp(30px, 9vw, 44px); }
  .mobile-menu__foot { flex-wrap: wrap; gap: var(--s-3); align-items: center; }
  .nav__lang--mobile { font-size: 12px; }
  .nav__lang--mobile button { padding: 8px 10px; min-height: 40px; }
}

/* Very small */
@media (max-width: 380px) {
  :root { --pad: 18px; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Showcase — full-width featured partner sections
   ============================================================= */
.showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 540px;
  padding: 0;
  background: var(--dark);
  color: var(--on-dark);
}
.showcase--reverse { direction: rtl; }
.showcase--reverse > * { direction: ltr; }

.showcase__media {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}
.showcase__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.92) brightness(.82);
  transition: transform 1.2s var(--ease);
}
.showcase:hover .showcase__media img { transform: scale(1.04); }
.showcase__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.08 0.005 240 / .15) 0%, oklch(0.08 0.005 240 / .35) 100%);
}
/* SKINIAL placeholder visual (swappable for real bg later) */
.showcase__media--skinial {
  background:
    radial-gradient(circle at 35% 40%, oklch(0.32 0.07 195) 0%, transparent 62%),
    radial-gradient(circle at 72% 68%, oklch(0.42 0.11 175) 0%, transparent 55%),
    oklch(0.17 0.05 195);
  position: relative;
}
.showcase__media--skinial::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(oklch(1 0 0 / 0.10) 1px, transparent 1.5px);
  background-size: 26px 26px;
}

.showcase__panel {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: var(--s-4);
  padding: clamp(40px, 6vw, 88px);
  max-width: 620px;
}
.showcase__tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
}
.showcase__logo {
  height: clamp(34px, 4vw, 52px);
  width: auto;
  align-self: flex-start;
  margin: var(--s-2) 0;
}
.showcase__logo--invert { filter: invert(1); }
.showcase__text {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--on-dark-2);
  margin: 0;
  max-width: 42ch;
}
.showcase__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark);
  border-bottom: 1px solid oklch(1 0 0 / 0.32);
  padding-bottom: 6px;
  margin-top: var(--s-3);
  align-self: flex-start;
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.showcase__cta:hover { gap: 14px; border-bottom-color: var(--accent-on-dark); }

/* divider between the two showcases */
.showcase--skinial { border-top: 1px solid oklch(1 0 0 / 0.08); }

/* =============================================================
   Full-bleed showcase (background image + overlaid text)
   ============================================================= */
.bleed {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(620px, 86vh, 860px);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(36px, 5vw, 64px);
}
.bleed__bg {
  position: absolute; inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.bleed__content {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
  max-width: 560px;
}
.bleed__text {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 42ch;
}

/* Light brand panel variant — dark text on light background image */
.bleed--light { color: var(--ink); }
.bleed--light .bleed__text { color: var(--ink-2); }
.bleed--light .showcase__tag { color: var(--accent); }
.bleed--light .showcase__cta {
  color: var(--ink);
  border-bottom-color: oklch(0.18 0.005 240 / 0.30);
}
.bleed--light .showcase__cta:hover { border-bottom-color: var(--accent); }

/* =============================================================
   Brand panel — full-bleed background + centered lockup (BHOUT)
   ============================================================= */
.brandpanel {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 6vw, 72px);
  overflow: hidden;
  isolation: isolate;
  color: var(--on-dark);
}
.brandpanel__bg {
  position: absolute; inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.brandpanel__scrim {
  position: absolute; inset: 0;
  z-index: -1;
}
.brandpanel__inner {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-4);
  width: 100%;
}
.brandpanel__tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  margin: 0;
}
.brandpanel__logo {
  height: clamp(40px, 5vw, 64px);
  width: auto;
  margin: var(--s-1) 0 var(--s-2);
}
.brandpanel__text {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  margin: 0;
  max-width: 46ch;
}
.brandpanel__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark);
  border-bottom: 1px solid oklch(1 0 0 / 0.32);
  padding-bottom: 6px;
  margin-top: var(--s-2);
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.brandpanel__cta:hover { gap: 14px; border-bottom-color: var(--accent-on-dark); }

/* =============================================================
   BHOUT split — video left, content right, dark tech background
   ============================================================= */
.bhout-split {
  position: relative;
  min-height: 540px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--on-dark);
}
.bhout-split__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background-color: oklch(0.18 0.09 265);
  background-image: url("/assets/partners/bhout-bg.png");
  background-size: cover;
  background-position: center;
}
.bhout-split__video {
  height: 100%;
  display: flex; align-items: center;
  padding: clamp(28px, 4vw, 56px);
}
.bhout-split__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -24px oklch(0 0 0 / 0.6);
}
.bhout-split__video-frame iframe,
.bhout-split__video-frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.bhout-split__content {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
  padding: clamp(32px, 5vw, 72px) clamp(32px, 5vw, 72px) clamp(32px, 5vw, 72px) clamp(8px, 2vw, 24px);
  max-width: 560px;
}
.bhout-split__logo {
  height: clamp(34px, 4vw, 54px);
  width: auto;
  filter: brightness(0) invert(1);
  margin: var(--s-1) 0 var(--s-2);
}
/* Neon logo — colored, transparent background, no blend */
.bhout-split__logo--neon {
  height: clamp(66px, 8vw, 104px);
  filter: none;
  mix-blend-mode: normal;
  margin: var(--s-1) 0 var(--s-2) -6px;
}

@media (max-width: 860px) {
  .bhout-split { grid-template-columns: 1fr; min-height: 0; }
  .bhout-split__video { padding: clamp(20px, 5vw, 32px); }
  .bhout-split__content {
    align-items: center; text-align: center;
    padding: 0 clamp(22px, 6vw, 40px) clamp(36px, 9vw, 56px);
    max-width: none;
  }
}

/* =============================================================
   SKINIAL
   ============================================================= */
.skinial {
  background: #c5eaf6;
  min-height: 540px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.skinial__content {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
  padding: clamp(40px, 5vw, 72px) clamp(24px, 3vw, 48px) clamp(40px, 5vw, 72px) clamp(24px, 6vw, 96px);
}
.skinial__results {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: clamp(32px, 4vw, 56px) clamp(24px, 6vw, 96px) clamp(32px, 4vw, 56px) clamp(8px, 2vw, 24px);
}
.skinial--fullbleed {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 540px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, #082a46 0%, rgb(10 47 76 / 0.96) 32%, rgb(12 55 87 / 0.76) 50%, rgb(12 55 87 / 0.08) 72%),
    url("/assets/partners/hero-skinial.jpg") center center / cover no-repeat;
}
.skinial--fullbleed .skinial__content {
  position: relative;
  z-index: 1;
  width: min(48%, 680px);
  padding-left: clamp(28px, 6vw, 112px);
}
.skinial--fullbleed .skinial__tag { color: #7fd7ff; }
.skinial--fullbleed .skinial__logo {
  width: clamp(240px, 25vw, 360px);
  height: auto;
  max-width: 100%;
  filter: none !important;
}
.skinial--fullbleed .skinial__text { color: #e8f7ff; }
.skinial--fullbleed .skinial__cta {
  color: #fff;
  border-bottom-color: rgb(255 255 255 / 0.42);
}
.skinial--fullbleed .skinial__cta:hover {
  border-bottom-color: #fff;
}
.ba {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  max-width: 500px;
}
.ba__cell {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: oklch(0.55 0.05 235 / 0.10);
}
/* eyebrow row — tight landscape band (länglich); hover reveals the full photo */
.ba--wide .ba__cell {
  aspect-ratio: 3 / 1;
  cursor: pointer;
  transition: aspect-ratio .5s var(--ease);
}
.ba--wide .ba__cell img { object-position: top center; }
/* hovering either photo expands BOTH before & after to the full uncropped image */
.ba--wide:hover .ba__cell { aspect-ratio: 720 / 380; }
.ba__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba__cell b {
  position: absolute;
  left: 8px; bottom: 8px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: oklch(0.20 0.04 235 / 0.66);
  padding: 3px 7px;
  border-radius: 3px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.skinial__tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1c84b8;
  margin: 0;
}
.skinial__logo {
  height: clamp(48px, 6vw, 84px);
  width: auto;
  margin: var(--s-1) 0 var(--s-2);
}
.skinial__text {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #0e5a7e;
  margin: 0;
  max-width: 46ch;
}
.skinial__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #0a4a68;
  border-bottom: 1px solid oklch(0.40 0.08 235 / 0.35);
  padding-bottom: 6px;
  margin-top: var(--s-2);
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.skinial__cta:hover { gap: 14px; border-bottom-color: #1c84b8; }

@media (max-width: 640px) {
  .bleed { min-height: 380px; }
  .skinial--fullbleed {
    min-height: 680px;
    align-items: flex-end;
    padding: 0;
    background:
      linear-gradient(180deg, rgb(7 33 55 / 0.03) 10%, rgb(7 33 55 / 0.28) 42%, #092c49 72%),
      url("/assets/partners/hero-skinial.jpg") 63% top / auto 64% no-repeat,
      #092c49;
  }
  .skinial--fullbleed .skinial__content {
    width: 100%;
    align-items: center;
    padding: min(52svh, 430px) var(--pad) clamp(44px, 11vw, 64px);
    text-align: center;
  }
  .skinial--fullbleed .skinial__logo {
    width: min(78vw, 320px);
  }
}

/* View all partners link strip */
.partners-link {
  background: #000;
  color: var(--on-dark);
  border-top: 1px solid oklch(1 0 0 / 0.08);
  padding: var(--s-6) 0;
  text-align: center;
}
.partners-link__a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  transition: gap .25s var(--ease);
}
.partners-link__a:hover { gap: 14px; }

@media (max-width: 860px) {
  .showcase,
  .showcase--reverse { grid-template-columns: 1fr; direction: ltr; min-height: 0; }
  .showcase__media { aspect-ratio: 16 / 10; }
  .showcase__panel { padding: clamp(28px, 7vw, 48px); }
}

/* =============================================================
   HOME — Editorial v4 (web-design skill)
   ============================================================= */

.home-body { background: var(--ed-surface); color: var(--ed-ink); }
.home-body .nav { color: var(--on-dark); }   /* over dark hero */
.home-body .nav.is-light { color: var(--ed-ink); }

/* — Hero v4 — left-aligned editorial with cinematic strip below */
.hero-v4 {
  background: var(--ed-ink);
  color: var(--ed-surface);
  padding: clamp(120px, 16vh, 168px) 0 0;
  position: relative;
  isolation: isolate;
}
.hero-v4__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.hero-v4__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ed-ink-3);
  margin: 0 0 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-v4__label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-on-dark);
  box-shadow: 0 0 0 4px oklch(0.74 0.16 260 / 0.20);
  animation: pulse 2.4s var(--ease) infinite;
}
.hero-v4__title {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-v4__title em {
  font-style: normal;
  color: var(--accent-on-dark);
}
.hero-v4__sub {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  max-width: 920px;
}
.hero-v4__lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: oklch(1 0 0 / 0.72);
  margin: 0;
  max-width: 52ch;
}
.hero-v4__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ed-surface);
  border-bottom: 1px solid oklch(1 0 0 / 0.4);
  padding-bottom: 6px;
  transition: gap .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.hero-v4__cta:hover { gap: 14px; border-bottom-color: var(--accent-on-dark); }

/* Cinematic strip at bottom of hero */
.hero-v4__strip {
  margin-top: clamp(48px, 8vw, 88px);
  height: clamp(220px, 32vh, 360px);
  position: relative;
  overflow: hidden;
}
.hero-v4__strip video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.85) brightness(.7);
}
.hero-v4__strip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.10 0.005 240 / .35) 0%, oklch(0.10 0.005 240 / 0) 30%, oklch(0.10 0.005 240 / 0) 70%, oklch(0.10 0.005 240 / .85) 100%);
}

/* — Partner band v4 — minimal, integrated under hero strip — */
.partners-v4 {
  background: var(--ed-ink);
  border-top: 1px solid oklch(1 0 0 / 0.10);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.partners-v4::before,
.partners-v4::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: clamp(40px, 8vw, 100px);
  pointer-events: none; z-index: 2;
}
.partners-v4::before { left: 0; background: linear-gradient(90deg, var(--ed-ink) 0%, transparent 100%); }
.partners-v4::after { right: 0; background: linear-gradient(270deg, var(--ed-ink) 0%, transparent 100%); }
.partners-v4__track { display: flex; width: max-content; animation: partners-marquee 60s linear infinite; }
.partners-v4__row {
  display: flex; align-items: center;
  gap: clamp(56px, 6vw, 96px);
  padding-right: clamp(56px, 6vw, 96px);
}
.partners-v4__row img {
  height: clamp(18px, 2vw, 24px);
  width: auto;
  opacity: .50;
  filter: brightness(0) invert(1);
  transition: opacity .35s var(--ease);
  flex-shrink: 0;
}
.partners-v4__row img:hover { opacity: 1; }

/* — Manifest v4 — editorial two-column statement — */
.manifest-v4 {
  background: var(--ed-surface);
  padding: clamp(88px, 12vw, 140px) 0;
}
.manifest-v4__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.manifest-v4__side {
  position: sticky; top: 100px;
}
.manifest-v4__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ed-ink-3);
  margin: 0 0 14px;
}
.manifest-v4__side-note {
  font-size: 13px;
  color: var(--ed-ink-3);
  line-height: 1.6;
  margin: 0;
  max-width: 30ch;
}
.manifest-v4__statement {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ed-ink);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.manifest-v4__statement em {
  font-style: normal;
  color: var(--accent);
}

/* — Stats v4 — single inline editorial line — */
.stats-v4 {
  background: var(--ed-surface);
  padding: 0 0 clamp(72px, 10vw, 120px);
  border-bottom: 1px solid var(--ed-border);
}
.stats-v4__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.stats-v4__sentence {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--ed-ink-2);
  margin: 0;
  max-width: 50ch;
}
.stats-v4__sentence strong {
  color: var(--ed-ink);
  font-weight: 600;
}

/* — Work v4 — asymmetric 2-col blocks (60/40) — */
.work-v4 {
  background: var(--ed-surf-2);
  padding: clamp(72px, 10vw, 120px) 0;
}
.work-v4__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.work-v4__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px;
  gap: 32px;
}
.work-v4__title {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 16ch;
  color: var(--ed-ink);
}
.work-v4__grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 1px;
  background: var(--ed-border);
  border: 1px solid var(--ed-border);
}
.work-v4__card {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 44px);
  background: var(--ed-surface);
  text-decoration: none;
  color: var(--ed-ink);
  min-height: 280px;
  transition: background .25s ease;
}
.work-v4__card:hover { background: #fcfcfa; }
.work-v4__card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ed-ink-3);
}
.work-v4__card h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 24px 0 12px;
  max-width: 16ch;
  color: var(--ed-ink);
}
.work-v4__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ed-ink-2);
  margin: 0;
  max-width: 38ch;
}
.work-v4__card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ed-ink);
  margin-top: 24px;
  transition: gap .25s ease;
}
.work-v4__card:hover .work-v4__card-arrow { gap: 12px; }

/* — Featured partners v4 — 2 cards (BHOUT + SKINIAL) — */
.featured-v4 {
  background: var(--ed-surface);
  padding: clamp(72px, 10vw, 120px) 0;
}
.featured-v4__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.featured-v4__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px; gap: 32px;
}
.featured-v4__title {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 22ch;
  color: var(--ed-ink);
}
.featured-v4__viewall {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ed-ink);
  border-bottom: 1px solid var(--ed-border);
  padding-bottom: 4px;
  transition: gap .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.featured-v4__viewall:hover { gap: 12px; border-bottom-color: var(--ed-ink); }

.featured-v4__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.featured-v4__card {
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--ed-ink);
  background: var(--ed-surf-2);
  overflow: hidden;
  transition: transform .35s ease;
}
.featured-v4__card:hover { transform: translateY(-2px); }
.featured-v4__visual {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--ed-ink);
}
.featured-v4__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.9) brightness(.72);
  transition: transform 1s ease;
}
.featured-v4__card:hover .featured-v4__visual img { transform: scale(1.04); }
.featured-v4__visual--skinial {
  background:
    radial-gradient(circle at 30% 40%, oklch(0.30 0.06 195) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, oklch(0.40 0.10 175) 0%, transparent 55%),
    oklch(0.18 0.05 195);
  position: relative;
}
.featured-v4__visual--skinial::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(oklch(1 0 0 / 0.10) 1px, transparent 1.5px);
  background-size: 22px 22px;
}
.featured-v4__body {
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.featured-v4__body-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.featured-v4__body-logo {
  height: 22px; width: auto;
  align-self: flex-start;
}
.featured-v4__body-logo--invert { filter: invert(1); }
.featured-v4__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ed-ink-2);
  margin: 0;
  max-width: 38ch;
}
.featured-v4__body-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ed-ink);
  margin-top: 8px;
  transition: gap .25s ease;
}
.featured-v4__card:hover .featured-v4__body-arrow { gap: 12px; }

/* — Contact CTA v4 — full-bleed dark, single statement — */
.cta-v4 {
  background: var(--ed-ink);
  color: var(--ed-surface);
  padding: clamp(72px, 10vw, 120px) 0;
}
.cta-v4__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.cta-v4__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.55);
  margin: 0 0 24px;
}
.cta-v4__title {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 18ch;
}
.cta-v4__title em {
  font-style: normal;
  color: var(--accent-on-dark);
}
.cta-v4__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ed-surface);
  color: var(--ed-ink);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: transform .15s ease, background .2s ease;
  white-space: nowrap;
}
.cta-v4__btn:hover { transform: translateY(-1px); background: #fafafa; }

/* Responsive */
@media (max-width: 900px) {
  .hero-v4__sub { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .manifest-v4__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .manifest-v4__side { position: static; }
  .work-v4__head, .featured-v4__head { flex-direction: column; align-items: flex-start; }
  .work-v4__grid { grid-template-columns: 1fr; }
  .featured-v4__grid { grid-template-columns: 1fr; }
  .cta-v4__inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .hero-v4 { padding-top: 100px; }
  .hero-v4__strip { height: 200px; margin-top: 40px; }
  .stats-v4__sentence { font-size: 18px; }
  .featured-v4__body { padding: 20px; }
}

/* SKINIAL hero tagline — keep "Tattoo-Entfernung ohne Laser" on one line */
.partner-hero__tagline .th-nowrap { white-space: nowrap; }
.partner--skinial .partner-hero__tagline { max-width: 38ch; }

/* Dropdown: first ("Konzepte") header sits flush at the top, no divider */
.mega__head.mega__head--top { border-top: 0; margin-top: 0; padding-top: 4px; }
.mega__head.mega__head--top > span { color: var(--on-dark); }
.nav.is-light .mega__head.mega__head--top > span { color: var(--ink); }
/* SKINIAL featured-banner logo stays in colour (not whitened) */
.mega__featured--wide .mega__featured-logo--color { filter: none; height: 26px; }
