﻿:root {
  --ink: #141311;
  --brown-black: #221d19;
  --ivory: #f3eee5;
  --ivory-light: #f8f4ee;
  --aged-gold: #b28a4a;
  --brick: #7a4a37;
  --petrol: #2f4c53;
  --ink-rgb: 20 19 17;
  --brown-black-rgb: 34 29 25;
  --ivory-rgb: 243 238 229;
  --ivory-light-rgb: 248 244 238;
  --aged-gold-rgb: 178 138 74;
  --brick-rgb: 122 74 55;
  --petrol-rgb: 47 76 83;
  --hairline: rgba(34, 29, 25, 0.1);
  --hairline-strong: rgba(34, 29, 25, 0.18);
  --paper-wash: rgba(248, 244, 238, 0.46);
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --space-2xs: clamp(0.35rem, 0.5vw, 0.5rem);
  --space-xs: clamp(0.55rem, 0.75vw, 0.75rem);
  --space-sm: clamp(0.85rem, 1vw, 1rem);
  --space-md: clamp(1.15rem, 1.8vw, 1.6rem);
  --space-lg: clamp(1.75rem, 3vw, 2.6rem);
  --space-xl: clamp(2.5rem, 5vw, 4.5rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-paper: 0 18px 50px rgb(var(--ink-rgb) / 0.1);
  --shadow-panel: 0 24px 70px rgb(var(--ink-rgb) / 0.14);
  --shadow-depth: 0 34px 100px rgb(var(--ink-rgb) / 0.22);
  --shadow-gold-line: inset 0 1px 0 rgb(var(--ivory-light-rgb) / 0.36), 0 0 0 1px rgb(var(--aged-gold-rgb) / 0.14);
  --transition-fast: 160ms ease;
  --transition-premium: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --reading-width: 74ch;
  --editorial-width: 1180px;
  --cinematic-width: 1480px;
  --image-street: url("../images/rue-premium.jpg");
  --image-boutique: url("../images/boutique-premium.jpg");
  --image-grimoire: url("../images/grimoire-premium.jpg");
  --image-archive: url("../images/archives-page-interne-premium.jpg");
  --image-article: url("../images/article-long-premium.jpg");
  --image-recipe: url("../images/recette-premium.jpg");
  --image-note: url("../images/note-pensee-premium.jpg");
  --image-cuisine: url("../images/cuisine-premium.jpg");
  --image-sante: url("../images/sante-premium.jpg");
  --image-cats: url("../images/sethi-premium.jpg");
  --image-culture: url("../images/culture-premium.jpg");
  --image-observatoire: url("../images/observatoire-premium.jpg");
  --image-laboratoire: url("../images/laboratoire-premium.jpg");
  --image-pensees: url("../images/pensee-premium.jpg");
}

/* Phase 3 value pass: design-system normalization and perceptible premium depth. */
.button-link,
.archive-hero__cta,
.entry-card__read,
.rubric-link,
.search-form button,
.comment-form .submit,
.form-submit .submit {
  border-radius: var(--radius-pill);
}

.site-nav,
.maudimi-rubric-nav,
.newsletter-panel {
  border-radius: var(--radius-xl);
}

.rubric-card,
.entry-card__link,
.entry-card,
.archive-hero__aside,
.method-card,
.article-retention,
.article-cta,
.related-section,
.comment-body,
.reading-aside {
  border-radius: var(--radius-lg);
}

.entry-card__media,
.article-cover,
.media-panel,
.comment-form input,
.comment-form textarea,
.search-form input {
  border-radius: var(--radius-md);
}

.rubric-card,
.entry-card__link,
.method-card,
.archive-hero__aside,
.article-retention,
.newsletter-panel {
  box-shadow: var(--shadow-paper);
  transition:
    transform var(--transition-premium),
    box-shadow var(--transition-premium),
    border-color var(--transition-fast),
    background var(--transition-premium);
}

.archive-hero__aside,
.article-retention,
.newsletter-panel {
  box-shadow: var(--shadow-panel), var(--shadow-gold-line);
}

.rubric-card::after,
.entry-card__link::after,
.method-card::after,
.archive-hero__aside::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgb(var(--ivory-light-rgb) / 0.18), transparent 34%),
    radial-gradient(circle at 16% 12%, rgb(var(--aged-gold-rgb) / 0.12), transparent 24rem);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-premium);
}

.rubric-card,
.entry-card__link,
.method-card,
.archive-hero__aside {
  position: relative;
  overflow: hidden;
}

.rubric-card > *,
.entry-card__link > *,
.method-card > *,
.archive-hero__aside > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .maudimi-js-active .rubric-card:hover,
  .maudimi-js-active .rubric-card:focus-visible,
  .maudimi-js-active .entry-card__link:hover,
  .maudimi-js-active .entry-card__link:focus-visible,
  .maudimi-js-active .method-card:hover,
  .maudimi-js-active .method-card:focus-within {
    transform: translate3d(0, -5px, 0) rotateX(0.55deg);
    box-shadow: var(--shadow-depth);
  }

  .maudimi-js-active .rubric-card:hover::after,
  .maudimi-js-active .rubric-card:focus-visible::after,
  .maudimi-js-active .entry-card__link:hover::after,
  .maudimi-js-active .entry-card__link:focus-visible::after,
  .maudimi-js-active .method-card:hover::after,
  .maudimi-js-active .method-card:focus-within::after,
  .maudimi-js-active .archive-hero__aside:hover::after {
    opacity: 1;
  }
}

.editorial-body .archive-title,
.editorial-body .article-title {
  letter-spacing: 0;
  text-wrap: balance;
}

.editorial-body .prose {
  max-width: var(--reading-width);
}

.editorial-body .archive-hero__aside,
.article-retention {
  backdrop-filter: blur(10px);
}

@media (prefers-reduced-motion: reduce) {
  .rubric-card,
  .entry-card__link,
  .method-card,
  .archive-hero__aside,
  .article-retention,
  .newsletter-panel {
    transition-duration: 1ms !important;
  }

  .maudimi-js-active .rubric-card:hover,
  .maudimi-js-active .entry-card__link:hover,
  .maudimi-js-active .method-card:hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  .rubric-card,
  .entry-card__link,
  .entry-card,
  .archive-hero__aside,
  .method-card,
  .article-retention,
  .newsletter-panel {
    border-radius: var(--radius-md);
    box-shadow: 0 14px 40px rgb(var(--ink-rgb) / 0.1);
  }

  .editorial-body .archive-hero__aside,
  .article-retention {
    backdrop-filter: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory-light);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(248, 244, 238, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 244, 238, 0.014) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.26;
}

body.no-gsap,
body.reduced-motion {
  background: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--aged-gold);
  outline-offset: 5px;
}

::selection {
  background: var(--brick);
  color: var(--ivory-light);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ivory);
  color: var(--brown-black);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  background: linear-gradient(180deg, rgba(20, 19, 17, 0.72), rgba(20, 19, 17, 0.34) 68%, transparent);
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  pointer-events: auto;
}

.brand {
  color: var(--ivory-light);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand .custom-logo {
  width: auto;
  max-height: 2.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 2.4rem);
  color: rgba(248, 244, 238, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  row-gap: 0.55rem;
}

.nav-links--global {
  gap: clamp(0.58rem, 1.25vw, 1.18rem);
  font-size: 0.74rem;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--aged-gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ivory-light);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.skip-intro {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 120;
  border: 1px solid rgba(178, 138, 74, 0.46);
  border-radius: 999px;
  background: rgba(20, 19, 17, 0.86);
  color: var(--ivory-light);
  cursor: pointer;
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0;
  padding: 0.9rem 1.05rem;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.skip-intro:hover,
.skip-intro:focus-visible {
  border-color: var(--aged-gold);
  background: var(--brown-black);
  color: var(--aged-gold);
  transform: translateY(-2px);
}

.skip-intro.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
}

.maudimi-rubric-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: clamp(1rem, 2.5vw, 1.6rem);
  margin-bottom: clamp(1.6rem, 4vw, 2.8rem);
  border: 1px solid rgba(178, 138, 74, 0.18);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.86), rgba(243, 238, 229, 0.94)),
    var(--ivory);
  color: var(--brown-black);
  padding: 0.75rem;
  box-shadow: 0 22px 58px rgba(20, 19, 17, 0.08);
}

.maudimi-rubric-nav__label {
  color: rgba(34, 29, 25, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  padding: 0 0.45rem;
  text-transform: uppercase;
}

.maudimi-rubric-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.rubric-link {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  border: 1px solid rgba(122, 74, 55, 0.22);
  border-radius: 999px;
  background: rgba(248, 244, 238, 0.62);
  color: rgba(34, 29, 25, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.95rem;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.rubric-link:hover,
.rubric-link:focus-visible,
.rubric-link.is-active {
  border-color: var(--brick);
  background: var(--brick);
  color: var(--ivory-light);
  transform: translateY(-1px);
}

.maudimi-rubric-nav--article {
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.story-experience {
  position: relative;
  overflow: visible;
  background: var(--ink);
}

.story-spacer {
  display: none;
}

.story-frame {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(6.5rem, 10vh, 8rem) clamp(1rem, 4vw, 4.5rem) clamp(2rem, 7vh, 4.5rem);
  isolation: isolate;
}

.scene-media,
.scene-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.scene-media {
  background-position: center;
  background-size: cover;
  will-change: transform, filter, opacity;
}

.scene-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 650ms ease;
}

.scene-video.is-loaded {
  opacity: 1;
}

.scene-veil {
  z-index: -1;
  pointer-events: none;
}

.scene-folio {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 4vh, 2rem);
  z-index: 2;
  margin: 0;
  color: rgba(248, 244, 238, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.story-frame--street {
  align-items: end;
  background: var(--ink);
}

.scene-media--street {
  background-image: var(--image-street);
  filter: grayscale(1) contrast(1.08) brightness(0.5);
  transform-origin: 58% 46%;
}

.story-frame--street .scene-veil {
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.9), rgba(20, 19, 17, 0.38) 48%, rgba(20, 19, 17, 0.84)),
    linear-gradient(180deg, rgba(20, 19, 17, 0.24), rgba(20, 19, 17, 0.9));
}

.story-frame--boutique {
  align-items: end;
  background: var(--brown-black);
}

.scene-media--boutique {
  background-image: var(--image-boutique);
  filter: saturate(0.9) brightness(0.78);
  transform-origin: center;
}

.scene-veil--warm {
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.08), rgba(20, 19, 17, 0.62)),
    linear-gradient(90deg, rgba(20, 19, 17, 0.46), rgba(20, 19, 17, 0.06) 64%);
}

.story-frame--hub {
  align-items: center;
  background: var(--ink);
  color: var(--ivory-light);
}

.scene-media--grimoire {
  background-image: var(--image-grimoire);
  filter: saturate(0.72) brightness(0.54);
  opacity: 0.58;
  transform-origin: center;
}

.scene-veil--paper {
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.34), rgba(20, 19, 17, 0.72)),
    radial-gradient(circle at 50% 46%, rgba(243, 238, 229, 0.12), transparent 38rem);
}

.frame-inner,
.hub-layout {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.frame-inner--hero {
  display: flex;
  justify-content: flex-start;
}

.frame-inner--threshold {
  display: flex;
  justify-content: flex-end;
}

.editorial-panel,
.hub-manifesto {
  width: min(100%, 700px);
  border-left: 1px solid rgba(178, 138, 74, 0.46);
  background: rgba(243, 238, 229, 0.9);
  color: var(--brown-black);
  padding: clamp(1.35rem, 4vw, 2.65rem);
}

.editorial-panel--hero {
  max-width: 720px;
}

.editorial-panel--threshold {
  max-width: 520px;
  margin-bottom: clamp(1rem, 6vh, 3rem);
  background: rgba(243, 238, 229, 0.82);
  backdrop-filter: blur(10px);
}

.section-kicker {
  margin: 0 0 1.1rem;
  color: var(--brick);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.45rem;
  color: var(--brown-black);
  font-size: 7rem;
  line-height: 0.9;
}

h2 {
  margin-bottom: 1.35rem;
  color: var(--brown-black);
  font-size: 4.7rem;
  line-height: 0.96;
}

h3 {
  margin-bottom: 0.5rem;
  color: inherit;
  font-size: 2.75rem;
  line-height: 0.98;
}

.lede,
.editorial-panel p,
.hub-manifesto p {
  max-width: 68ch;
  margin-bottom: 0;
  color: rgba(34, 29, 25, 0.86);
  font-size: 1.04rem;
  line-height: 1.84;
}

.hub-layout {
  display: grid;
  min-height: min(76svh, 720px);
  place-items: center;
}

.hub-manifesto,
.rubric-nav {
  grid-area: 1 / 1;
}

.hub-manifesto {
  max-width: 700px;
  background: rgba(243, 238, 229, 0.93);
}

.rubric-nav {
  display: grid;
  grid-template-columns: minmax(17rem, 0.92fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-flow: dense;
  width: min(100%, 1140px);
  min-height: min(70svh, 650px);
  border: 1px solid rgba(243, 238, 229, 0.13);
  background: rgba(20, 19, 17, 0.58);
  color: var(--ivory-light);
  backdrop-filter: blur(8px);
}

.rubric-heading {
  grid-row: span 3;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(248, 244, 238, 0.14);
  padding: clamp(1.35rem, 3vw, 2.35rem);
}

.rubric-heading .section-kicker {
  color: var(--aged-gold);
}

.rubric-heading h2 {
  max-width: 9ch;
  margin: auto 0 1.2rem;
  color: var(--ivory-light);
  font-size: 4rem;
}

.rubric-heading p:not(.section-kicker) {
  max-width: 30ch;
  margin: 0;
  color: rgba(248, 244, 238, 0.68);
  font-size: 0.95rem;
  line-height: 1.72;
}

.rubric-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 12rem;
  border-left: 1px solid rgba(248, 244, 238, 0.1);
  border-top: 1px solid rgba(248, 244, 238, 0.1);
  background: rgba(20, 19, 17, 0.16);
  color: var(--ivory-light);
  padding: clamp(1.1rem, 2.4vw, 1.75rem);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.rubric-card--feature,
.rubric-card--size-feature {
  grid-row: span 2;
  min-height: 24rem;
  background: rgba(243, 238, 229, 0.06);
}

.rubric-card--size-wide {
  grid-column: span 2;
  min-height: 14rem;
}

.rubric-card--size-wide h3 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 4.1vw, 4rem);
}

