@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/typeface/montserrat-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/typeface/montserrat-latin-900-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/typeface/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/typeface/inter-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/typeface/inter-latin-900-normal.woff2') format('woff2');
}

:root {
  --pigment-primary: #71c600;
  --pigment-beacon: #0b0a10;
  --pigment-accent-pressed: #000000;
  --pigment-ground: #141516;
  --pigment-above: #1c1e20;
  --pigment-copy: #ffffff;
  --pigment-soft-text: #bfbfbf;
  --pigment-hairline: rgba(255, 255, 255, 0.16);
  --pigment-line-strong: rgba(255, 255, 255, 0.34);
  --pigment-fade-top: #41385d;
  --pigment-blend-b: #1e1a2b;
  --pigment-notice: #a51d1d;
  --pigment-sheet: #ffffff;
  --pigment-on-primary: #0b0a10;

  --rhythm-2xs: 5px;
  --rhythm-xs: 10px;
  --rhythm-sm: 15px;
  --rhythm-md: 25px;
  --rhythm-lg: 40px;
  --rhythm-xl: 60px;
  --rhythm-2xl: 90px;
  --rhythm-3xl: 140px;

  --curve-2xs: 2px;
  --curve-xs: 4px;
  --curve-sm: 8px;
  --curve-md: 12px;
  --curve-lg: 16px;
  --curve-xl: 22px;
  --curve-2xl: 28px;
  --curve-3xl: 36px;
  --curve-capsule: 9999px;
  --curve-round-full: 50%;

  --outline-fine: 1px;
  --outline-regular: 2px;
  --outline-heavy: 3px;

  --lift-2xs: none;
  --lift-xs: none;
  --lift-sm: none;
  --lift-md: none;
  --lift-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --lift-xl: 0 14px 34px rgba(0, 0, 0, 0.16);
  --lift-2xl: 0 20px 48px rgba(0, 0, 0, 0.2);
  --lift-3xl: 0 28px 66px rgba(0, 0, 0, 0.24);

  --family-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --family-copy: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --fs-display-1: clamp(26px, 7.4vw, 34px);
  --fs-h2: clamp(21px, 5.4vw, 26px);
  --fs-sub: 20px;
  --fs-h4: 16px;
  --fs-h5: 14px;
  --fs-h6: 12px;
  --fs-base: 15px;
  --fs-caption: 12px;
  --fs-xs: 10px;

  --leading-compact: 1.06;
  --leading-default: 1.4;
  --leading-relaxed: 1.6;

  --ls-narrow: -0.02em;
  --ls-normal: 0.02em;
  --ls-spread: 0.1em;

  --font-weight-book: 500;
  --font-weight-medium: 700;
  --font-weight-heavy: 900;

  --dur-fast: 154ms;
  --dur-regular: 300ms;
  --dur-slow: 478ms;
  --glide-exit: cubic-bezier(0.31, 0.68, 0.55, 0.97);
  --glide-take-off: cubic-bezier(0.54, 0.05, 0.31, 0.99);
  --glide-both: cubic-bezier(0.54, 0.05, 0.31, 0.99);
  --glide-elastic: cubic-bezier(0.21, 0.95, 0.58, 1.05);

  --bounds-page: 1120px;
  --bounds-readable: 1120px;
  --bounds-narrow: 480px;
  --bounds-edge-wide: 32px;
  --bounds-edge-mid: 24px;
  --bounds-padding-mobile: 16px;
  --bounds-shell: calc(var(--bounds-page) + 2 * var(--bounds-edge-wide));

  --masthead-tall: 74px;
  --masthead-h-sm: 60px;
  --shell-pad: var(--bounds-padding-mobile);
  --band: var(--rhythm-lg);
}

@media (min-width: 580px) {
  :root {
    --shell-pad: var(--bounds-edge-mid);
  }
}

@media (min-width: 861px) {
  :root {
    --fs-display-1: clamp(30px, 4.2vw, 56px);
    --fs-h2: clamp(24px, 2.9vw, 38px);
    --fs-sub: 24px;
    --fs-h4: 18px;
    --fs-h5: 15px;
    --fs-h6: 13px;
    --fs-base: 16px;
    --fs-caption: 13px;
    --fs-xs: 11px;
    --shell-pad: var(--bounds-edge-wide);
    --band: var(--rhythm-lg);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--pigment-ground);
  color: var(--pigment-copy);
  font-family: var(--family-copy);
  font-size: var(--fs-base);
  font-weight: var(--font-weight-book);
  line-height: var(--leading-default);
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
  margin: 0;
}

h1 {
  font-family: var(--family-head);
  font-size: var(--fs-display-1);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-narrow);
  line-height: var(--leading-compact);
  text-transform: uppercase;
}

h2 {
  font-family: var(--family-head);
  font-size: var(--fs-h2);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--ls-narrow);
  line-height: var(--leading-compact);
  text-transform: uppercase;
}

