﻿:root {
  --ink: #141311;
  --brown-black: #221d19;
  --ivory: #f3eee5;
  --ivory-light: #f8f4ee;
  --aged-gold: #b28a4a;
  --brick: #7a4a37;
  --petrol: #2f4c53;
  --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;
  --image-street: url("../images/rue.png");
  --image-boutique: url("../images/boutique.png");
  --image-grimoire: url("../images/grimoire.png");
}

* {
  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;
}

.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 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 {
  color: var(--ivory-light);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::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);
}

.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 {
  grid-row: span 2;
  min-height: 24rem;
  background: rgba(243, 238, 229, 0.06);
}

.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 {
  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 {
    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 {
    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 {
    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 {
    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 {
    padding: 1rem;
  }

  .brand {
    font-size: 1.72rem;
  }

  .nav-links {
    display: none;
  }

  .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 {
    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 {
    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 {
    font-size: 2.15rem;
  }
}

@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--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: 112svh;
  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(7, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(4rem, 10vw, 8rem);
  border-top: 1px solid rgba(248, 244, 238, 0.14);
}

.home-chapter-line a {
  padding: 1rem 0;
  color: rgba(248, 244, 238, 0.62);
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.25vw, 2.2rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.home-chapter-line a:hover,
.home-chapter-line a:focus-visible {
  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);
  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__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-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;
  }

  .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__inner {
  position: relative;
  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;
}

.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--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-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-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-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-pensees .archive-hero__aside,
body.theme-pensees .entry-card__content {
  background: rgba(248, 244, 238, 0.74);
}

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-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-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;
  }
}