.rubric-card h3 {
  overflow-wrap: normal;
  text-wrap: balance;
}

.rubric-card--observatoire h3 {
  max-width: none;
  font-size: clamp(2.45rem, 3.6vw, 3.7rem);
  white-space: nowrap;
}

.rubric-card--size-quiet {
  min-height: 10.5rem;
  background: rgba(20, 19, 17, 0.1);
}

.rubric-card--place-left {
  grid-column: 2;
}

.rubric-card--place-right {
  grid-column: 3;
}

.rubric-card--place-full {
  grid-column: 2 / span 2;
}

.rubric-card--character {
  background:
    linear-gradient(180deg, rgba(178, 138, 74, 0.14), rgba(20, 19, 17, 0.18));
}

.rubric-card--world {
  background:
    linear-gradient(180deg, rgba(122, 74, 55, 0.16), rgba(20, 19, 17, 0.18));
}

.rubric-card:hover,
.rubric-card:focus-visible {
  background: rgba(34, 29, 25, 0.58);
  color: var(--aged-gold);
  transform: translateY(-1px);
}

.rubric-number {
  color: rgba(178, 138, 74, 0.9);
  font-family: var(--font-title);
  font-size: 1.15rem;
  line-height: 1;
}

.rubric-body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-top: 2rem;
}

.rubric-card--feature h3,
.rubric-card--size-feature h3 {
  font-size: 4.9rem;
}

.rubric-card p {
  max-width: 34ch;
  margin: 0;
  color: rgba(248, 244, 238, 0.7);
  font-size: 0.95rem;
  line-height: 1.68;
}

body.is-cinematic .story-experience {
  min-height: 320vh;
}

body.is-cinematic .story-spacer {
  display: block;
  height: 320vh;
  pointer-events: none;
}

body.is-cinematic .story-frame {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  opacity: 0;
  visibility: hidden;
}

body.is-cinematic #hero-rue {
  z-index: 10;
}

body.is-cinematic #boutique-interieur {
  z-index: 20;
}

body.is-cinematic #hub-grimoire {
  z-index: 30;
}

body.no-gsap .story-frame,
body.reduced-motion .story-frame {
  opacity: 1;
  visibility: visible;
}

body.no-gsap .hub-layout,
body.reduced-motion .hub-layout {
  display: block;
}

body.no-gsap .hub-manifesto,
body.reduced-motion .hub-manifesto {
  margin: 0 auto 2rem;
}

body.no-gsap .hub-manifesto,
body.no-gsap .rubric-nav,
body.reduced-motion .hub-manifesto,
body.reduced-motion .rubric-nav {
  grid-area: auto;
}

body.no-gsap .story-spacer,
body.reduced-motion .story-spacer {
  display: none;
}

@media (min-width: 1500px) {
  body {
    font-size: 18px;
  }

  .site-nav,
  .editorial-shell,
  .frame-inner,
  .hub-layout {
    width: min(100%, 1400px);
  }

  .narrow-shell {
    width: min(100% - 4rem, 840px);
  }

  .page-hero__inner,
  .article-hero__inner {
    gap: clamp(4rem, 8vw, 9rem);
  }

  .story-frame {
    padding: clamp(7rem, 10vh, 9rem) clamp(2rem, 5vw, 6rem) clamp(3rem, 8vh, 5.5rem);
  }

  .editorial-panel--hero {
    max-width: 780px;
  }

  .editorial-panel--threshold {
    max-width: 560px;
  }

  h1 {
    font-size: 7.8rem;
  }

  h2 {
    font-size: 5.25rem;
  }

  .rubric-nav {
    width: min(100%, 1320px);
  }

  .rubric-heading h2 {
    font-size: 4.55rem;
  }

  .rubric-card--feature h3,
  .rubric-card--size-feature h3 {
    font-size: 5.45rem;
  }
}