h3 {
  font-family: var(--family-head);
  font-size: var(--fs-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--ls-normal);
  line-height: var(--leading-default);
}

h4 {
  font-family: var(--family-head);
  font-size: var(--fs-h4);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--ls-normal);
  line-height: var(--leading-default);
}

h5,
h6 {
  font-family: var(--family-copy);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}

p {
  margin: 0 0 var(--rhythm-sm);
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--pigment-primary);
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

main {
  display: block;
}

section {
  padding-block: var(--band);
}

.skip-step {
  position: absolute;
  top: -200px;
  left: var(--rhythm-sm);
  z-index: 200;
  padding: var(--rhythm-xs) var(--rhythm-md);
  border-radius: var(--curve-sm);
  background: var(--pigment-primary);
  color: var(--pigment-on-primary);
  font-weight: var(--font-weight-heavy);
}

.skip-step:not(:focus) {
  top: -200px !important;
}

.skip-step:focus {
  top: var(--rhythm-xs);
}

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

[data-rise] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--glide-exit), transform var(--dur-slow) var(--glide-exit);
}

[data-rise].is-live {
  opacity: 1;
  transform: translateY(0);
}

.frame-neat-hold,
.grille-noble-hold,
.frame-fresh-hold,
.cartouche-alt-hold,
.sigil-fine-hold,
.hallway-zone-hold,
.buffet-deep-hold,
.paroi-grand-hold,
.turret-edge-hold,
.galerie-neat-hold,
.planche-premium-hold,
.quai-solid-hold,
.portico-fluid-hold,
.dossier-edge-hold,
.armoire-plus-hold,
.buttress-refined-hold {
  width: 100%;
  max-width: calc(var(--bounds-page) + 2 * var(--bounds-edge-wide));
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

/* ── header: HEAD-INSET ─────────────────────────────────────────────── */

.frame-neat {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-block: var(--rhythm-xs);
  padding-inline: var(--shell-pad);
  background: var(--pigment-ground);
  transition: padding-block var(--dur-regular) var(--glide-exit);
}

.frame-neat.is-shrunk {
  padding-block: var(--rhythm-2xs);
}

.frame-neat-hold {
  display: flex;
  align-items: center;
  gap: var(--rhythm-sm);
  height: var(--masthead-h-sm);
  padding-inline: var(--rhythm-sm);
  border: var(--outline-fine) solid var(--pigment-hairline);
  border-radius: var(--curve-lg);
  background: var(--pigment-above);
  transition: height var(--dur-regular) var(--glide-exit);
}

.frame-neat-logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  order: 1;
}

.frame-neat-logo-shot {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 44px;
  transition: height var(--dur-regular) var(--glide-exit);
}

.frame-neat-toggle {
  order: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--curve-sm);
  background: rgba(113, 198, 0, 0.16);
  color: var(--pigment-copy);
  cursor: pointer;
}

.frame-neat-dots {
  position: relative;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: var(--curve-round-full);
  background: var(--pigment-primary);
}

.frame-neat-dots::before,
.frame-neat-dots::after {
  content: '';
  position: absolute;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: var(--curve-round-full);
  background: var(--pigment-primary);
}

.frame-neat-dots::before {
  left: -9px;
}

.frame-neat-dots::after {
  left: 9px;
}

.frame-neat-toggle:hover {
  background: rgba(113, 198, 0, 0.28);
  color: var(--pigment-copy);
}

.frame-neat-map {
  display: none;
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
}

.frame-neat-roll {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  min-width: 0;
  gap: var(--rhythm-sm);
}

.frame-neat-slot {
  display: flex;
  align-items: center;
}

.frame-neat-roll > .frame-neat-slot + .frame-neat-slot::before {
  content: '/';
  margin-right: var(--rhythm-2xs);
  margin-left: calc(-1 * var(--rhythm-2xs));
  color: var(--pigment-line-strong);
  font-size: var(--fs-caption);
}

.frame-neat-step {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: var(--rhythm-xs);
  border-radius: var(--curve-capsule);
  color: var(--pigment-copy);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--glide-exit), background-color var(--dur-fast) var(--glide-exit);
}

.frame-neat-step:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pigment-primary);
  transform: translateY(-2px);
}

.frame-neat-step.frame-neat-on {
  background: var(--pigment-primary);
  color: var(--pigment-on-primary);
  font-weight: 700;
}

.frame-neat-step.frame-neat-on:hover {
  background: var(--pigment-primary);
  color: var(--pigment-on-primary);
}

.frame-neat-more {
  position: relative;
  flex-shrink: 0;
  display: none;
}

.frame-neat-more.is-live-more {
  display: block;
}

.frame-neat-more-toggle {
  min-height: 44px;
  padding-inline: var(--rhythm-sm);
  border: var(--outline-fine) dashed var(--pigment-line-strong);
  border-radius: var(--curve-capsule);
  background: transparent;
  color: var(--pigment-copy);
  font-family: var(--family-copy);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
}

.frame-neat-more-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pigment-primary);
}

.frame-neat-more-roll {
  position: absolute;
  top: calc(100% + var(--rhythm-xs));
  right: 0;
  z-index: 90;
  display: none;
  min-width: 220px;
  max-height: 60vh;
  overflow-y: auto;
  padding: var(--rhythm-xs);
  border: var(--outline-fine) solid var(--pigment-hairline);
  border-radius: var(--curve-md);
  background: var(--pigment-above);
  box-shadow: var(--lift-xl);
}

.frame-neat-more-roll.is-open {
  display: block;
}

.frame-neat-more-roll .frame-neat-step {
  display: flex;
  width: 100%;
  border-radius: var(--curve-sm);
}

.frame-neat-more-roll .frame-neat-slot::before {
  content: none;
}

.frame-neat-geo {
  order: 3;
  flex-shrink: 0;
  margin-left: auto;
  padding: 4px var(--rhythm-xs);
  border: var(--outline-fine) dashed var(--pigment-line-strong);
  border-radius: var(--curve-xs);
  color: var(--pigment-soft-text);
  font-size: var(--fs-xs);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-spread);
}

.frame-neat-panel {
  display: none;
  max-width: calc(var(--bounds-page) + 2 * var(--bounds-edge-wide));
  margin-inline: auto;
  margin-top: var(--rhythm-xs);
  padding: var(--rhythm-sm);
  border: var(--outline-fine) solid var(--pigment-hairline);
  border-radius: var(--curve-lg);
  background: var(--pigment-above);
}

.frame-neat-panel.is-open {
  display: block;
}

.frame-neat-panel-roll {
  display: flex;
  flex-direction: column;
  max-height: 62vh;
  overflow-y: auto;
}

.frame-neat-panel-step {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-inline: var(--rhythm-xs);
  border-bottom: var(--outline-fine) dashed var(--pigment-hairline);
  color: var(--pigment-copy);
  font-size: var(--fs-base);
}

.frame-neat-panel-slot:last-child .frame-neat-panel-step {
  border-bottom: 0;
}

.frame-neat-panel-step:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--pigment-primary);
}

@media (min-width: 861px) {
  .frame-neat-hold {
    height: 74px;
    gap: var(--rhythm-md);
    padding-inline: var(--rhythm-lg);
  }

  .frame-neat.is-shrunk .frame-neat-hold {
    height: 62px;
  }

  .frame-neat-logo-shot {
    height: 60px;
  }

  .frame-neat.is-shrunk .frame-neat-logo-shot {
    height: 48px;
  }

  .frame-neat-toggle {
    display: none;
  }

  .frame-neat-map {
    display: flex;
  }

  .frame-neat-panel {
    display: none !important;
  }
}

/* ── hero: HERO-05 ──────────────────────────────────────────────────── */

.grille-noble {
  padding-block: var(--rhythm-lg);
  background: var(--pigment-ground);
}

.grille-noble-plate {
  padding: var(--rhythm-md);
  border: var(--outline-heavy) solid var(--pigment-copy);
  outline: var(--outline-fine) solid var(--pigment-copy);
  outline-offset: 6px;
  background: linear-gradient(160deg, var(--pigment-blend-b) 0%, var(--pigment-ground) 62%);
}

.grille-noble-stuff {
  max-width: 100%;
}

.grille-noble-badge {
  display: inline-block;
  margin-bottom: var(--rhythm-xs);
  color: var(--pigment-primary);
  font-size: var(--fs-caption);
  font-style: italic;
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
}

.grille-noble-rule {
  width: 80px;
  height: 0;
  margin: var(--rhythm-sm) 0;
  border: 0;
  border-top: var(--outline-regular) solid var(--pigment-primary);
}

.grille-noble-second {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--pigment-soft-text);
  font-size: var(--fs-h4);
  line-height: var(--leading-relaxed);
}

.grille-noble-controls {
  margin-top: var(--rhythm-md);
}

@media (min-width: 861px) {
  .grille-noble {
    padding-block: var(--rhythm-xl) var(--rhythm-lg);
  }

  .grille-noble-plate {
    padding: var(--rhythm-lg);
  }
}

/* ── page header: PHEAD-02 ──────────────────────────────────────────── */

.frame-fresh {
  padding-block: var(--rhythm-lg);
  background: var(--pigment-ground);
  text-align: center;
}

.frame-fresh-rule {
  width: 80px;
  height: 0;
  margin: var(--rhythm-sm) auto;
  border: 0;
  border-top: var(--outline-regular) solid var(--pigment-primary);
}

.frame-fresh-second {
  max-width: var(--bounds-narrow);
  margin-inline: auto;
  color: var(--pigment-soft-text);
}

/* ── byline: BYLINE-03 ──────────────────────────────────────────────── */

.portico-fluid {
  padding-block: var(--rhythm-xs);
}