@media (min-width: 2100px) {
  .site-nav,
  .editorial-shell,
  .frame-inner,
  .hub-layout {
    width: min(100%, 1540px);
  }

  .narrow-shell {
    width: min(100% - 5rem, 880px);
  }

  .rubric-nav {
    width: min(100%, 1480px);
    min-height: min(68svh, 760px);
  }

  .editorial-panel,
  .hub-manifesto {
    padding: 3rem;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 4rem;
  }

  h3,
  .rubric-card--feature h3,
  .rubric-card--size-feature h3 {
    font-size: 2.7rem;
  }

  .rubric-nav {
    grid-template-columns: minmax(15rem, 0.86fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-nav {
    align-items: flex-start;
  }

  .nav-links {
    max-width: 72%;
    gap: 0.65rem 1rem;
    font-size: 0.76rem;
  }

  .story-frame {
    padding-right: clamp(1.25rem, 3vw, 2.5rem);
    padding-left: clamp(1.25rem, 3vw, 2.5rem);
  }

  .rubric-nav {
    grid-template-columns: minmax(14rem, 0.82fr) minmax(0, 1fr);
    min-height: min(76svh, 700px);
  }

  .rubric-heading {
    grid-row: span 4;
  }

  .rubric-heading h2 {
    font-size: 3.35rem;
  }

  .rubric-card {
    min-height: 10.8rem;
  }

  .rubric-card--feature,
  .rubric-card--size-feature {
    min-height: 21.6rem;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .story-frame {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .editorial-panel,
  .hub-manifesto {
    padding: 1.45rem 1.75rem;
  }

  h1 {
    font-size: 5.4rem;
  }

  h2,
  .rubric-heading h2 {
    font-size: 3.45rem;
  }

  .rubric-nav {
    min-height: 78svh;
  }

  .rubric-card,
  .rubric-card--feature,
  .rubric-card--size-feature {
    min-height: 9.4rem;
  }

  .rubric-body {
    margin-top: 1.1rem;
  }
}

@media (max-width: 900px) {
  .scene-video {
    display: none;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    background: rgba(20, 19, 17, 0.86);
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
  }

  .brand {
    font-size: 1.72rem;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.72rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    display: inline-flex;
    min-height: 2.4rem;
    align-items: center;
    border: 1px solid rgba(248, 244, 238, 0.13);
    border-radius: 999px;
    background: rgba(248, 244, 238, 0.05);
    padding: 0 0.82rem;
    white-space: nowrap;
  }

  .story-frame {
    display: flex;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem 1rem 3rem;
  }

  .story-frame--street {
    min-height: 100svh;
  }

  .story-frame--boutique {
    min-height: 90svh;
  }

  .story-frame--hub {
    justify-content: flex-start;
    padding-bottom: 4rem;
  }

  .scene-folio {
    display: none;
  }

  .frame-inner,
  .hub-layout {
    width: 100%;
  }

  .frame-inner--hero,
  .frame-inner--threshold {
    display: block;
  }

  .editorial-panel,
  .hub-manifesto {
    width: 100%;
    padding: 1.25rem;
  }

  .editorial-panel--threshold {
    max-width: none;
    margin-bottom: 0;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  h3,
  .rubric-card--feature h3,
  .rubric-card--size-feature h3 {
    font-size: 2.35rem;
  }

  .lede,
  .editorial-panel p,
  .hub-manifesto p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .hub-layout {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 2rem;
  }

  .hub-manifesto,
  .rubric-nav {
    grid-area: auto;
  }

  .rubric-nav {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    background: rgba(20, 19, 17, 0.72);
  }

  .rubric-heading {
    grid-row: auto;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 244, 238, 0.14);
    padding: 1.25rem;
  }

  .rubric-heading h2 {
    max-width: none;
    margin: 0 0 1rem;
    font-size: 3rem;
  }

  .rubric-heading p:not(.section-kicker) {
    max-width: 62ch;
  }

  .rubric-card,
  .rubric-card--feature,
  .rubric-card--size-feature,
  .rubric-card--size-wide,
  .rubric-card--place-left,
  .rubric-card--place-right,
  .rubric-card--place-full {
    grid-column: auto;
    min-height: auto;
    padding: 1.25rem;
  }

  .rubric-body {
    margin-top: 1.3rem;
  }

  .scene-media--street {
    background-position: 55% center;
  }

  .scene-media--boutique {
    background-position: 54% center;
  }

  .scene-media--grimoire {
    background-position: 50% center;
  }

  .scene-veil--paper {
    background: rgba(20, 19, 17, 0.66);
  }

  .skip-intro {
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    max-width: calc(100% - 1.5rem);
    padding: 0.82rem 0.95rem;
  }
}

@media (max-width: 520px) {
  .story-frame {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .rubric-heading h2,
  h3,
  .rubric-card--feature h3,
  .rubric-card--size-feature h3,
  .rubric-card--size-wide h3 {
    font-size: 2.15rem;
  }

  .rubric-card--observatoire h3 {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-video {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Editorial system */
.editorial-body {
  background: var(--ivory);
  color: var(--brown-black);
  color-scheme: light;
}

.editorial-body .site-header {
  border-bottom: 1px solid rgba(34, 29, 25, 0.08);
  background: rgba(243, 238, 229, 0.86);
  backdrop-filter: blur(18px);
}

.editorial-body .brand {
  color: var(--brown-black);
}

.editorial-body .nav-links {
  max-width: 760px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(34, 29, 25, 0.62);
}

.editorial-body .nav-links a:hover,
.editorial-body .nav-links a:focus-visible,
.editorial-body .nav-links a[aria-current="page"] {
  color: var(--brown-black);
}

.editorial-main {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 8%, rgba(178, 138, 74, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(248, 244, 238, 0.74), rgba(243, 238, 229, 1) 34rem),
    var(--ivory);
}

.editorial-shell {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.narrow-shell {
  width: min(100% - 2rem, 780px);
  margin: 0 auto;
}

.page-hero {
  padding: clamp(9rem, 18vw, 14rem) 0 clamp(4.5rem, 10vw, 8rem);
  border-bottom: 1px solid var(--hairline);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(16rem, 0.42fr);
  gap: clamp(2.4rem, 8vw, 8rem);
  align-items: end;
}

.page-kicker,
.content-label,
.article-category {
  margin: 0 0 1rem;
  color: var(--brick);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-title,
.article-title,
.note-title {
  max-width: 11ch;
  margin: 0;
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(4.5rem, 10.5vw, 9.2rem);
  font-weight: 600;
  line-height: 0.9;
}

.page-intro,
.article-deck,
.about-lede {
  max-width: 68ch;
  margin: 0;
  color: rgba(34, 29, 25, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.82;
}

.page-hero__aside {
  border-left: 1px solid rgba(178, 138, 74, 0.36);
  padding-left: clamp(1.2rem, 3vw, 2.4rem);
}

.page-hero__aside p {
  margin: 0;
  color: rgba(34, 29, 25, 0.66);
  font-size: 0.95rem;
  line-height: 1.72;
}

.page-hero__aside .page-intro,
.page-hero__aside .about-lede {
  color: rgba(34, 29, 25, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.82;
}

.theme-cuisine {
  --theme-accent: var(--brick);
}

.theme-sante {
  --theme-accent: var(--petrol);
}

.theme-culture {
  --theme-accent: var(--aged-gold);
}

.theme-laboratoire {
  --theme-accent: var(--brown-black);
}

.theme-pensees {
  --theme-accent: var(--brick);
}

.theme-cats {
  --theme-accent: var(--aged-gold);
}

.theme-observatoire {
  --theme-accent: var(--brick);
}

.content-section {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--hairline);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.4rem, 6vw, 4.6rem);
}

.section-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--brown-black);
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.section-heading p {
  max-width: 34ch;
  margin: 0;
  color: rgba(34, 29, 25, 0.66);
  font-size: 0.95rem;
  line-height: 1.72;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 31rem;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline);
}

.featured-story__media {
  min-height: 28rem;
}

.featured-story__body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(248, 244, 238, 0.38);
}

.featured-story h3 {
  max-width: 10ch;
  margin-bottom: 1rem;
  color: var(--brown-black);
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.featured-story p {
  max-width: 56ch;
  margin: 0 0 1.5rem;
  color: rgba(34, 29, 25, 0.74);
}

.text-link {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--brown-black);
}

.media-panel {
  position: relative;
  overflow: hidden;
  background: var(--brown-black);
  isolation: isolate;
}

.media-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  content: "";
}

.media-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.08), rgba(20, 19, 17, 0.42)),
    linear-gradient(90deg, rgba(20, 19, 17, 0.18), transparent 58%);
  content: "";
}

.media-panel--street::before {
  background-image: var(--image-street);
  filter: grayscale(1) brightness(0.62);
}

.media-panel--boutique::before {
  background-image: var(--image-boutique);
  filter: saturate(0.86) brightness(0.82);
}

.media-panel--grimoire::before {
  background-image: var(--image-grimoire);
  filter: saturate(0.7) brightness(0.7);
}

.media-panel--archive::before,
.media-panel--article::before {
  background-image: var(--image-article);
  filter: saturate(0.72) brightness(0.72);
}

.media-panel--recipe::before,
.media-panel--cuisine::before {
  background-image: var(--image-cuisine);
  filter: saturate(0.9) brightness(0.78);
}

.media-panel--sante::before {
  background-image: var(--image-sante);
  filter: saturate(0.78) brightness(0.72);
}

.media-panel--cats::before {
  background-image: var(--image-cats);
  filter: saturate(0.78) brightness(0.74);
}

.media-panel--culture::before {
  background-image: var(--image-culture);
  filter: saturate(0.76) brightness(0.7);
}

.media-panel--observatoire::before {
  background-image: var(--image-observatoire);
  filter: saturate(0.7) brightness(0.68);
}

.media-panel--laboratoire::before {
  background-image: var(--image-laboratoire);
  filter: saturate(0.6) brightness(0.66);
}

.media-panel--note::before,
.media-panel--pensees::before {
  background-image: var(--image-pensees);
  filter: saturate(0.58) brightness(0.76);
}

.media-panel--paper {
  background:
    linear-gradient(135deg, rgba(178, 138, 74, 0.16), transparent 46%),
    var(--ivory-light);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(34, 29, 25, 0.16);
  border-left: 1px solid rgba(34, 29, 25, 0.12);
}

.entry-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(248, 244, 238, 0.28);
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.entry-card:hover,
.entry-card:focus-visible {
  background: rgba(248, 244, 238, 0.58);
  color: var(--brick);
  transform: translateY(-1px);
}

.entry-card__meta,
.article-meta,
.recipe-facts,
.note-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: rgba(34, 29, 25, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-meta,
.note-meta {
  margin: 1.5rem 0 0;
}

.entry-card h3 {
  margin: 2rem 0 0.85rem;
  color: inherit;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.entry-card p {
  margin: 0;
  color: rgba(34, 29, 25, 0.7);
  font-size: 0.95rem;
  line-height: 1.68;
}

.archive-list {
  border-top: 1px solid var(--hairline-strong);
}

.archive-item {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: baseline;
  border-bottom: 1px solid var(--hairline);
  padding: 1.55rem 0;
}

.archive-item span,
.archive-item time {
  color: rgba(34, 29, 25, 0.54);
  font-size: 0.78rem;
  font-weight: 700;
}

.archive-item h3 {
  margin: 0;
  color: var(--brown-black);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.archive-item p {
  max-width: 62ch;
  margin: 0.35rem 0 0;
  color: rgba(34, 29, 25, 0.66);
  font-size: 0.95rem;
}

.article-hero {
  padding: clamp(9rem, 17vw, 13rem) 0 clamp(3.5rem, 8vw, 6rem);
}

.article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(18rem, 0.42fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: end;
}

.article-title {
  max-width: 13ch;
  margin-bottom: 1.4rem;
}

.article-cover {
  min-height: clamp(24rem, 46vw, 40rem);
  margin: 0;
}

.article-cover figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 24rem;
  margin: 0;
  color: rgba(248, 244, 238, 0.72);
  font-size: 0.78rem;
}

.reading-layout {
  display: grid;
  grid-template-columns: minmax(10rem, 0.22fr) minmax(0, 700px);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.reading-aside {
  position: sticky;
  top: 6.5rem;
  border-top: 1px solid rgba(178, 138, 74, 0.5);
  padding-top: 1rem;
  color: rgba(34, 29, 25, 0.6);
  font-size: 0.85rem;
}

.reading-aside p {
  margin: 0 0 1rem;
}

.prose {
  color: var(--brown-black);
  font-size: 1.07rem;
  line-height: 1.9;
}

.prose > * {
  margin-top: 0;
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 1.7rem;
}

.prose h2 {
  margin: 3rem 0 1rem;
  color: var(--brown-black);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
}

.prose h3 {
  margin: 2.2rem 0 0.8rem;
  color: var(--brown-black);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.prose blockquote,
.pullquote {
  margin: 2.6rem 0;
  border-left: 1px solid var(--aged-gold);
  padding-left: clamp(1rem, 3vw, 2rem);
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.note-box,
.memory-box,
.takeaway-box {
  margin: clamp(2.6rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  padding: clamp(1.2rem, 3vw, 1.9rem) 0;
}

.note-box p,
.memory-box p,
.takeaway-box p {
  margin-bottom: 0;
}

.article-pagination,
.related-section {
  border-top: 1px solid rgba(34, 29, 25, 0.14);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 2.5rem);
  background: transparent;
}

.article-pagination a {
  display: block;
  border-top: 1px solid var(--hairline);
  background: transparent;
  padding: clamp(1.25rem, 3vw, 2rem) 0 0;
}

.article-pagination span {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(34, 29, 25, 0.54);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-pagination strong {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.05;
}

.recipe-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: rgba(34, 29, 25, 0.14);
}

.recipe-summary div {
  background: rgba(248, 244, 238, 0.82);
  padding: 1rem;
}

.recipe-summary span {
  display: block;
  color: rgba(34, 29, 25, 0.54);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.recipe-summary strong {
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 600;
}

.recipe-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.32fr) minmax(0, 720px);
  gap: clamp(2.5rem, 8vw, 6rem);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.ingredient-panel {
  border-top: 1px solid rgba(178, 138, 74, 0.58);
  padding-top: 1rem;
}

.ingredient-panel h2,
.method-panel h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.ingredient-panel ul,
.method-panel ol {
  margin: 0;
  padding-left: 1.2rem;
}

.ingredient-panel li,
.method-panel li {
  margin-bottom: 0.8rem;
}

.note-page {
  padding: clamp(10rem, 18vw, 15rem) 0 clamp(5rem, 12vw, 9rem);
}

.note-paper {
  max-width: 820px;
  margin: 0 auto;
  border-left: 1px solid rgba(178, 138, 74, 0.28);
  padding-left: clamp(1.4rem, 5vw, 4rem);
}

.note-title {
  max-width: 13ch;
  margin-bottom: 1.4rem;
}

.note-text {
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.3;
}

.note-text p {
  margin: 0 0 1.6rem;
}

.closing-line {
  margin-top: 3rem;
  color: var(--brick);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(16rem, 0.42fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.about-panel {
  border-top: 1px solid rgba(34, 29, 25, 0.16);
  padding-top: 1.5rem;
}

.principles-list,
.rubric-directory {
  display: grid;
  gap: 1px;
  background: rgba(34, 29, 25, 0.12);
}

.principles-list li,
.rubric-directory a {
  display: block;
  background: var(--ivory);
  padding: 1.15rem;
}

.principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rubric-directory h3 {
  margin-bottom: 0.5rem;
  color: var(--brown-black);
  font-size: 2rem;
}

.rubric-directory p {
  margin: 0;
  color: rgba(34, 29, 25, 0.66);
  font-size: 0.92rem;
}

.brand-platform {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.92), rgba(243, 238, 229, 0.98)),
    var(--ivory);
}

.brand-platform__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
}

.brand-platform h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.96;
}

.brand-platform__items {
  display: grid;
  gap: 1px;
  background: rgba(34, 29, 25, 0.14);
}

.brand-platform__items article {
  background: var(--ivory-light);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.brand-platform__items span,
.sethi-ethic span,
.cat-care-grid span {
  display: block;
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-platform__items h3 {
  max-width: 15ch;
  margin: 0.9rem 0 0.75rem;
  color: var(--brown-black);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.98;
}

.brand-platform__items p {
  max-width: 58ch;
  margin: 0;
  color: rgba(34, 29, 25, 0.68);
}

.site-footer {
  border-top: 1px solid rgba(34, 29, 25, 0.14);
  background: var(--brown-black);
  color: rgba(248, 244, 238, 0.74);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--aged-gold);
}

.home-afterword {
  position: relative;
  z-index: 45;
  display: grid;
  min-height: 96svh;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.96), rgba(34, 29, 25, 0.98)),
    var(--brown-black);
  color: var(--ivory-light);
  padding: clamp(6rem, 12vw, 10rem) 0;
}

.home-afterword__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 0.42fr);
  gap: clamp(2.5rem, 10vw, 9rem);
  align-items: center;
}

.home-afterword h2 {
  max-width: 10ch;
  margin: 0 0 1.2rem;
  color: var(--ivory-light);
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.home-afterword p {
  max-width: 62ch;
  color: rgba(248, 244, 238, 0.72);
}

.home-afterword__aside {
  align-self: end;
  border-top: 1px solid rgba(178, 138, 74, 0.44);
  padding-top: 1.4rem;
}

.home-afterword__aside h3 {
  color: var(--ivory-light);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.home-afterword__aside p {
  margin-bottom: 1.4rem;
}

.home-afterword .text-link {
  color: var(--aged-gold);
}

.home-chapter-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.75rem), 1fr));
  gap: 1px;
  margin-top: clamp(3.25rem, 8vw, 6.5rem);
  border-top: 1px solid rgba(248, 244, 238, 0.14);
  border-bottom: 1px solid rgba(248, 244, 238, 0.1);
  background: rgba(248, 244, 238, 0.09);
}

.home-chapter-line a {
  display: flex;
  min-width: 0;
  min-height: 4.25rem;
  align-items: center;
  justify-content: center;
  background: rgba(20, 19, 17, 0.32);
  color: rgba(248, 244, 238, 0.62);
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.2vw, 1.42rem);
  line-height: 1.06;
  padding: 0.95rem 0.75rem;
  text-align: center;
  text-wrap: balance;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.home-chapter-line a:hover,
.home-chapter-line a:focus-visible {
  background: rgba(178, 138, 74, 0.1);
  color: var(--aged-gold);
}

.home-signature {
  position: relative;
  z-index: 45;
  background:
    linear-gradient(180deg, rgba(34, 29, 25, 0.99), rgba(20, 19, 17, 1)),
    var(--ink);
  color: var(--ivory-light);
  isolation: isolate;
  padding: clamp(5.5rem, 12vw, 10rem) 0 clamp(6rem, 13vw, 11rem);
}

.home-signature::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(178, 138, 74, 0.52), transparent);
  content: "";
}

.home-signature::after {
  position: absolute;
  inset: auto 0 0;
  height: 14rem;
  background:
    radial-gradient(circle at 50% 100%, rgba(178, 138, 74, 0.08), transparent 32rem),
    linear-gradient(180deg, transparent, rgba(20, 19, 17, 0.92));
  content: "";
  pointer-events: none;
  z-index: -1;
}

.home-signature__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 0.86fr);
  gap: clamp(3rem, 10vw, 8rem);
  align-items: start;
}

.home-signature h2 {
  max-width: 9ch;
  margin: 0 0 1.35rem;
  color: var(--ivory-light);
  font-size: clamp(3.4rem, 7.6vw, 6.8rem);
  line-height: 0.92;
}

.home-signature__copy p:last-child {
  max-width: 58ch;
  color: rgba(248, 244, 238, 0.7);
}

.signature-notes {
  display: grid;
  gap: 0;
  margin: 0;
  padding: clamp(0.5rem, 1vw, 1rem) 0 0;
  border-top: 1px solid rgba(248, 244, 238, 0.18);
  list-style: none;
}

.signature-notes li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 2.6rem);
  padding: clamp(1.35rem, 3vw, 2.1rem) 0;
  border-bottom: 1px solid rgba(248, 244, 238, 0.13);
}

.signature-notes span {
  color: var(--aged-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signature-notes strong {
  display: block;
  color: var(--ivory-light);
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.signature-notes p {
  max-width: 46ch;
  margin: 0.65rem 0 0;
  color: rgba(248, 244, 238, 0.64);
  font-size: 0.98rem;
  line-height: 1.7;
}

.signature-route-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--aged-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-route-link:hover,
.signature-route-link:focus-visible {
  color: var(--ivory-light);
}

.signature-stack {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 244, 238, 0.14);
}

.brand-values article {
  min-height: 11rem;
  background: rgba(20, 19, 17, 0.72);
  padding: clamp(1.1rem, 2.8vw, 1.7rem);
}

.brand-values span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--aged-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-values strong {
  display: block;
  color: var(--ivory-light);
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
}

.brand-values p {
  margin: 0.7rem 0 0;
  color: rgba(248, 244, 238, 0.62);
  font-size: 0.92rem;
  line-height: 1.62;
}

.editorial-meta-header {
  display: flex;
  max-width: 760px;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: clamp(2.4rem, 6vw, 4rem);
  border-top: 1px solid var(--hairline);
  padding-top: 1rem;
  background: transparent;
}

.editorial-meta-header div {
  min-width: 0;
  background: transparent;
  padding: 0;
}

.editorial-meta-header span,
.protocol-row span,
.sensory-board span,
.reading-map span,
.care-ledger article > span,
.collection-wall__notes span {
  display: block;
  color: rgba(34, 29, 25, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.editorial-meta-header strong {
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1;
}

.sensory-board {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.25rem, 5vw, 4rem);
  background: transparent;
}

.sensory-board__lead,
.sensory-note {
  background: transparent;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.sensory-board__lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sensory-board__lead h2 {
  max-width: 9ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.sensory-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
  background: transparent;
}

.sensory-note {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.sensory-note:nth-child(even) {
  border-right: 0;
}

.sensory-note p,
.care-ledger p,
.collection-wall p,
.protocol-row p,
.fragment-thread p {
  margin: 0.6rem 0 0;
  color: rgba(34, 29, 25, 0.68);
  font-size: 0.95rem;
  line-height: 1.68;
}

.care-ledger {
  display: grid;
  grid-template-columns: 0.75fr repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  background: transparent;
}

.care-ledger__intro,
.care-ledger article {
  border-top: 1px solid var(--hairline);
  background: transparent;
  padding: clamp(1.2rem, 2.8vw, 1.9rem);
}

.care-ledger__intro {
  border-top-color: rgba(47, 76, 83, 0.28);
  background: transparent;
}

.care-ledger h2,
.collection-wall h2,
.fragment-thread h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.collection-wall {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: clamp(1.8rem, 6vw, 5rem);
  align-items: stretch;
}

.collection-wall__feature {
  min-height: 28rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.collection-wall__notes {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
  background: transparent;
}

.collection-wall__feature {
  background: rgba(20, 19, 17, 0.72);
}

.collection-wall__notes article {
  border-bottom: 1px solid var(--hairline);
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
}

.collection-wall__feature .content-label,
.home-afterword .content-label,
.manifesto-band .content-label {
  color: var(--aged-gold);
}

.collection-wall__feature h2,
.collection-wall__feature p {
  color: var(--ivory-light);
}

.collection-wall__feature p {
  max-width: 42ch;
  color: rgba(248, 244, 238, 0.72);
}

.lab-protocol {
  border-top: 1px solid var(--brown-black);
}

.protocol-row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--hairline);
  padding: 1.45rem 0;
}

.protocol-row strong {
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
}

.protocol-row p {
  grid-column: 2;
}

.fragment-thread {
  width: min(100%, 940px);
  margin: 0 auto;
  border-left: 1px solid rgba(178, 138, 74, 0.34);
  padding-left: clamp(1.4rem, 5vw, 4rem);
}

.fragment-thread__list {
  display: grid;
  gap: clamp(2.4rem, 7vw, 5rem);
  margin-top: 3rem;
}

.fragment-thread article {
  max-width: 58ch;
}

.fragment-thread article:nth-child(even) {
  margin-left: auto;
}

.fragment-thread h3 {
  color: var(--brown-black);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.reading-map {
  margin-top: 2rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1rem;
}

.reading-map a {
  display: block;
  padding: 0.45rem 0;
  color: rgba(34, 29, 25, 0.72);
  font-size: 0.88rem;
}

.reading-map a:hover,
.reading-map a:focus-visible {
  color: var(--brick);
}

.premium-quote {
  position: relative;
  border-left: 0 !important;
  margin: clamp(3rem, 7vw, 5rem) 0 !important;
  padding: clamp(1rem, 4vw, 2rem) 0 clamp(1rem, 4vw, 2rem) clamp(1.4rem, 5vw, 3.5rem) !important;
}

.premium-quote::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: rgba(178, 138, 74, 0.85);
  content: "“";
  font-family: var(--font-title);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.8;
}

.author-note {
  margin: clamp(2.8rem, 7vw, 4.6rem) 0;
  border-top: 1px solid rgba(122, 74, 55, 0.24);
  border-bottom: 1px solid rgba(122, 74, 55, 0.24);
  padding: clamp(1.35rem, 3vw, 2rem) 0;
}

.author-note p {
  margin-bottom: 0;
}

.related-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 2.4rem);
  margin: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: transparent;
}

.related-callout > * {
  background: transparent;
  padding: clamp(1rem, 3vw, 1.6rem) 0;
}

.related-callout p {
  margin: 0;
}

.related-callout strong {
  display: block;
  color: var(--brick);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.related-callout a {
  border-bottom: 1px solid currentColor;
  color: var(--brown-black);
  font-weight: 700;
}

.recipe-summary {
  border: 1px solid var(--hairline);
  background: transparent;
}

.recipe-summary div {
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.84), rgba(243, 238, 229, 0.78));
}

.recipe-sensory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 2rem 0 0;
  background: var(--hairline);
}

.recipe-sensory div {
  background: rgba(248, 244, 238, 0.66);
  padding: 1rem;
}

.recipe-sensory span {
  display: block;
  color: rgba(34, 29, 25, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.recipe-sensory strong {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 600;
}

.ingredient-panel .recipe-facts {
  margin: 0 0 1.5rem;
}

.note-constellation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 2.4rem);
  margin-top: clamp(5rem, 12vw, 8rem);
  border-top: 1px solid var(--hairline);
  background: transparent;
}

.note-constellation a {
  background: transparent;
  padding: clamp(1rem, 3vw, 1.5rem) 0 0;
}

.note-constellation span {
  display: block;
  margin-bottom: 1.25rem;
  color: rgba(34, 29, 25, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.note-constellation strong {
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.05;
}

.manifesto-band {
  background: var(--brown-black);
  color: var(--ivory-light);
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.manifesto-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.5fr);
  gap: clamp(2.5rem, 8vw, 7rem);
}

.manifesto-band h2 {
  max-width: 11ch;
  color: var(--ivory-light);
}

.manifesto-band p {
  color: rgba(248, 244, 238, 0.72);
}

body.theme-cuisine .featured-story {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
}

body.theme-cuisine .entry-card:nth-child(2) {
  min-height: 22rem;
}

body.theme-sante .featured-story {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

body.theme-sante .entry-card {
  min-height: 15.5rem;
}

body.theme-culture .featured-story {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
}

body.theme-culture .story-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
}

body.theme-laboratoire .featured-story {
  min-height: 26rem;
}

body.theme-laboratoire .entry-card {
  min-height: 16rem;
  background: rgba(248, 244, 238, 0.5);
}

body.theme-pensees .page-hero {
  padding-bottom: clamp(5rem, 12vw, 9rem);
}

body.theme-pensees .featured-story {
  width: min(100%, 980px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

body.theme-cuisine .page-kicker,
body.theme-cuisine .content-label {
  color: var(--brick);
}

body.theme-sante .page-kicker,
body.theme-sante .content-label {
  color: var(--petrol);
}

body.theme-culture .page-kicker,
body.theme-culture .content-label {
  color: var(--aged-gold);
}

body.theme-laboratoire .page-kicker,
body.theme-laboratoire .content-label {
  color: var(--brown-black);
}

body.theme-cats .page-kicker,
body.theme-cats .content-label {
  color: var(--aged-gold);
}

body.theme-observatoire .page-kicker,
body.theme-observatoire .content-label {
  color: var(--brick);
}

@media (max-width: 980px) {
  .page-hero__inner,
  .article-hero__inner,
  .featured-story,
  .reading-layout,
  .recipe-layout,
  .about-grid,
  .home-afterword__grid,
  .home-signature__grid,
  .sensory-board,
  .care-ledger,
  .collection-wall,
  .manifesto-band__grid {
    grid-template-columns: 1fr;
  }

  .reading-aside {
    position: static;
  }

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

  .recipe-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-cuisine .featured-story,
  body.theme-sante .featured-story,
  body.theme-culture .featured-story,
  body.theme-pensees .featured-story,
  body.theme-culture .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .editorial-body .site-header {
    background: rgba(243, 238, 229, 0.94);
  }

  .editorial-body .nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .editorial-shell,
  .narrow-shell {
    width: min(100% - 1.5rem, 1180px);
  }

  .page-hero,
  .article-hero,
  .note-page {
    padding-top: 7rem;
  }

  .page-title,
  .article-title,
  .note-title {
    font-size: clamp(3.4rem, 16vw, 4.8rem);
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 1rem;
  }

  .story-grid,
  .article-pagination,
  .home-chapter-line,
  .sensory-notes,
  .video-panel__header,
  .recipe-sensory,
  .note-constellation,
  .related-callout {
    grid-template-columns: 1fr;
  }

  .home-chapter-line a {
    min-height: 3.75rem;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .archive-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .protocol-row {
    grid-template-columns: 1fr;
  }

  .protocol-row p {
    grid-column: auto;
  }

  .fragment-thread article:nth-child(even) {
    margin-left: 0;
  }

  .recipe-summary {
    grid-template-columns: 1fr;
  }

  .signature-notes li {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .site-footer__inner {
    display: block;
  }
}

/* WordPress integration */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.site-nav ul.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav .nav-links li {
  margin: 0;
}

.site-nav .nav-links .current-menu-item > a,
.site-nav .nav-links .current_page_item > a {
  color: var(--brown-black);
}

.page-template-standard .content-section {
  min-height: 42vh;
}

.article-cover img,
.prose img,
.wp-block-image img {
  width: 100%;
  height: auto;
}

.article-cover img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.wp-caption,
.wp-block-image,
.wp-block-embed,
.wp-block-video {
  margin: clamp(2.4rem, 6vw, 4rem) 0;
}

.wp-caption-text,
.wp-element-caption {
  max-width: 62ch;
  margin: 0.8rem 0 0;
  color: rgba(34, 29, 25, 0.56);
  font-size: 0.82rem;
  line-height: 1.55;
}

.prose a {
  color: var(--brick);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.prose a:hover,
.prose a:focus-visible {
  color: var(--brown-black);
}

.prose iframe,
.wp-block-embed iframe,
.wp-block-video video {
  width: 100%;
  max-width: 100%;
}

.video-panel {
  width: min(100% - 2rem, 980px);
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  border-top: 1px solid rgba(178, 138, 74, 0.34);
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.72), rgba(243, 238, 229, 0.94)),
    var(--ivory);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.video-panel .content-label {
  margin-bottom: 0.85rem;
}

.video-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(18rem, 0.42fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.video-panel__header h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--brown-black);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.video-panel__header p:last-child {
  margin: 0;
  color: rgba(34, 29, 25, 0.68);
  line-height: 1.72;
}

.video-panel__embed {
  overflow: hidden;
  background: var(--brown-black);
}

.video-panel__embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.video-panel__placeholder {
  display: grid;
  min-height: clamp(16rem, 34vw, 28rem);
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(248, 244, 238, 0.14);
  background:
    linear-gradient(135deg, rgba(20, 19, 17, 0.98), rgba(34, 29, 25, 0.94)),
    var(--ink);
  color: var(--ivory-light);
  text-align: center;
}

.video-panel__placeholder span {
  color: var(--aged-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-panel__placeholder strong {
  margin-top: 0.8rem;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: end;
  margin: 1.5rem 0 2rem;
}

.search-form label {
  display: block;
}

.search-form input,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(34, 29, 25, 0.18);
  border-radius: 0;
  background: rgba(248, 244, 238, 0.66);
  color: var(--brown-black);
  font: inherit;
  padding: 0.9rem 1rem;
}

.search-form button,
.comment-form .submit {
  border: 1px solid rgba(122, 74, 55, 0.34);
  border-radius: 0;
  background: var(--brown-black);
  color: var(--ivory-light);
  cursor: pointer;
  font: 700 0.78rem/1 var(--font-body);
  padding: 1rem 1.15rem;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.search-form button:hover,
.search-form button:focus-visible,
.comment-form .submit:hover,
.comment-form .submit:focus-visible {
  border-color: var(--aged-gold);
  background: var(--brick);
}

.not-found-panel {
  min-height: 28vh;
}

.pagination {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: 0 0 clamp(4rem, 9vw, 7rem);
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--brown-black);
}

.pagination .nav-links a,
.pagination .nav-links span {
  border: 1px solid var(--hairline);
  padding: 0.55rem 0.75rem;
  font-size: 0.84rem;
}

.pagination .nav-links a::after {
  content: none;
}

.pagination .nav-links .current {
  border-color: rgba(122, 74, 55, 0.34);
  background: rgba(122, 74, 55, 0.08);
}

.article-pagination:has(a:only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.comments-area {
  border-top: 1px solid rgba(34, 29, 25, 0.14);
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(5rem, 10vw, 7rem);
}

.comments-header {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.comments-header h2,
.comment-reply-title {
  margin: 0;
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
}

.comment-list {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 0 clamp(3rem, 7vw, 5rem);
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin: 1rem 0 0 clamp(1rem, 4vw, 3rem);
  padding: 0;
  list-style: none;
}

.comment-body {
  border-top: 1px solid var(--hairline);
  background: rgba(248, 244, 238, 0.38);
  padding: clamp(1rem, 3vw, 1.5rem) 0;
}

.bypostauthor > .comment-body {
  border-top-color: rgba(178, 138, 74, 0.5);
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: rgba(34, 29, 25, 0.56);
  font-size: 0.8rem;
}

.comment-meta strong {
  color: var(--brown-black);
}

.comment-content {
  max-width: 70ch;
  color: rgba(34, 29, 25, 0.78);
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.comment-reply {
  margin-top: 0.85rem;
}

.comment-reply a,
.comment-navigation a {
  border-bottom: 1px solid currentColor;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 700;
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  max-width: 820px;
  gap: 1rem;
  margin: 0 0 3rem;
}

.comment-respond {
  max-width: 820px;
}

.comment-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.comment-form p {
  margin: 0;
}

.comment-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(34, 29, 25, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.comment-notes,
.logged-in-as,
.comments-closed {
  max-width: 70ch;
  color: rgba(34, 29, 25, 0.62);
  font-size: 0.9rem;
}

.form-submit {
  margin-top: 0.5rem !important;
}

@media (max-width: 680px) {
  .search-form {
    grid-template-columns: 1fr;
  }

  .comments-area {
    width: min(100% - 1.5rem, 1180px);
  }

  .comment-list .children {
    margin-left: 1rem;
  }
}

/* Maudimi archive polish */
.archive-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 29, 25, 0.14);
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.94), rgba(34, 29, 25, 0.82) 42%, rgba(243, 238, 229, 0.96) 42.1%),
    var(--ivory);
  padding: clamp(9rem, 15vw, 13rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.archive-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(178, 138, 74, 0.13), transparent 26rem),
    linear-gradient(rgba(248, 244, 238, 0.04) 1px, transparent 1px);
  background-size: auto, 3.5rem 3.5rem;
  content: "";
  opacity: 0.62;
  pointer-events: none;
}

.archive-hero::after {
  position: absolute;
  inset: 0;
  background-image: var(--image-archive);
  background-position: center;
  background-size: cover;
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.18;
  pointer-events: none;
}

.archive-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(18rem, 0.48fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: end;
}

.archive-hero__content {
  color: var(--ivory-light);
}

.archive-hero .page-kicker {
  color: var(--aged-gold);
}

.archive-title {
  max-width: 10.5ch;
  color: var(--ivory-light);
  text-wrap: balance;
}

.archive-description {
  max-width: 62ch;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  color: rgba(248, 244, 238, 0.72);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.86;
}

.archive-hero__aside {
  border-left: 1px solid rgba(178, 138, 74, 0.34);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.78), rgba(243, 238, 229, 0.92));
  color: var(--brown-black);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.archive-mark {
  margin: 0 0 clamp(2rem, 5vw, 3.6rem);
  color: rgba(34, 29, 25, 0.78);
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.archive-meta-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 1.4rem;
  background: rgba(34, 29, 25, 0.14);
}

.archive-meta-strip div {
  background: rgba(248, 244, 238, 0.86);
  padding: 0.95rem;
}

.archive-meta-strip span {
  display: block;
  color: rgba(34, 29, 25, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.archive-meta-strip strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
}

.archive-aside-note {
  margin: 0;
  color: rgba(34, 29, 25, 0.66);
  font-size: 0.9rem;
  line-height: 1.74;
}

.archive-section {
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.72), rgba(243, 238, 229, 1)),
    var(--ivory);
  padding-top: clamp(4rem, 8vw, 6rem);
}

.archive-grid {
  border-top-color: rgba(34, 29, 25, 0.22);
  background:
    linear-gradient(90deg, rgba(34, 29, 25, 0.08) 1px, transparent 1px),
    transparent;
  background-size: calc(100% / 3) 100%;
}

.entry-card--wp {
  min-height: 0;
  padding: 0;
}

.entry-card--wp:hover {
  background: transparent;
  color: inherit;
  transform: none;
}

.entry-card__link {
  display: grid;
  min-height: 22rem;
  grid-template-rows: minmax(10rem, 0.8fr) 1fr;
  color: var(--brown-black);
  outline-offset: -0.35rem;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.entry-card__media {
  min-height: 10rem;
  margin: 0;
  border-bottom: 1px solid rgba(34, 29, 25, 0.1);
}

.entry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
  transition:
    filter 220ms ease,
    transform 420ms ease;
}

.entry-card__media span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  place-items: end start;
  color: rgba(248, 244, 238, 0.72);
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  padding: 1rem;
}

.entry-card__content {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.5), rgba(243, 238, 229, 0.88));
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
}

.entry-card__content h3 {
  max-width: 12ch;
  margin: clamp(1.6rem, 4vw, 2.6rem) 0 0.9rem;
  color: var(--brown-black);
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
  text-wrap: balance;
}

.entry-card__content p {
  max-width: 56ch;
  margin: 0;
  color: rgba(34, 29, 25, 0.66);
}

.entry-card__read {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.6rem;
  border-bottom: 1px solid currentColor;
  color: var(--brick);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.entry-card__link:hover .entry-card__media img,
.entry-card__link:focus-visible .entry-card__media img {
  filter: saturate(0.94) contrast(1);
  transform: scale(1.025);
}

.entry-card__link:hover .entry-card__read,
.entry-card__link:focus-visible .entry-card__read {
  color: var(--brown-black);
}

.entry-card--featured {
  grid-column: span 2;
}

.entry-card--featured .entry-card__link {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-rows: auto;
  min-height: clamp(26rem, 42vw, 35rem);
}

.entry-card--featured .entry-card__media {
  min-height: 100%;
  border-right: 1px solid rgba(34, 29, 25, 0.12);
  border-bottom: 0;
}

.entry-card--featured .entry-card__content {
  min-height: 100%;
  justify-content: end;
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.entry-card--featured .entry-card__content h3 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  line-height: 0.94;
}

.entry-card--note .entry-card__content {
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.34), rgba(243, 238, 229, 0.72));
}