.portico-fluid-hold {
  display: flex;
  align-items: center;
  gap: var(--rhythm-xs);
  padding-block: var(--rhythm-xs);
  border-bottom: var(--outline-fine) solid var(--pigment-hairline);
}

.portico-fluid-photo {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--curve-round-full);
  object-fit: cover;
}

.portico-fluid-tag {
  color: var(--pigment-soft-text);
  font-size: var(--fs-caption);
}

.portico-fluid-person {
  color: var(--pigment-primary);
}

.portico-fluid-person:hover {
  background: transparent;
  color: var(--pigment-primary);
  text-decoration: underline;
}

/* ── prose: PROSE-11 (icon before heading) ──────────────────────────── */

.paroi-grand {
  padding-block: var(--band);
}

.paroi-grand-part + .paroi-grand-part {
  margin-top: var(--rhythm-lg);
}

.paroi-grand-top {
  display: flex;
  align-items: baseline;
  gap: var(--rhythm-sm);
  margin-block-start: 0;
  margin-block-end: var(--rhythm-sm);
}

.paroi-grand-top-bare {
  gap: 0;
}

.paroi-grand-glyph {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--curve-round-full);
  background: rgba(113, 198, 0, 0.14);
  color: var(--pigment-primary);
  transform: translateY(6px);
}

.paroi-grand-glyph svg {
  width: 22px;
  height: 22px;
}

.paroi-grand-stuff {
  max-width: var(--bounds-readable);
}

.paroi-grand-stuff p {
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.paroi-grand-roll {
  margin: 0 0 var(--rhythm-sm);
}

.paroi-grand-roll li {
  position: relative;
  padding-left: var(--rhythm-md);
  margin-bottom: var(--rhythm-xs);
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.paroi-grand-roll li::before {
  content: '';
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--pigment-primary);
}

.paroi-grand-step {
  color: var(--pigment-primary);
  background-image: linear-gradient(var(--pigment-primary), var(--pigment-primary));
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 0 1px;
  transition: background-size var(--dur-fast) var(--glide-exit);
}

.paroi-grand-step:hover {
  background-color: transparent;
  color: var(--pigment-primary);
  background-size: 100% 1px;
}

.paroi-grand-figure {
  max-width: 620px;
  margin: var(--rhythm-md) auto;
  padding: var(--rhythm-xs);
  border: var(--outline-fine) dashed var(--pigment-line-strong);
  border-radius: var(--curve-md);
}

.paroi-grand-figure-tall {
  max-width: 360px;
}

.paroi-grand-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--curve-sm);
}

.paroi-grand-plug {
  margin-top: var(--rhythm-md);
  padding: var(--rhythm-md);
  border: var(--outline-fine) dashed var(--pigment-primary);
  border-radius: var(--curve-md);
  background: var(--pigment-above);
  text-align: center;
}

/* ── items grid: GRID-08 ────────────────────────────────────────────── */

.cartouche-alt {
  padding-block: var(--band);
  background: var(--pigment-ground);
}

.cartouche-alt-top {
  margin-block-end: var(--rhythm-md);
}

.cartouche-alt-roll {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rhythm-md);
}

.cartouche-alt-card {
  padding: var(--rhythm-md);
  border-top: var(--outline-heavy) solid var(--pigment-primary);
  border-radius: 0 0 var(--curve-md) var(--curve-md);
  background: var(--pigment-above);
  transition: border-color var(--dur-fast) var(--glide-exit);
}

.cartouche-alt-card:hover {
  border-color: var(--pigment-copy);
  background: var(--pigment-above);
}

.cartouche-alt-card-top {
  margin-block-end: var(--rhythm-xs);
}

.cartouche-alt-line {
  margin-bottom: 0;
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.cartouche-alt-plug {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--rhythm-sm);
  padding: var(--rhythm-md);
  border-top: var(--outline-heavy) solid var(--pigment-copy);
  border-radius: 0 0 var(--curve-md) var(--curve-md);
  background: var(--pigment-blend-b);
}

.cartouche-alt-plug-line {
  margin-bottom: 0;
  color: var(--pigment-copy);
  font-family: var(--family-head);
  font-size: var(--fs-h4);
  font-weight: var(--font-weight-medium);
}