.entry-card--quiet-layout .entry-card__link {
  min-height: 0;
}

.entry-card--quiet-layout .entry-card__media {
  min-height: 11rem;
}

.entry-card--quiet-layout .entry-card__content {
  background: rgba(248, 244, 238, 0.72);
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
}

.entry-card--quiet-layout .entry-card__content h3 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.entry-card--recipe .entry-card__read {
  color: var(--brick);
}

.entry-card--article .entry-card__read {
  color: var(--petrol);
}

.archive-empty {
  max-width: 760px;
  border-left: 1px solid rgba(178, 138, 74, 0.36);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.62), rgba(243, 238, 229, 0.94));
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.archive-empty h2 {
  max-width: 12ch;
  color: var(--brown-black);
  font-size: clamp(2.7rem, 5.6vw, 4.8rem);
}

.archive-empty p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(34, 29, 25, 0.68);
}

.archive-search-panel {
  max-width: 720px;
  margin: 0 0 clamp(2rem, 5vw, 3.2rem);
  border-top: 1px solid rgba(34, 29, 25, 0.16);
  padding-top: 1rem;
}

.rubric-manifesto {
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.84), rgba(243, 238, 229, 0.96)),
    var(--ivory);
}

.not-found-main {
  background:
    radial-gradient(circle at 20% 14%, rgba(178, 138, 74, 0.1), transparent 28rem),
    linear-gradient(110deg, var(--ink) 0%, var(--brown-black) 48%, var(--ivory) 48.2%, var(--ivory) 100%);
}

.not-found-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(3rem, 8vw, 6rem);
}

.not-found-layout {
  display: grid;
  grid-template-columns: minmax(8rem, 0.22fr) minmax(0, 0.88fr) minmax(18rem, 0.48fr);
  gap: clamp(1.6rem, 6vw, 5rem);
  align-items: end;
}

.not-found-mark {
  color: rgba(178, 138, 74, 0.42);
  font-family: var(--font-title);
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.78;
  writing-mode: vertical-rl;
}

.not-found-copy {
  color: var(--ivory-light);
}

.not-found-copy .page-title {
  max-width: 9ch;
  color: var(--ivory-light);
}

.not-found-copy .page-intro {
  max-width: 58ch;
  margin-top: 1.5rem;
  color: rgba(248, 244, 238, 0.72);
}

.not-found-panel {
  min-height: 0;
  border-left: 1px solid rgba(178, 138, 74, 0.36);
  background: rgba(243, 238, 229, 0.9);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.not-found-links {
  display: grid;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(34, 29, 25, 0.14);
}

.not-found-links a {
  border-bottom: 1px solid rgba(34, 29, 25, 0.1);
  color: var(--brown-black);
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
  padding: 0.85rem 0;
}

.not-found-links a:hover,
.not-found-links a:focus-visible {
  color: var(--brick);
}

body.theme-cuisine .archive-hero {
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.94), rgba(122, 74, 55, 0.48) 42%, rgba(243, 238, 229, 0.96) 42.1%),
    var(--ivory);
}

body.theme-cuisine .archive-hero::after {
  background-image: var(--image-cuisine);
}

body.theme-sante .archive-hero {
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.94), rgba(47, 76, 83, 0.56) 42%, rgba(243, 238, 229, 0.96) 42.1%),
    var(--ivory);
}

body.theme-sante .archive-hero::after {
  background-image: var(--image-sante);
}

body.theme-culture .archive-hero {
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.95), rgba(178, 138, 74, 0.32) 42%, rgba(243, 238, 229, 0.96) 42.1%),
    var(--ivory);
}

body.theme-culture .archive-hero::after {
  background-image: var(--image-culture);
}

body.theme-laboratoire .archive-grid {
  background:
    linear-gradient(90deg, rgba(34, 29, 25, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 29, 25, 0.05), transparent);
  background-size: calc(100% / 3) 100%, auto;
}

body.theme-laboratoire .archive-hero::after {
  background-image: var(--image-laboratoire);
}

body.theme-pensees .archive-hero__aside,
body.theme-pensees .entry-card__content {
  background: rgba(248, 244, 238, 0.74);
}

body.theme-pensees .archive-hero::after {
  background-image: var(--image-pensees);
}

body.theme-cats .archive-hero {
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.95), rgba(178, 138, 74, 0.24) 42%, rgba(243, 238, 229, 0.96) 42.1%),
    var(--ivory);
}

body.theme-cats .archive-hero::after {
  background-image: var(--image-cats);
}

body.theme-cats .archive-mark {
  color: rgba(178, 138, 74, 0.88);
}

body.theme-cats .entry-card__read {
  color: var(--aged-gold);
}

body.theme-observatoire .archive-hero {
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.95), rgba(122, 74, 55, 0.34) 42%, rgba(243, 238, 229, 0.96) 42.1%),
    var(--ivory);
}

body.theme-observatoire .archive-hero::after {
  background-image: var(--image-observatoire);
}

body.theme-observatoire .archive-mark,
body.theme-observatoire .entry-card__read {
  color: var(--brick);
}

.observatory-editorial {
  border-bottom: 1px solid rgba(34, 29, 25, 0.12);
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.96), rgba(34, 29, 25, 0.92) 44%, rgba(243, 238, 229, 0.98) 44.1%),
    var(--ivory);
}

.observatory-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.48fr);
  gap: clamp(2.2rem, 8vw, 7rem);
  align-items: end;
}

.observatory-editorial__copy {
  color: var(--ivory-light);
}

.observatory-editorial__copy .content-label {
  color: var(--aged-gold);
}

.observatory-editorial__copy h2 {
  max-width: 12ch;
  margin: 0 0 1.2rem;
  color: var(--ivory-light);
  font-size: clamp(3.2rem, 6.8vw, 6rem);
  line-height: 0.95;
}

.observatory-editorial__copy p {
  max-width: 62ch;
  color: rgba(248, 244, 238, 0.72);
}

.observatory-note {
  border-left: 1px solid rgba(178, 138, 74, 0.38);
  background: rgba(248, 244, 238, 0.9);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.observatory-note span {
  display: block;
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.observatory-note p {
  margin: 0.8rem 0 0;
  color: rgba(34, 29, 25, 0.72);
}

.observatory-map {
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.92), rgba(243, 238, 229, 1)),
    var(--ivory);
}

.observatory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: rgba(34, 29, 25, 0.16);
}

.observatory-grid article {
  min-height: 18rem;
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.92), rgba(243, 238, 229, 1)),
    var(--ivory);
  padding: clamp(1.15rem, 2.8vw, 1.8rem);
}

.observatory-grid span {
  display: block;
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.observatory-grid h3 {
  margin: 1.4rem 0 0.9rem;
  color: var(--brown-black);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 0.98;
}

.observatory-grid p {
  margin: 0;
  color: rgba(34, 29, 25, 0.68);
}

.sethi-editorial {
  border-bottom: 1px solid rgba(34, 29, 25, 0.12);
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.96), rgba(34, 29, 25, 0.92) 42%, rgba(243, 238, 229, 0.98) 42.1%),
    var(--ivory);
}

.sethi-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(18rem, 0.48fr);
  gap: clamp(2.2rem, 8vw, 7rem);
  align-items: end;
}

.sethi-editorial__copy {
  color: var(--ivory-light);
}

.sethi-editorial__copy .content-label {
  color: var(--aged-gold);
}

.sethi-editorial__copy h2 {
  max-width: 10ch;
  margin: 0 0 1.2rem;
  color: var(--ivory-light);
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  line-height: 0.94;
}

.sethi-editorial__copy p {
  max-width: 60ch;
  color: rgba(248, 244, 238, 0.72);
}

.sethi-ethic {
  border-left: 1px solid rgba(178, 138, 74, 0.42);
  background: rgba(248, 244, 238, 0.9);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.sethi-ethic p {
  margin: 0.8rem 0 0;
  color: rgba(34, 29, 25, 0.72);
}

.cat-care-system {
  background: var(--ivory);
}

.cat-care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: rgba(34, 29, 25, 0.16);
}

.cat-care-grid article {
  min-height: 17rem;
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.9), rgba(243, 238, 229, 1)),
    var(--ivory);
  padding: clamp(1.15rem, 2.8vw, 1.8rem);
}

.cat-care-grid h3 {
  margin: 1.4rem 0 0.9rem;
  color: var(--brown-black);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cat-care-grid p {
  margin: 0;
  color: rgba(34, 29, 25, 0.68);
}

.product-guide {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(34, 29, 25, 0.98), rgba(20, 19, 17, 0.99)),
    var(--ink);
  color: var(--ivory-light);
}

.product-guide__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(18rem, 0.56fr);
  gap: clamp(2.2rem, 8vw, 7rem);
  align-items: start;
}

.product-guide h2 {
  max-width: 10ch;
  color: var(--ivory-light);
}

.product-guide p {
  max-width: 62ch;
  color: rgba(248, 244, 238, 0.72);
}

.product-criteria {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(248, 244, 238, 0.16);
  list-style: none;
}

.product-criteria li {
  border-bottom: 1px solid rgba(248, 244, 238, 0.14);
  padding: 1.2rem 0;
  color: rgba(248, 244, 238, 0.7);
  line-height: 1.72;
}