@media (min-width: 580px) {
  .cartouche-alt-roll {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 861px) {
  .cartouche-alt-roll {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── data table: TABLE-06 ───────────────────────────────────────────── */

.turret-edge {
  padding-block: var(--band);
}

.turret-edge-caption {
  position: relative;
  margin-bottom: var(--rhythm-md);
  padding-top: var(--rhythm-sm);
  color: var(--pigment-soft-text);
  font-family: var(--family-head);
  font-size: var(--fs-h4);
  font-style: italic;
  text-align: center;
}

.turret-edge-caption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 2px;
  margin-left: -20px;
  background: var(--pigment-primary);
}

.turret-edge-scroll {
  overflow-x: auto;
}

.turret-edge-grid {
  width: 100%;
  min-width: 520px;
  font-size: var(--fs-caption);
}

.turret-edge-grid th {
  padding: var(--rhythm-xs);
  border-bottom: var(--outline-regular) solid var(--pigment-primary);
  color: var(--pigment-copy);
  font-family: var(--family-copy);
  font-size: var(--fs-caption);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-spread);
  text-align: left;
  text-transform: uppercase;
}

.turret-edge-grid td {
  padding: var(--rhythm-xs);
  border-bottom: var(--outline-fine) dashed var(--pigment-hairline);
  color: var(--pigment-soft-text);
  line-height: var(--leading-default);
  vertical-align: top;
}

.turret-edge-file:hover td {
  background: var(--pigment-above);
  color: var(--pigment-copy);
}

@media (min-width: 861px) {
  .turret-edge-grid {
    font-size: var(--fs-base);
  }
}

/* ── reviews: REV-10 ────────────────────────────────────────────────── */

.hallway-zone {
  padding-block: var(--band);
}

.hallway-zone-top {
  margin-block-end: var(--rhythm-xs);
}

.hallway-zone-avg {
  margin-bottom: var(--rhythm-md);
  color: var(--pigment-primary);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
}

.hallway-zone-slot {
  padding-block: var(--rhythm-md);
  border-bottom: var(--outline-fine) dotted var(--pigment-line-strong);
}

.hallway-zone-tag {
  margin-bottom: var(--rhythm-2xs);
}

.hallway-zone-person {
  color: var(--pigment-copy);
  font-weight: var(--font-weight-medium);
}

.hallway-zone-score {
  margin-left: var(--rhythm-2xs);
  color: var(--pigment-soft-text);
  font-size: var(--fs-caption);
}

.hallway-zone-line {
  margin-bottom: 0;
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

/* ── faq: FAQ-05 (details/summary) ──────────────────────────────────── */

.sigil-fine {
  padding-block: var(--band);
}

.sigil-fine-top {
  margin-block-end: var(--rhythm-md);
}

.sigil-fine-box {
  padding-block: var(--rhythm-sm);
  border-bottom: var(--outline-fine) solid var(--pigment-hairline);
}

.sigil-fine-ask {
  display: flex;
  align-items: flex-start;
  gap: var(--rhythm-sm);
  min-height: 44px;
  cursor: pointer;
  list-style: none;
}

.sigil-fine-ask::-webkit-details-marker {
  display: none;
}

.sigil-fine-ask::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  margin-left: auto;
  border-right: var(--outline-regular) solid var(--pigment-primary);
  border-bottom: var(--outline-regular) solid var(--pigment-primary);
  transform: rotate(45deg);
}

.sigil-fine-box[open] .sigil-fine-ask::after {
  margin-top: 12px;
  transform: rotate(225deg);
}

.sigil-fine-ask-top {
  margin: 0;
  color: var(--pigment-copy);
  font-family: var(--family-copy);
  font-size: var(--fs-h5);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
}

.sigil-fine-ask:hover .sigil-fine-ask-top {
  color: var(--pigment-primary);
}

.sigil-fine-stuff {
  padding-top: var(--rhythm-sm);
}

.sigil-fine-stuff p {
  margin-bottom: 0;
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

/* ── cta block: CTA-10 ──────────────────────────────────────────────── */

.buffet-deep {
  padding-block: var(--rhythm-xl);
  background: var(--pigment-ground);
  text-align: center;
}

.buffet-deep-quote {
  position: relative;
  max-width: 900px;
  margin: 0 auto var(--rhythm-md);
  padding-top: var(--rhythm-lg);
}

.buffet-deep-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 50%;
  color: var(--pigment-primary);
  font-family: var(--family-head);
  font-size: 72px;
  line-height: 1;
  transform: translateX(-50%);
}

.buffet-deep-quote p {
  margin: 0;
  font-family: var(--family-head);
  font-size: var(--fs-h2);
  font-style: italic;
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-compact);
}

.buffet-deep-second {
  max-width: var(--bounds-narrow);
  margin-inline: auto;
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.buffet-deep-controls {
  margin-block: var(--rhythm-md) var(--rhythm-sm);
}

.buffet-deep-fineprint {
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--pigment-soft-text);
  font-size: var(--fs-caption);
}

.buffet-deep-step {
  color: var(--pigment-primary);
  text-decoration: underline;
}

.buffet-deep-step:hover {
  background: transparent;
  color: var(--pigment-copy);
}

.buffet-deep-call {
  display: inline-flex;
  align-items: center;
  gap: var(--rhythm-xs);
  min-height: 52px;
  padding-inline: var(--rhythm-lg);
  border: 0;
  border-radius: var(--curve-sm);
  background: var(--pigment-primary);
  color: var(--pigment-on-primary);
  font-family: var(--family-head);
  font-size: var(--fs-h5);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-spread);
  text-align: center;
  text-transform: uppercase;
}

.buffet-deep-call::before {
  content: '\2192';
  order: 2;
  transition: transform var(--dur-fast) var(--glide-exit);
}