@media (max-width: 980px) {
  .archive-hero {
    background:
      linear-gradient(180deg, rgba(20, 19, 17, 0.96), rgba(34, 29, 25, 0.86) 58%, var(--ivory) 58.2%),
      var(--ivory);
  }

  .archive-hero__inner,
  .not-found-layout,
  .observatory-editorial__grid,
  .sethi-editorial__grid,
  .product-guide__grid,
  .entry-card--featured .entry-card__link {
    grid-template-columns: 1fr;
  }

  .archive-hero__aside {
    max-width: 680px;
  }

  .archive-grid {
    background-size: 50% 100%;
  }

  .sethi-editorial {
    background:
      linear-gradient(180deg, rgba(20, 19, 17, 0.96), rgba(34, 29, 25, 0.9) 54%, rgba(243, 238, 229, 0.98) 54.2%),
      var(--ivory);
  }

  .observatory-editorial {
    background:
      linear-gradient(180deg, rgba(20, 19, 17, 0.96), rgba(34, 29, 25, 0.9) 54%, rgba(243, 238, 229, 0.98) 54.2%),
      var(--ivory);
  }

  .cat-care-grid,
  .observatory-grid,
  .brand-platform__grid {
    grid-template-columns: 1fr;
  }

  .cat-care-grid,
  .observatory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-card--featured {
    grid-column: span 2;
  }

  .entry-card--featured .entry-card__media {
    min-height: 18rem;
    border-right: 0;
    border-bottom: 1px solid rgba(34, 29, 25, 0.12);
  }

  .not-found-mark {
    writing-mode: horizontal-tb;
  }
}

@media (max-width: 680px) {
  .archive-hero {
    padding-top: 7rem;
  }

  .archive-hero__aside {
    padding: 1.1rem;
  }

  .archive-meta-strip,
  .entry-card--featured,
  .brand-values,
  .cat-care-grid,
  .observatory-grid,
  .archive-grid {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .entry-card--featured .entry-card__content h3,
  .entry-card__content h3 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .entry-card__link {
    min-height: auto;
  }

  .not-found-main {
    background:
      linear-gradient(180deg, var(--ink) 0%, var(--brown-black) 54%, var(--ivory) 54.2%, var(--ivory) 100%);
  }

  .not-found-hero {
    align-items: start;
    padding-top: 7rem;
  }
}

/* Cinematic editorial transitions */
.page-cinematic-veil {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(178, 138, 74, 0.08), transparent 30rem),
    var(--ink);
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 95;
  height: 2px;
  background: linear-gradient(90deg, var(--brick), var(--aged-gold));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

body.is-editorial-cinematic .archive-hero__content,
body.is-editorial-cinematic .archive-hero__aside,
body.is-editorial-cinematic .article-hero__inner,
body.is-editorial-cinematic .entry-card__media img,
body.is-editorial-cinematic .article-cover img,
body.is-editorial-cinematic .not-found-mark {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .page-cinematic-veil,
  .reading-progress {
    display: none;
  }
}

/* White-label contrast guard */
.editorial-body {
  --hairline: rgb(var(--brown-black-rgb) / 0.1);
  --hairline-strong: rgb(var(--brown-black-rgb) / 0.18);
  background: var(--ivory);
  color: var(--brown-black);
}

.editorial-body .site-header {
  background: rgb(var(--ivory-rgb) / 0.9);
  border-bottom-color: rgb(var(--brown-black-rgb) / 0.1);
  color: var(--brown-black);
}

.editorial-body .brand,
.editorial-body .nav-links a,
.editorial-body .entry-card__link,
.editorial-body .archive-empty,
.editorial-body .ingredient-panel,
.editorial-body .method-panel,
.editorial-body .note-paper,
.editorial-body .comments-area,
.editorial-body .comment-body,
.editorial-body .comment-respond,
.editorial-body .page-hero__aside,
.editorial-body .archive-hero__aside,
.editorial-body .not-found-panel {
  color: var(--brown-black);
}

.editorial-body .page-title,
.editorial-body .article-title,
.editorial-body .note-title,
.editorial-body .entry-card__content h3,
.editorial-body .archive-empty h2,
.editorial-body .ingredient-panel h2,
.editorial-body .method-panel h2,
.editorial-body .prose h2,
.editorial-body .prose h3,
.editorial-body .comment-reply-title {
  color: var(--brown-black);
}

.editorial-body .page-intro,
.editorial-body .article-deck,
.editorial-body .about-lede,
.editorial-body .entry-card__content p,
.editorial-body .archive-empty p,
.editorial-body .archive-aside-note,
.editorial-body .prose p,
.editorial-body .prose li,
.editorial-body .note-text,
.editorial-body .comment-content,
.editorial-body .comment-notes,
.editorial-body .logged-in-as {
  color: rgb(var(--brown-black-rgb) / 0.76);
}

.editorial-body .entry-card__content,
.editorial-body .archive-empty,
.editorial-body .comment-respond,
.editorial-body .comment-body,
.editorial-body .note-paper {
  background-color: rgb(var(--ivory-light-rgb) / 0.82);
}

.editorial-body .archive-hero__content,
.editorial-body .not-found-copy,
.editorial-body .observatory-editorial__copy,
.editorial-body .sethi-editorial__copy,
.editorial-body .product-guide,
.editorial-body .home-afterword,
.editorial-body .home-signature {
  color: var(--ivory-light);
}

.editorial-body .archive-title,
.editorial-body .not-found-copy .page-title,
.editorial-body .observatory-editorial__copy h2,
.editorial-body .sethi-editorial__copy h2,
.editorial-body .product-guide h2,
.editorial-body .home-afterword h2,
.editorial-body .home-signature h2 {
  color: var(--ivory-light);
}

.editorial-body .archive-description,
.editorial-body .not-found-copy .page-intro,
.editorial-body .observatory-editorial__copy p,
.editorial-body .sethi-editorial__copy p,
.editorial-body .product-guide p,
.editorial-body .product-criteria li,
.editorial-body .home-afterword p,
.editorial-body .home-signature p {
  color: rgb(var(--ivory-light-rgb) / 0.76);
}

.editorial-body input,
.editorial-body textarea,
.editorial-body select {
  border-color: rgb(var(--brown-black-rgb) / 0.18);
  background: rgb(var(--ivory-light-rgb) / 0.9);
  color: var(--brown-black);
}

.editorial-body input::placeholder,
.editorial-body textarea::placeholder {
  color: rgb(var(--brown-black-rgb) / 0.48);
}

.editorial-body .archive-hero__aside,
.editorial-body .not-found-panel,
.editorial-body .sethi-ethic,
.editorial-body .observatory-note {
  background: rgb(var(--ivory-light-rgb) / 0.9);
}

.editorial-body .media-panel::after {
  background:
    linear-gradient(180deg, rgb(var(--ink-rgb) / 0.08), rgb(var(--ink-rgb) / 0.44)),
    linear-gradient(90deg, rgb(var(--ink-rgb) / 0.18), transparent 58%);
}

/* White-label controls */
body {
  font-size: var(--maudimi-body-size, 17px);
  line-height: var(--maudimi-body-leading, 1.78);
}

.narrow-shell {
  width: min(100% - 2rem, var(--maudimi-reading-width, 780px));
}

.prose {
  font-size: var(--maudimi-prose-size, 1.07rem);
  line-height: var(--maudimi-prose-leading, 1.9);
}

.content-section {
  padding-top: var(--maudimi-section-padding, clamp(4.5rem, 10vw, 8.5rem));
  padding-bottom: var(--maudimi-section-padding, clamp(4.5rem, 10vw, 8.5rem));
}

.rubric-card p,
.entry-card__content p {
  font-size: var(--maudimi-card-text-size, 0.95rem);
}

@media (min-width: 901px) {
  h1 {
    font-size: var(--maudimi-h1-size, 7rem);
  }

  h2 {
    font-size: var(--maudimi-h2-size, 4.7rem);
  }

  .rubric-heading h2 {
    font-size: var(--maudimi-hub-title-size, 4rem);
  }

  .rubric-card--feature h3,
  .rubric-card--size-feature h3 {
    font-size: var(--maudimi-feature-title-size, 4.9rem);
  }
}

.page-title,
.article-title,
.note-title {
  font-size: var(--maudimi-page-title-size, clamp(4.5rem, 10.5vw, 9.2rem));
}

.prose h2 {
  font-size: var(--maudimi-prose-h2-size, clamp(2.6rem, 5vw, 4.2rem));
}

.prose h3 {
  font-size: var(--maudimi-prose-h3-size, clamp(2rem, 3.5vw, 2.8rem));
}

.entry-card__content h3 {
  font-size: var(--maudimi-card-title-size, clamp(2.1rem, 3.4vw, 3.25rem));
}

.entry-card--featured .entry-card__content h3 {
  font-size: var(--maudimi-featured-card-title-size, clamp(3rem, 5.8vw, 5.4rem));
}

.rubric-card--custom,
.rubric-card.has-image,
.rubric-card.has-custom-color {
  position: relative;
  overflow: hidden;
}

.rubric-card.has-image::before,
.rubric-card--custom::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.08), rgba(20, 19, 17, 0.36)),
    var(--tile-image, none);
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 520ms ease;
  transform: scale(1.02);
}

.rubric-card.has-image::before,
.rubric-card--custom.has-image::before {
  opacity: 0.34;
}

.rubric-card.has-image:hover::before,
.rubric-card.has-image:focus-visible::before,
.rubric-card--custom:hover::before,
.rubric-card--custom:focus-visible::before {
  opacity: 0.48;
  transform: scale(1.05);
}

.rubric-card.has-image .rubric-number,
.rubric-card.has-image .rubric-body,
.rubric-card.has-custom-color .rubric-number,
.rubric-card.has-custom-color .rubric-body,
.rubric-card--custom .rubric-number,
.rubric-card--custom .rubric-body {
  position: relative;
  z-index: 1;
}

.rubric-card.has-custom-color {
  border-color: rgb(var(--tile-color-rgb) / 0.42);
  background:
    linear-gradient(180deg, rgb(var(--tile-color-rgb) / 0.36), rgb(var(--ink-rgb) / 0.3)),
    var(--tile-color);
}

.rubric-card.has-custom-color:hover,
.rubric-card.has-custom-color:focus-visible {
  background:
    linear-gradient(180deg, rgb(var(--tile-color-rgb) / 0.48), rgb(var(--ink-rgb) / 0.34)),
    var(--tile-color);
}

.rubric-card.has-custom-color .rubric-number {
  color: var(--tile-color);
}

.rubric-card.has-custom-text,
.rubric-card.has-custom-text h3 {
  color: var(--tile-text-color);
}

.rubric-card.has-custom-text p {
  color: var(--tile-text-color);
  opacity: 0.76;
}

.rubric-card--accent-gold {
  background:
    linear-gradient(180deg, rgba(178, 138, 74, 0.16), rgba(20, 19, 17, 0.2));
}

.rubric-card--accent-brick {
  background:
    linear-gradient(180deg, rgba(122, 74, 55, 0.22), rgba(20, 19, 17, 0.2));
}

.rubric-card--accent-petrol {
  background:
    linear-gradient(180deg, rgba(47, 76, 83, 0.28), rgba(20, 19, 17, 0.2));
}

.rubric-card--accent-ink {
  background: rgba(20, 19, 17, 0.48);
}

.rubric-card--accent-ivory {
  background: rgba(243, 238, 229, 0.1);
}

/* Maudimi colorimetry pass */
:root {
  --maudimi-reading-surface: var(--ivory);
  --maudimi-panel-surface: var(--ivory-light);
  --maudimi-dark-surface: var(--ink);
  --maudimi-text-primary: var(--brown-black);
  --maudimi-text-soft: rgb(var(--brown-black-rgb) / 0.74);
  --maudimi-text-muted: rgb(var(--brown-black-rgb) / 0.58);
  --maudimi-text-on-dark: var(--ivory-light);
  --maudimi-text-on-dark-soft: rgb(var(--ivory-light-rgb) / 0.76);
  --maudimi-accent-main: var(--brick);
  --maudimi-accent-precious: var(--aged-gold);
  --maudimi-accent-cool: var(--petrol);
  --maudimi-line-soft: rgb(var(--brown-black-rgb) / 0.1);
  --maudimi-line-medium: rgb(var(--brown-black-rgb) / 0.18);
}

body {
  background: var(--maudimi-dark-surface);
}

.editorial-body {
  background: var(--maudimi-reading-surface);
  color: var(--maudimi-text-primary);
}

.editorial-main,
.archive-section,
.rubric-manifesto,
.cat-care-system,
.observatory-map {
  background:
    radial-gradient(circle at 12% 8%, rgb(var(--aged-gold-rgb) / 0.055), transparent 28rem),
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.76), rgb(var(--ivory-rgb) / 1) 34rem),
    var(--maudimi-reading-surface);
}

.page-kicker,
.content-label,
.article-category,
.entry-card__read,
.prose a,
.note-meta span,
.article-meta span,
.recipe-facts span {
  color: var(--maudimi-accent-main);
}

.archive-hero .page-kicker,
.rubric-number,
.brand-mark,
.footer-brand,
.rubric-card--accent-gold .rubric-number {
  color: var(--maudimi-accent-precious);
}

.page-title,
.article-title,
.note-title,
.entry-card__content h3,
.archive-empty h2,
.prose h2,
.prose h3,
.comment-reply-title,
.ingredient-panel h2,
.method-panel h2 {
  color: var(--maudimi-text-primary);
}

.page-intro,
.article-deck,
.about-lede,
.entry-card__content p,
.archive-empty p,
.prose p,
.prose li,
.note-text,
.comment-content,
.archive-aside-note {
  color: var(--maudimi-text-soft);
}

.entry-card__content,
.archive-empty,
.comment-respond,
.comment-body,
.note-paper,
.ingredient-panel,
.method-panel {
  background:
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.78), rgb(var(--ivory-rgb) / 0.96)),
    var(--maudimi-panel-surface);
}

.story-grid,
.archive-grid,
.archive-meta-strip,
.not-found-links,
.related-section,
.article-pagination {
  border-color: var(--maudimi-line-medium);
}

.entry-card,
.entry-card__media,
.archive-hero,
.page-hero,
.comments-area,
.comment-body,
.comment-respond {
  border-color: var(--maudimi-line-soft);
}