.buffet-deep-call:hover {
  background: var(--pigment-primary);
  color: var(--pigment-on-primary);
}

.buffet-deep-call:hover::before {
  transform: translateX(5px);
}

/* ── author card: AUTH-02 ───────────────────────────────────────────── */

.quai-solid {
  padding-block: var(--rhythm-lg);
  text-align: center;
}

.quai-solid-photo {
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto var(--rhythm-md);
  border-radius: var(--curve-round-full);
  object-fit: cover;
}

.quai-solid-hat {
  margin-bottom: var(--rhythm-2xs);
  color: var(--pigment-primary);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
}

.quai-solid-person {
  margin-bottom: var(--rhythm-sm);
}

.quai-solid-bio {
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: var(--rhythm-md);
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.quai-solid-roll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--rhythm-xs);
}

.quai-solid-slot {
  padding: 6px var(--rhythm-sm);
  border: var(--outline-fine) dashed var(--pigment-line-strong);
  border-radius: var(--curve-capsule);
  color: var(--pigment-soft-text);
  font-size: var(--fs-caption);
}

.quai-solid-articles {
  padding-block: var(--rhythm-lg);
}

.quai-solid-art-top {
  margin-block-end: var(--rhythm-md);
}

.quai-solid-art-roll {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rhythm-xs);
}

.quai-solid-art-step {
  display: block;
  padding: var(--rhythm-sm);
  border: var(--outline-fine) dashed var(--pigment-hairline);
  border-radius: var(--curve-sm);
  color: var(--pigment-copy);
  transition: border-color var(--dur-fast) var(--glide-exit);
}

.quai-solid-art-step:hover {
  border-color: var(--pigment-primary);
  background: var(--pigment-above);
  color: var(--pigment-primary);
}

@media (min-width: 861px) {
  .quai-solid-art-roll {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── legal: LEGAL-05 ────────────────────────────────────────────────── */

.galerie-neat {
  padding-block: var(--band);
}

.galerie-neat-second {
  max-width: var(--bounds-readable);
  margin-bottom: var(--rhythm-md);
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.galerie-neat-roll-terms {
  max-width: var(--bounds-readable);
  margin: 0;
}

.galerie-neat-term {
  position: relative;
  margin-block-start: var(--rhythm-lg);
  margin-block-end: var(--rhythm-xs);
  padding-top: var(--rhythm-sm);
  color: var(--pigment-copy);
  font-family: var(--family-head);
  font-size: var(--fs-h4);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.galerie-neat-term::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--pigment-primary);
}

.galerie-neat-def {
  margin-inline-start: 0;
  margin-block-end: var(--rhythm-md);
}

.galerie-neat-def p {
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.galerie-neat-help {
  margin-top: var(--rhythm-lg);
  padding: var(--rhythm-md);
  border: var(--outline-fine) dashed var(--pigment-line-strong);
  border-radius: var(--curve-md);
  background: var(--pigment-above);
}

.galerie-neat-top {
  margin-block-end: var(--rhythm-sm);
}

.galerie-neat-slot {
  position: relative;
  padding-left: var(--rhythm-md);
  margin-bottom: var(--rhythm-xs);
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.galerie-neat-slot::before {
  content: '';
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--pigment-primary);
}

.galerie-neat-note {
  max-width: var(--bounds-readable);
  margin-top: var(--rhythm-md);
  color: var(--pigment-soft-text);
  font-size: var(--fs-caption);
}

/* ── contact form: FORM-07 ──────────────────────────────────────────── */

.planche-premium {
  padding-block: var(--band);
}

.planche-premium-card {
  overflow: hidden;
  border-radius: var(--curve-lg);
}

.planche-premium-crest {
  height: 8px;
  background: var(--pigment-primary);
}

.planche-premium-body {
  padding: var(--rhythm-md);
  background: var(--pigment-above);
}

.planche-premium-second {
  margin-bottom: var(--rhythm-md);
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.planche-premium-entry {
  margin-bottom: var(--rhythm-md);
}

.planche-premium-badge {
  display: block;
  margin-bottom: var(--rhythm-2xs);
  color: var(--pigment-copy);
  font-size: var(--fs-caption);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
}

.planche-premium-entry input,
.planche-premium-entry textarea {
  width: 100%;
  padding: var(--rhythm-xs) 0;
  border: 0;
  border-bottom: var(--outline-regular) dashed var(--pigment-line-strong);
  background: transparent;
  color: var(--pigment-copy);
  font-family: var(--family-copy);
  font-size: var(--fs-base);
}

.planche-premium-entry input:focus,
.planche-premium-entry textarea:focus {
  border-bottom-color: var(--pigment-primary);
  outline: none;
}

.planche-premium-controls {
  margin-bottom: 0;
  text-align: center;
}

.planche-premium-tap {
  min-height: 48px;
  padding-inline: var(--rhythm-lg);
  border: var(--outline-regular) solid var(--pigment-primary);
  border-radius: var(--curve-sm);
  background: var(--pigment-primary);
  color: var(--pigment-on-primary);
  font-family: var(--family-head);
  font-size: var(--fs-h5);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
  cursor: pointer;
}

.planche-premium-tap:hover {
  background: var(--pigment-copy);
  color: var(--pigment-beacon);
}

.planche-premium-done {
  margin-top: var(--rhythm-md);
  margin-bottom: 0;
  padding: var(--rhythm-sm);
  border: var(--outline-fine) dashed var(--pigment-primary);
  border-radius: var(--curve-sm);
  color: var(--pigment-copy);
}

@media (min-width: 861px) {
  .planche-premium-body {
    padding: var(--rhythm-lg);
  }
}

/* ── error block: ERR-08 ────────────────────────────────────────────── */

.armoire-plus {
  padding-block: var(--rhythm-xl);
}

.armoire-plus-badge {
  color: var(--pigment-primary);
  font-family: var(--family-head);
  font-size: var(--fs-h2);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-spread);
}

.armoire-plus-line {
  max-width: 62ch;
  margin-block: var(--rhythm-sm) var(--rhythm-md);
  color: var(--pigment-soft-text);
  line-height: var(--leading-relaxed);
}

.armoire-plus-tap {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding-inline: var(--rhythm-md);
  border: var(--outline-regular) solid var(--pigment-primary);
  border-radius: var(--curve-sm);
  background: transparent;
  color: var(--pigment-primary);
  font-family: var(--family-head);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
}

.armoire-plus-tap:hover {
  background: var(--pigment-primary);
  color: var(--pigment-on-primary);
}

.armoire-plus-suggest {
  margin-top: var(--rhythm-lg);
  padding: var(--rhythm-md);
  border-radius: var(--curve-md);
  background: var(--pigment-above);
}

.armoire-plus-top {
  margin-block-end: var(--rhythm-sm);
}

.armoire-plus-roll {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rhythm-sm);
}

.armoire-plus-step {
  color: var(--pigment-primary);
}

.armoire-plus-step:hover {
  background: transparent;
  color: var(--pigment-copy);
  text-decoration: underline;
}

/* ── footer: FOOT-08 newspaper masthead ─────────────────────────────── */

.buttress-refined {
  padding-block: var(--rhythm-lg) var(--rhythm-md);
  background: var(--pigment-ground);
}

.buttress-refined-notice {
  margin-bottom: var(--rhythm-md);
  padding: var(--rhythm-sm);
  border-radius: var(--curve-sm);
  background: var(--pigment-sheet);
  color: var(--pigment-notice);
  font-size: var(--fs-caption);
  line-height: var(--leading-default);
}

.buttress-refined-notice-badge {
  display: inline-block;
  margin-right: var(--rhythm-2xs);
  padding: 2px 8px;
  border-radius: var(--curve-xs);
  background: var(--pigment-notice);
  color: var(--pigment-sheet);
  font-weight: var(--font-weight-heavy);
}

.buttress-refined-notice-step {
  background: var(--pigment-sheet);
  color: var(--pigment-notice);
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
}

.buttress-refined-notice-step:hover {
  background: var(--pigment-notice);
  color: var(--pigment-sheet);
}

.buttress-refined-masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rhythm-xs);
  padding-block: var(--rhythm-sm);
  border-top: var(--outline-heavy) solid var(--pigment-line-strong);
  border-bottom: var(--outline-fine) solid var(--pigment-line-strong);
  text-align: center;
}

.buttress-refined-logo {
  display: inline-flex;
}

.buttress-refined-logo-shot {
  display: block;
  width: auto;
  height: 54px;
}

.buttress-refined-issue {
  margin-bottom: 0;
  color: var(--pigment-soft-text);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-spread);
  text-transform: uppercase;
}

.buttress-refined-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rhythm-md);
  padding-block: var(--rhythm-md);
}

.buttress-refined-top {
  margin-block-end: var(--rhythm-xs);
  color: var(--pigment-copy);
  font-family: var(--family-head);
  font-size: var(--fs-h4);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.buttress-refined-slot {
  margin-bottom: var(--rhythm-2xs);
}

.buttress-refined-step {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--pigment-soft-text);
  font-size: var(--fs-caption);
}

.buttress-refined-step:hover {
  background: transparent;
  color: var(--pigment-primary);
  text-decoration: underline;
}

.buttress-refined-bottom {
  padding-top: var(--rhythm-sm);
  border-top: var(--outline-fine) dashed var(--pigment-hairline);
  color: var(--pigment-soft-text);
  font-size: var(--fs-caption);
  text-align: center;
}