.archive-hero__content,
.archive-title,
.not-found-copy,
.not-found-copy .page-title,
.observatory-editorial__copy,
.observatory-editorial__copy h2,
.sethi-editorial__copy,
.sethi-editorial__copy h2,
.product-guide,
.product-guide h2,
.home-afterword,
.home-afterword h2,
.home-signature,
.home-signature h2 {
  color: var(--maudimi-text-on-dark);
}

.archive-description,
.not-found-copy .page-intro,
.observatory-editorial__copy p,
.sethi-editorial__copy p,
.product-guide p,
.product-criteria li,
.home-afterword p,
.home-signature p {
  color: var(--maudimi-text-on-dark-soft);
}

.entry-card--article .entry-card__read,
.entry-card--recipe .entry-card__read,
.entry-card--note .entry-card__read {
  color: var(--maudimi-accent-main);
}

body.theme-sante .page-kicker,
body.theme-sante .content-label,
body.theme-sante .entry-card__read,
body.theme-laboratoire .page-kicker,
body.theme-laboratoire .content-label,
body.theme-laboratoire .entry-card__read {
  color: var(--maudimi-accent-cool);
}

body.theme-culture .page-kicker,
body.theme-culture .content-label,
body.theme-culture .entry-card__read,
body.theme-cats .page-kicker,
body.theme-cats .content-label,
body.theme-cats .entry-card__read {
  color: var(--maudimi-accent-precious);
}

body.theme-cuisine .page-kicker,
body.theme-cuisine .content-label,
body.theme-cuisine .entry-card__read,
body.theme-observatoire .page-kicker,
body.theme-observatoire .content-label,
body.theme-observatoire .entry-card__read,
body.theme-pensees .page-kicker,
body.theme-pensees .content-label,
body.theme-pensees .entry-card__read {
  color: var(--maudimi-accent-main);
}

.wp-block-button__link,
.comment-form .submit,
.search-submit,
.button,
button[type="submit"] {
  background: var(--maudimi-accent-main);
  color: var(--maudimi-text-on-dark);
}

.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.comment-form .submit:hover,
.comment-form .submit:focus-visible,
.search-submit:hover,
.search-submit:focus-visible,
.button:hover,
.button:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
  background: var(--maudimi-text-primary);
  color: var(--maudimi-text-on-dark);
}

.site-footer,
.product-guide,
.not-found-main {
  background: var(--maudimi-dark-surface);
}

/* Premium conversion layer */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}

.maudimi-button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.95rem 1.18rem;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.maudimi-button:hover,
.maudimi-button:focus-visible {
  transform: translateY(-1px);
}

.maudimi-button--light {
  border-color: var(--maudimi-accent-main);
  background: var(--maudimi-accent-main);
  color: var(--maudimi-text-on-dark);
}

.maudimi-button--ghost {
  border-color: rgb(var(--brown-black-rgb) / 0.28);
  background: transparent;
  color: var(--maudimi-text-primary);
}

.maudimi-button--dark {
  border-color: var(--maudimi-accent-precious);
  background: var(--maudimi-dark-surface);
  color: var(--maudimi-text-on-dark);
}

.maudimi-button--light:hover,
.maudimi-button--light:focus-visible,
.maudimi-button--dark:hover,
.maudimi-button--dark:focus-visible {
  background: var(--maudimi-text-primary);
  border-color: var(--maudimi-text-primary);
  color: var(--maudimi-text-on-dark);
}

.maudimi-button--ghost:hover,
.maudimi-button--ghost:focus-visible {
  border-color: var(--maudimi-accent-main);
  color: var(--maudimi-accent-main);
}

.home-method {
  position: relative;
  z-index: 45;
  background:
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.92), rgb(var(--ivory-rgb) / 1)),
    var(--maudimi-reading-surface);
  color: var(--maudimi-text-primary);
  padding: var(--maudimi-section-padding, clamp(4.5rem, 10vw, 8.5rem)) 0;
}

.home-method__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
}

.home-method__intro {
  position: sticky;
  top: 7rem;
}

.home-method h2 {
  max-width: 9ch;
  margin: 0 0 1.2rem;
  color: var(--maudimi-text-primary);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.94;
}

.home-method__intro p:not(.section-kicker) {
  max-width: 54ch;
  color: var(--maudimi-text-soft);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--maudimi-line-medium);
}

.method-card {
  min-height: 17rem;
  background:
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.82), rgb(var(--ivory-rgb) / 0.96)),
    var(--maudimi-panel-surface);
  padding: clamp(1.3rem, 3vw, 2.1rem);
}

.method-card span {
  display: block;
  color: var(--maudimi-accent-main);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-card h3 {
  margin: clamp(1.6rem, 4vw, 2.6rem) 0 0.85rem;
  color: var(--maudimi-text-primary);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 0.98;
}

.method-card p {
  max-width: 44ch;
  margin: 0;
  color: var(--maudimi-text-soft);
}

.home-newsletter {
  position: relative;
  z-index: 45;
  background:
    radial-gradient(circle at 12% 20%, rgb(var(--aged-gold-rgb) / 0.12), transparent 27rem),
    linear-gradient(180deg, rgb(var(--ink-rgb) / 0.98), rgb(var(--brown-black-rgb) / 0.99)),
    var(--maudimi-dark-surface);
  color: var(--maudimi-text-on-dark);
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.82fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  border-top: 1px solid rgb(var(--ivory-light-rgb) / 0.16);
  border-bottom: 1px solid rgb(var(--ivory-light-rgb) / 0.12);
  padding: clamp(2rem, 5vw, 3.8rem) 0;
}

.newsletter-panel h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--maudimi-text-on-dark);
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.94;
}

.newsletter-panel p {
  max-width: 58ch;
  color: var(--maudimi-text-on-dark-soft);
}

.newsletter-note {
  margin: 1rem 0 0;
  color: rgb(var(--ivory-light-rgb) / 0.54) !important;
  font-size: 0.82rem;
}

.start-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--maudimi-reading-width, 780px)) minmax(18rem, 0.46fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
}

.start-aside {
  position: sticky;
  top: 7rem;
}

.start-paths {
  display: grid;
  gap: 1px;
  background: var(--maudimi-line-medium);
}

.start-paths a {
  display: block;
  background: rgb(var(--ivory-light-rgb) / 0.86);
  color: var(--maudimi-text-primary);
  padding: 1.15rem;
}

.start-paths span {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
}

.start-paths small {
  display: block;
  margin-top: 0.55rem;
  color: var(--maudimi-text-soft);
  font-size: 0.84rem;
  line-height: 1.58;
}

.start-paths a:hover,
.start-paths a:focus-visible {
  background: var(--maudimi-text-primary);
  color: var(--maudimi-text-on-dark);
}

.start-paths a:hover small,
.start-paths a:focus-visible small {
  color: var(--maudimi-text-on-dark-soft);
}

@media (max-width: 980px) {
  .home-method__grid,
  .newsletter-panel,
  .start-layout {
    grid-template-columns: 1fr;
  }

  .home-method__intro,
  .start-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .hero-actions,
  .maudimi-button {
    width: 100%;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: 0;
  }
}

/* Internal readability safety */
.editorial-body .archive-section,
.editorial-body .reading-layout,
.editorial-body .recipe-layout,
.editorial-body .related-section,
.editorial-body .comments-area {
  color: var(--maudimi-text-primary);
}

.editorial-body .entry-card__content,
.editorial-body .featured-story__body,
.editorial-body .archive-empty,
.editorial-body .recipe-summary div,
.editorial-body .ingredient-panel,
.editorial-body .method-panel,
.editorial-body .note-paper,
.editorial-body .comment-body,
.editorial-body .comment-respond {
  color: var(--maudimi-text-primary);
}

.editorial-body .entry-card__content h3,
.editorial-body .featured-story h3,
.editorial-body .archive-item h3,
.editorial-body .prose h2,
.editorial-body .prose h3,
.editorial-body .ingredient-panel h2,
.editorial-body .method-panel h2,
.editorial-body .recipe-summary strong,
.editorial-body .article-pagination strong {
  color: var(--maudimi-text-primary);
}

.editorial-body .entry-card__content p,
.editorial-body .featured-story p,
.editorial-body .archive-item p,
.editorial-body .prose p,
.editorial-body .prose li,
.editorial-body .reading-aside,
.editorial-body .ingredient-panel li,
.editorial-body .method-panel li,
.editorial-body .recipe-summary span,
.editorial-body .article-pagination span {
  color: var(--maudimi-text-soft);
}

.editorial-body .prose blockquote,
.editorial-body .pullquote {
  color: var(--maudimi-text-primary);
  border-left-color: var(--maudimi-accent-precious);
}

/* Rubric archive contrast pass */
.editorial-body {
  --rubric-accent: var(--brick);
  --rubric-card-link: var(--brick);
  --rubric-hero-mid: rgb(var(--brown-black-rgb) / 0.9);
  --rubric-image-opacity: 0.22;
  --rubric-image-filter: saturate(0.82) contrast(1.05) brightness(0.72);
  --rubric-overlay-left: rgb(var(--ink-rgb) / 0.94);
  --rubric-overlay-center: rgb(var(--ink-rgb) / 0.78);
  --rubric-overlay-right: rgb(var(--ivory-rgb) / 0.72);
  --rubric-title-color: var(--ivory-light);
  --rubric-description-color: rgb(var(--ivory-light-rgb) / 0.88);
  --rubric-title-shadow: 0 2px 28px rgb(var(--ink-rgb) / 0.44);
}

body.theme-cuisine {
  --rubric-accent: #7a4a37;
  --rubric-card-link: #7a4a37;
  --rubric-hero-mid: rgb(var(--brick-rgb) / 0.72);
  --rubric-image-opacity: 0.24;
}

body.theme-sante {
  --rubric-accent: #2f4c53;
  --rubric-card-link: #2f4c53;
  --rubric-hero-mid: rgb(var(--petrol-rgb) / 0.74);
  --rubric-image-opacity: 0.22;
}

body.theme-culture {
  --rubric-accent: #b28a4a;
  --rubric-card-link: #7a4a37;
  --rubric-hero-mid: rgb(var(--aged-gold-rgb) / 0.46);
  --rubric-image-opacity: 0.2;
}

body.theme-laboratoire {
  --rubric-accent: #2f4c53;
  --rubric-card-link: #2f4c53;
  --rubric-hero-mid: rgb(var(--petrol-rgb) / 0.66);
  --rubric-image-opacity: 0.18;
}

body.theme-pensees {
  --rubric-accent: #7a4a37;
  --rubric-card-link: #7a4a37;
  --rubric-hero-mid: rgb(var(--brown-black-rgb) / 0.78);
  --rubric-image-opacity: 0.16;
}

body.theme-cats {
  --rubric-accent: #b28a4a;
  --rubric-card-link: #7a4a37;
  --rubric-hero-mid: rgb(var(--aged-gold-rgb) / 0.42);
  --rubric-image-opacity: 0.2;
}

body.theme-observatoire {
  --rubric-accent: #7a4a37;
  --rubric-card-link: #7a4a37;
  --rubric-hero-mid: rgb(var(--brick-rgb) / 0.58);
  --rubric-image-opacity: 0.19;
}

.editorial-body .archive-hero {
  background:
    linear-gradient(100deg, var(--rubric-overlay-left) 0%, var(--rubric-hero-mid) 42%, var(--rubric-overlay-right) 100%),
    var(--ivory);
}

.editorial-body .archive-hero::after {
  z-index: 0;
  mix-blend-mode: normal;
  opacity: var(--rubric-image-opacity);
  filter: var(--rubric-image-filter);
}

.editorial-body .archive-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, var(--rubric-overlay-left) 0%, var(--rubric-overlay-center) 52%, var(--rubric-overlay-right) 100%),
    radial-gradient(circle at 16% 18%, rgb(var(--aged-gold-rgb) / 0.13), transparent 28rem);
  background-size: auto;
  opacity: 1;
}

.editorial-body .archive-hero__inner {
  z-index: 2;
}

.editorial-body .archive-hero .page-kicker {
  color: var(--rubric-accent);
  text-shadow: 0 1px 16px rgb(var(--ink-rgb) / 0.4);
}

.editorial-body .archive-title {
  color: var(--rubric-title-color);
  text-shadow: var(--rubric-title-shadow);
}

.editorial-body .archive-description {
  color: var(--rubric-description-color);
  text-shadow: var(--rubric-title-shadow);
}

.editorial-body .archive-hero__aside {
  border-left-color: rgb(var(--aged-gold-rgb) / 0.42);
  background:
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.94), rgb(var(--ivory-rgb) / 0.98)),
    var(--ivory);
  box-shadow: 0 26px 60px rgb(var(--ink-rgb) / 0.16);
}

.editorial-body .archive-mark {
  color: var(--brown-black);
}

.editorial-body .archive-meta-strip div {
  background: rgb(var(--ivory-light-rgb) / 0.94);
}

.editorial-body .archive-meta-strip span,
.editorial-body .entry-card__meta {
  color: rgb(var(--brown-black-rgb) / 0.62);
}

.editorial-body .archive-aside-note,
.editorial-body .entry-card__content p {
  color: rgb(var(--brown-black-rgb) / 0.76);
}

.editorial-body .entry-card__content {
  background:
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.92), rgb(var(--ivory-rgb) / 0.98)),
    var(--ivory);
}

.editorial-body .entry-card__read {
  color: var(--rubric-card-link);
}

.editorial-body .entry-card__link:hover .entry-card__read,
.editorial-body .entry-card__link:focus-visible .entry-card__read {
  color: var(--brown-black);
}

.editorial-body .entry-card__media {
  aspect-ratio: 16 / 10;
  background: var(--brown-black);
}

.editorial-body .entry-card--featured .entry-card__media {
  aspect-ratio: auto;
}