@media (min-width: 580px) {
  .buttress-refined-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 861px) {
  .buttress-refined-masthead {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .buttress-refined-logo-shot {
    height: 66px;
  }
}

/* ── cookie banner: COOK-02 full-width bottom strip ─────────────────── */

.dossier-edge {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  padding-block: var(--rhythm-sm);
  border-top: var(--outline-fine) solid rgba(255, 255, 255, 0.08);
  background: var(--pigment-primary);
}

.dossier-edge[hidden] {
  display: none;
}

.dossier-edge-hold {
  display: flex;
  flex-direction: column;
  gap: var(--rhythm-xs);
  align-items: stretch;
  justify-content: space-between;
}

.dossier-edge-copy {
  flex: 1 1 auto;
  margin-bottom: 0;
  color: #14260a;
  font-size: var(--fs-caption);
  line-height: 1.35;
}

.dossier-edge-controls {
  display: flex;
  flex-shrink: 0;
  gap: var(--rhythm-xs);
}

.dossier-edge-ok,
.dossier-edge-no {
  min-height: 36px;
  padding-inline: var(--rhythm-sm);
  border-radius: var(--curve-xs);
  font-family: var(--family-copy);
  font-size: 12px;
  font-weight: var(--font-weight-heavy);
  cursor: pointer;
}

.dossier-edge-ok {
  border: var(--outline-regular) solid var(--pigment-on-primary);
  background: var(--pigment-on-primary);
  color: var(--pigment-sheet);
}

.dossier-edge-ok:hover {
  background: var(--pigment-sheet);
  color: var(--pigment-on-primary);
}

.dossier-edge-no {
  border: var(--outline-regular) solid var(--pigment-on-primary);
  background: transparent;
  color: var(--pigment-on-primary);
}

.dossier-edge-no:hover {
  background: var(--pigment-on-primary);
  color: var(--pigment-sheet);
}

@media (min-width: 720px) {
  .dossier-edge-hold {
    flex-direction: row;
    align-items: center;
    gap: var(--rhythm-md);
  }
}

@media (max-width: 720px) {
  .dossier-edge,
  .dossier-edge-hold {
    gap: 8px;
    font-size: 13px;
    line-height: 1.35;
  }
}

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

  [data-rise] {
    opacity: 1;
    transform: none;
  }
}
.keystone-jump{display:inline-flex;align-items:center;justify-content:center;padding:0 var(--rhythm-lg);min-height:52px;border-radius:var(--curve-sm);border:0;font-size:var(--fs-h5);font-weight:var(--font-weight-heavy);letter-spacing:var(--ls-spread)}
.keystone-jump{position:relative;
  background:#0284C7;color:#000000;text-decoration:none;font-family:var(--font-weight-book);text-transform:uppercase;
  transition:background 0.14s ease-out,color 0.14s ease-out,transform 0.14s ease-out;}
.keystone-jump.keystone-jump{color:#000000;text-decoration:none;font-family:var(--font-weight-book);}
.keystone-jump:hover{background:#0369A1;color:#FFFFFF;animation:none}
.keystone-jump.keystone-jump:hover{color:#FFFFFF;text-decoration:none}
.keystone-jump:hover::after{animation:none}
.keystone-jump:active{background:#075985;color:#FFFFFF}
.keystone-jump:focus-visible{outline:3px solid #000000;outline-offset:3px}
@keyframes keystone-sweep{0%{box-shadow:0 0 0 0 currentColor;opacity:.55}70%,100%{box-shadow:0 0 0 3px transparent;opacity:0}}
.keystone-jump::after{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;animation:keystone-sweep 1.9s cubic-bezier(.55,.10,.55,1) infinite}
@media (prefers-reduced-motion:reduce){.keystone-jump,.keystone-jump::after{animation:none!important;transition:none!important}}


.frame-neat-panel-map {
  display: block;
}

.paroi-grand-figure-wide {
  max-width: 620px;
}

.sigil-fine-roll,
.hallway-zone-roll,
.galerie-neat-roll,
.buttress-refined-roll {
  display: block;
}

.sigil-fine-slot {
  display: block;
}

.armoire-plus-slot {
  display: inline-flex;
}

.quai-solid-art-slot {
  display: block;
}

.buttress-refined-track {
  min-width: 0;
}

.planche-premium-shape {
  display: block;
}

.planche-premium-shape[hidden] {
  display: none;
}

.portico-fluid-hat {
  color: var(--pigment-soft-text);
}

.hallway-zone-plug,
.sigil-fine-plug {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rhythm-sm);
  margin-block: var(--rhythm-md);
  padding: var(--rhythm-md);
  border: var(--outline-fine) dashed var(--pigment-primary);
  border-radius: var(--curve-md);
  background: var(--pigment-above);
}

.hallway-zone-plug-line,
.sigil-fine-plug-line {
  margin-bottom: 0;
  color: var(--pigment-copy);
  font-family: var(--family-head);
  font-size: var(--fs-h4);
  font-weight: var(--font-weight-medium);
}

@media (max-width: 873px) {
  .frame-neat-map,
  .frame-neat-roll,
  .frame-neat-step,
  .frame-neat-more { display: none !important; }
  .frame-neat-toggle { display: flex !important; }
}