.editorial-body .entry-card__media::after {
  background:
    linear-gradient(180deg, rgb(var(--ink-rgb) / 0.08), rgb(var(--ink-rgb) / 0.5)),
    linear-gradient(90deg, rgb(var(--ink-rgb) / 0.24), transparent 62%);
}

@media (max-width: 980px) {
  .editorial-body .archive-hero {
    background:
      linear-gradient(180deg, rgb(var(--ink-rgb) / 0.96) 0%, rgb(var(--brown-black-rgb) / 0.9) 58%, var(--ivory) 58.2%, var(--ivory) 100%);
  }

  .editorial-body .archive-hero::before {
    background:
      linear-gradient(180deg, rgb(var(--ink-rgb) / 0.84), rgb(var(--ink-rgb) / 0.62) 58%, rgb(var(--ivory-rgb) / 0.18) 100%),
      radial-gradient(circle at 20% 14%, rgb(var(--aged-gold-rgb) / 0.1), transparent 22rem);
  }

  .editorial-body .archive-hero::after {
    background-position: center top;
    opacity: 0.18;
  }

  .editorial-body .archive-description {
    max-width: 68ch;
  }
}

@media (max-width: 680px) {
  .editorial-body .archive-hero {
    padding-top: 6.8rem;
    padding-bottom: 3rem;
  }

  .editorial-body .archive-title {
    max-width: 10ch;
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .editorial-body .archive-description {
    font-size: 1rem;
    line-height: 1.78;
  }

  .editorial-body .archive-hero__inner {
    gap: 1.4rem;
  }

  .editorial-body .entry-card__media {
    aspect-ratio: 4 / 3;
  }
}

/* Premium delivery pass: global navigation, rubrics and article readability */
.site-nav {
  width: min(100% - 1.25rem, 1480px);
}

.editorial-body .archive-hero {
  min-height: min(78svh, 760px);
  padding: clamp(8.8rem, 13vw, 11.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.editorial-body .archive-hero::before {
  background:
    linear-gradient(
      100deg,
      var(--rubric-overlay-left) 0%,
      rgb(var(--ink-rgb) / 0.7) 36%,
      rgb(var(--ink-rgb) / 0.34) 66%,
      rgb(var(--ink-rgb) / 0.08) 100%
    ),
    radial-gradient(circle at 18% 20%, rgb(var(--aged-gold-rgb) / 0.12), transparent 26rem);
}

.editorial-body .archive-hero::after {
  opacity: clamp(0.24, var(--rubric-image-opacity), 0.42);
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
}

.editorial-body .archive-hero__inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(17rem, 0.4fr);
  align-items: center;
  gap: clamp(2.2rem, 6vw, 5.5rem);
}

.editorial-body .archive-title {
  max-width: 12ch;
  font-size: clamp(3.9rem, 7.2vw, 7.25rem);
  line-height: 0.94;
}

body.theme-observatoire .archive-title {
  max-width: 12.5ch;
  font-size: clamp(3.65rem, 6.5vw, 6.45rem);
}

.editorial-body .archive-description {
  max-width: 66ch;
  color: rgb(var(--ivory-light-rgb) / 0.9);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
  line-height: 1.78;
}

.editorial-body .archive-hero__aside {
  align-self: center;
  border: 1px solid rgb(var(--aged-gold-rgb) / 0.22);
  border-left-color: rgb(var(--aged-gold-rgb) / 0.34);
  background:
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.9), rgb(var(--ivory-rgb) / 0.96)),
    var(--ivory);
  box-shadow: 0 24px 70px rgb(var(--ink-rgb) / 0.2);
}

body.theme-observatoire .archive-hero::before {
  background:
    linear-gradient(
      100deg,
      rgb(var(--ink-rgb) / 0.84) 0%,
      rgb(var(--brown-black-rgb) / 0.68) 35%,
      rgb(var(--ink-rgb) / 0.3) 66%,
      rgb(var(--ink-rgb) / 0.06) 100%
    ),
    radial-gradient(circle at 20% 22%, rgb(var(--brick-rgb) / 0.16), transparent 25rem);
}

.editorial-body .article-hero {
  padding: clamp(8.4rem, 14vw, 11.8rem) 0 clamp(3.2rem, 7vw, 5.5rem);
}

.editorial-body .article-hero__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.42fr);
  align-items: center;
}

.editorial-body .article-title {
  max-width: 14ch;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  line-height: 0.94;
}

.editorial-body .article-deck {
  max-width: 64ch;
  color: rgb(var(--brown-black-rgb) / 0.78);
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
  line-height: 1.76;
}

.editorial-body .article-cover {
  box-shadow: 0 30px 80px rgb(var(--ink-rgb) / 0.16);
  transform: translateZ(0);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.editorial-body .article-cover:hover {
  box-shadow: 0 34px 92px rgb(var(--ink-rgb) / 0.22);
  transform: translateY(-2px);
}

.editorial-body .reading-aside {
  background:
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.78), rgb(var(--ivory-rgb) / 0.96)),
    var(--ivory);
}

.editorial-body .prose {
  color: rgb(var(--brown-black-rgb) / 0.86);
}

.entry-card__link,
.archive-hero__aside,
.article-cover,
.maudimi-rubric-nav {
  transform-style: preserve-3d;
}

.entry-card__link:hover,
.entry-card__link:focus-visible {
  transform: translate3d(0, -3px, 0);
}

@media (max-width: 900px) {
  .maudimi-rubric-nav {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    overflow: hidden;
  }

  .maudimi-rubric-nav__links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .maudimi-rubric-nav__links::-webkit-scrollbar {
    display: none;
  }

  .rubric-link {
    white-space: nowrap;
  }

  .editorial-body .archive-hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .editorial-body .archive-hero__inner,
  .editorial-body .article-hero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .editorial-body .archive-title,
  body.theme-observatoire .archive-title,
  .editorial-body .article-title {
    max-width: 12ch;
    font-size: clamp(3rem, 13.5vw, 4.75rem);
    line-height: 0.98;
  }

  .editorial-body .archive-description,
  .editorial-body .article-deck {
    font-size: 1rem;
  }

  .maudimi-rubric-nav {
    width: min(100% - 1.25rem, 1180px);
    padding: 0.65rem;
  }
}

/* Phase 2 premium controls: guarded presets from Maudimi > Reglages. */
.archive-hero::after {
  background-position: var(--rubric-image-position, center center);
}

body.motion-off .page-cinematic-veil,
body.motion-off .reading-progress {
  display: none !important;
}

body.motion-off .entry-card__link,
body.motion-off .article-cover,
body.motion-off .rubric-link,
body.motion-off .button-link {
  transition-duration: 1ms !important;
}

body.depth-off .entry-card__link:hover,
body.depth-off .entry-card__link:focus-visible,
body.depth-off .article-cover:hover {
  transform: none;
}

body.depth-card .entry-card__link:hover,
body.depth-card .entry-card__link:focus-visible,
body.depth-parallax .entry-card__link:hover,
body.depth-parallax .entry-card__link:focus-visible,
body.depth-immersive .entry-card__link:hover,
body.depth-immersive .entry-card__link:focus-visible,
body.article-depth-card .article-cover:hover,
body.article-depth-parallax .article-cover:hover,
body.article-depth-immersive .article-cover:hover {
  transform: translate3d(0, calc(-4px * var(--maudimi-depth-strength, 1)), 18px);
  box-shadow:
    0 calc(26px * var(--maudimi-depth-strength, 1)) calc(78px * var(--maudimi-depth-strength, 1)) rgb(var(--ink-rgb) / 0.18),
    inset 0 1px 0 rgb(var(--ivory-light-rgb) / 0.38);
}

body.visual-cinematic .archive-hero__aside,
body.visual-immersive .archive-hero__aside {
  background:
    linear-gradient(180deg, rgb(var(--ivory-light-rgb) / 0.94), rgb(var(--ivory-rgb) / 0.88)),
    var(--ivory);
  box-shadow: 0 30px 90px rgb(var(--ink-rgb) / 0.22);
}

body.visual-immersive .archive-hero::before {
  background:
    linear-gradient(90deg, var(--rubric-overlay-left) 0%, var(--rubric-overlay-center) 50%, var(--rubric-overlay-right) 100%),
    radial-gradient(circle at 18% 24%, rgb(var(--aged-gold-rgb) / 0.14), transparent 30rem);
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgb(var(--brick-rgb) / 0.2);
  background:
    linear-gradient(135deg, rgb(var(--ivory-light-rgb) / 0.92), rgb(var(--ivory-rgb) / 0.98)),
    var(--ivory);
  color: var(--brown-black);
  padding: clamp(1.1rem, 3vw, 1.65rem);
}

.article-retention,
.article-disclaimer {
  margin-top: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: clamp(2rem, 5vw, 3.6rem);
  color: var(--maudimi-text-primary);
}

.article-retention {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(18rem, 0.42fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid rgb(var(--brown-black-rgb) / 0.16);
  border-bottom: 1px solid rgb(var(--brown-black-rgb) / 0.1);
  background:
    linear-gradient(135deg, rgb(var(--ivory-light-rgb) / 0.7), rgb(var(--ivory-rgb) / 0.94)),
    var(--maudimi-panel-surface);
  padding: clamp(1.45rem, 4vw, 2.4rem) 0;
}

.article-retention--takeaway {
  grid-template-columns: minmax(0, 0.24fr) minmax(0, var(--maudimi-reading-width, 760px));
}

.article-retention--next-door {
  border-color: rgb(var(--aged-gold-rgb) / 0.26);
  background:
    radial-gradient(circle at 12% 20%, rgb(var(--aged-gold-rgb) / 0.1), transparent 20rem),
    linear-gradient(135deg, rgb(var(--ink-rgb) / 0.96), rgb(var(--brown-black-rgb) / 0.98));
  color: var(--maudimi-text-on-dark);
  padding-right: clamp(1rem, 3vw, 2rem);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.article-retention span,
.article-disclaimer strong {
  display: block;
  color: var(--maudimi-accent-main);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-retention h2 {
  max-width: 15ch;
  margin: 0;
  color: inherit;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 0.96;
}

.article-retention p,
.article-disclaimer p {
  max-width: 62ch;
  margin: 0.65rem 0 0;
  color: rgb(var(--brown-black-rgb) / 0.72);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.76;
}

.article-retention--next-door p {
  color: var(--maudimi-text-on-dark-soft);
}

.article-retention--next-door .button-link {
  justify-self: end;
  color: var(--maudimi-accent-precious);
}

.article-disclaimer {
  border-left: 1px solid rgb(var(--petrol-rgb) / 0.34);
  background: rgb(var(--ivory-light-rgb) / 0.62);
  padding: clamp(1rem, 3vw, 1.45rem) clamp(1rem, 3vw, 1.6rem);
}

.related-section--empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: end;
}

.maudimi-rubric-nav--bottom {
  margin-top: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}

.article-cta span {
  display: block;
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-cta p {
  max-width: 48ch;
  margin: 0.35rem 0 0;
  color: rgb(var(--brown-black-rgb) / 0.68);
  font-size: 0.96rem;
  line-height: 1.7;
}

.archive-hero__cta {
  margin-top: 1.35rem;
}

.note-paper .article-cta {
  width: 100%;
  margin: 2rem 0;
  padding: 1rem;
}

/* QA visibility pass: robust titles, long labels and premium motion cues. */
.page-title,
.article-title,
.note-title,
.archive-title,
.rubric-card h3,
.entry-card h3,
.entry-card__content h3,
.entry-card--featured .entry-card__content h3,
.home-afterword__aside h3,
.method-card h3,
.signature-notes strong,
.newsletter-panel h2,
.article-retention h2,
.article-pagination strong {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.rubric-card p,
.entry-card p,
.entry-card__content p,
.home-chapter-line a,
.method-card p,
.signature-notes p,
.article-retention p,
.article-disclaimer p {
  overflow-wrap: anywhere;
}

.rubric-card h3 {
  max-width: 13ch;
  font-size: clamp(1.7rem, 2.65vw, 3.05rem);
  line-height: 1.03;
}

.rubric-card--feature h3,
.rubric-card--size-feature h3 {
  max-width: 10ch;
  font-size: clamp(2.65rem, 5.3vw, 5rem);
}

.rubric-card--size-wide h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
}

.rubric-card--observatoire h3,
.rubric-card--size-wide.rubric-card--observatoire h3 {
  max-width: 15ch;
  font-size: clamp(1.55rem, 2.45vw, 2.75rem);
}

.entry-card__content h3 {
  max-width: 14ch;
  font-size: clamp(1.75rem, 2.75vw, 3rem);
  line-height: 1.04;
}

.entry-card--featured .entry-card__content h3 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 4.9vw, 4.85rem);
}

.home-afterword__aside h3,
.method-card h3 {
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.7vw, 3.45rem);
}

.newsletter-panel h2 {
  max-width: 11ch;
}

.maudimi-js-active .entry-card__link,
.maudimi-js-active .rubric-card,
.maudimi-js-active .method-card,
.maudimi-js-active .article-cover,
.maudimi-js-active .article-retention,
.maudimi-js-active .archive-hero__aside {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.maudimi-js-active .rubric-link.is-active {
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .article-cta,
  .article-retention,
  .related-section--empty {
    grid-template-columns: 1fr;
  }

  .article-cta,
  .article-retention--next-door {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-retention--next-door .button-link {
    justify-self: start;
  }

  .rubric-card h3,
  .rubric-card--feature h3,
  .rubric-card--size-feature h3,
  .rubric-card--size-wide h3,
  .rubric-card--observatoire h3,
  .entry-card__content h3,
  .entry-card--featured .entry-card__content h3 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.5vw, 3rem);
  }
}

