:root {
  --paper: #fbf7ef;
  --shell: #f4eee5;
  --rose: #efe2dc;
  --ink: #272624;
  --muted: #6c665f;
  --plum: #4b3543;
  --forest: #245344;
  --pine: #173f32;
  --copper: #b46a45;
  --amber: #c89652;
  --gold: #d9aa3f;
  --line: rgba(39, 38, 36, 0.14);
  --shadow: 0 18px 55px rgba(39, 38, 36, 0.08);
  --frame-line: rgba(159, 117, 95, 0.22);
  --frame-line-cool: rgba(120, 144, 130, 0.24);
  --frame-highlight: rgba(255, 253, 249, 0.82);
  --frame-shadow: 0 18px 42px rgba(39, 38, 36, 0.052);
  --font-identity: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-reading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-signature: "Cormorant Garamond", Georgia, serif;
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Inter", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 63, 50, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(180, 106, 69, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 70%);
}

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

a:hover {
  color: var(--forest);
}

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

sup {
  font-size: 0.42em;
  line-height: 0;
  vertical-align: super;
}

p sup,
li sup,
blockquote sup {
  font-size: 0.58em;
}

strong sup {
  font-size: 0.66em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-back-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 60;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(184, 135, 88, 0.68);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.96);
  color: var(--forest);
  box-shadow: 0 14px 34px rgba(39, 38, 36, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-back-to-top span {
  display: block;
  font-family: var(--font-identity);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-1px);
}

.site-back-to-top:hover,
.site-back-to-top:focus-visible {
  border-color: rgba(217, 170, 63, 0.92);
  background: #fffdf9;
  color: var(--forest);
  outline: 2px solid rgba(217, 170, 63, 0.72);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 0;
  background: rgba(251, 247, 239, 0.98);
  backdrop-filter: blur(18px);
}

.site-header,
.site-header * {
  box-sizing: border-box;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 22px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(251, 247, 239, 0.92) 68%, rgba(251, 247, 239, 0));
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(36, 83, 68, 0.26) 18%, rgba(180, 106, 69, 0.38) 50%, rgba(217, 170, 63, 0.24) 78%, transparent 100%);
  pointer-events: none;
}

.nav-wrap {
  width: min(1500px, calc(100% - clamp(20px, 2.2vw, 40px)));
  max-width: 100%;
  min-height: 124px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.35vw, 22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 15px);
  flex: 0 1 clamp(300px, 26vw, 430px);
  min-width: 0;
  max-width: clamp(300px, 26vw, 430px);
}

.brand-mark {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border: 2px solid rgba(36, 83, 68, 0.18);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(39, 38, 36, 0.1);
}

.brand-text {
  display: grid;
  gap: 6px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 0.95;
}

.brand-note {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: none;
}

.site-header sup {
  font-size: 0.62em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(5px, 0.45vw, 10px);
  color: var(--muted);
  font-size: clamp(12px, 0.9vw, 13px);
  white-space: nowrap;
}

.main-nav > a,
.nav-story-link,
.nav-story-toggle,
.nav-follow-toggle {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  text-align: center;
}

.main-nav > a:not(:first-child, .nav-appointment),
.main-nav .nav-story,
.main-nav .nav-follow {
  position: relative;
  margin-left: clamp(4px, 0.5vw, 9px);
  padding-left: clamp(10px, 0.8vw, 16px);
}

.main-nav > a:not(:first-child, .nav-appointment)::before,
.main-nav .nav-story::before,
.main-nav .nav-follow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 24px;
  transform: translateY(-50%);
  background: rgba(120, 144, 130, 0.25);
  pointer-events: none;
}

.main-nav > a[href="/contact.html"] {
  margin-right: clamp(3px, 0.45vw, 8px);
}

.main-nav .nav-two-line {
  flex-direction: column;
  gap: 1px;
  line-height: 1.08;
}

.main-nav .nav-two-line span {
  display: block;
}

.nav-story {
  position: relative;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
}

.nav-story::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-story-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-story-link {
  color: inherit;
  cursor: pointer;
}

.nav-story-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 28px;
  min-width: 24px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.nav-story-toggle span {
  display: inline-block;
  margin-top: -3px;
  transform-origin: 50% 48%;
  transition: transform 180ms ease;
}

.nav-story.is-open .nav-story-toggle span {
  transform: rotate(180deg);
}

.nav-story-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  z-index: 24;
  width: max-content;
  min-width: 260px;
  max-width: min(360px, calc(100vw - 40px));
  margin: 0;
  padding: 12px;
  display: grid;
  gap: 3px;
  list-style: none;
  border: 1px solid rgba(180, 106, 69, 0.22);
  border-radius: 6px;
  background: rgba(251, 247, 239, 0.985);
  box-shadow: 0 18px 34px rgba(39, 38, 36, 0.12);
  transform: translateX(-50%);
}

.nav-story-menu[hidden] {
  display: none;
}

.nav-story-menu a {
  display: block;
  padding: 9px 11px;
  border-radius: 4px;
  color: var(--muted);
  line-height: 1.25;
  text-align: left;
  white-space: normal;
}

.nav-story-menu .nav-story-primary {
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(180, 106, 69, 0.18);
  border-radius: 4px 4px 0 0;
  color: var(--plum);
  font-weight: 600;
}

.nav-story-link:hover,
.nav-story-link:focus-visible,
.nav-story-toggle:hover,
.nav-story-toggle:focus-visible,
.nav-story.is-open .nav-story-link,
.nav-story.is-open .nav-story-toggle,
.nav-story.nav-story-active .nav-story-link {
  color: var(--forest);
  border-color: var(--copper);
}

.nav-story-toggle:hover,
.nav-story-toggle:focus-visible,
.nav-story.is-open .nav-story-toggle {
  color: var(--forest);
}

.nav-story-menu a:hover,
.nav-story-menu a:focus-visible,
.nav-story-menu a[aria-current="page"] {
  background: rgba(180, 106, 69, 0.08);
  color: var(--forest);
}

.nav-story-menu a[aria-current="page"] {
  font-weight: 600;
  box-shadow: inset 2px 0 0 rgba(180, 106, 69, 0.72);
}

.main-nav .nav-appointment {
  flex: 0 0 auto;
  margin-left: clamp(6px, 0.8vw, 14px);
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(31, 82, 67, 0.82);
  border-radius: 4px;
  background: var(--forest);
  color: #fffdf9;
  font-family: var(--font-identity);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(31, 82, 67, 0.12);
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav .nav-appointment:visited {
  color: #fffdf9;
}

.main-nav .nav-appointment:hover,
.main-nav .nav-appointment:focus-visible {
  border-color: var(--pine);
  background: var(--pine);
  color: #fffdf9;
  transform: translateY(-1px);
}

.nav-follow {
  position: relative;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
}

.nav-follow-toggle {
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.nav-follow-toggle:hover,
.nav-follow-toggle:focus-visible,
.nav-follow.is-open .nav-follow-toggle {
  color: var(--forest);
  border-color: var(--copper);
}

.nav-follow-menu {
  position: absolute;
  right: 50%;
  top: calc(100% + 8px);
  z-index: 20;
  min-width: 168px;
  padding: 10px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(180, 106, 69, 0.22);
  border-radius: 6px;
  background: rgba(251, 247, 239, 0.98);
  box-shadow: 0 18px 34px rgba(39, 38, 36, 0.12);
  transform: translateX(50%);
}

.nav-follow-menu[hidden] {
  display: none;
}

.nav-follow-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--muted);
  text-align: left;
}

.nav-follow-menu a:hover,
.nav-follow-menu a:focus-visible {
  background: rgba(180, 106, 69, 0.08);
  color: var(--forest);
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  color: var(--forest);
  border-color: var(--copper);
}

.hero,
.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-content: center;
  gap: 0;
  padding: 54px 0 76px;
}

.hero-kicker,
.section-kicker,
.page-kicker {
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--forest) !important;
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.08;
}

h1 {
  max-width: 920px;
  font-size: clamp(34px, 5.8vw, 62px);
}

.page-hero h1 {
  font-size: clamp(46px, 7vw, 82px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: 29px;
}

.no-break {
  white-space: nowrap;
}

.identity-line,
.signature {
  max-width: 870px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.24;
}

.identity-line {
  margin: 10px 0 0;
}

.manifesto {
  max-width: 960px;
  margin: 0 auto;
  color: var(--ink);
  text-align: center;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.38;
}

.atelier-presence {
  min-height: 116px;
  position: relative;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.58), rgba(244, 238, 229, 0.38)),
    radial-gradient(circle at 18% 20%, rgba(200, 150, 82, 0.12), transparent 24%),
    radial-gradient(circle at 76% 28%, rgba(23, 63, 50, 0.08), transparent 22%);
  overflow: hidden;
}

.atelier-presence span {
  position: absolute;
  display: block;
}

.atelier-window {
  top: 18px;
  left: 5%;
  width: 132px;
  height: 78px;
  border: 1px solid rgba(23, 63, 50, 0.16);
  border-bottom-color: rgba(180, 106, 69, 0.22);
  background:
    linear-gradient(90deg, transparent 49%, rgba(23, 63, 50, 0.12) 49% 51%, transparent 51%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.86), rgba(200, 150, 82, 0.1));
}

.atelier-window::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 77px;
  width: 210px;
  height: 1px;
  transform: rotate(8deg);
  background: linear-gradient(90deg, rgba(200, 150, 82, 0.34), transparent);
}

.atelier-desk {
  left: 18%;
  bottom: 24px;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 38, 36, 0.18), transparent);
}

.atelier-notebooks {
  left: 28%;
  bottom: 27px;
  width: 112px;
  height: 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.95) 0 30%, rgba(23, 63, 50, 0.72) 30% 55%, rgba(255, 253, 249, 0.92) 55% 77%, rgba(180, 106, 69, 0.34) 77%);
  box-shadow: 0 8px 24px rgba(39, 38, 36, 0.05);
}

.atelier-manuscript {
  right: 24%;
  bottom: 27px;
  width: 150px;
  height: 68px;
  border: 1px solid rgba(39, 38, 36, 0.09);
  background:
    repeating-linear-gradient(180deg, transparent 0 11px, rgba(39, 38, 36, 0.12) 11px 12px),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 253, 249, 0.62));
  transform: rotate(-2deg);
}

.atelier-manuscript::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 13px;
  width: 84px;
  height: 24px;
  border-bottom: 1px solid rgba(23, 63, 50, 0.18);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.atelier-library {
  right: 6%;
  bottom: 24px;
  width: 132px;
  height: 72px;
  border-bottom: 1px solid rgba(39, 38, 36, 0.16);
  background:
    linear-gradient(90deg, rgba(23, 63, 50, 0.28) 0 12px, transparent 12px 18px, rgba(255, 253, 249, 0.78) 18px 30px, transparent 30px 36px, rgba(180, 106, 69, 0.2) 36px 48px, transparent 48px 56px, rgba(23, 63, 50, 0.2) 56px 70px, transparent 70px 80px, rgba(255, 253, 249, 0.86) 80px 94px, transparent 94px);
}

.hero-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--forest), var(--copper), transparent);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-matter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
  margin-bottom: clamp(86px, 9vw, 122px);
  padding: clamp(38px, 6vw, 70px) clamp(28px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(36, 83, 68, 0.18);
  background:
    linear-gradient(105deg, rgba(23, 63, 50, 0.96) 0%, rgba(36, 83, 68, 0.88) 51%, rgba(244, 238, 229, 0.84) 51%, rgba(255, 253, 249, 0.96) 100%),
    radial-gradient(circle at 14% 20%, rgba(224, 178, 76, 0.2), transparent 30%);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.08);
}

.story-matter::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(224, 178, 76, 0.7), transparent);
}

.story-matter .section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0 22px;
  color: var(--gold);
}

.story-matter .section-kicker::before {
  content: "";
  width: 72px;
  height: 1px;
  background: currentColor;
}

.story-matter h2 {
  max-width: 560px;
  color: var(--paper) !important;
  font-size: clamp(48px, 6.7vw, 86px);
  line-height: 1.02;
}

.story-matter h2 span {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.story-matter .section-copy {
  position: relative;
  max-width: 620px;
  margin-left: auto;
  padding: 26px 0 0;
  color: var(--ink);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
  text-align: right;
}

.story-matter .section-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: min(38%, 240px);
  width: 86px;
  height: 1px;
  background: rgba(180, 106, 69, 0.46);
}

.story-matter .section-copy p:first-child {
  margin-top: 0;
  color: var(--forest);
  font-family: var(--font-identity);
  font-weight: 300;
  letter-spacing: -0.015em;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.28;
}

.story-matter .section-copy p {
  margin-bottom: 12px;
}

.story-matter .section-copy p:last-child {
  margin-bottom: 0;
}

.home-house-section {
  width: 100%;
  max-width: 100%;
  margin: clamp(70px, 8vw, 88px) 0 0;
  padding: 0 0 clamp(70px, 8vw, 88px);
  background: rgba(244, 238, 229, 0.74);
  box-shadow: 0 0 0 100vmax rgba(244, 238, 229, 0.74);
  clip-path: inset(0 -100vmax);
}

.home-house-visual {
  width: 100%;
  margin-inline: auto;
}

.home-house-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.home-house-trigger:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 6px;
}

.home-house-trigger img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.home-house-mobile-hint {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: center;
}

body.is-house-lightbox-open {
  overflow: hidden;
}

.home-house-lightbox[hidden] {
  display: none;
}

.home-house-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  background: rgba(43, 39, 35, 0.76);
}

.home-house-close {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 249, 0.68);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.home-house-close:hover,
.home-house-close:focus-visible {
  border-color: var(--copper);
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.home-house-lightbox-scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  place-items: start center;
  padding: 4px 0 24px;
}

.home-house-lightbox img {
  display: block;
  width: min(1536px, calc(100vw - 48px));
  max-width: none;
  height: auto;
  background: var(--shell);
}

@media (max-width: 760px) {
  .home-house-section {
    margin: 34px 0 30px;
  }

  .home-house-visual {
    width: min(100% - 24px, 680px);
  }

  .home-house-mobile-hint {
    display: block;
  }

  .home-house-lightbox {
    padding: 12px;
  }

  .home-house-lightbox-scroll {
    place-items: start start;
    padding-bottom: 32px;
  }

  .home-house-lightbox img {
    width: min(1536px, 190vw);
  }
}

.worktable {
  position: relative;
  margin: 0 0 clamp(96px, 9vw, 132px);
  padding: clamp(72px, 8vw, 88px) 0 clamp(82px, 9vw, 96px);
  border: 0;
  background: rgba(244, 238, 229, 0.74);
  box-shadow: 0 0 0 100vmax rgba(244, 238, 229, 0.74);
  clip-path: inset(0 -100vmax);
}

.worktable-heading {
  max-width: 760px;
  position: relative;
  z-index: 1;
  margin: 0 auto 34px;
  text-align: center;
}

.worktable-heading h2 {
  font-size: clamp(34px, 4.5vw, 56px);
}

.worktable-heading p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.worktable-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.worktable-item {
  --worktable-y: 0px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid rgba(39, 38, 36, 0.12);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 18px 42px rgba(39, 38, 36, 0.055);
  color: inherit;
  text-decoration: none;
  transform: translateY(var(--worktable-y));
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.worktable-item:hover,
.worktable-item:focus-visible {
  border-color: rgba(36, 83, 68, 0.36);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 24px 54px rgba(39, 38, 36, 0.085);
  transform: translateY(calc(var(--worktable-y) - 2px));
}

.worktable-item:focus-visible {
  outline: 2px solid rgba(180, 106, 69, 0.5);
  outline-offset: 4px;
}

.worktable-conversation {
  border-top-color: rgba(159, 117, 95, 0.34);
}

.worktable-story {
  border-top-color: rgba(23, 63, 50, 0.36);
}

.worktable-memory {
  border-top-color: rgba(180, 106, 69, 0.38);
}

.worktable-architexte {
  border-top-color: rgba(39, 38, 36, 0.22);
}

.worktable-library {
  border-top-color: rgba(200, 150, 82, 0.36);
}

.worktable-item h3 {
  margin-top: 0;
  color: var(--forest);
  font-size: 30px;
}

.worktable-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: -2px 0 12px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--shell);
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(23, 63, 50, 0.18);
}

.worktable-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.worktable-conversation,
.worktable-story {
  grid-column: 1 / span 5;
}

.worktable-story {
  grid-column: 6 / span 7;
  --worktable-y: 18px;
}

.worktable-memory {
  grid-column: 1 / span 5;
}

.worktable-architexte {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(20px, 2.8vw, 34px);
  min-height: clamp(390px, 28vw, 470px);
  --worktable-y: 18px;
}

.worktable-architexte .table-object {
  height: clamp(300px, 22vw, 380px);
  min-height: 300px;
  flex: none;
  background:
    radial-gradient(circle at 22% 50%, rgba(184, 135, 88, 0.12), transparent 34%),
    rgba(244, 238, 229, 0.72);
}

.worktable-library {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
  margin-top: 8px;
}

.table-object {
  width: 100%;
  height: 190px;
  flex: 0 0 190px;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--shell);
}

.table-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.76) contrast(0.96) brightness(1.04);
  transition: transform 260ms ease, opacity 260ms ease, filter 260ms ease;
}

.worktable-item:hover .table-object img {
  transform: scale(1.012);
  opacity: 0.97;
  filter: saturate(0.88) contrast(0.98) brightness(1.02);
}

.worktable-story .table-object,
.worktable-library .table-object {
  height: 220px;
  flex-basis: 220px;
}

.worktable-library .table-object {
  height: 100%;
  min-height: 230px;
  flex: none;
}

.worktable-story .table-object img {
  object-position: 50% 54%;
}

.worktable-memory .table-object img {
  object-position: 46% 54%;
}

.worktable-architexte .table-object img {
  object-fit: cover;
  object-position: 100% 50%;
}

.worktable-library .table-object img {
  object-position: 50% 55%;
}

.worktable-conversation .table-object img {
  object-position: 48% 54%;
}

@media (min-width: 761px) {
  .worktable-grid > .worktable-item.worktable-architexte {
    display: grid;
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 0.58fr);
    align-items: center;
    gap: clamp(20px, 2.8vw, 34px);
  }

  .worktable-grid > .worktable-item.worktable-architexte > div {
    grid-column: 1;
    grid-row: 1;
  }

  .worktable-grid > .worktable-item.worktable-architexte > .table-object {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 100%;
    height: clamp(300px, 22vw, 380px);
    min-height: 300px;
  }
}

.closing-invite {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
  margin: 0 0 clamp(112px, 11vw, 166px);
  padding: clamp(58px, 7vw, 84px) 0;
  border-block: 1px solid rgba(39, 38, 36, 0.12);
}

.closing-invite h2 {
  max-width: 620px;
  font-size: clamp(36px, 5.1vw, 64px);
}

.closing-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.58;
}

.closing-copy p {
  margin: 0;
}

.closing-copy p + p {
  margin-top: 18px;
}

.closing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.path-card {
  min-height: 374px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background: rgba(255, 252, 247, 0.82);
  position: relative;
  overflow: hidden;
}

.path-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 106, 69, 0.45), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.path-card:hover::after {
  opacity: 1;
}

.path-card h2 {
  font-size: 30px;
}

.path-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.text-link {
  width: fit-content;
  color: var(--forest);
  font-weight: 700;
  border-bottom: 1px solid var(--copper);
}

.door-visual {
  width: 100%;
  height: 126px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border-bottom: 1px solid rgba(39, 38, 36, 0.12);
  background: var(--shell);
}

.door-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.78) contrast(0.96) brightness(1.03);
  transition: transform 260ms ease, opacity 260ms ease, filter 260ms ease;
}

.path-card:hover .door-visual img {
  transform: scale(1.025);
  opacity: 0.95;
  filter: saturate(0.9) contrast(0.98) brightness(1.02);
}

.door-visual span {
  display: none;
}

.door-visual::before,
.door-visual::after {
  content: none;
}

.door-visual::before {
  bottom: 0;
  width: 70px;
  height: 92px;
  border: 1px solid rgba(23, 63, 50, 0.58);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(239, 226, 220, 0.32));
  box-shadow: inset 0 0 0 8px rgba(251, 247, 239, 0.78);
}

.door-visual::after {
  bottom: 15px;
  width: 46px;
  height: 62px;
  background: linear-gradient(135deg, rgba(200, 150, 82, 0.28), rgba(255, 253, 249, 0.9) 52%, rgba(36, 83, 68, 0.18));
}

.path-card:hover .door-visual::before {
  transform: translateX(-50%) translateY(-2px);
}

.path-card:hover .door-visual::after {
  transform: translateX(-45%) translateY(-1px);
}

.path-story .door-visual::before {
  width: 74px;
  height: 104px;
  border-radius: 38px 38px 0 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 253, 249, 0.98), rgba(200, 150, 82, 0.2) 30%, transparent 58%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(239, 226, 220, 0.32));
}

.path-story .door-visual::after {
  bottom: 8px;
  width: 102px;
  height: 86px;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 253, 249, 0.95), transparent 28%),
    linear-gradient(115deg, transparent 0 44%, rgba(180, 106, 69, 0.24) 44% 46%, transparent 46%),
    linear-gradient(65deg, transparent 0 50%, rgba(23, 63, 50, 0.18) 50% 52%, transparent 52%);
  box-shadow: 0 -18px 46px rgba(200, 150, 82, 0.22);
  opacity: 0.92;
}

.path-story .door-visual span {
  left: calc(50% - 54px);
  bottom: 14px;
  width: 108px;
  height: 58px;
  border-bottom: 1px solid rgba(23, 63, 50, 0.24);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.path-story .door-visual span::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 150, 82, 0.46);
  box-shadow: 0 0 28px rgba(200, 150, 82, 0.42);
}

.path-memory .door-visual::before {
  width: 72px;
  height: 98px;
  border-radius: 5px 5px 0 0;
  border-color: rgba(180, 106, 69, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(239, 226, 220, 0.38));
}

.path-memory .door-visual::after {
  width: 98px;
  height: 72px;
  bottom: 22px;
  background:
    linear-gradient(6deg, transparent 0 34%, rgba(180, 106, 69, 0.25) 34% 36%, transparent 36%),
    linear-gradient(-8deg, transparent 0 57%, rgba(23, 63, 50, 0.18) 57% 59%, transparent 59%),
    linear-gradient(90deg, rgba(255, 253, 249, 0.76) 0 35%, transparent 35% 38%, rgba(255, 253, 249, 0.86) 38% 68%, transparent 68% 71%, rgba(255, 253, 249, 0.72) 71%);
  border: 1px solid rgba(180, 106, 69, 0.28);
  box-shadow:
    -18px 11px 0 -8px rgba(255, 253, 249, 0.88),
    -18px 11px 0 -7px rgba(39, 38, 36, 0.12),
    18px -10px 0 -8px rgba(255, 253, 249, 0.86),
    18px -10px 0 -7px rgba(39, 38, 36, 0.1);
}

.path-memory .door-visual {
  background:
    radial-gradient(circle at 33% 32%, rgba(180, 106, 69, 0.12), transparent 19%),
    radial-gradient(circle at 67% 25%, rgba(23, 63, 50, 0.1), transparent 18%),
    linear-gradient(90deg, transparent 39%, rgba(39, 38, 36, 0.09) 39% 40%, transparent 40% 60%, rgba(39, 38, 36, 0.09) 60% 61%, transparent 61%);
}

.path-memory .door-visual span {
  left: calc(50% - 66px);
  bottom: 32px;
  width: 132px;
  height: 74px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.88) 0 30%, transparent 30% 35%, rgba(255, 253, 249, 0.82) 35% 65%, transparent 65% 70%, rgba(255, 253, 249, 0.9) 70%),
    radial-gradient(circle at 16% 24%, rgba(39, 38, 36, 0.18) 0 5px, transparent 6px),
    radial-gradient(circle at 52% 24%, rgba(180, 106, 69, 0.26) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 24%, rgba(23, 63, 50, 0.2) 0 5px, transparent 6px);
  border: 1px solid rgba(39, 38, 36, 0.08);
  transform: rotate(-2deg);
  opacity: 0.86;
}

.path-architexte .door-visual::before {
  width: 88px;
  height: 104px;
  border-radius: 2px 2px 0 0;
  border-color: rgba(23, 63, 50, 0.68);
  background:
    linear-gradient(90deg, transparent 49%, rgba(23, 63, 50, 0.22) 49% 51%, transparent 51%),
    repeating-linear-gradient(180deg, transparent 0 15px, rgba(39, 38, 36, 0.1) 15px 16px),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(36, 83, 68, 0.12));
}

.path-architexte .door-visual::after {
  width: 116px;
  height: 78px;
  bottom: 20px;
  border: 1px solid rgba(180, 106, 69, 0.28);
  background:
    linear-gradient(90deg, rgba(23, 63, 50, 0.2) 0 2px, transparent 2px 32px, rgba(23, 63, 50, 0.12) 32px 33px, transparent 33px),
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(180, 106, 69, 0.22) 12px 13px);
}

.path-architexte .door-visual span {
  left: calc(50% - 58px);
  bottom: 16px;
  width: 116px;
  height: 88px;
  background:
    linear-gradient(90deg, rgba(23, 63, 50, 0.32) 0 1px, transparent 1px 38px, rgba(23, 63, 50, 0.16) 38px 39px, transparent 39px),
    repeating-linear-gradient(180deg, transparent 0 10px, rgba(39, 38, 36, 0.12) 10px 11px);
  border-top: 2px solid rgba(23, 63, 50, 0.34);
  opacity: 0.78;
}

.path-architexte .door-visual span::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 22px;
  border: 1px solid rgba(180, 106, 69, 0.38);
}

.path-library .door-visual::before {
  width: 94px;
  height: 104px;
  border-radius: 30px 30px 0 0;
  background:
    linear-gradient(90deg, rgba(23, 63, 50, 0.22) 0 12%, transparent 12% 18%, rgba(180, 106, 69, 0.18) 18% 30%, transparent 30% 38%, rgba(23, 63, 50, 0.14) 38% 52%, transparent 52% 60%, rgba(200, 150, 82, 0.16) 60% 74%, transparent 74%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(239, 226, 220, 0.36));
}

.path-library .door-visual::after {
  width: 126px;
  height: 82px;
  bottom: 18px;
  border-radius: 44px 44px 0 0;
  background:
    radial-gradient(circle at 25% 28%, rgba(23, 63, 50, 0.18), transparent 12%),
    linear-gradient(22deg, transparent 0 53%, rgba(180, 106, 69, 0.24) 53% 55%, transparent 55%),
    linear-gradient(90deg, rgba(180, 106, 69, 0.12), rgba(255, 253, 249, 0.86), rgba(23, 63, 50, 0.14));
}

.path-library .door-visual span {
  left: calc(50% - 68px);
  bottom: 22px;
  width: 136px;
  height: 72px;
  background:
    linear-gradient(90deg, rgba(23, 63, 50, 0.3) 0 9px, transparent 9px 16px, rgba(180, 106, 69, 0.28) 16px 25px, transparent 25px 32px, rgba(200, 150, 82, 0.26) 32px 41px, transparent 41px 56px),
    linear-gradient(24deg, transparent 0 58%, rgba(23, 63, 50, 0.22) 58% 60%, transparent 60%),
    radial-gradient(circle at 83% 26%, rgba(180, 106, 69, 0.2), transparent 15%);
  border-bottom: 1px solid rgba(39, 38, 36, 0.12);
  opacity: 0.9;
}

.path-card .door-visual span,
.path-card .door-visual span::after {
  content: none;
  display: none;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.section.band {
  width: 100%;
  margin: 0;
  padding: 84px max(20px, calc((100% - 1180px) / 2));
  background: var(--shell);
  border-block: 1px solid var(--line);
}

.about-transition {
  padding: 54px 0 58px;
}

.transition-copy {
  max-width: 880px;
  margin-left: auto;
  padding-left: 28px;
  border-left: 2px solid rgba(180, 106, 69, 0.52);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.28;
}

.transition-copy p {
  margin: 0;
}

.transition-copy p + p {
  margin-top: 18px;
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.quote-panel {
  padding-left: 28px;
  border-left: 2px solid var(--copper);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.26;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.62fr);
  gap: 54px;
  align-items: end;
  padding: 76px 0 58px;
  position: relative;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero.compact {
  display: block;
  max-width: 900px;
}

.page-portal::before {
  content: "";
  position: absolute;
  top: 48px;
  right: min(2vw, 24px);
  width: clamp(110px, 18vw, 210px);
  height: clamp(160px, 24vw, 280px);
  border: 1px solid rgba(23, 63, 50, 0.16);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 253, 249, 0.96), rgba(251, 247, 239, 0.4) 42%, transparent 67%),
    linear-gradient(180deg, rgba(200, 150, 82, 0.12), rgba(23, 63, 50, 0.05));
  z-index: 0;
  pointer-events: none;
}

.page-portal::after {
  content: "";
  position: absolute;
  top: 86px;
  right: calc(min(2vw, 24px) + clamp(28px, 5vw, 62px));
  width: clamp(56px, 9vw, 98px);
  height: clamp(96px, 15vw, 164px);
  border-radius: 52px 52px 0 0;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.78), rgba(180, 106, 69, 0.08));
  z-index: 0;
  pointer-events: none;
}

.portal-memory::before {
  border-radius: 8px 8px 0 0;
  border-color: rgba(180, 106, 69, 0.17);
}

.portal-architexte::before {
  border-radius: 2px 2px 0 0;
}

.portal-library::before {
  background:
    repeating-linear-gradient(180deg, rgba(23, 63, 50, 0.07) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 50% 28%, rgba(255, 253, 249, 0.96), rgba(251, 247, 239, 0.4) 42%, transparent 67%),
    linear-gradient(180deg, rgba(200, 150, 82, 0.12), rgba(23, 63, 50, 0.05));
}

.page-lede {
  margin: 22px 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.28;
}

.page-copy {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.visual-panel {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.list-item,
.library-item,
.contact-panel {
  background: rgba(255, 252, 247, 0.78);
  padding: 28px;
}

.list-item {
  min-height: 118px;
  display: grid;
  align-content: center;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.library-item {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.library-item p {
  margin: 0;
  color: var(--muted);
}

.service-columns {
  column-count: 2;
  column-gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-columns li {
  break-inside: avoid;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
}

.contact-page {
  --contact-line: rgba(120, 144, 130, 0.24);
}

.contact-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 142px) 0 clamp(96px, 10vw, 148px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.78fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: start;
}

.contact-intro {
  max-width: 620px;
}

.contact-intro .section-kicker {
  color: var(--forest);
}

.contact-intro h1 {
  margin: 18px 0 0;
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.contact-lede {
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.58;
}

.contact-lede p,
.contact-coordinates p {
  margin: 0;
}

.contact-lede p + p {
  margin-top: 18px;
}

.contact-coordinates {
  margin-top: 46px;
  display: grid;
  gap: 18px;
}

.contact-coordinates > div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--contact-line);
}

.contact-coordinates h2 {
  margin: 0 0 8px;
  color: var(--copper);
  font-family: var(--font-identity);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-coordinates p,
.contact-coordinates a {
  color: var(--muted);
  font-size: 18px;
}

.contact-coordinates a {
  border-bottom: 1px solid rgba(180, 106, 69, 0.42);
}

.contact-secondary-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--copper);
  font-family: var(--font-identity);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(180, 106, 69, 0.42);
}

.contact-secondary-link:hover,
.contact-secondary-link:focus-visible {
  color: var(--copper);
}

.contact-form-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--contact-line);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(244, 238, 229, 0.62));
  box-shadow:
    var(--frame-shadow),
    inset 0 1px 0 var(--frame-highlight);
}

.contact-form-panel h2 {
  margin: 0 0 26px;
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.contact-required-note {
  margin: -14px 0 22px;
  color: var(--copper);
  font-family: var(--font-identity);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-panel form {
  display: grid;
  gap: 17px;
}

.form-row,
.contact-choice,
.contact-consent {
  display: grid;
  gap: 8px;
}

.form-row label,
.contact-choice legend,
.contact-consent label {
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid rgba(120, 144, 130, 0.32);
  border-radius: 5px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  font-family: var(--font-reading);
  font-size: 17px;
  line-height: 1.4;
  padding: 12px 13px;
}

.contact-form-panel textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  outline: 2px solid rgba(180, 106, 69, 0.24);
  border-color: rgba(180, 106, 69, 0.56);
}

.contact-choice {
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.contact-choice label,
.contact-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-reading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-choice input,
.contact-consent input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--forest);
}

.contact-field-note,
.contact-privacy-note {
  font-family: var(--font-reading);
  color: rgba(86, 80, 72, 0.78);
}

.contact-field-note {
  max-width: 560px;
  margin: -4px 0 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
}

.contact-privacy-note {
  margin: 4px 0 8px;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.5;
}

.contact-privacy-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.field-error,
.form-status {
  min-height: 1.2em;
  margin: 0;
  color: #9b4e3c;
  font-size: 15px;
  line-height: 1.35;
}

.form-status {
  color: var(--forest);
}

.contact-form-panel .button-link,
.contact-form-panel button {
  margin-top: 8px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.story-page {
  --story-sage: #789082;
  --story-sage-soft: rgba(120, 144, 130, 0.14);
}

.story-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) 0 clamp(86px, 9vw, 132px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(44px, 6vw, 82px);
  align-items: center;
}

.story-hero-copy {
  max-width: 760px;
}

.story-hero .page-kicker {
  color: var(--copper);
}

.story-page .page-kicker,
.story-page .section-kicker {
  color: var(--copper);
}

.story-intro-slot,
.story-text-panel,
.veroom-content,
.process-step {
  border: 1px solid rgba(39, 38, 36, 0.12);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 42px rgba(39, 38, 36, 0.045);
}

.story-intro-slot {
  position: relative;
  max-width: 660px;
  margin: 30px 0 28px;
  padding: 34px 34px 30px 48px;
  border-left: 2px solid rgba(120, 144, 130, 0.72);
  color: var(--muted);
  font-size: 19px;
}

.story-press-quote {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.95), rgba(244, 238, 229, 0.54));
  border-color: rgba(120, 144, 130, 0.22);
  box-shadow: 0 14px 34px rgba(39, 38, 36, 0.04);
}

.story-press-quote::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  color: rgba(120, 144, 130, 0.32);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
}

.story-press-quote blockquote {
  margin: 0;
}

.story-press-quote p {
  font-style: italic;
}

.story-placeholder {
  margin-top: 14px !important;
  color: rgba(91, 88, 82, 0.72);
  font-size: 15px;
  font-style: italic;
}

.press-signature {
  display: block;
  margin-top: 16px !important;
  color: var(--story-sage);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  text-align: right;
}

.press-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(91, 88, 82, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.press-more-link::after {
  content: "→";
  color: rgba(120, 144, 130, 0.82);
  transform: translateX(0);
  transition: transform 180ms ease, color 180ms ease;
}

.press-more-link:hover,
.press-more-link:focus-visible {
  color: var(--story-sage);
  transform: translateX(2px);
}

.press-more-link:hover::after,
.press-more-link:focus-visible::after {
  color: var(--forest);
  transform: translateX(4px);
}

.story-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.story-intro-slot p,
.story-text-panel p,
.veroom-content p,
.process-step p {
  margin: 0;
}

.story-hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.story-hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 253, 249, 0.52);
  pointer-events: none;
  z-index: 1;
}

.story-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.97) brightness(1.03);
}

.story-definition {
  width: 100%;
  margin: 0;
  padding: clamp(78px, 8vw, 114px) max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.78), rgba(247, 241, 233, 0.9)),
    radial-gradient(circle at 8% 18%, rgba(120, 144, 130, 0.1), transparent 28%),
    var(--paper);
  border-block: 1px solid rgba(120, 144, 130, 0.13);
}

.story-definition .intro-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.story-text-panel {
  padding: clamp(30px, 4vw, 48px);
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.story-text-panel p + p {
  margin-top: 16px;
}

.story-text-signature {
  margin-top: 26px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(183, 113, 70, 0.42);
}

.story-text-signature p {
  color: var(--pine);
}

.story-text-signature p:first-child {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
}

.story-text-signature p + p {
  margin-top: 10px;
  color: var(--muted);
}

.story-mindfulness {
  width: 100%;
  margin: 0;
  padding: clamp(74px, 8vw, 112px) max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(244, 238, 229, 0.74), rgba(255, 253, 249, 0.7)),
    radial-gradient(circle at 86% 14%, rgba(183, 113, 70, 0.12), transparent 26%),
    var(--shell);
  border-block: 1px solid var(--line);
}

.story-mindfulness-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.08fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.story-mindfulness-panel {
  position: relative;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(183, 113, 70, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.92), rgba(244, 238, 229, 0.68)),
    rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 44px rgba(39, 38, 36, 0.052);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.story-mindfulness-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 4vw, 44px);
  width: min(180px, 36%);
  height: 2px;
  background: rgba(183, 113, 70, 0.68);
}

.story-mindfulness-panel p {
  margin: 0;
}

.story-mindfulness-panel p + p {
  margin-top: 16px;
}

.story-mindfulness-panel strong {
  color: var(--forest);
  font-weight: 650;
}

.story-mindfulness-emphasis {
  padding-top: 18px;
  border-top: 1px solid rgba(183, 113, 70, 0.28);
  color: var(--pine);
  font-family: var(--font-heading);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.34;
}

.story-mindfulness-note {
  color: var(--muted);
  font-size: 15px;
  opacity: 0.82;
}

.story-doors {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(86px, 10vw, 132px) 0;
}

.story-doors-header {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 0;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 58px);
}

body.story-typo-system .story-doors-header #story-doors-title {
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif !important;
  font-weight: 300;
}

body.story-typo-system .story-doors-header p {
  font-family: "Source Sans 3", "Inter", "Avenir Next", "Segoe UI", sans-serif;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.story-door-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(14px, 1.7vw, 20px);
  row-gap: clamp(66px, 6vw, 86px);
  align-items: start;
  grid-auto-flow: dense;
}

.story-door-card {
  --door-y: 0px;
  min-height: 0;
  padding: clamp(21px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 11px;
  border: 1px solid rgba(120, 144, 130, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.92), rgba(241, 238, 229, 0.72)),
    rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.05);
  transform: translateY(var(--door-y));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.story-door-card:hover {
  transform: translateY(calc(var(--door-y) - 4px));
  border-color: rgba(120, 144, 130, 0.36);
  box-shadow: 0 22px 52px rgba(39, 38, 36, 0.075);
}

body.story-typo-system .story-door-card h3 {
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  color: var(--forest);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
}

body.story-typo-system .story-door-kicker {
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--copper) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

body.story-typo-system .story-door-card p {
  font-family: "Source Sans 3", "Inter", "Avenir Next", "Segoe UI", sans-serif;
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

body.story-typo-system .story-door-list {
  font-family: "Source Sans 3", "Inter", "Avenir Next", "Segoe UI", sans-serif;
  display: grid;
  gap: 5px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.story-door-list li::before {
  content: "— ";
  color: var(--copper);
}

.story-door-link {
  width: fit-content;
  margin-top: auto;
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(36, 83, 68, 0.22);
  text-underline-offset: 0.28em;
}

.story-door-link:hover,
.story-door-link:focus-visible {
  color: var(--copper);
  text-decoration-color: rgba(180, 106, 69, 0.58);
}

.story-books-showcase {
  width: 100%;
  margin: 0;
  padding: clamp(82px, 9vw, 122px) max(20px, calc((100% - 1180px) / 2));
  border-block: 1px solid rgba(120, 144, 130, 0.12);
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 135, 88, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(248, 240, 232, 0.82), rgba(255, 253, 249, 0.74));
}

.story-books-showcase-inner {
  display: grid;
  gap: clamp(42px, 5vw, 68px);
}

.story-books-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.story-books-showcase-heading .section-kicker,
.story-books-showcase-heading h2 {
  grid-column: 1;
}

.story-books-showcase-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.04;
}

.story-books-showcase-intro {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 650px;
  color: var(--muted);
  font-family: "Source Sans 3", "Inter", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.62;
}

.story-books-showcase-intro p {
  margin: 0;
}

.story-books-showcase-intro p + p {
  margin-top: 14px;
}

.story-showcase-group {
  display: grid;
  gap: clamp(24px, 3.4vw, 38px);
}

.story-showcase-group + .story-showcase-group {
  margin-top: clamp(46px, 6vw, 76px);
  padding-top: clamp(34px, 4.5vw, 52px);
  border-top: 1px solid rgba(104, 75, 92, 0.14);
}

.story-showcase-group h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.12;
}

.story-showcase-published-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.story-showcase-book-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(104, 75, 92, 0.17);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 44px rgba(39, 38, 36, 0.055);
}

.story-showcase-book-cover {
  display: grid;
  min-height: 265px;
  place-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(104, 75, 92, 0.1);
  background:
    radial-gradient(circle at 76% 20%, rgba(184, 135, 88, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(232, 221, 226, 0.32));
}

.story-showcase-book-cover img {
  display: block;
  width: auto;
  max-width: min(170px, 82%);
  height: auto;
  max-height: 220px;
  border-radius: 3px;
  box-shadow: 0 14px 32px rgba(39, 38, 36, 0.15);
}

.story-showcase-book-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
}

.story-showcase-book-copy h4,
.story-showcase-private-book h4 {
  margin: 0;
  color: var(--forest);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.14;
}

.story-showcase-book-copy p:not(.story-showcase-status) {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Source Sans 3", "Inter", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.story-showcase-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--plum);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(184, 135, 88, 0.62);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  text-transform: uppercase;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.story-showcase-link:hover,
.story-showcase-link:focus-visible {
  color: var(--forest);
  text-decoration-color: rgba(184, 135, 88, 0.9);
}

.story-showcase-private-head {
  max-width: 820px;
}

.story-showcase-private-head p,
.story-showcase-confidentiality,
.story-showcase-final p {
  color: var(--muted);
  font-family: "Source Sans 3", "Inter", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.58;
}

.story-showcase-private-head p {
  margin: 14px 0 0;
  font-size: clamp(17px, 1.2vw, 19px);
}

.story-showcase-private-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.1vw, 24px);
}

.story-showcase-private-book {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(104, 75, 92, 0.15);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.58);
}

.story-showcase-private-cover {
  display: grid;
  width: 88px;
  aspect-ratio: 2 / 3;
  place-items: center;
  padding: 8px;
  background: rgba(232, 221, 226, 0.24);
}

.story-showcase-private-cover img {
  display: block;
  max-width: 100%;
  max-height: 118px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(39, 38, 36, 0.12);
}

.story-showcase-private-book h4 {
  font-size: clamp(19px, 1.6vw, 23px);
}

.story-showcase-private-link {
  justify-self: center;
  margin: 2px auto 0;
}

.story-showcase-confidentiality {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(104, 75, 92, 0.78);
  font-size: 15px;
  text-align: center;
}

.story-showcase-final {
  max-width: 930px;
  margin: clamp(50px, 6vw, 76px) auto 0;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(184, 135, 88, 0.28);
  border-left: 2px solid rgba(184, 135, 88, 0.5);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 20px 52px rgba(39, 38, 36, 0.055);
}

.story-showcase-final h3 {
  margin: 0;
  color: var(--plum);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(27px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 1.16;
}

.story-showcase-final p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(17px, 1.2vw, 19px);
}

.story-showcase-final .button-link {
  margin-top: 26px;
}

.story-books-gateway {
  width: 100%;
  margin: 0;
  padding: clamp(58px, 6.8vw, 88px) max(20px, calc((100% - 1180px) / 2));
  border-block: 1px solid rgba(120, 144, 130, 0.1);
  background:
    radial-gradient(circle at 16% 10%, rgba(184, 135, 88, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(248, 240, 232, 0.78), rgba(255, 253, 249, 0.7));
}

.story-books-gateway-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(184, 135, 88, 0.42);
}

.story-books-gateway-heading h2 {
  max-width: 470px;
  margin: 0;
  color: var(--forest);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 300;
  line-height: 1.04;
}

.story-books-gateway-copy {
  max-width: 660px;
  color: var(--muted);
  font-family: "Source Sans 3", "Inter", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.62;
}

.story-books-gateway-copy p {
  margin: 0;
}

.story-books-gateway-copy p + p {
  margin-top: 14px;
}

.story-books-gateway-proof {
  width: fit-content;
  margin-top: 20px !important;
  color: rgba(104, 75, 92, 0.78);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.story-books-gateway-actions {
  margin-top: clamp(24px, 3vw, 34px);
}

.story-books-gateway-actions .button-link {
  max-width: 100%;
  white-space: normal;
}

.story-info-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  padding: 0;
  border: 1px solid rgba(178, 104, 76, 0.42);
  border-radius: 999px;
  background: rgba(252, 248, 241, 0.78);
  color: var(--copper);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  line-height: 1;
  transform: translateY(-1px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.story-info-trigger:hover,
.story-info-trigger:focus-visible {
  background: rgba(178, 104, 76, 0.12);
  border-color: rgba(178, 104, 76, 0.72);
  color: var(--forest);
  outline: none;
  transform: translateY(-2px);
}

.story-modal[hidden] {
  display: none;
}

.story-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.story-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(39, 38, 36, 0.22);
  cursor: pointer;
}

.story-modal-panel {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(178, 104, 76, 0.24);
  border-radius: 10px;
  background: rgba(252, 248, 241, 0.97);
  box-shadow: 0 28px 70px rgba(39, 38, 36, 0.18);
  color: var(--forest);
  animation: storyModalIn 190ms ease-out both;
}

.story-modal-panel h2 {
  max-width: 430px;
  margin: 0 42px 20px 0;
  color: var(--forest);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
}

.story-modal-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.story-modal-panel p + p {
  margin-top: 14px;
}

.story-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(178, 104, 76, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--forest);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.story-modal-close:hover,
.story-modal-close:focus-visible {
  background: rgba(178, 104, 76, 0.1);
  border-color: rgba(178, 104, 76, 0.42);
  outline: none;
  transform: rotate(4deg);
}

body.has-story-modal {
  overflow: hidden;
}

@keyframes storyModalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.story-door-conversation {
  grid-column: 1 / span 5;
  min-height: 250px;
}

.story-door-force {
  grid-column: 6 / span 3;
  min-height: 318px;
  --door-y: 18px;
}

.story-door-tale {
  grid-column: 9 / span 4;
  min-height: 260px;
  --door-y: 10px;
}

.story-door-ritual {
  grid-column: 5 / span 4;
  grid-row: 2;
  min-height: 236px;
  --door-y: 10px;
}

.story-door-letter {
  grid-column: 1 / span 4;
  grid-row: 2;
  min-height: 212px;
  --door-y: -34px;
}

.story-door-support {
  grid-column: 9 / span 4;
  grid-row: 2;
  min-height: 236px;
  --door-y: -28px;
}

.story-veroom {
  width: 100%;
  margin: 0;
  padding: clamp(92px, 11vw, 148px) max(24px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 170, 63, 0.08), transparent 24%),
    linear-gradient(135deg, var(--pine), var(--forest));
  color: var(--paper);
  border-block: 1px solid rgba(255, 253, 249, 0.12);
}

.veroom-frame {
  position: relative;
  width: min(820px, 100%);
  margin: 0 auto;
}

.veroom-frame::before {
  content: none;
}

.veroom-frame > * {
  position: relative;
  z-index: 1;
}

.story-veroom .section-kicker {
  margin: 0 0 18px;
  color: rgba(217, 170, 63, 0.82);
}

.story-veroom h2 {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 253, 249, 0.78) !important;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.08;
}

.veroom-subtitle {
  margin: 12px 0 0;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(44px, 6.2vw, 78px);
  font-style: italic;
  line-height: 1.04;
}

.veroom-content {
  max-width: 690px;
  margin-top: clamp(34px, 5vw, 54px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 14px;
  color: rgba(255, 253, 249, 0.82);
}

.veroom-content p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
}

.veroom-content .veroom-highlight {
  color: rgba(217, 170, 63, 0.82);
}

.story-veroom .button-link {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: clamp(58px, 7vw, 88px);
  border-color: rgba(255, 253, 249, 0.34);
  background: var(--paper);
  color: var(--forest);
}

.story-veroom .button-link:hover {
  border-color: rgba(217, 170, 63, 0.74);
  background: rgba(255, 253, 249, 0.9);
  color: var(--pine);
}

.story-process {
  padding-block: clamp(74px, 8vw, 108px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-step {
  min-height: 232px;
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(120, 144, 130, 0.48);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 24px;
}

.process-step h3 {
  font-size: clamp(27px, 3vw, 34px);
}

.process-step p {
  color: var(--muted);
}

.story-process-cta {
  max-width: 720px;
  margin: clamp(30px, 4vw, 44px) auto 0;
  text-align: center;
}

.story-process-cta p {
  margin: 0;
  color: var(--copper);
  font-family: var(--font-identity);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1.28;
}

.story-process-cta .button-link {
  display: inline-flex;
  margin-top: 18px;
}

.story-network-block {
  padding-top: 0;
}

.story-network-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(30px, 4.5vw, 54px);
  border: 1px solid rgba(159, 117, 95, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(217, 170, 63, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.9), rgba(244, 238, 229, 0.68));
  box-shadow: 0 22px 54px rgba(39, 38, 36, 0.055);
}

.story-network-copy {
  max-width: 780px;
}

.story-network-copy .section-kicker {
  margin: 0 0 16px;
  color: var(--copper) !important;
}

.story-network-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--green);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
}

.story-network-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.story-network-button {
  justify-self: end;
  text-align: center;
  white-space: normal;
}

body.story-typo-system {
  --font-identity: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-reading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-signature: "Cormorant Garamond", Georgia, serif;
  font-family: var(--font-reading);
  font-weight: 400;
}

body.story-typo-system .site-header,
body.story-typo-system .brand-name,
body.story-typo-system .main-nav,
body.story-typo-system .nav-toggle,
body.story-typo-system .button-link,
body.story-typo-system button,
body.story-typo-system .hero-kicker,
body.story-typo-system .section-kicker,
body.story-typo-system .page-kicker,
body.story-typo-system .story-door-kicker,
body.story-typo-system .press-more-link,
body.story-typo-system .footer-primary-links,
body.story-typo-system .footer-legal-links {
  font-family: var(--font-identity);
}

body.story-typo-system .story-page h1,
body.story-typo-system .story-page h2,
body.story-typo-system .story-page h3,
body.story-typo-system .story-modal-panel h2,
body.story-typo-system .footer-identity strong {
  font-family: var(--font-identity) !important;
  font-weight: 400;
  letter-spacing: -0.015em;
}

body.story-typo-system .story-page h1 {
  font-weight: 300;
  line-height: 1.02;
}

body.story-typo-system .story-page h2,
body.story-typo-system .story-modal-panel h2 {
  font-weight: 300;
  line-height: 1.08;
}

body.story-typo-system .story-page h3 {
  font-weight: 500;
  line-height: 1.15;
}

body.story-typo-system .hero-kicker,
body.story-typo-system .section-kicker,
body.story-typo-system .page-kicker,
body.story-typo-system .story-door-kicker {
  font-weight: 600;
  letter-spacing: 0.10em;
}

body.story-typo-system p,
body.story-typo-system li,
body.story-typo-system blockquote,
body.story-typo-system cite,
body.story-typo-system .brand-note,
body.story-typo-system .footer-identity,
body.story-typo-system .footer-legal {
  font-family: var(--font-reading);
  font-weight: 400;
}

body.story-typo-system strong {
  font-weight: 600;
}

body.story-typo-system .story-intro-slot,
body.story-typo-system .story-text-panel,
body.story-typo-system .story-door-card p,
body.story-typo-system .story-door-list,
body.story-typo-system .veroom-content,
body.story-typo-system .process-step p,
body.story-typo-system .story-modal-panel p {
  font-family: var(--font-reading);
}

body.story-typo-system .story-door-card h3,
body.story-typo-system .process-step h3 {
  font-family: var(--font-identity) !important;
}

body.story-typo-system .process-step span {
  font-family: var(--font-identity);
  font-weight: 500;
}

body.story-typo-system .veroom-subtitle {
  font-family: var(--font-signature) !important;
  font-style: italic;
  font-weight: 400;
}

body.story-typo-system .footer-signature {
  font-family: var(--font-identity);
  font-style: italic;
  font-weight: 300;
}

body.story-typo-system .footer-signature::after {
  font-family: var(--font-identity);
}

body.story-typo-system .story-press-quote::before {
  font-family: var(--font-identity);
  font-weight: 300;
}

body.home-typo-system {
  --font-identity: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-reading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-family: var(--font-reading);
  font-weight: 400;
}

body.home-typo-system .site-header,
body.home-typo-system .brand-name,
body.home-typo-system .main-nav,
body.home-typo-system .nav-toggle,
body.home-typo-system .section-kicker,
body.home-typo-system .button-link,
body.home-typo-system button,
body.home-typo-system .footer-primary-links,
body.home-typo-system .footer-legal-links {
  font-family: var(--font-identity);
}

body.home-typo-system h1,
body.home-typo-system h2,
body.home-typo-system .footer-identity strong {
  font-family: var(--font-identity) !important;
  font-weight: 300;
  letter-spacing: -0.015em;
}

body.home-typo-system h3 {
  font-family: var(--font-identity) !important;
  font-weight: 500;
  letter-spacing: -0.01em;
}

body.home-typo-system #story-matter-title {
  font-family: var(--serif) !important;
  font-weight: 400;
  letter-spacing: 0;
}

body.home-typo-system .worktable-item h3 {
  font-weight: 500;
  letter-spacing: -0.01em;
}

body.home-typo-system .section-kicker {
  font-weight: 600;
  letter-spacing: 0.10em;
}

body.home-typo-system p,
body.home-typo-system li,
body.home-typo-system .brand-note,
body.home-typo-system .story-matter .section-copy,
body.home-typo-system .worktable-item p,
body.home-typo-system .closing-copy,
body.home-typo-system .footer-identity,
body.home-typo-system .footer-legal {
  font-family: var(--font-reading);
  font-weight: 400;
}

body.home-typo-system strong {
  font-weight: 600;
}

body.home-typo-system .story-matter .section-copy p:first-child {
  font-family: var(--font-identity);
  font-weight: 300;
  letter-spacing: -0.015em;
}

body.home-typo-system .button-link,
body.home-typo-system button {
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.home-typo-system .footer-signature {
  font-family: var(--font-identity);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}

body.home-typo-system .footer-signature::after {
  font-family: var(--font-identity);
}

.memory-page {
  --memory-voice: #9f755f;
  --memory-deep: #6f5145;
  --memory-light: #ead7bc;
  --memory-blush: #f3e7dc;
  --memory-line: rgba(159, 117, 95, 0.24);
  background:
    radial-gradient(circle at 15% 18%, rgba(234, 215, 188, 0.34), transparent 30%),
    radial-gradient(circle at 88% 42%, rgba(159, 117, 95, 0.11), transparent 28%),
    var(--paper);
}

.memory-page h1,
.memory-page h2,
.memory-page h3 {
  color: var(--memory-voice) !important;
}

.memory-page .page-kicker,
.memory-page .section-kicker {
  color: var(--memory-voice);
}

.memory-page .memory-green-kicker {
  color: var(--forest);
}

.memory-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(82vh - 96px);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 86px) 0 clamp(56px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.76fr);
  gap: clamp(46px, 6vw, 84px);
  align-items: center;
}

.memory-hero-copy {
  max-width: 740px;
}

.memory-intro-slot,
.memory-text-panel,
.memory-offer,
.memory-process-list {
  border: 1px solid rgba(159, 117, 95, 0.18);
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 42px rgba(39, 38, 36, 0.045);
}

.memory-intro-slot {
  max-width: 650px;
  margin: 24px 0 0;
  padding: 26px 30px;
  border-left: 2px solid rgba(159, 117, 95, 0.62);
  color: var(--muted);
  font-size: 19px;
}

.memory-intro-slot p,
.memory-text-panel p,
.memory-offer p,
.memory-process-list p {
  margin: 0;
}

.memory-intro-slot p + p {
  margin-top: 12px;
}

.memory-hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px 6px 92px 6px;
  background: linear-gradient(135deg, rgba(234, 215, 188, 0.42), rgba(255, 253, 249, 0.92));
  box-shadow: var(--shadow);
}

.memory-hero-visual::before,
.memory-hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.memory-hero-visual::before {
  inset: 18px;
  border: 1px solid rgba(255, 253, 249, 0.56);
  border-radius: 3px 3px 74px 3px;
}

.memory-hero-visual::after {
  left: 28px;
  bottom: 28px;
  width: 128px;
  height: 1px;
  background: linear-gradient(90deg, var(--memory-light), transparent);
}

.memory-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.76) contrast(0.96) brightness(1.08);
}

.memory-compass {
  width: min(1030px, calc(100% - 40px));
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding: clamp(18px, 2.4vw, 28px) 0;
  text-align: center;
  border-block: 1px solid var(--memory-line);
}

.memory-compass p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--memory-voice);
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
}

.memory-compass span {
  color: var(--forest);
}

.memory-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0;
}

.memory-who {
  width: 100%;
  margin: 0;
  padding: clamp(64px, 7.5vw, 96px) max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.05fr);
  gap: clamp(46px, 6vw, 86px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(244, 238, 229, 0.72), rgba(255, 253, 249, 0.64)),
    radial-gradient(circle at 84% 12%, rgba(159, 117, 95, 0.11), transparent 28%),
    var(--shell);
  border-block: 1px solid rgba(159, 117, 95, 0.12);
}

.memory-storytherapie-bridge {
  grid-column: 1 / -1;
  width: min(880px, 100%);
  margin: clamp(20px, 3vw, 34px) auto 0;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 4vw, 44px);
  border-top: 1px solid rgba(159, 117, 95, 0.26);
  border-bottom: 1px solid rgba(159, 117, 95, 0.18);
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.62;
  text-align: left;
}

.memory-storytherapie-bridge p {
  margin: 0;
}

.memory-storytherapie-bridge p + p {
  margin-top: 14px;
}

.memory-storytherapie-bridge .section-kicker {
  margin-bottom: 14px;
}

.memory-storytherapie-emphasis {
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.2;
}

.memory-section-heading {
  max-width: 650px;
}

.memory-section-heading h2 {
  margin-top: 8px;
}

#memory-process-title {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(36px, 4.2vw, 56px);
  white-space: normal;
}

.memory-process .section-kicker {
  text-align: center;
}

.memory-text-panel {
  min-height: 260px;
  padding: clamp(34px, 5vw, 58px);
  display: grid;
  align-content: center;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.memory-text-panel p + p {
  margin-top: 18px;
}

.memory-offers {
  width: 100%;
  margin: 0;
  padding: clamp(66px, 8vw, 104px) max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.86), rgba(247, 241, 233, 0.62)),
    radial-gradient(circle at 12% 0%, rgba(234, 215, 188, 0.26), transparent 34%),
    var(--paper);
  border-block: 1px solid rgba(159, 117, 95, 0.14);
}

.memory-offers-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.memory-offers-header {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.memory-offers-header .memory-section-heading {
  justify-self: center;
  text-align: center;
}

.memory-offers-note {
  max-width: 520px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.memory-offers-note-title {
  margin-bottom: 12px;
  color: var(--memory-deep);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.18;
}

.memory-offers-note p + p {
  margin-top: 12px;
}

.memory-offers-note strong {
  color: var(--memory-deep);
  font-weight: 600;
}

.memory-offer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.memory-offer {
  min-height: 250px;
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}

.memory-offer-large {
  grid-column: span 7;
  min-height: 320px;
}

.memory-offer:not(.memory-offer-large):not(.memory-offer-wide) {
  grid-column: span 5;
}

.memory-offer-wide {
  grid-column: 4 / span 9;
  min-height: 220px;
  transform: translateY(-18px);
}

.memory-offer span,
.memory-process-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(159, 117, 95, 0.52);
  border-radius: 50%;
  color: var(--memory-deep);
  font-family: var(--serif);
  font-size: 23px;
}

.memory-offer h3 {
  font-size: clamp(28px, 3vw, 36px);
}

.memory-offer p {
  color: var(--muted);
}

.memory-form-grid {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 34px;
}

.memory-form-column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.memory-form-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(159, 117, 95, 0.18);
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 42px rgba(39, 38, 36, 0.052);
  outline: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.memory-form-card:hover,
.memory-form-card.is-open {
  border-color: rgba(159, 117, 95, 0.38);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 24px 54px rgba(39, 38, 36, 0.08);
  transform: translateY(-2px);
}

.memory-form-card:focus-within {
  border-color: rgba(159, 117, 95, 0.4);
  box-shadow: 0 24px 54px rgba(39, 38, 36, 0.075);
}

.memory-form-hommage {
  min-height: auto;
  gap: 14px;
}

.memory-form-hommage .memory-form-visual {
  height: 166px;
}

.memory-form-paroles {
  min-height: auto;
}

.memory-form-paroles .memory-form-visual {
  height: auto;
  aspect-ratio: 1596 / 986;
  background: transparent;
  border-color: rgba(159, 117, 95, 0.08);
}

.memory-form-visual {
  position: relative;
  height: 184px;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.9), rgba(234, 215, 188, 0.35)),
    radial-gradient(circle at 78% 20%, rgba(159, 117, 95, 0.14), transparent 24%);
  border: 1px solid rgba(159, 117, 95, 0.12);
  transition: height 260ms ease, opacity 260ms ease;
}

.memory-form-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.82) contrast(0.96) brightness(1.04);
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

.memory-form-card.is-open .memory-form-visual img {
  opacity: 0.82;
  filter: saturate(0.72) contrast(0.94) brightness(1.08);
  transform: scale(1.015);
}

.memory-form-portrait .memory-form-visual {
  height: auto;
  aspect-ratio: 1685 / 934;
  background: transparent;
  border-color: rgba(159, 117, 95, 0.08);
}

.memory-form-portrait.is-open .memory-form-visual {
  height: auto;
  aspect-ratio: 1685 / 934;
}

.memory-form-paroles.is-open .memory-form-visual {
  height: auto;
  aspect-ratio: 1596 / 986;
}

.memory-form-portrait .memory-form-visual img {
  object-fit: cover;
}

.memory-form-souvenir .memory-form-visual {
  height: auto;
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(239, 226, 207, 0.34)),
    rgba(255, 253, 249, 0.7);
  border-color: rgba(159, 117, 95, 0.1);
}

.memory-form-souvenir.is-open .memory-form-visual {
  height: auto;
  aspect-ratio: 3 / 2;
}

.memory-form-souvenir .memory-form-visual img {
  object-fit: contain;
}

.memory-form-souvenir,
.memory-form-paroles {
  gap: 14px;
}

.memory-form-card > div {
  display: grid;
  gap: 8px;
}

.memory-form-card > div > span {
  color: var(--memory-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.memory-form-card h3 {
  font-size: 30px;
}

.memory-form-card p,
.memory-form-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.memory-form-copy {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
  transition: opacity 180ms ease, max-height 220ms ease, transform 220ms ease;
  max-height: 230px;
  overflow: hidden;
}

.memory-card-toggle {
  width: fit-content;
  margin: -4px 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(111, 81, 69, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.memory-card-toggle:hover,
.memory-card-toggle:focus-visible {
  color: var(--memory-deep);
  outline: none;
  transform: translateX(-2px);
}

.memory-form-copy ul {
  display: grid;
  justify-items: end;
  gap: 2px;
  margin: 4px 0 0 auto;
  padding: 0;
  list-style: none;
  text-align: right;
  font-size: 13px;
  line-height: 1.25;
}

.memory-form-copy li {
  position: relative;
  padding-left: 0;
  padding-right: 14px;
}

.memory-form-copy li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.58em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(159, 117, 95, 0.52);
}

.memory-form-visual span {
  position: absolute;
  display: block;
}

.memory-card-detail {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  border: 0 solid rgba(159, 117, 95, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(251, 247, 239, 0.96)),
    var(--paper);
  box-shadow: 0 0 0 rgba(39, 38, 36, 0);
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 300ms ease, padding 260ms ease, border-width 260ms ease, opacity 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.memory-card-detail[hidden] {
  display: none;
}

.memory-form-card.is-open .memory-card-detail {
  display: grid;
  max-height: 920px;
  padding: 19px 20px 20px;
  gap: 12px;
  border-width: 1px;
  box-shadow: 0 16px 32px rgba(39, 38, 36, 0.07);
  opacity: 1;
  transform: translateY(0);
}

.memory-card-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 13.8px;
  line-height: 1.62;
}

.memory-vellum {
  left: 26px;
  top: 24px;
  width: 56%;
  height: 68%;
  border: 1px solid rgba(159, 117, 95, 0.22);
  background:
    linear-gradient(rgba(159, 117, 95, 0.18), rgba(159, 117, 95, 0.18)) 20px 38px / 62% 1px no-repeat,
    linear-gradient(rgba(159, 117, 95, 0.14), rgba(159, 117, 95, 0.14)) 20px 58px / 74% 1px no-repeat,
    linear-gradient(rgba(159, 117, 95, 0.12), rgba(159, 117, 95, 0.12)) 20px 78px / 54% 1px no-repeat,
    rgba(255, 253, 249, 0.72);
  transform: rotate(-2deg);
}

.memory-ribbon {
  right: 30px;
  bottom: 26px;
  width: 96px;
  height: 10px;
  border-radius: 999px;
  background: rgba(159, 117, 95, 0.32);
  transform: rotate(-17deg);
}

.memory-stem {
  right: 58px;
  top: 30px;
  width: 1px;
  height: 82px;
  background: rgba(111, 81, 69, 0.38);
  transform: rotate(24deg);
}

.memory-stem::before,
.memory-stem::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  border: 1px solid rgba(111, 81, 69, 0.32);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.memory-stem::before {
  left: 0;
  top: 18px;
  transform: rotate(-18deg);
}

.memory-stem::after {
  right: 0;
  top: 44px;
  transform: rotate(170deg);
}

.memory-photo {
  width: 104px;
  height: 76px;
  padding: 8px;
  border: 1px solid rgba(159, 117, 95, 0.18);
  background:
    linear-gradient(rgba(111, 81, 69, 0.16), rgba(111, 81, 69, 0.16)) center / 70% 58% no-repeat,
    rgba(255, 253, 249, 0.82);
  box-shadow: 0 14px 24px rgba(39, 38, 36, 0.07);
}

.memory-photo-one {
  left: 28px;
  top: 32px;
  transform: rotate(-5deg);
}

.memory-photo-two {
  left: 112px;
  top: 62px;
  transform: rotate(4deg);
}

.memory-jewel {
  right: 44px;
  bottom: 34px;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(159, 117, 95, 0.42);
  border-radius: 50%;
}

.memory-jewel::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(217, 170, 63, 0.54);
  border-radius: 50%;
}

.memory-letter {
  left: 28px;
  top: 32px;
  width: 66%;
  height: 54%;
  border: 1px solid rgba(159, 117, 95, 0.22);
  background:
    linear-gradient(155deg, transparent 49%, rgba(159, 117, 95, 0.18) 50%, transparent 51%),
    linear-gradient(25deg, transparent 49%, rgba(159, 117, 95, 0.14) 50%, transparent 51%),
    rgba(255, 253, 249, 0.74);
}

.memory-watch {
  right: 36px;
  top: 34px;
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(111, 81, 69, 0.42);
  border-radius: 50%;
}

.memory-watch::before,
.memory-watch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  background: rgba(111, 81, 69, 0.5);
  transform-origin: 50% 100%;
}

.memory-watch::before {
  height: 16px;
  transform: translate(-50%, -100%) rotate(22deg);
}

.memory-watch::after {
  height: 12px;
  transform: translate(-50%, -100%) rotate(105deg);
}

.memory-thread {
  left: 12%;
  bottom: 30px;
  width: 74%;
  height: 42px;
  border-bottom: 1px solid rgba(159, 117, 95, 0.32);
  border-radius: 0 0 50% 50%;
}

.memory-wave {
  left: 26px;
  top: 58px;
  width: 58%;
  height: 54px;
  background:
    radial-gradient(ellipse at 14% 50%, transparent 52%, rgba(159, 117, 95, 0.28) 54%, transparent 58%) 0 0 / 40px 54px repeat-x;
}

.memory-note {
  right: 36px;
  top: 26px;
  width: 88px;
  height: 110px;
  border: 1px solid rgba(159, 117, 95, 0.2);
  background:
    linear-gradient(rgba(159, 117, 95, 0.12), rgba(159, 117, 95, 0.12)) 18px 34px / 48px 1px no-repeat,
    linear-gradient(rgba(159, 117, 95, 0.1), rgba(159, 117, 95, 0.1)) 18px 54px / 36px 1px no-repeat,
    rgba(255, 253, 249, 0.72);
  transform: rotate(3deg);
}

.memory-envelope {
  left: 42px;
  bottom: 26px;
  width: 112px;
  height: 62px;
  border: 1px solid rgba(159, 117, 95, 0.2);
  background:
    linear-gradient(32deg, transparent 49%, rgba(159, 117, 95, 0.16) 50%, transparent 51%),
    linear-gradient(148deg, transparent 49%, rgba(159, 117, 95, 0.14) 50%, transparent 51%),
    rgba(255, 253, 249, 0.62);
}

.memory-process {
  width: 100%;
  margin: 0;
  padding: clamp(64px, 7.5vw, 96px) max(20px, calc((100% - 1180px) / 2)) clamp(68px, 8vw, 104px);
  position: relative;
  background:
    linear-gradient(180deg, rgba(244, 238, 229, 0.78), rgba(255, 253, 249, 0.68)),
    radial-gradient(circle at 14% 18%, rgba(159, 117, 95, 0.1), transparent 30%),
    var(--shell);
  border-top: 1px solid rgba(159, 117, 95, 0.12);
}

.memory-process .memory-section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.memory-process-intro {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.memory-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(34px, 5vw, 54px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.memory-process-list article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 232px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(159, 117, 95, 0.15);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.94), rgba(249, 244, 237, 0.76)),
    rgba(255, 253, 249, 0.76);
  box-shadow:
    0 20px 42px rgba(39, 38, 36, 0.045),
    0 1px 0 rgba(255, 253, 249, 0.82) inset;
}

.memory-process-list article::before {
  content: "";
  position: absolute;
  inset: 10px 12px auto auto;
  width: 46px;
  height: 1px;
  background: rgba(159, 117, 95, 0.16);
}

.memory-process-list article:last-child {
  border-bottom: 1px solid rgba(159, 117, 95, 0.16);
}

.memory-process-list article:nth-child(1),
.memory-process-list article:nth-child(2),
.memory-process-list article:nth-child(3) {
  transform: none;
}

.memory-process-list h3 {
  max-width: 260px;
  font-size: clamp(20px, 1.75vw, 24px);
  line-height: 1.15;
}

.memory-process-list p {
  color: var(--muted);
  line-height: 1.66;
}

.memory-process-copy {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 16px;
}

.memory-process-list span {
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: rgba(159, 117, 95, 0.9);
  background: rgba(255, 253, 249, 0.76);
  border-color: rgba(159, 117, 95, 0.28);
}

.memory-process-cta {
  max-width: 720px;
  margin: clamp(30px, 4.5vw, 52px) auto 0;
  text-align: center;
}

.memory-process-cta h2 {
  margin: 0;
  color: var(--memory-voice) !important;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.memory-process-cta .button-link {
  display: inline-flex;
  margin-top: 22px;
}

body.memory-typo-system {
  --font-identity: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-reading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-signature: "Cormorant Garamond", Georgia, serif;
  font-family: var(--font-reading);
  font-weight: 400;
}

body.memory-typo-system .site-header,
body.memory-typo-system .brand-name,
body.memory-typo-system .main-nav,
body.memory-typo-system .nav-toggle,
body.memory-typo-system .button-link,
body.memory-typo-system button,
body.memory-typo-system .hero-kicker,
body.memory-typo-system .section-kicker,
body.memory-typo-system .page-kicker,
body.memory-typo-system .memory-card-toggle,
body.memory-typo-system .footer-primary-links,
body.memory-typo-system .footer-legal-links {
  font-family: var(--font-identity);
}

body.memory-typo-system .memory-page h2,
body.memory-typo-system .memory-compass p,
body.memory-typo-system .memory-offers-note-title,
body.memory-typo-system .footer-identity strong {
  font-family: var(--font-identity) !important;
  font-weight: 300;
  letter-spacing: -0.015em;
}

body.memory-typo-system #memory-title {
  font-family: var(--font-signature) !important;
  font-weight: 500;
  letter-spacing: 0;
}

body.memory-typo-system .memory-page h2 {
  line-height: 1.08;
}

body.memory-typo-system .memory-page h3 {
  font-family: var(--font-identity) !important;
  font-weight: 500;
  line-height: 1.15;
}

body.memory-typo-system .hero-kicker,
body.memory-typo-system .section-kicker,
body.memory-typo-system .page-kicker,
body.memory-typo-system .memory-form-card > div > span {
  font-family: var(--font-identity);
  font-weight: 600;
  letter-spacing: 0.10em;
}

body.memory-typo-system p,
body.memory-typo-system li,
body.memory-typo-system blockquote,
body.memory-typo-system cite,
body.memory-typo-system .brand-note,
body.memory-typo-system .memory-intro-slot,
body.memory-typo-system .memory-text-panel,
body.memory-typo-system .memory-storytherapie-bridge,
body.memory-typo-system .memory-offers-note,
body.memory-typo-system .memory-form-copy,
body.memory-typo-system .memory-card-detail,
body.memory-typo-system .memory-process-copy,
body.memory-typo-system .footer-identity,
body.memory-typo-system .footer-legal {
  font-family: var(--font-reading);
  font-weight: 400;
}

body.memory-typo-system strong {
  font-weight: 600;
}

body.memory-typo-system .memory-offer span,
body.memory-typo-system .memory-process-list span {
  font-family: var(--font-identity);
  font-weight: 500;
}

body.memory-typo-system .button-link,
body.memory-typo-system button {
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.memory-typo-system .footer-signature {
  font-family: var(--font-identity);
  font-style: italic;
  font-weight: 300;
}

body.memory-typo-system .footer-signature::after {
  font-family: var(--font-identity);
}

body.contact-typo-system {
  --font-identity: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-reading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-family: var(--font-reading);
  font-weight: 400;
}

body.contact-typo-system .site-header,
body.contact-typo-system .brand-name,
body.contact-typo-system .main-nav,
body.contact-typo-system .nav-toggle,
body.contact-typo-system .section-kicker,
body.contact-typo-system .button-link,
body.contact-typo-system button,
body.contact-typo-system .footer-primary-links,
body.contact-typo-system .footer-legal-links {
  font-family: var(--font-identity);
}

body.contact-typo-system h1,
body.contact-typo-system h2,
body.contact-typo-system .footer-identity strong {
  font-family: var(--font-identity);
}

body.contact-typo-system p,
body.contact-typo-system li,
body.contact-typo-system .brand-note,
body.contact-typo-system input,
body.contact-typo-system select,
body.contact-typo-system textarea,
body.contact-typo-system .footer-identity,
body.contact-typo-system .footer-legal {
  font-family: var(--font-reading);
  font-weight: 400;
}

body.contact-typo-system strong {
  font-weight: 600;
}

body.contact-typo-system .button-link,
body.contact-typo-system button {
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.contact-typo-system .footer-signature {
  font-family: var(--font-identity);
  font-style: italic;
  font-weight: 300;
}

body.contact-typo-system .footer-signature::after {
  font-family: var(--font-identity);
}

body.about-typo-system {
  --font-identity: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-reading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-signature: "Cormorant Garamond", Georgia, serif;
  font-family: var(--font-reading);
  font-weight: 400;
}

body.about-typo-system .site-header,
body.about-typo-system .brand-name,
body.about-typo-system .main-nav,
body.about-typo-system .nav-toggle,
body.about-typo-system .section-kicker,
body.about-typo-system .button-link,
body.about-typo-system button,
body.about-typo-system .footer-primary-links,
body.about-typo-system .footer-legal-links {
  font-family: var(--font-identity);
}

body.about-typo-system .about-page h2,
body.about-typo-system .footer-identity strong {
  font-family: var(--font-identity);
  font-weight: 300;
  letter-spacing: -0.015em;
}

body.about-typo-system .about-page h1 {
  font-family: var(--font-signature);
  font-weight: 500;
  letter-spacing: -0.012em;
}

body.about-typo-system p,
body.about-typo-system li,
body.about-typo-system .brand-note,
body.about-typo-system .footer-identity,
body.about-typo-system .footer-legal {
  font-family: var(--font-reading);
  font-weight: 400;
}

body.about-typo-system strong {
  font-weight: 600;
}

body.about-typo-system .section-kicker {
  font-weight: 600;
  letter-spacing: 0.10em;
}

body.about-typo-system .button-link,
body.about-typo-system button {
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.about-typo-system .footer-signature {
  font-family: var(--font-identity);
  font-style: italic;
  font-weight: 300;
}

body.about-typo-system .footer-signature::after {
  font-family: var(--font-identity);
}

body.conversation-typo-system {
  --font-identity: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-reading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-signature: "Cormorant Garamond", Georgia, serif;
  font-family: var(--font-reading);
  font-weight: 400;
}

body.conversation-typo-system .site-header,
body.conversation-typo-system .brand-name,
body.conversation-typo-system .main-nav,
body.conversation-typo-system .nav-toggle,
body.conversation-typo-system .button-link,
body.conversation-typo-system button,
body.conversation-typo-system .section-kicker,
body.conversation-typo-system .footer-primary-links,
body.conversation-typo-system .footer-legal-links {
  font-family: var(--font-identity);
}

body.conversation-typo-system h1,
body.conversation-typo-system h2,
body.conversation-typo-system h3,
body.conversation-typo-system .footer-identity strong {
  font-family: var(--font-identity) !important;
}

body.conversation-typo-system p,
body.conversation-typo-system li,
body.conversation-typo-system .brand-note,
body.conversation-typo-system .footer-identity,
body.conversation-typo-system .footer-legal {
  font-family: var(--font-reading);
}

body.conversation-typo-system strong {
  font-weight: 600;
}

body.conversation-typo-system .button-link,
body.conversation-typo-system button {
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.conversation-typo-system .footer-signature {
  font-family: var(--font-identity);
  font-style: italic;
  font-weight: 300;
}

body.conversation-typo-system .footer-signature::after {
  font-family: var(--font-identity);
}

body.legal-typo-system {
  --font-identity: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-reading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-family: var(--font-reading);
  font-weight: 400;
}

body.legal-typo-system .site-header,
body.legal-typo-system .brand-name,
body.legal-typo-system .main-nav,
body.legal-typo-system .nav-toggle,
body.legal-typo-system .section-kicker,
body.legal-typo-system .button-link,
body.legal-typo-system button,
body.legal-typo-system .footer-primary-links,
body.legal-typo-system .footer-legal-links {
  font-family: var(--font-identity);
}

body.legal-typo-system h1,
body.legal-typo-system h2,
body.legal-typo-system h3,
body.legal-typo-system .footer-identity strong {
  font-family: var(--font-identity);
}

body.legal-typo-system p,
body.legal-typo-system li,
body.legal-typo-system .brand-note,
body.legal-typo-system .footer-identity,
body.legal-typo-system .footer-legal {
  font-family: var(--font-reading);
  font-weight: 400;
}

body.legal-typo-system strong {
  font-weight: 600;
}

body.legal-typo-system .footer-signature {
  font-family: var(--font-identity);
  font-style: italic;
  font-weight: 300;
}

body.legal-typo-system .footer-signature::after {
  font-family: var(--font-identity);
}

.legal-notice-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(234, 215, 188, 0.28), transparent 30%),
    radial-gradient(circle at 92% 42%, rgba(159, 117, 95, 0.08), transparent 30%),
    var(--paper);
}

.legal-notice-hero {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0 clamp(34px, 5vw, 58px);
}

.legal-notice-hero .section-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.legal-notice-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.legal-notice-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.58;
}

.legal-notice-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(82px, 9vw, 128px);
  color: var(--muted);
}

.legal-notice-content section {
  padding: clamp(30px, 4vw, 48px) 0;
  border-top: 1px solid rgba(159, 117, 95, 0.14);
}

.legal-notice-content h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--forest);
  font-size: clamp(24px, 2.45vw, 34px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.legal-notice-content h3 {
  max-width: 760px;
  margin: 22px 0 8px;
  color: var(--copper);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.24;
}

.legal-notice-content p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.legal-notice-content p + p {
  margin-top: 14px;
}

.legal-notice-content a {
  color: var(--forest);
  text-decoration-color: rgba(28, 85, 68, 0.28);
  text-underline-offset: 0.16em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.legal-notice-content a:hover,
.legal-notice-content a:focus-visible {
  color: var(--copper);
  text-decoration-color: currentColor;
}

.privacy-summary {
  width: min(100% - 40px, 880px);
  margin: -22px auto 54px;
  padding: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  border-top: 1px solid rgba(31, 82, 67, 0.16);
}

.privacy-summary a {
  font-family: var(--font-identity);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
}

.privacy-summary a:hover,
.privacy-summary a:focus-visible {
  color: var(--terracotta);
}

.privacy-update {
  color: var(--green);
  font-weight: 600;
}

.legal-notice-content ul {
  max-width: 760px;
  margin: 12px 0 26px;
  padding-left: 24px;
  color: rgba(72, 66, 59, 0.88);
}

.legal-notice-content li {
  margin: 6px 0;
  font-family: var(--font-reading);
  font-size: 17px;
  line-height: 1.58;
}

.legal-tbc,
.legal-pending-link {
  color: var(--copper);
  font-weight: 600;
}

.legal-pending-link {
  white-space: normal;
}

.about-page {
  background:
    radial-gradient(circle at 10% 14%, rgba(234, 215, 188, 0.28), transparent 30%),
    radial-gradient(circle at 92% 38%, rgba(159, 117, 95, 0.08), transparent 30%),
    var(--paper);
}

.about-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(82vh - 96px);
  margin: 0 auto;
  padding: clamp(64px, 7vw, 112px) 0 clamp(66px, 8vw, 118px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.about-hero-copy {
  max-width: 760px;
}

.about-page .section-kicker {
  margin: 0 0 20px;
  color: var(--copper);
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.35;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: var(--forest);
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.94;
}

.about-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.62;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-days {
  color: var(--forest);
  font-family: var(--font-identity) !important;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 400 !important;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.about-highlight-line {
  color: var(--forest);
  font-family: var(--font-identity) !important;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 400 !important;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.about-portrait {
  position: relative;
  max-width: 360px;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(159, 117, 95, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.94), rgba(244, 238, 229, 0.74)),
    var(--paper);
  box-shadow: 0 24px 54px rgba(39, 38, 36, 0.075);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 253, 249, 0.55);
  border-radius: 5px;
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.about-section {
  padding: clamp(72px, 8vw, 118px) 0;
}

.about-section-soft {
  border-block: 1px solid rgba(159, 117, 95, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.54), rgba(244, 238, 229, 0.62)),
    var(--shell);
}

.about-section-inner {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
}

.about-section-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
  width: min(1080px, calc(100% - 40px));
}

.about-section h2 {
  max-width: 740px;
  margin: 0 0 clamp(24px, 4vw, 38px);
  color: var(--forest);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
}

.about-section-split h2 {
  margin: 0;
}

.about-paper-children {
  max-width: 660px;
  margin: clamp(35px, 4vw, 45px) 0 0;
  color: var(--copper);
  font-family: var(--font-identity) !important;
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 400 !important;
  line-height: 1.18;
  letter-spacing: -0.012em;
  text-align: left;
}

.about-copy a {
  color: var(--forest);
  text-decoration-color: rgba(28, 85, 68, 0.28);
  text-underline-offset: 0.14em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.about-copy a:hover,
.about-copy a:focus-visible {
  color: var(--copper);
  text-decoration-color: rgba(168, 112, 88, 0.52);
}

.about-vocation {
  border-block: 1px solid rgba(159, 117, 95, 0.12);
  background:
    radial-gradient(circle at 14% 18%, rgba(234, 215, 188, 0.32), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.6), rgba(244, 238, 229, 0.54)),
    var(--shell);
}

.about-vocation h2 {
  max-width: 860px;
}

.about-final {
  width: min(760px, calc(100% - 40px));
  margin: clamp(58px, 7vw, 92px) max(20px, calc((100% - 1180px) / 2)) 0 auto;
  padding: 0 0 clamp(78px, 9vw, 124px);
}

.about-final-inner {
  padding: clamp(34px, 4vw, 50px);
  border: 1px solid rgba(159, 117, 95, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.84), rgba(244, 238, 229, 0.66)),
    radial-gradient(circle at 90% 14%, rgba(159, 117, 95, 0.09), transparent 28%);
  box-shadow: 0 24px 54px rgba(39, 38, 36, 0.06);
}

.about-final p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.58;
}

.about-final p + p {
  margin-top: 16px;
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.about-final .button-link {
  display: inline-flex;
  margin-top: 36px;
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

button,
.button-link {
  width: fit-content;
  border: 1px solid var(--forest);
  border-radius: 4px;
  background: var(--forest);
  color: #fffdf9;
  font: inherit;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
}

button:hover,
.button-link:hover {
  background: var(--pine);
  color: #fffdf9;
}

.main-nav .nav-follow-toggle {
  width: auto;
  min-height: 56px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.main-nav .nav-follow-toggle:hover,
.main-nav .nav-follow-toggle:focus-visible {
  background: transparent;
  color: var(--forest);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--forest);
  color: #fffdf9;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: max(104px, calc((100% - 1180px) / 2 + 128px));
  top: 50%;
  width: clamp(165px, 17.6vw, 240px);
  aspect-ratio: 1;
  transform: translateY(-50%) rotate(-8deg);
  background: url("footer-compass.svg") center / contain no-repeat;
  opacity: 0.57;
  pointer-events: none;
  transform-origin: center;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: max(136px, calc((100% - 1180px) / 2 + 154px));
  bottom: 28px;
  width: clamp(104px, 11vw, 156px);
  height: 1px;
  transform: rotate(-8deg);
  background: linear-gradient(90deg, transparent, rgba(217, 170, 63, 0.28), transparent);
  pointer-events: none;
}

.footer-wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(250px, 0.48fr);
  gap: 16px clamp(38px, 6vw, 86px);
  align-items: start;
}

.footer-wrap::after {
  content: "";
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  top: clamp(4px, 1vw, 14px);
  width: clamp(220px, 24vw, 360px);
  height: clamp(120px, 13vw, 200px);
  transform: rotate(-8deg);
  background:
    radial-gradient(circle, rgba(255, 237, 185, 0.98) 0 2.8px, rgba(217, 170, 63, 0.72) 3px, transparent 4.6px) 74% 26% / 10px 10px no-repeat,
    linear-gradient(112deg, transparent 0 12%, rgba(255, 237, 185, 0.88) 30%, rgba(217, 170, 63, 0.56) 58%, transparent 88%) 48% 34% / 138px 2px no-repeat;
  opacity: 0;
  pointer-events: none;
}

.site-footer.is-compass-animated::before {
  animation: footerCompassFindNorth 3.62s cubic-bezier(0.18, 0.62, 0.16, 1) 1 both;
}

.site-footer.is-compass-animated .footer-wrap::after {
  animation: footerShootingStar 1.62s ease-out 3.62s 1 both;
}

@keyframes footerCompassFindNorth {
  0% {
    transform: translateY(-50%) rotate(0.8deg);
  }

  18% {
    transform: translateY(-50%) rotate(-18.2deg);
  }

  37% {
    transform: translateY(-50%) rotate(-1.6deg);
  }

  59% {
    transform: translateY(-50%) rotate(-12.8deg);
  }

  78% {
    transform: translateY(-50%) rotate(-5.4deg);
  }

  92% {
    transform: translateY(-50%) rotate(-8.22deg);
  }

  100% {
    transform: translateY(-50%) rotate(-8deg);
  }
}

@keyframes footerCompassFindNorthMobile {
  0% {
    transform: translateX(50%) rotate(0.8deg);
  }

  18% {
    transform: translateX(50%) rotate(-18.2deg);
  }

  37% {
    transform: translateX(50%) rotate(-1.6deg);
  }

  59% {
    transform: translateX(50%) rotate(-12.8deg);
  }

  78% {
    transform: translateX(50%) rotate(-5.4deg);
  }

  92% {
    transform: translateX(50%) rotate(-8.22deg);
  }

  100% {
    transform: translateX(50%) rotate(-8deg);
  }
}

@keyframes footerShootingStar {
  0% {
    opacity: 0;
    filter: brightness(1);
    background-position:
      18% 48%,
      4% 60%;
  }

  16% {
    opacity: 0.62;
  }

  46% {
    opacity: 0.95;
    filter: brightness(1.24);
  }

  72% {
    opacity: 0.72;
    filter: brightness(1.16);
  }

  100% {
    opacity: 0;
    filter: brightness(1);
    background-position:
      84% 14%,
      58% 28%;
  }
}

.footer-identity {
  max-width: 430px;
}

.footer-tagline {
  margin: 8px 0 0;
  color: rgba(255, 253, 249, 0.78);
  font-family: var(--font-reading);
  font-size: 13px;
  line-height: 1.45;
}

.footer-signature {
  display: block;
  width: fit-content;
  max-width: 450px;
  margin: 0 28px 0 auto;
  color: rgba(255, 253, 249, 0.76);
  font-family: "Snell Roundhand", "Apple Chancery", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.8vw, 39px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-align: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.footer-signature::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 10px;
  background: linear-gradient(90deg, transparent, rgba(217, 170, 63, 0.72));
}

.footer-signature::after {
  content: "✦";
  display: block;
  margin-top: 9px;
  color: rgba(217, 170, 63, 0.66);
  font-family: var(--serif);
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}

.footer-signature span {
  display: block;
  white-space: nowrap;
}

.footer-left-divider {
  width: min(100%, 360px);
  height: 1px;
  margin: 18px 0 16px;
  background: rgba(255, 253, 249, 0.24);
}

.footer-left-group-story {
  display: grid;
  gap: 6px;
}

.footer-story-title {
  color: rgba(255, 253, 249, 0.92);
  font-family: var(--font-identity);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-story-links,
.footer-legal-links {
  display: grid;
  gap: 14px;
  color: rgba(255, 253, 249, 0.82);
}

.footer-story-links {
  margin-top: 4px;
  font-size: 15px;
}

.footer-legal-links {
  grid-template-columns: repeat(2, max-content);
  gap: 10px 28px;
  margin-top: 16px;
  font-size: 13px;
}

.footer-story-links a,
.footer-legal-links a,
.footer-contact-link {
  color: rgba(255, 253, 249, 0.86);
  text-decoration-color: transparent;
  text-underline-offset: 0.28em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-story-links a:visited,
.footer-legal-links a:visited,
.footer-contact-link:visited {
  color: rgba(255, 253, 249, 0.72);
}

.footer-story-links a:hover,
.footer-story-links a:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: rgba(217, 170, 63, 0.96);
  text-decoration-color: currentColor;
}

.footer-story-network {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 253, 249, 0.72);
  font-family: var(--font-reading);
  font-size: 14px;
  line-height: 1.45;
}

.footer-highlight-link {
  color: rgba(217, 170, 63, 0.94);
  font-weight: 600;
  text-decoration-color: rgba(217, 170, 63, 0.45);
  text-underline-offset: 0.28em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-story-links .footer-highlight-link:visited {
  color: rgba(217, 170, 63, 0.94);
}

body .site-footer .footer-story-links .footer-highlight-link,
body .site-footer .footer-story-links .footer-highlight-link:visited {
  color: rgba(217, 170, 63, 0.96);
}

.footer-highlight-link:hover,
.footer-highlight-link:focus-visible {
  color: #fffdf9;
  text-decoration-color: currentColor;
}

.footer-contact-link {
  display: inline-block;
  width: fit-content;
  color: rgba(255, 253, 249, 0.94);
  font-family: var(--font-identity);
  font-size: 15px;
  font-weight: 600;
}

.footer-copyright {
  margin: 16px 0 0;
  color: rgba(255, 253, 249, 0.62);
  font-family: var(--font-reading);
  font-size: 12px;
  line-height: 1.45;
}

body .site-footer .footer-identity,
body .site-footer .footer-legal {
  font-family: var(--font-reading);
  font-weight: 400;
}

body .site-footer .footer-identity strong,
body .site-footer .footer-story-links,
body .site-footer .footer-legal-links {
  font-family: var(--font-identity);
}

body .site-footer .footer-identity strong {
  color: rgba(255, 253, 249, 0.94);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.015em;
}

body .site-footer .footer-story-links,
body .site-footer .footer-legal-links {
  font-weight: 600;
  letter-spacing: 0.01em;
}

body .site-footer .footer-signature {
  font-family: var(--font-identity);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}

body .site-footer .footer-signature::after {
  font-family: var(--font-identity);
}

@media (max-width: 980px) {
  .site-footer::before {
    right: max(34px, calc((100% - 760px) / 2 + 44px));
    width: clamp(260px, 36vw, 360px);
    opacity: 0.53;
  }

  .site-footer::after {
    right: max(88px, calc((100% - 760px) / 2 + 94px));
    width: clamp(112px, 16vw, 160px);
  }

  .footer-signature {
    margin-right: 0;
  }

  .footer-wrap::after {
    right: 0;
    top: 8px;
    bottom: auto;
    width: clamp(220px, 42vw, 340px);
    height: 180px;
    opacity: 0.58;
  }
}

.legal-section {
  display: grid;
  gap: 22px;
}

.conversation-page {
  font-family: var(--font-reading);
}

.conversation-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 124px);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 132px) 0 clamp(78px, 8vw, 118px);
  display: grid;
  align-items: center;
}

.conversation-hero-copy {
  max-width: 940px;
}

.conversation-opening {
  max-width: 820px;
  margin: 0 0 clamp(34px, 5vw, 58px);
  color: var(--copper);
  font-family: var(--font-identity);
  font-size: clamp(32px, 4.6vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.conversation-hero h1 {
  max-width: 920px;
  color: var(--forest) !important;
  font-family: var(--font-identity) !important;
  font-size: clamp(52px, 7.2vw, 92px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
}

.conversation-lede {
  max-width: 760px;
  margin: clamp(26px, 4vw, 42px) 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.56;
}

.conversation-actions {
  margin-top: clamp(30px, 4vw, 46px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.conversation-actions span {
  color: rgba(108, 102, 95, 0.78);
  font-family: var(--font-identity);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.conversation-section {
  padding: clamp(78px, 9vw, 128px) 0;
}

.conversation-section-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.conversation-narrow {
  width: min(840px, calc(100% - 40px));
}

.conversation-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 98px);
  align-items: start;
}

.conversation-section h2 {
  color: var(--forest) !important;
  font-family: var(--font-identity) !important;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.conversation-section h2 {
  max-width: 920px;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.06;
}

.conversation-section .section-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-family: var(--font-identity);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.10em;
  line-height: 1.35;
  text-transform: uppercase;
}

.conversation-copy {
  max-width: 760px;
  color: var(--muted);
  font-family: var(--font-reading);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.64;
}

.conversation-copy p {
  margin: 0;
}

.conversation-copy p + p {
  margin-top: 17px;
}

.conversation-spaced-copy p + p {
  margin-top: clamp(22px, 3vw, 34px);
}

.conversation-emphasis {
  margin-top: clamp(28px, 4vw, 42px) !important;
  color: var(--forest);
  font-family: var(--font-identity) !important;
  font-size: clamp(25px, 2.55vw, 38px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.conversation-listening {
  border-block: 1px solid rgba(159, 117, 95, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.58), rgba(244, 238, 229, 0.62)),
    var(--shell);
}

.conversation-veroom {
  width: 100%;
  margin: 0;
  padding: clamp(92px, 11vw, 148px) max(24px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 14% 12%, rgba(217, 170, 63, 0.08), transparent 25%),
    linear-gradient(135deg, var(--pine), var(--forest));
  color: var(--paper);
}

.conversation-veroom-inner {
  width: min(820px, 100%);
  margin: 0 auto;
}

.conversation-veroom .section-kicker {
  margin: 0 0 18px;
  color: rgba(217, 170, 63, 0.84);
}

.conversation-veroom h2 {
  max-width: 760px;
  margin: 0 0 clamp(34px, 5vw, 54px);
  color: rgba(255, 253, 249, 0.94) !important;
  font-family: var(--font-identity) !important;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.conversation-veroom .conversation-copy {
  color: rgba(255, 253, 249, 0.82);
}

.conversation-veroom-note {
  margin-top: clamp(28px, 4vw, 42px) !important;
  max-width: 540px;
  padding: 16px 20px;
  color: rgba(217, 170, 63, 0.86);
}

.conversation-veroom .button-link {
  display: inline-flex;
  margin-top: clamp(44px, 6vw, 72px);
  border-color: rgba(255, 253, 249, 0.34);
  background: var(--paper);
  color: var(--forest);
}

.conversation-veroom .button-link:hover,
.conversation-veroom .button-link:focus-visible {
  border-color: rgba(217, 170, 63, 0.74);
  background: rgba(255, 253, 249, 0.9);
  color: var(--pine);
}

.conversation-perspective-grid,
.conversation-step-grid,
.conversation-balance-grid {
  display: grid;
  gap: 18px;
}

.conversation-perspective-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 44px);
}

.conversation-perspective-grid article,
.conversation-step-grid article,
.conversation-balance-grid article,
.conversation-practical-list {
  border: 1px solid rgba(120, 144, 130, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.9), rgba(244, 238, 229, 0.66)),
    rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 42px rgba(39, 38, 36, 0.045);
}

.conversation-perspective-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
}

.conversation-perspective-grid h3,
.conversation-step-grid h3,
.conversation-balance-grid h3 {
  color: var(--forest) !important;
  font-family: var(--font-identity) !important;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.conversation-perspective-grid h3 {
  font-size: clamp(23px, 2.2vw, 31px);
}

.conversation-perspective-grid p,
.conversation-step-grid p,
.conversation-balance-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: var(--font-reading);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.58;
}

.conversation-intro-copy,
.conversation-conclusion-copy {
  margin-top: clamp(24px, 3vw, 36px);
}

.conversation-process,
.conversation-not {
  border-block: 1px solid rgba(159, 117, 95, 0.12);
  background:
    radial-gradient(circle at 86% 16%, rgba(120, 144, 130, 0.12), transparent 27%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.64), rgba(244, 238, 229, 0.58)),
    var(--shell);
}

.conversation-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.conversation-step-grid article {
  min-height: 300px;
  padding: clamp(26px, 3vw, 38px);
}

.conversation-step-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(120, 144, 130, 0.48);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: 22px;
  font-weight: 500;
}

.conversation-step-grid h3 {
  font-size: clamp(25px, 2.55vw, 34px);
  line-height: 1.12;
}

.conversation-balance-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.conversation-balance-grid article {
  padding: clamp(28px, 4vw, 44px);
}

.conversation-balance-grid h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.conversation-practical-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.conversation-practical .button-link {
  margin-top: 34px;
}

.conversation-practical-list {
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 18px;
}

.conversation-practical-list p {
  margin: 0;
  display: grid;
  gap: 5px;
}

.conversation-practical-list strong {
  color: var(--forest);
  font-family: var(--font-identity);
  font-weight: 600;
}

.conversation-practical-list span,
.conversation-practical-list a {
  color: var(--muted);
  font-family: var(--font-reading);
  font-size: 16px;
  line-height: 1.5;
}

.conversation-practical-list a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(36, 83, 68, 0.25);
  text-underline-offset: 0.2em;
}

.legal-panel {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(120, 144, 130, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 20px 58px rgba(39, 38, 36, 0.055);
}

.practitioners-main {
  background:
    radial-gradient(circle at 12% 20%, rgba(217, 170, 63, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.78), rgba(244, 238, 229, 0.54)),
    var(--shell);
}

.practitioners-hero,
.practitioners-directory,
.practitioners-reference {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.practitioners-hero {
  padding: clamp(70px, 8vw, 118px) 0 clamp(46px, 6vw, 74px);
}

.practitioners-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--green);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
}

.practitioners-intro {
  max-width: 820px;
  margin-top: 30px;
}

.practitioners-intro p,
.practitioners-check p,
.practitioners-empty p,
.practitioners-reference p,
.practitioner-card p {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.practitioners-intro p + p,
.practitioners-reference p + p {
  margin-top: 14px;
}

.practitioners-check,
.practitioners-empty,
.practitioners-reference {
  border: 1px solid rgba(159, 117, 95, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.045);
}

.practitioners-check {
  max-width: 720px;
  margin-top: 34px;
  padding: clamp(24px, 3vw, 34px);
}

.practitioners-check h2,
.practitioners-reference h2 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(25px, 2.4vw, 34px);
}

.practitioners-check p {
  margin: 12px 0 0;
}

.practitioners-check .text-link,
.practitioners-reference .text-link,
.legal-directory-link {
  display: inline-flex;
  margin-top: 18px;
}

.practitioners-directory {
  padding: clamp(42px, 6vw, 76px) 0;
}

.practitioners-directory-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.practitioners-directory-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(32px, 3.4vw, 48px);
}

.practitioners-empty {
  max-width: 760px;
  padding: clamp(26px, 4vw, 44px);
}

.practitioners-empty p {
  margin: 0 0 24px;
}

.practitioners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.practitioners-empty[hidden] + .practitioners-grid {
  margin-top: 0;
}

.practitioner-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(159, 117, 95, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.045);
}

.practitioner-photo {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.practitioner-card h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.12;
}

.practitioner-card p {
  margin: 12px 0 0;
  overflow-wrap: anywhere;
}

.practitioner-location,
.practitioner-reference,
.practitioner-updated {
  color: rgba(84, 74, 68, 0.78);
  font-family: var(--font-identity);
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.practitioner-training {
  color: var(--plum) !important;
  font-weight: 600;
}

.practitioner-card .text-link {
  display: inline-flex;
  margin-top: 16px;
}

.practitioners-reference {
  margin-bottom: clamp(78px, 9vw, 124px);
  padding: clamp(28px, 4vw, 48px);
}

.training-main {
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 170, 63, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(239, 226, 220, 0.54), rgba(251, 247, 239, 0.88) 34%, rgba(244, 238, 229, 0.62)),
    var(--paper);
}

.training-page h1,
.training-page h2,
.training-page h3 {
  font-family: var(--font-identity) !important;
  font-style: normal !important;
  letter-spacing: -0.015em;
}

.training-page p,
.training-page li {
  font-family: var(--font-reading);
  font-style: normal;
}

.training-hero,
.training-section-inner,
.training-final {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.training-hero {
  padding: clamp(70px, 8.4vw, 124px) 0 clamp(52px, 6.2vw, 82px);
  background: rgba(239, 226, 220, 0.28);
}

.training-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(45px, 5.7vw, 82px);
  font-weight: 300 !important;
  line-height: 1.02;
}

.training-hero-copy {
  max-width: 840px;
  margin-top: 30px;
}

.training-hero-copy p,
.training-copy p,
.training-panel p,
.training-transparency p,
.training-final p,
.training-criteria li,
.training-session-card p {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.training-hero-copy p + p,
.training-copy p + p,
.training-panel p + p {
  margin-top: 16px;
}

.training-section {
  padding: clamp(52px, 6.4vw, 84px) 0;
}

.training-sessions,
.training-path,
.training-network-block {
  background: rgba(255, 253, 249, 0.64);
}

.training-admission,
.training-final {
  background: rgba(239, 226, 220, 0.32);
}

.training-certification {
  background: rgba(244, 238, 229, 0.7);
}

.training-section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 3.3vw, 38px);
}

.training-section-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 300;
  line-height: 1.08;
}

.training-panel,
.training-criteria,
.training-transparency,
.training-session-card {
  border: 1px solid rgba(159, 117, 95, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.045);
}

.training-panel {
  max-width: 860px;
  padding: clamp(24px, 2.8vw, 34px);
}

.training-panel .button-link {
  margin-top: 22px;
}

.training-final .button-link {
  margin-top: 26px;
}

.training-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.training-copy {
  max-width: 760px;
}

.training-copy-wide {
  max-width: 900px;
}

.training-admission-copy {
  max-width: 930px;
}

.training-note,
.training-transparency {
  color: var(--plum) !important;
}

.training-note {
  margin-top: 22px !important;
  font-weight: 600;
}

.training-criteria {
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(26px, 3.6vw, 42px);
}

.training-criteria h3 {
  margin: 0 0 clamp(24px, 3vw, 34px);
  color: var(--plum);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.18;
}

.training-criteria-group + .training-criteria-group {
  margin-top: clamp(26px, 3.4vw, 38px);
  padding-top: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid rgba(159, 117, 95, 0.16);
}

.training-criteria h4 {
  margin: 0 0 14px;
  color: var(--forest) !important;
  font-family: var(--font-identity);
  font-size: clamp(20px, 1.7vw, 25px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.training-criteria ol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.training-criteria li {
  display: grid;
  grid-template-columns: 44px minmax(0, 760px);
  gap: clamp(12px, 1.8vw, 20px);
  align-items: start;
  position: relative;
  padding: 13px 0;
}

.training-criteria li + li {
  border-top: 1px solid rgba(120, 144, 130, 0.12);
}

.training-criteria li::marker {
  content: "";
}

.training-criteria-number {
  color: rgba(180, 106, 69, 0.84);
  font-family: var(--font-identity);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.training-criteria li > span:last-child {
  min-width: 0;
}

.training-dimensions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 46px);
}

.training-dimensions article {
  display: flex;
  align-items: flex-start;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(120, 144, 130, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.68);
}

.training-dimensions h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.18;
}

.training-transparency {
  padding: clamp(26px, 4vw, 42px);
  border-color: rgba(75, 53, 67, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.84), rgba(244, 238, 229, 0.66)),
    radial-gradient(circle at 92% 12%, rgba(184, 106, 69, 0.1), transparent 30%);
}

.training-declaration {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.training-network-block {
  width: 100%;
  max-width: none;
  padding: clamp(52px, 6.2vw, 82px) max(20px, calc((100% - 1180px) / 2));
  background: rgba(255, 253, 249, 0.62);
}

.training-page .story-network-copy h2 {
  color: var(--forest);
}

.training-final {
  width: 100%;
  max-width: none;
  padding: clamp(54px, 6.6vw, 88px) max(20px, calc((100% - 1180px) / 2)) clamp(66px, 7.4vw, 104px);
}

.training-final-inner {
  display: flex;
  max-width: 900px;
  margin-left: auto;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 4vw, 50px);
  border: 1px solid rgba(104, 75, 92, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(244, 238, 229, 0.68)),
    radial-gradient(circle at 90% 14%, rgba(159, 117, 95, 0.09), transparent 28%);
  box-shadow: 0 24px 60px rgba(39, 38, 36, 0.065);
}

.training-final-inner h2 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.08;
}

.training-final-inner p:not(.section-kicker) {
  max-width: 740px;
  margin: 22px 0 0;
}

.training-sessions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.training-session-card {
  padding: 24px;
}

.training-session-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(24px, 2.2vw, 32px);
}

.training-session-status {
  color: var(--plum) !important;
  font-weight: 600;
}

.legal-panel h2 {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.legal-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-panel p + p {
  margin-top: 16px;
}

.legal-panel-soft {
  background: linear-gradient(135deg, rgba(252, 248, 241, 0.94), rgba(237, 231, 219, 0.54));
}

.legal-panel-soft .button-link {
  margin-top: 24px;
}

.story-matter,
.worktable-item,
.path-card,
.story-intro-slot,
.story-text-panel,
.story-press-quote,
.story-door-card,
.story-modal-panel,
.process-grid,
.process-step,
.memory-intro-slot,
.memory-text-panel,
.memory-offer,
.memory-form-card,
.memory-form-visual,
.memory-card-detail,
.memory-process-list article,
.legal-panel {
  border: 1px solid var(--frame-line);
  border-radius: 7px;
  box-shadow:
    var(--frame-shadow),
    inset 0 1px 0 var(--frame-highlight);
  background-clip: padding-box;
}

.story-intro-slot,
.story-text-panel,
.story-press-quote,
.story-door-card,
.process-grid,
.process-step,
.legal-panel {
  border-color: var(--frame-line-cool);
}

.story-matter {
  border-color: rgba(255, 253, 249, 0.26);
  box-shadow:
    0 22px 58px rgba(39, 38, 36, 0.08),
    inset 0 1px 0 rgba(255, 253, 249, 0.22);
}

.memory-intro-slot,
.memory-text-panel,
.memory-offer,
.memory-form-card,
.memory-form-visual,
.memory-card-detail,
.memory-process-list article {
  border-color: rgba(159, 117, 95, 0.22);
}

.worktable-conversation,
.worktable-story,
.worktable-memory,
.worktable-architexte,
.worktable-library {
  border-top-color: var(--frame-line);
}

.story-door-card:hover,
.worktable-item:hover,
.worktable-item:focus-visible,
.memory-form-card:hover,
.memory-form-card.is-open {
  border-color: rgba(180, 106, 69, 0.38);
}

@media (max-width: 1440px) {
  .brand {
    flex-basis: clamp(290px, 24vw, 350px);
    max-width: clamp(290px, 24vw, 350px);
  }

  .brand-mark {
    width: 68px;
    height: 68px;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-note {
    font-size: 11.5px;
    letter-spacing: 0.035em;
  }
}

@media (max-width: 1300px) {
  .nav-wrap {
    min-height: 104px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 64px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 98px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .main-nav .nav-story,
  .main-nav .nav-story-row,
  .main-nav .nav-story-link,
  .main-nav .nav-follow,
  .main-nav .nav-follow-toggle {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    padding-left: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .main-nav > a::before,
  .main-nav .nav-story::before,
  .main-nav .nav-story::after,
  .main-nav .nav-follow::before {
    display: none;
  }

  .main-nav > a,
  .main-nav .nav-story-link,
  .main-nav .nav-story-toggle,
  .main-nav .nav-follow-toggle {
    padding: 12px 0;
  }

  .main-nav .nav-story {
    display: grid;
    padding-left: 0;
  }

  .main-nav .nav-story-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .main-nav .nav-story-link {
    justify-content: flex-start;
    text-align: left;
  }

  .main-nav .nav-story-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .main-nav .nav-story-menu {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 0 8px;
    padding: 4px 0 4px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .main-nav .nav-story-menu a {
    padding: 8px 0 8px 12px;
    border-radius: 0;
    border-left: 1px solid rgba(180, 106, 69, 0.22);
  }

  .main-nav .nav-story-menu .nav-story-primary {
    margin-bottom: 2px;
    border-bottom: 0;
    border-radius: 0;
  }

  .main-nav .nav-story-menu a[aria-current="page"] {
    box-shadow: inset 2px 0 0 rgba(180, 106, 69, 0.72);
  }

  .main-nav .nav-two-line {
    align-items: flex-start;
  }

  .main-nav .nav-follow {
    display: grid;
  }

  .main-nav .nav-follow-menu {
    position: static;
    min-width: 190px;
    margin: 0 0 10px;
    padding: 6px 0 4px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .main-nav .nav-follow-menu a {
    padding: 8px 0;
  }

  .main-nav .nav-appointment {
    width: fit-content;
    min-height: 40px;
    margin: 10px 0 2px;
    padding: 11px 14px;
  }
}

@media (max-width: 980px) {
  .site-header::before {
    bottom: -16px;
    height: 16px;
  }

  .site-header::after {
    bottom: -10px;
    height: 2px;
  }

  .nav-wrap {
    min-height: 104px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 64px);
    gap: 12px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-note {
    font-size: 11px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .main-nav .nav-appointment {
    width: fit-content;
    margin: 10px 0 2px;
    padding: 11px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .atelier-presence {
    min-height: 104px;
  }

  .atelier-library {
    right: 4%;
    width: 96px;
  }

  .atelier-manuscript {
  right: 20%;
  }

  .story-matter {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    background:
      linear-gradient(180deg, rgba(23, 63, 50, 0.96) 0%, rgba(36, 83, 68, 0.9) 46%, rgba(255, 253, 249, 0.94) 46%, rgba(255, 253, 249, 0.96) 100%);
  }

  .story-matter h2 {
    font-size: clamp(48px, 12vw, 78px);
  }

  .closing-invite {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .worktable {
    padding: 30px;
  }

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

  .worktable-conversation,
  .worktable-story,
  .worktable-memory {
    grid-column: span 1;
  }

  .worktable-architexte,
  .worktable-library {
    grid-column: 1 / -1;
  }

  .worktable-item {
    --worktable-y: 0px;
    transform: none;
  }

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

  .page-hero,
  .intro-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 72px;
  }

  .contact-intro,
  .contact-form-panel {
    max-width: 760px;
  }

  .visual-panel img {
    aspect-ratio: 16 / 9;
  }

  .story-hero,
  .veroom-frame {
    grid-template-columns: 1fr;
  }

  .story-mindfulness-inner,
  .story-doors-header,
  .story-books-showcase-heading,
  .story-books-gateway-inner {
    grid-template-columns: 1fr;
  }

  .story-books-showcase-heading .section-kicker,
  .story-books-showcase-heading h2,
  .story-books-showcase-intro {
    grid-column: auto;
    grid-row: auto;
  }

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

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

  .story-books-gateway-copy {
    max-width: 760px;
  }

  .story-door-card {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }

  .memory-hero,
  .memory-who {
    grid-template-columns: 1fr;
  }

  .memory-who {
    box-sizing: border-box;
    padding-inline: 24px;
    overflow-x: clip;
  }

  .memory-offers-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .memory-offers-note {
    max-width: 720px;
    padding-top: 0;
  }

  .story-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .memory-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .story-hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .memory-hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .memory-offer-large,
  .memory-offer:not(.memory-offer-large):not(.memory-offer-wide),
  .memory-offer-wide {
    grid-column: span 6;
    transform: none;
  }

  .memory-form-grid,
  .memory-form-column {
    gap: 18px;
  }

  .memory-process-list article {
    grid-template-columns: 54px 1fr;
    align-items: start;
  }

  .memory-process-list article p {
    grid-column: 2;
  }

  .memory-process-copy {
    grid-column: 2;
  }

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

  .process-step {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nav-wrap,
  .hero,
  .page-hero,
  .contact-hero,
  .section,
  .footer-wrap {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 30px;
    padding-bottom: 58px;
  }

  .atelier-presence {
    min-height: 92px;
  }

  .atelier-window {
    left: 0;
    width: 86px;
    height: 58px;
  }

  .atelier-notebooks {
    left: 21%;
    width: 86px;
  }

  .atelier-manuscript {
    right: 10%;
    width: 110px;
    height: 56px;
  }

  .atelier-library {
    display: none;
  }

  .story-matter {
    padding: 32px 24px 34px;
    margin-bottom: 74px;
    min-height: 0;
    overflow: visible;
    background:
      radial-gradient(circle at 14% 20%, rgba(224, 178, 76, 0.18), transparent 30%),
      linear-gradient(180deg, rgba(23, 63, 50, 0.98) 0%, rgba(36, 83, 68, 0.96) 100%);
  }

  .story-matter::before {
    display: none;
  }

  .story-matter .section-kicker::before {
    width: 44px;
  }

  .story-matter .section-kicker {
    margin-top: 0;
  }

  .story-matter .section-copy {
    padding-top: 20px;
    color: rgba(255, 253, 249, 0.84);
    text-align: left;
  }

  .story-matter .section-copy p:first-child {
    color: rgba(255, 253, 249, 0.62);
  }

  .story-matter .section-copy::before {
    left: 0;
  }

  .worktable {
    padding: 64px 0 74px;
    margin-bottom: 82px;
  }

  .contact-hero {
    padding: 54px 0 86px;
  }

  .contact-intro h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact-lede {
    margin-top: 24px;
  }

  .contact-coordinates {
    margin-top: 34px;
  }

  .contact-form-panel {
    padding: 24px;
  }

  .worktable-heading {
    margin-bottom: 24px;
  }

  .worktable-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .worktable-item {
    min-height: auto;
    padding: 20px;
  }

  .worktable-library {
    display: flex;
    grid-template-columns: none;
    gap: 20px;
  }

  .worktable-architexte {
    display: flex;
    grid-template-columns: none;
    gap: 20px;
  }

  .worktable-architexte .table-object,
  .worktable-library .table-object {
    height: 142px;
    min-height: 0;
    flex: 0 0 142px;
  }

  .worktable-architexte .table-object {
    order: -1;
    height: 170px;
    flex-basis: 170px;
  }

  .closing-invite {
    margin-bottom: 92px;
    padding: 46px 0;
  }

  .table-object {
    height: 142px;
  }

  h1 {
    font-size: 46px;
  }

  .signature {
    font-size: 22px;
  }

  .manifesto,
  .page-copy,
  .section-copy {
    font-size: 17px;
  }

  .identity-line {
    font-size: 22px;
  }

  .path-grid,
  .list-grid,
  .library-grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .library-item {
    min-height: auto;
  }

  .story-hero,
  .memory-hero,
  .memory-section,
  .memory-compass {
    width: min(100% - 28px, 1180px);
  }

  .memory-who,
  .memory-process {
    width: 100%;
  }

  .story-books-showcase {
    padding: 68px 14px;
  }

  .story-books-showcase-inner {
    gap: 34px;
  }

  .story-books-gateway {
    padding: 58px 14px 64px;
  }

  .story-books-gateway-inner {
    gap: 24px;
    padding-top: 24px;
  }

  .story-books-gateway-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .story-books-gateway-actions .button-link {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .story-showcase-published-grid,
  .story-showcase-private-grid {
    grid-template-columns: 1fr;
  }

  .story-showcase-book-cover {
    min-height: 230px;
  }

  .story-showcase-private-book {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .story-showcase-private-cover {
    width: 76px;
  }

  .story-showcase-final {
    padding: 24px;
  }

  .story-hero,
  .memory-hero {
    padding: 48px 0 72px;
    gap: 30px;
  }

  .story-intro-slot,
  .story-text-panel,
  .veroom-content,
  .memory-intro-slot,
  .memory-text-panel,
  .memory-offer,
  .memory-process-list {
    padding: 24px;
  }

  .memory-compass {
    margin-bottom: 70px;
    padding: 30px 0;
  }

  .memory-compass p {
    font-size: clamp(27px, 8vw, 36px);
  }

  .memory-section {
    padding: 68px 0;
  }

  .memory-offers {
    padding: 68px 14px;
  }

  .memory-offers-header {
    gap: 20px;
  }

  .memory-offers-note {
    font-size: 15px;
    line-height: 1.62;
  }

  .memory-offers-note-title {
    font-size: 21px;
  }

  .memory-offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }

  .memory-form-grid {
    flex-direction: column;
    gap: 16px;
    margin-top: 26px;
  }

  .memory-form-column {
    width: 100%;
    gap: 16px;
  }

  .memory-form-card {
    min-height: auto;
    padding: 20px;
  }

  .memory-card-toggle {
    font-size: 11px;
  }

  .memory-card-toggle {
    width: fit-content;
  }

  .memory-card-detail p {
    font-size: 14px;
  }

  .memory-form-visual {
    height: 142px;
  }

  .memory-offer-large,
  .memory-offer:not(.memory-offer-large):not(.memory-offer-wide),
  .memory-offer-wide {
    grid-column: auto;
    min-height: auto;
  }

  .memory-process-list {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 16px;
  }

  .memory-process-list article {
    display: flex;
    min-height: auto;
    gap: 16px;
    padding: 22px;
    transform: none;
  }

  .memory-process-copy {
    grid-column: auto;
  }

  #memory-process-title {
    white-space: normal;
  }

  .story-veroom {
    padding: 68px 14px;
    box-sizing: border-box;
    overflow-x: clip;
  }

  .story-veroom .button-link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .story-mindfulness {
    padding: 68px 14px;
  }

  .story-door-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-door-card {
    min-height: auto;
  }

  .story-door-card {
    padding: 24px;
  }

  .veroom-frame::before {
    right: 0;
    opacity: 0.54;
  }

  .process-grid {
    margin-top: 24px;
  }

  .path-card {
    padding: 24px;
  }

  .door-visual {
    height: 118px;
  }

  .service-columns {
    column-count: 1;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 30px 0 36px;
  }

  .site-footer::before {
    top: auto;
    right: 50%;
    bottom: 42px;
    width: clamp(230px, 75vw, 330px);
    transform: translateX(50%) rotate(-8deg);
    opacity: 0.4;
  }

  .site-footer.is-compass-animated::before {
    animation-name: footerCompassFindNorthMobile;
  }

  .site-footer::after {
    right: 50%;
    bottom: 56px;
    width: clamp(96px, 34vw, 150px);
    height: 1px;
    transform: translateX(50%) rotate(-8deg);
    opacity: 0.54;
  }

  .footer-wrap::after {
    right: 50%;
    top: 12px;
    bottom: auto;
    width: clamp(230px, 76vw, 330px);
    height: 190px;
    transform: translateX(50%) rotate(-8deg);
    opacity: 0.58;
  }

  .footer-signature {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 340px;
    margin: 8px auto 0;
    font-size: clamp(28px, 8.8vw, 38px);
    text-align: center;
  }

  .footer-identity {
    grid-column: 1;
    grid-row: auto;
    max-width: 100%;
  }

  .footer-story-links,
  .footer-legal-links {
    display: grid;
    gap: 8px;
  }

  .footer-story-links a,
  .footer-legal-links a {
    width: fit-content;
    min-height: 28px;
  }

  .footer-story-links a + a::before,
  .footer-legal-links a + a::before {
    content: none;
  }

  .footer-signature::before {
    width: 42px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::before,
  .footer-wrap::after {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .about-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
  }

  .about-portrait {
    width: min(320px, 78vw);
    justify-self: start;
  }

  .about-section-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-final {
    width: min(760px, calc(100% - 40px));
    margin-inline: auto;
  }

  .conversation-hero {
    min-height: auto;
    padding-top: 66px;
  }

  .conversation-split,
  .conversation-practical-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .conversation-perspective-grid,
  .conversation-step-grid {
    grid-template-columns: 1fr;
  }

  .conversation-step-grid article {
    min-height: auto;
  }

  .conversation-balance-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .about-hero,
  .about-section-inner,
  .about-section-split,
  .about-final,
  .conversation-hero,
  .conversation-section-inner,
  .conversation-narrow {
    width: min(100% - 28px, 760px);
  }

  .conversation-hero {
    padding-block: 52px 68px;
  }

  .conversation-opening {
    font-size: clamp(29px, 10vw, 42px);
  }

  .conversation-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .conversation-section {
    padding: 62px 0;
  }

  .conversation-section h2,
  .conversation-veroom h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .conversation-copy {
    font-size: 17px;
    line-height: 1.58;
  }

  .conversation-spaced-copy p + p {
    margin-top: 22px;
  }

  .conversation-emphasis {
    font-size: clamp(24px, 8vw, 32px);
  }

  .conversation-veroom {
    padding: 68px 14px;
  }

  .conversation-perspective-grid article,
  .conversation-step-grid article,
  .conversation-balance-grid article,
  .conversation-practical-list {
    padding: 24px;
  }

  .conversation-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero {
    padding-block: 48px 62px;
  }

  .about-hero h1 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .about-copy {
    font-size: 17px;
    line-height: 1.58;
  }

  .about-days {
    font-size: 18px;
  }

  .about-section {
    padding: 62px 0;
  }

  .about-section h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .about-portrait {
    width: min(280px, 78vw);
  }

  .about-final-inner {
    padding: 28px 24px;
  }

  .about-final p + p {
    font-size: clamp(25px, 9vw, 34px);
  }
}


/* Conversations Eclairantes - editorial redesign */
body.conversation-typo-system::before {
  display: none;
}

body.conversation-typo-system h1,
body.conversation-typo-system h2,
body.conversation-typo-system h3 {
  font-family: var(--font-identity) !important;
  font-weight: 300;
  letter-spacing: -0.015em;
}

body.conversation-typo-system h2 {
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.08;
}

body.conversation-typo-system h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.15;
}

.conversation-page {
  overflow: hidden;
  background: var(--paper);
}

.conversation-page .section-kicker,
.conversation-page .page-kicker {
  font-family: var(--font-identity);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.conversation-page .button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 4px;
}

.conversation-hero.story-hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: auto;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.58fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) 0 clamp(42px, 5vw, 64px);
}

.conversation-hero .story-hero-copy {
  max-width: 780px;
}

.conversation-hero .page-kicker {
  max-width: 590px;
  margin: 0 0 22px;
  color: var(--copper);
}

.conversation-hero h1 {
  max-width: 820px;
  color: var(--forest) !important;
  font-size: clamp(48px, 7.2vw, 84px);
  font-weight: 300;
  line-height: 1.01;
}

.conversation-lede {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-family: var(--font-reading);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.56;
}

.conversation-hero .story-hero-actions {
  margin-top: 34px;
}

.conversation-hero .story-hero-actions span {
  color: rgba(108, 102, 95, 0.82);
  font-family: var(--font-identity);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.conversation-hero-panel {
  display: grid;
  gap: 0;
  padding: clamp(24px, 3.1vw, 34px);
  border: 1px solid var(--frame-line);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(244, 238, 229, 0.7)),
    var(--shell);
  box-shadow: var(--frame-shadow);
}

.conversation-hero-panel span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(180, 106, 69, 0.16);
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.22;
}

.conversation-hero-panel span:last-child {
  border-bottom: 0;
}

.conversation-hero-panel .conversation-hero-panel-strong {
  color: var(--forest);
  font-size: clamp(22px, 2.05vw, 29px);
  font-weight: 400;
}

.conversation-hero-panel .conversation-hero-panel-muted {
  color: rgba(75, 65, 70, 0.72);
  font-family: var(--font-reading);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.5;
}

.conversation-hero-panel .conversation-hero-panel-question {
  color: var(--copper);
  font-family: var(--font-identity);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 500;
}

.conversation-why-emphasis {
  position: relative;
  margin: 22px 0 0;
  padding-top: 0;
  max-width: 850px;
  border-top: 0;
  color: var(--forest);
  font-family: var(--font-reading);
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 600;
  line-height: 1.46;
}

.conversation-why-emphasis strong {
  font-weight: 400;
}

.conversation-why-actions {
  margin-top: 24px;
}

.conversation-section {
  width: 100%;
  margin: 0;
  padding: clamp(78px, 8vw, 118px) 0;
}

.conversation-section:nth-of-type(odd) {
  background: rgba(244, 238, 229, 0.48);
  border-block: 1px solid rgba(39, 38, 36, 0.08);
}

.conversation-section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.conversation-centered {
  max-width: 900px;
}

.conversation-section-heading {
  max-width: 620px;
}

.conversation-heading-centered {
  max-width: 820px;
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}

.conversation-section-heading h2 {
  margin-top: 12px;
}

.conversation-section-heading > p:not(.section-kicker),
.conversation-after-cards,
.conversation-copy,
.conversation-speech,
.conversation-balance-grid p {
  color: var(--muted);
  font-family: var(--font-reading);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 400;
  line-height: 1.56;
}

.conversation-section-heading > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--ink);
}

.conversation-intimate {
  padding-block: clamp(58px, 6.5vw, 86px);
  background:
    radial-gradient(circle at 84% 10%, rgba(180, 106, 69, 0.08), transparent 24%),
    var(--paper);
}

.conversation-intimate .section-kicker,
.conversation-intimate h2 {
  text-align: center;
}

.conversation-speech {
  max-width: 760px;
  margin: clamp(24px, 3.2vw, 36px) auto 0;
  padding: clamp(24px, 3.2vw, 36px);
  border-left: 2px solid rgba(180, 106, 69, 0.46);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--frame-shadow);
}

.conversation-speech p,
.conversation-copy p {
  margin: 0;
}

.conversation-speech p + p,
.conversation-copy p + p,
.conversation-after-cards p + p,
.conversation-balance-grid p + p {
  margin-top: 15px;
}

.conversation-emphasis {
  max-width: 780px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(180, 106, 69, 0.22);
  background: rgba(239, 226, 220, 0.45);
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 300;
  line-height: 1.26;
}

.conversation-veroom {
  width: 100%;
  margin: 0;
  padding: clamp(84px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(217, 170, 63, 0.13), transparent 28%),
    linear-gradient(135deg, var(--pine), var(--forest));
}

.conversation-veroom-frame {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.conversation-veroom .section-kicker {
  color: var(--gold);
}

.conversation-veroom h2 {
  max-width: 640px;
  margin-top: 12px;
  color: var(--paper) !important;
  font-size: clamp(34px, 4.4vw, 58px);
}

.conversation-veroom .conversation-copy {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 253, 249, 0.82);
}

.conversation-veroom-note {
  max-width: 540px;
  margin: 30px 0 0;
  padding: 16px 20px;
  border: 1px solid rgba(217, 170, 63, 0.36);
  background: rgba(251, 247, 239, 0.08);
  color: var(--paper);
  font-family: var(--font-identity);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.24;
}

.conversation-veroom .button-link {
  margin-top: 34px;
  background: var(--paper);
  color: var(--forest);
}

.conversation-veroom .button-link:hover,
.conversation-veroom .button-link:focus-visible {
  background: #fffdf9;
  color: var(--pine);
}

.conversation-veroom-signature {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(217, 170, 63, 0.22);
  background: rgba(251, 247, 239, 0.07);
  color: rgba(255, 253, 249, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.conversation-veroom-signature p {
  margin: 0;
  font-family: var(--font-identity);
  font-size: clamp(23px, 2.4vw, 36px);
  font-weight: 300;
  line-height: 1.2;
}

.conversation-veroom-signature p + p {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 170, 63, 0.24);
}

.conversation-veroom-signature span {
  display: block;
  color: var(--paper);
  font-family: var(--font-signature);
  font-size: 1.35em;
  font-style: italic;
  line-height: 1;
}

.conversation-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.conversation-card-grid .story-door-card {
  min-height: 0;
  padding: clamp(20px, 2.4vw, 28px);
  border-color: var(--frame-line-cool);
  transform: none;
}

.conversation-card-grid .conversation-card-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-identity);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.conversation-card-grid .story-door-card h3 {
  margin-bottom: 14px;
  color: var(--forest) !important;
  font-size: clamp(21px, 2vw, 27px);
}

.conversation-card-grid .story-door-card p:not(.conversation-card-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.48;
}

.conversation-process {
  background: var(--shell);
  border-block: 1px solid rgba(39, 38, 36, 0.08);
}

.conversation-process-grid {
  margin-top: 0;
}

.conversation-process-grid .process-step {
  min-height: 0;
  padding: clamp(22px, 2.4vw, 30px);
}

.conversation-process-grid .process-step h3 {
  margin-top: 14px;
  font-size: clamp(21px, 2vw, 27px);
}

.conversation-process-grid .process-step p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.48;
}

.conversation-threshold {
  background: var(--paper);
}

.conversation-balance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.conversation-balance-grid article {
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid var(--frame-line);
  background: rgba(255, 253, 249, 0.76);
  box-shadow: var(--frame-shadow);
}

.conversation-balance-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.conversation-quiet-link {
  margin-top: 18px;
}

.conversation-quiet-link a {
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(36, 83, 68, 0.28);
  text-underline-offset: 0.28em;
}

.conversation-quiet-link a:hover,
.conversation-quiet-link a:focus-visible {
  color: var(--copper);
  text-decoration-color: currentColor;
}

.conversation-not {
  padding-block: clamp(58px, 6vw, 86px);
}

.conversation-compact-note {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(26px, 3.5vw, 42px);
  border: 1px solid rgba(120, 144, 130, 0.26);
  background: rgba(255, 253, 249, 0.76);
  box-shadow: var(--frame-shadow);
}

.conversation-compact-note h2 {
  margin-top: 10px;
  font-size: clamp(25px, 2.6vw, 36px);
}

.conversation-compact-note .conversation-copy {
  margin-top: 22px;
}

.conversation-practical {
  padding-block: clamp(58px, 6vw, 86px) clamp(76px, 7vw, 108px);
  background: rgba(239, 226, 220, 0.36);
  border-block: 1px solid var(--line);
}

.conversation-practical-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 4.5vw, 62px);
  align-items: start;
}

.conversation-practical h2 {
  max-width: 640px;
}

.conversation-practical .conversation-copy {
  max-width: 620px;
  margin: 26px 0 0;
}

.conversation-practical-disclaimer {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(39, 38, 36, 0.66);
  font-family: var(--font-reading);
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.48;
}

.conversation-practical .button-link {
  white-space: nowrap;
  margin-top: 28px;
}

.conversation-practical-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--frame-line);
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--frame-shadow);
}

.conversation-practical-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(180, 106, 69, 0.16);
}

.conversation-practical-list div:first-child {
  padding-top: 0;
}

.conversation-practical-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.conversation-practical-list dt {
  color: var(--forest);
  font-family: var(--font-identity);
  font-weight: 600;
}

.conversation-practical-list dd {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-reading);
  line-height: 1.45;
}

.conversation-practical-list a {
  color: var(--forest);
  border-bottom: 1px solid rgba(180, 106, 69, 0.5);
}

body.conversation-motion-preview .conversation-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--conversation-reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.conversation-motion-preview .conversation-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.conversation-motion-preview .conversation-hero-panel,
body.conversation-motion-preview .conversation-veroom-signature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.conversation-motion-preview .conversation-hero-panel::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 136px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(190, 126, 55, 0.95));
  box-shadow: 0 0 22px rgba(190, 126, 55, 0.66);
  pointer-events: none;
}

body.conversation-motion-preview .conversation-hero-panel::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -34px;
  z-index: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 126, 55, 0.32) 0%, rgba(190, 126, 55, 0.15) 38%, rgba(190, 126, 55, 0.08) 58%, transparent 76%);
  filter: blur(42px);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: conversationHeroAmberDrift 11s ease-in-out infinite alternate;
  pointer-events: none;
}

body.conversation-motion-preview .conversation-veroom-signature::before,
body.conversation-motion-preview .conversation-veroom-signature::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 151, 58, 0.28) 0%, rgba(212, 151, 58, 0.14) 38%, rgba(212, 151, 58, 0.05) 58%, transparent 74%);
  filter: blur(28px);
  opacity: 0.82;
  pointer-events: none;
}

body.conversation-motion-preview .conversation-veroom-signature::before {
  top: -54px;
  left: -42px;
  width: 190px;
  height: 190px;
  opacity: 0.42;
  transform: translate3d(0, 0, 0);
}

body.conversation-motion-preview .conversation-veroom-signature::after {
  right: -46px;
  bottom: -58px;
  width: 255px;
  height: 255px;
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
  animation: conversationVeroomAmberDrift 12s ease-in-out infinite alternate;
}

body.conversation-motion-preview .conversation-hero-panel > *,
body.conversation-motion-preview .conversation-veroom-signature > * {
  position: relative;
  z-index: 1;
}

body.conversation-motion-preview .conversation-veroom-signature.is-visible {
  border-color: rgba(212, 151, 58, 0.5);
  box-shadow:
    0 24px 60px rgba(32, 79, 61, 0.1),
    16px 22px 44px rgba(212, 151, 58, 0.12),
    inset -18px -18px 42px rgba(212, 151, 58, 0.08);
  animation: conversationVeroomBorderGlow 1200ms ease-out 1;
}

@keyframes conversationHeroAmberDrift {
  from {
    opacity: 0.88;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 1;
    transform: translate3d(-92px, 72px, 0) scale(1.05);
  }
}

@keyframes conversationVeroomAmberDrift {
  from {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0.98;
    transform: translate3d(-34px, -18px, 0) scale(1.04);
  }
}

@keyframes conversationVeroomBorderGlow {
  0% {
    border-color: rgba(212, 151, 58, 0.36);
    box-shadow:
      0 22px 54px rgba(32, 79, 61, 0.09),
      12px 16px 28px rgba(212, 151, 58, 0.08),
      inset -14px -14px 32px rgba(212, 151, 58, 0.05);
  }

  48% {
    border-color: rgba(212, 151, 58, 0.82);
    box-shadow:
      0 26px 66px rgba(32, 79, 61, 0.12),
      18px 24px 54px rgba(212, 151, 58, 0.2),
      inset -22px -22px 52px rgba(212, 151, 58, 0.13);
  }

  100% {
    border-color: rgba(212, 151, 58, 0.5);
    box-shadow:
      0 24px 60px rgba(32, 79, 61, 0.1),
      16px 22px 44px rgba(212, 151, 58, 0.12),
      inset -18px -18px 42px rgba(212, 151, 58, 0.08);
  }
}

@media (hover: hover) and (pointer: fine) {
  body.conversation-motion-preview .story-door-card,
  body.conversation-motion-preview .conversation-emphasis,
  body.conversation-motion-preview .process-step,
  body.conversation-motion-preview .conversation-balance-grid article,
  body.conversation-motion-preview .conversation-practical-list {
    transition:
      transform 350ms ease,
      box-shadow 350ms ease,
      border-color 350ms ease;
  }

  body.conversation-motion-preview .story-door-card:hover,
  body.conversation-motion-preview .conversation-emphasis:hover,
  body.conversation-motion-preview .process-step:hover,
  body.conversation-motion-preview .conversation-balance-grid article:hover,
  body.conversation-motion-preview .conversation-practical-list:hover {
    transform: translateY(-5px);
    border-color: rgba(190, 126, 55, 0.64);
    box-shadow: 0 18px 42px rgba(32, 79, 61, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.conversation-motion-preview .conversation-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.conversation-motion-preview .conversation-hero-panel::after,
  body.conversation-motion-preview .conversation-veroom-signature::before,
  body.conversation-motion-preview .conversation-veroom-signature::after {
    animation: none;
  }

  body.conversation-motion-preview .conversation-veroom-signature.is-visible {
    animation: none;
  }

  body.conversation-motion-preview .story-door-card,
  body.conversation-motion-preview .conversation-emphasis,
  body.conversation-motion-preview .process-step,
  body.conversation-motion-preview .conversation-balance-grid article,
  body.conversation-motion-preview .conversation-practical-list {
    transform: none !important;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .conversation-hero.story-hero,
  .conversation-veroom-frame,
  .conversation-practical-grid {
    grid-template-columns: 1fr;
  }

  .conversation-hero-panel,
  .conversation-veroom-signature {
    max-width: 720px;
  }

  .conversation-card-grid {
    grid-template-columns: 1fr;
  }

  .conversation-card-grid .story-door-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .conversation-hero.story-hero,
  .conversation-section-inner,
  .conversation-veroom-frame,
  .conversation-compact-note {
    width: min(100% - 28px, 760px);
  }

  .conversation-hero.story-hero {
    padding-block: 52px 44px;
    margin-bottom: 0;
  }

  .conversation-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  body.conversation-typo-system h2,
  .conversation-veroom h2 {
    font-size: clamp(31px, 9.8vw, 44px);
  }

  .conversation-section {
    padding-block: 62px;
  }

  .conversation-speech,
  .conversation-balance-grid article,
  .conversation-compact-note,
  .conversation-practical-list,
  .conversation-veroom-signature {
    padding: 24px;
  }

  .conversation-veroom {
    padding-block: 66px;
  }

  .conversation-balance-grid {
    grid-template-columns: 1fr;
  }

  .conversation-practical-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .conversation-hero .story-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .conversation-practical .button-link {
    max-width: 100%;
    padding-inline: 14px;
    font-size: clamp(13px, 3.35vw, 15px);
  }
}

/* Final conversation page guards: keep old generic rules from taking over. */
body.conversation-typo-system .conversation-page h1,
body.conversation-typo-system .conversation-page h2,
body.conversation-typo-system .conversation-page h3,
body.conversation-typo-system .conversation-section h2,
body.conversation-typo-system .conversation-section h3,
body.conversation-typo-system .conversation-card-grid h3,
body.conversation-typo-system .conversation-balance-grid h3,
body.conversation-typo-system .conversation-process-grid h3,
body.conversation-typo-system .conversation-practical h2 {
  font-family: var(--font-identity) !important;
}

body.conversation-typo-system .conversation-page h1,
body.conversation-typo-system .conversation-page h2 {
  font-weight: 300;
}

body.conversation-typo-system .conversation-page h3 {
  font-weight: 500;
}

body.conversation-typo-system .conversation-section h2 {
  font-size: clamp(30px, 3.7vw, 48px);
}

body.conversation-typo-system .conversation-veroom-signature span {
  font-family: var(--font-signature) !important;
}

/* Library page */
body.library-typo-system {
  --library-accent: #684b5c;
  --library-accent-deep: #493540;
  --library-accent-soft: #e8dde2;
  --library-gold: #b88758;
  --library-ink: #205b48;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-reading);
}

body.library-typo-system h1,
body.library-typo-system h2,
body.library-typo-system h3,
body.library-typo-system .page-kicker,
body.library-typo-system .section-kicker,
body.library-typo-system .button-link,
body.library-typo-system .text-link {
  font-family: var(--font-identity);
}

.library-page {
  overflow: hidden;
}

.library-hero,
.library-section-inner,
.library-radio-inner,
.library-final-inner,
.library-contact-final-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.library-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
  padding: clamp(74px, 9vw, 122px) 0 clamp(86px, 10vw, 132px);
}

.library-hero-copy {
  max-width: 690px;
}

.library-hero .page-kicker,
.library-section .section-kicker,
.library-radio .section-kicker,
.library-final .section-kicker,
.library-contact-final .section-kicker {
  color: var(--library-accent);
}

.library-hero h1,
.library-section h2,
.library-radio h2,
.library-final h2,
.library-contact-final h2 {
  color: var(--library-ink);
  font-weight: 300;
  letter-spacing: 0;
}

.library-hero h1 {
  margin: 20px 0 24px;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.98;
}

.library-hero-line {
  max-width: 650px;
  color: var(--library-accent-deep);
  font-family: var(--font-identity);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 300;
  line-height: 1.14;
}

.library-no-break {
  white-space: nowrap;
}

.library-intro {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.55;
}

.library-hero-links,
.library-project-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.library-project-cta .button-link {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.library-hero-links a,
.library-quiet-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid rgba(104, 75, 92, 0.24);
  border-radius: 5px;
  color: var(--library-accent-deep);
  font-family: var(--font-identity);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.library-hero-links a:hover,
.library-hero-links a:focus-visible {
  border-color: rgba(184, 135, 88, 0.66);
  color: var(--library-ink);
  transform: translateY(-2px);
}

.library-hero-stack {
  position: relative;
  min-height: 500px;
}

.library-stack-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(104, 75, 92, 0.2);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 22px 56px rgba(39, 38, 36, 0.11);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

.library-stack-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96) brightness(1.04);
}

.library-stack-main {
  z-index: 3;
  top: 70px;
  right: 0;
  width: min(432px, 86%);
  aspect-ratio: 4 / 5;
}

@media (hover: hover) and (pointer: fine) {
  .library-stack-card:hover {
    border-color: rgba(184, 135, 88, 0.55);
    box-shadow: 0 30px 74px rgba(73, 53, 64, 0.18);
  }

  .library-stack-main:hover {
    transform: translateY(-6px) rotate(-0.4deg);
  }
}

.library-section {
  padding: clamp(76px, 8vw, 118px) 0;
  border-top: 1px solid rgba(32, 91, 72, 0.09);
}

.library-thread {
  background: rgba(232, 221, 226, 0.38);
}

.library-section-heading {
  max-width: 780px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.library-heading-wide {
  max-width: none;
}

.library-section h2,
.library-radio h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: 1.04;
}

.library-thread-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(104, 75, 92, 0.2);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 22px 54px rgba(39, 38, 36, 0.06);
}

.library-thread-rail article {
  min-height: 230px;
  padding: clamp(28px, 4vw, 48px);
}

.library-thread-rail article + article {
  border-left: 1px solid rgba(104, 75, 92, 0.16);
}

.library-thread-rail span,
.library-book-type,
.library-workshop-notes span {
  color: var(--library-accent);
  font-family: var(--font-identity);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.library-thread-rail span {
  display: block;
  min-height: 3.2em;
  line-height: 1.6;
}

.library-thread-rail p {
  margin: 24px 0 0;
  color: var(--library-ink);
  font-family: var(--font-identity);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.16;
}

.library-feature-book,
.library-project {
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.library-book-visual,
.library-project-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px solid rgba(104, 75, 92, 0.26);
  border-radius: 5px;
  background:
    radial-gradient(circle at 76% 24%, rgba(184, 135, 88, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(232, 221, 226, 0.5));
  box-shadow: 0 24px 62px rgba(39, 38, 36, 0.08);
  color: var(--library-accent-deep);
  font-family: var(--font-identity);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  transition: transform 340ms ease, box-shadow 340ms ease, border-color 340ms ease;
}

.library-book-visual img {
  display: block;
  width: min(82%, 360px);
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 24px 52px rgba(39, 38, 36, 0.16);
}

.library-book-copy,
.library-project-copy {
  max-width: 650px;
}

.library-book-copy h3,
.library-project-copy h3,
.library-secondary-books h3,
.library-workshop-notes h3,
.library-chronicle-grid h3,
.library-project-cta h3 {
  margin: 10px 0 18px;
  color: var(--library-ink);
  font-family: var(--font-identity);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  line-height: 1.08;
}

.library-book-copy p,
.library-project-copy p,
.library-secondary-books p,
.library-workshop-notes p,
.library-chronicle-grid p,
.library-manifest p,
.library-radio p,
.library-project-cta p,
.library-final p {
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.56;
}

.library-book-line {
  color: var(--library-accent-deep) !important;
  font-family: var(--font-identity);
  font-size: clamp(23px, 2.1vw, 32px) !important;
  font-weight: 300;
  line-height: 1.18 !important;
}

.library-book-genre {
  margin: -8px 0 0;
  color: rgba(104, 75, 92, 0.72) !important;
  font-family: var(--font-identity);
  font-size: clamp(16px, 1.1vw, 18px) !important;
  font-weight: 500;
  line-height: 1.35 !important;
}

.library-book-hook {
  margin: clamp(22px, 2.4vw, 30px) 0 0;
  color: var(--library-accent-deep) !important;
  font-size: clamp(19px, 1.55vw, 23px) !important;
  line-height: 1.36 !important;
}

.library-book-actions {
  margin-top: 30px;
}

.library-project-lead {
  color: var(--library-accent-deep) !important;
}

.library-project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
}

.library-project-links .text-link {
  color: var(--library-accent-deep);
}

.library-secondary-books {
  margin-top: clamp(36px, 5vw, 64px);
  max-width: 620px;
  padding-top: 28px;
  border-top: 1px solid rgba(104, 75, 92, 0.18);
}

.library-cowriting {
  background: rgba(255, 253, 248, 0.58);
}

.library-project-list {
  display: grid;
  gap: clamp(42px, 6vw, 80px);
}

.library-project-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.48fr);
}

.library-project-reverse .library-project-visual {
  order: 2;
}

.library-project-visual {
  min-height: 320px;
  font-size: clamp(25px, 2.55vw, 36px);
}

.library-project-cover img {
  display: block;
  width: min(240px, 78%);
  height: auto;
  border-radius: 3px;
  box-shadow: 0 18px 42px rgba(39, 38, 36, 0.16);
}

.library-other-storybooks {
  margin-top: clamp(54px, 7vw, 88px);
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid rgba(104, 75, 92, 0.16);
}

.library-other-heading {
  max-width: 760px;
}

.library-other-heading h3 {
  margin: 10px 0 0;
  color: var(--library-ink);
  font-family: var(--font-identity);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.library-other-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
  align-items: stretch;
  margin-top: clamp(28px, 4vw, 42px);
}

.library-other-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(104, 75, 92, 0.18);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.74)),
    rgba(232, 221, 226, 0.22);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.06);
  transition: transform 330ms ease, box-shadow 330ms ease, border-color 330ms ease;
}

.library-other-cover {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(104, 75, 92, 0.12);
  background:
    radial-gradient(circle at 74% 20%, rgba(184, 135, 88, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(232, 221, 226, 0.38));
}

.library-other-cover img {
  display: block;
  width: auto;
  max-width: min(170px, 82%);
  height: auto;
  max-height: 225px;
  border-radius: 3px;
  box-shadow: 0 14px 32px rgba(39, 38, 36, 0.16);
}

.library-other-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(24px, 3.2vw, 34px);
}

.library-other-copy h4 {
  margin: 0;
  color: var(--library-ink);
  font-family: var(--font-identity);
  font-size: clamp(25px, 2.1vw, 32px);
  font-weight: 400;
  line-height: 1.08;
}

.library-other-author {
  margin: 12px 0 0;
  color: var(--library-accent-deep);
  font-family: var(--font-structure);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.library-other-subtitle,
.library-other-challenge {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.5;
}

.library-other-subtitle {
  color: var(--library-accent-deep);
  font-weight: 600;
  line-height: 1.42;
}

.library-other-challenge-block {
  margin-top: clamp(28px, 3vw, 36px);
  padding-top: 0;
}

.library-other-label {
  margin: 0;
  color: rgba(104, 75, 92, 0.72);
  font-family: var(--font-structure);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.library-other-challenge {
  margin-top: 14px;
}

.library-other-link {
  align-self: flex-start;
  margin-top: 20px;
  color: var(--library-accent-deep);
}

.library-project-cta {
  margin-top: clamp(54px, 7vw, 88px);
  max-width: 870px;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(184, 135, 88, 0.48);
  border-radius: 5px;
  background:
    radial-gradient(circle at 88% 14%, rgba(184, 135, 88, 0.16), transparent 34%),
    linear-gradient(135deg, var(--forest) 0%, var(--pine) 100%);
  box-shadow: 0 24px 60px rgba(39, 38, 36, 0.12);
}

.library-project-cta h3 {
  color: var(--paper) !important;
}

.library-project-cta p {
  color: rgba(255, 253, 249, 0.84) !important;
}

.library-project-cta .button-link {
  border-color: rgba(255, 253, 249, 0.72);
  background: rgba(255, 253, 249, 0.94);
  color: var(--pine);
}

.library-project-cta .button-link:hover,
.library-project-cta .button-link:focus-visible {
  border-color: rgba(184, 135, 88, 0.82);
  background: var(--library-gold);
  color: var(--pine);
}

.library-project-cta .text-link {
  align-self: center;
  color: var(--library-accent-deep);
}

.library-storybooks-subhead {
  max-width: 720px;
  margin: clamp(28px, 4vw, 44px) 0 clamp(26px, 4vw, 42px);
  padding-top: 24px;
  border-top: 1px solid rgba(184, 135, 88, 0.24);
  scroll-margin-top: 120px;
}

.library-storybooks-subhead h3 {
  margin: 0;
  color: var(--library-accent-deep);
  font-family: var(--font-identity);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.library-book-status,
.story-showcase-status {
  margin: 0 0 10px;
  color: rgba(184, 135, 88, 0.9);
  font-family: var(--font-structure);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.library-project,
.library-other-storybooks,
.library-storybooks-subhead {
  scroll-margin-top: 120px;
}

.library-private-transition {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 21px);
  font-style: italic;
  line-height: 1.55;
}

.library-workshop-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 88px);
}

.library-workshop-notes {
  display: grid;
  gap: 20px;
}

.library-workshop-notes article {
  padding: clamp(26px, 4vw, 42px);
  border-left: 2px solid rgba(184, 135, 88, 0.48);
  background: rgba(255, 253, 248, 0.62);
}

.library-workshop-book {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 4.4vw, 58px);
  align-items: start;
  padding: clamp(28px, 4.5vw, 48px);
  border: 1px solid rgba(104, 75, 92, 0.2);
  border-left: 2px solid rgba(184, 135, 88, 0.48);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 24px 58px rgba(39, 38, 36, 0.06);
}

.library-workshop-book .library-workshop-status {
  grid-column: 2;
  margin: 0 0 10px;
}

.library-workshop-cover {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  margin: 0;
  text-align: center;
}

.library-workshop-cover img {
  display: block;
  width: min(100%, 310px);
  height: auto;
  max-height: 465px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(39, 38, 36, 0.13);
}

.library-workshop-typographic {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 310px);
  aspect-ratio: 2 / 3;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(104, 75, 92, 0.22);
  background:
    linear-gradient(90deg, transparent 18%, rgba(184, 135, 88, 0.22) 18.3%, transparent 18.6%),
    linear-gradient(180deg, transparent 30%, rgba(104, 75, 92, 0.08) 30.2%, transparent 30.5%),
    radial-gradient(circle at 78% 72%, rgba(184, 135, 88, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(232, 221, 226, 0.38));
  box-shadow: 0 18px 42px rgba(39, 38, 36, 0.11);
}

.library-workshop-typographic::before,
.library-workshop-typographic::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(184, 135, 88, 0.22);
  pointer-events: none;
}

.library-workshop-typographic::after {
  inset: auto 36px 42px;
  height: 1px;
  border: 0;
  background: rgba(184, 135, 88, 0.42);
}

.library-workshop-typographic span {
  position: relative;
  color: var(--library-accent-deep);
  font-family: var(--font-identity);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.library-workshop-cover figcaption {
  margin-top: 12px;
  color: rgba(104, 75, 92, 0.72);
  font-size: 14px;
  font-style: italic;
  line-height: 1.35;
}

.library-workshop-copy {
  grid-column: 2;
  max-width: 660px;
}

.library-workshop-copy h3 {
  margin-top: 0;
}

.library-workshop-origin {
  margin: -6px 0 22px;
  color: rgba(104, 75, 92, 0.78);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.45;
}

.library-workshop-copy .library-book-hook {
  margin: 0 0 18px;
}

.library-workshop-copy .library-book-hook strong {
  color: var(--library-accent-deep);
}

.library-journalism {
  --chroniques-ink: #4b3543;
  --chroniques-ink-deep: #382e36;
  --chroniques-plum-soft: #725565;
  --chroniques-cream: #f5efe7;
  --chroniques-accent: #c59468;
  padding: clamp(78px, 8vw, 118px) 0;
  border-top: 1px solid rgba(32, 91, 72, 0.09);
  background: var(--paper);
}

.library-books,
.library-workshop {
  background: rgba(232, 221, 226, 0.38);
}

.library-journalism-intro {
  display: grid;
  grid-template-columns: minmax(430px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}

.library-journalism-card {
  padding: clamp(30px, 4.2vw, 50px);
  border: 1px solid rgba(197, 148, 104, 0.28);
  border-radius: 5px;
  background:
    radial-gradient(circle at 88% 12%, rgba(197, 148, 104, 0.18), transparent 35%),
    linear-gradient(135deg, var(--chroniques-ink) 0%, var(--chroniques-ink-deep) 100%);
  box-shadow: 0 24px 60px rgba(39, 38, 36, 0.08);
}

body.library-typo-system .chroniques-section .library-journalism-card .section-kicker {
  color: var(--chroniques-accent);
}

body.library-typo-system .chroniques-section .library-journalism-card h2 {
  margin: 14px 0 22px;
  color: var(--chroniques-cream) !important;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

body.library-typo-system .chroniques-section .library-journalism-card p:not(.section-kicker) {
  color: #f0e8e1;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.58;
}

.chroniques-wave-line {
  display: block;
  width: min(230px, 78%);
  height: 1px;
  margin-top: clamp(28px, 4vw, 42px);
  background: linear-gradient(90deg, transparent, rgba(197, 148, 104, 0.92), transparent);
}

.library-journalism-map {
  display: grid;
  gap: 18px;
}

.library-journalism-map a {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 18px;
  align-content: center;
  min-height: 126px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(104, 75, 92, 0.16);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.84), rgba(255, 253, 248, 0.62)),
    rgba(232, 221, 226, 0.2);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.045);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.library-journalism-map a::after {
  content: "→";
  position: absolute;
  right: clamp(18px, 2vw, 26px);
  bottom: clamp(16px, 2vw, 22px);
  color: rgba(197, 148, 104, 0.88);
  font-family: var(--font-identity);
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.library-journalism-map span {
  grid-row: span 2;
  color: rgba(197, 148, 104, 0.76);
  font-family: var(--font-identity);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.library-journalism-map strong {
  color: var(--chroniques-ink);
  font-family: var(--font-identity);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.08;
}

.library-journalism-map p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.1vw, 18px);
}

.library-journalism-map a:focus-visible {
  outline: 2px solid rgba(197, 148, 104, 0.72);
  outline-offset: 4px;
  border-color: rgba(197, 148, 104, 0.54);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.72)),
    rgba(232, 221, 226, 0.28);
}

.library-journalism-map a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.library-anchor-target {
  display: block;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 130px;
}

.library-journalism-sequences {
  display: grid;
  gap: clamp(54px, 7vw, 88px);
  margin-top: clamp(58px, 8vw, 98px);
}

.library-journalism-family {
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid rgba(104, 75, 92, 0.16);
}

.library-journalism-family-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.library-journalism-family-head.has-identity {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 2.3vw, 30px);
  align-items: start;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.library-journalism-family h3 {
  margin: 0 0 16px;
  color: var(--library-ink);
  font-family: var(--font-identity);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.library-journalism-family-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.library-journalism-identity {
  position: relative;
  width: min(100%, 260px);
  justify-self: start;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5.15;
  border: 1px solid rgba(104, 75, 92, 0.18);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 44px rgba(39, 38, 36, 0.08);
}

.library-journalism-identity img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 44%;
}

.library-journalism-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.library-journalism-layout.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.library-journalism-feature-stack {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
}

.library-journalism-feature-stack .library-journalism-feature,
.library-journalism-layout.is-single .library-journalism-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(190px, 0.3fr);
  align-items: start;
}

.library-journalism-feature-stack .library-journalism-feature-visual,
.library-journalism-layout.is-single .library-journalism-feature-visual {
  order: 2;
  width: 100%;
  min-width: 0;
  padding: clamp(18px, 1.9vw, 24px);
  aspect-ratio: auto;
  background: transparent;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.library-journalism-feature-stack .library-journalism-copy,
.library-journalism-layout.is-single .library-journalism-copy {
  order: 1;
}

.library-journalism-feature,
.library-journalism-card-small {
  border: 1px solid rgba(104, 75, 92, 0.16);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.055);
  transition: transform 330ms ease, border-color 330ms ease, box-shadow 330ms ease;
}

.library-journalism-feature {
  overflow: hidden;
}

.library-journalism-feature img,
.library-journalism-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-journalism-feature-stack .library-journalism-feature-visual img,
.library-journalism-layout.is-single .library-journalism-feature-visual img {
  aspect-ratio: 4 / 5;
  width: min(100%, 210px);
  height: 260px;
  max-height: 260px;
  border-radius: 4px;
}

.library-journalism-feature-stack .library-journalism-feature-visual.is-panorama img,
.library-journalism-layout.is-single .library-journalism-feature-visual.is-panorama img {
  object-position: 52% 48%;
}

.library-journalism-feature-visual {
  aspect-ratio: 16 / 10;
  background: rgba(232, 221, 226, 0.32);
}

.library-radio-placeholder {
  box-sizing: border-box;
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(197, 148, 104, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(75, 53, 67, 0.96), rgba(114, 85, 101, 0.82));
  color: var(--chroniques-cream);
}

.library-radio-placeholder span {
  font-family: var(--font-identity);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 0.96;
}

.library-radio-placeholder i {
  display: block;
  width: min(100%, 280px);
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(197, 148, 104, 0.92), transparent);
}

.library-radio-placeholder small {
  color: rgba(246, 240, 231, 0.82);
  font-family: var(--font-identity);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.library-journalism-copy {
  padding: clamp(26px, 4vw, 42px);
}

.library-journalism-meta,
.library-journalism-card-small span {
  color: rgba(104, 75, 92, 0.72);
  font-family: var(--font-identity);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.library-journalism-meta.is-custom {
  text-transform: none;
}

.library-journalism-meta .radio-j-letter {
  position: relative;
  top: -0.01em;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1;
}

.library-journalism-copy h4,
.library-journalism-card-small h4 {
  margin: 12px 0 14px;
  color: var(--chroniques-ink);
  font-family: var(--font-identity);
  font-size: clamp(25px, 2.45vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}

.library-journalism-card-small h4 {
  font-size: clamp(22px, 2vw, 29px);
}

.library-journalism-copy p,
.library-journalism-card-small p {
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.52;
}

.library-journalism-book {
  color: var(--library-accent-deep) !important;
  font-weight: 600;
}

.library-journalism-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.library-journalism-card-small {
  padding: clamp(22px, 3vw, 30px);
}

.library-journalism-thumb {
  overflow: hidden;
  margin: calc(clamp(22px, 3vw, 30px) * -1) calc(clamp(22px, 3vw, 30px) * -1) 20px;
  aspect-ratio: 16 / 10;
  background: rgba(232, 221, 226, 0.32);
}

.library-journalism-family.is-reverse .library-journalism-feature {
  order: 2;
}

.library-journalism-family-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(16px, 2.5vw, 28px);
  text-align: center;
}

.library-journalism-family-cta .library-journalism-link {
  position: relative;
  gap: 10px;
  margin-top: 0;
  padding: 13px clamp(18px, 2.4vw, 26px);
  border-top: 1px solid rgba(197, 148, 104, 0.42);
  border-bottom: 1px solid rgba(197, 148, 104, 0.42);
  text-decoration: none;
  transition: color 260ms ease, border-color 260ms ease, background-color 260ms ease, transform 260ms ease;
}

.library-journalism-family-cta .library-journalism-link::after {
  content: "→";
  color: var(--chroniques-accent);
  font-size: 1.05em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 260ms ease;
}

.library-journalism-family-cta .library-journalism-link:hover,
.library-journalism-family-cta .library-journalism-link:focus-visible {
  border-color: rgba(197, 148, 104, 0.78);
  background: rgba(255, 253, 248, 0.58);
  color: var(--library-accent-deep);
  transform: translateY(-2px);
}

.library-journalism-family-cta .library-journalism-link:hover::after,
.library-journalism-family-cta .library-journalism-link:focus-visible::after {
  transform: translateX(4px);
}

.library-journalism-travel {
  padding-top: clamp(46px, 6vw, 72px);
}

.library-journalism-literary {
  padding-top: clamp(46px, 6vw, 72px);
}

.library-literary-feature {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  border: 1px solid rgba(104, 75, 92, 0.16);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.055);
  padding: clamp(24px, 3.4vw, 42px);
}

.library-literary-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 0;
  background: rgba(232, 221, 226, 0.22);
  border-radius: 4px;
}

.library-literary-cover img {
  display: block;
  width: min(100%, 230px);
  height: auto;
  max-height: 330px;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 16px 34px rgba(39, 38, 36, 0.12);
}

.library-literary-copy {
  min-width: 0;
}

.library-literary-copy h4 {
  margin: 12px 0 8px;
  color: var(--chroniques-ink);
  font-family: var(--font-identity);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.05;
}

.library-literary-author {
  margin: 0;
  color: var(--library-accent-deep);
  font-family: var(--font-identity);
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}

.library-literary-publisher {
  margin: 6px 0 0;
  color: rgba(104, 75, 92, 0.68);
  font-size: 14px;
  line-height: 1.4;
}

.library-literary-description {
  max-width: 700px;
  margin: clamp(18px, 2vw, 24px) 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.58;
}

.library-literary-audio {
  max-width: 680px;
  margin-top: clamp(22px, 2.5vw, 30px);
}

.library-literary-audio p {
  margin: 0 0 12px;
  color: rgba(104, 75, 92, 0.72);
  font-family: var(--font-identity);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.library-literary-audio audio {
  display: block;
  width: 100%;
  max-width: 620px;
  color-scheme: light;
}

.library-literary-audio audio:focus-visible {
  outline: 2px solid rgba(197, 148, 104, 0.82);
  outline-offset: 6px;
  border-radius: 18px;
}

.library-travel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.library-travel-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(104, 75, 92, 0.16);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.055);
  transition: transform 330ms ease, border-color 330ms ease, box-shadow 330ms ease, background 330ms ease;
}

.library-travel-thumb {
  position: relative;
  overflow: hidden;
  margin: clamp(16px, 2vw, 22px) clamp(16px, 2vw, 22px) 0;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background: rgba(232, 221, 226, 0.32);
}

.library-travel-thumb::before {
  content: none;
}

.library-travel-thumb .library-image-watermark {
  display: none;
}

.library-travel-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center);
}

.library-travel-thumb.is-contain img {
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.library-travel-thumb.is-contain .library-image-watermark {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center);
  filter: blur(7px) saturate(1.06) contrast(1.08);
  opacity: 0.72;
  transform: scale(1.07);
}

.library-travel-thumb.is-contain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 253, 248, 0.1);
}

.library-travel-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2.7vw, 28px);
}

.library-travel-meta {
  margin: 0 0 12px;
  color: rgba(104, 75, 92, 0.72);
  font-family: var(--font-identity);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.library-travel-meta.is-custom {
  text-transform: none;
}

.library-travel-card h4 {
  margin: 0 0 14px;
  color: var(--chroniques-ink);
  font-family: var(--font-identity);
  font-size: clamp(25px, 2.25vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}

.library-travel-card p:not(.library-travel-meta) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.5;
}

.library-travel-excerpt {
  display: grid;
  gap: 14px;
}

.library-travel-excerpt p {
  font-weight: 400;
}

.library-travel-card .library-travel-subtitle {
  margin-bottom: 14px;
  color: var(--library-accent-deep);
  font-size: clamp(16.5px, 1.12vw, 18.5px);
  font-weight: 600;
  line-height: 1.45;
}

.library-travel-card .library-journalism-link {
  margin-top: auto;
  padding-top: 20px;
}

.library-journalism-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--chroniques-ink);
  font-family: var(--font-identity);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(197, 148, 104, 0.55);
  text-underline-offset: 6px;
}

.library-journalism-link-secondary {
  display: table;
  margin-top: 12px;
  color: rgba(104, 75, 92, 0.72);
  font-size: 12px;
  letter-spacing: 0.07em;
}

.library-journalism-cta {
  margin-top: clamp(46px, 6vw, 72px);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px 24px;
  width: fit-content;
  max-width: min(100%, 820px);
  margin-left: auto;
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid rgba(104, 75, 92, 0.16);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.05);
}

.library-journalism-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--library-accent-deep);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
}

.library-journalism .button-link {
  background: var(--chroniques-ink);
  color: var(--chroniques-cream);
}

.library-journalism .button-link:hover,
.library-journalism .button-link:focus-visible {
  background: var(--chroniques-accent);
  color: #382e36;
}

.library-curiosities {
  background: rgba(255, 253, 248, 0.64);
}

.library-curiosities-intro {
  max-width: 820px;
}

.library-curiosities-intro h2 {
  margin: 10px 0 20px;
  color: var(--library-ink);
  font-family: var(--font-identity);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.03;
}

.library-curiosities-intro p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.55;
}

.library-curiosities-content {
  margin-top: clamp(34px, 5vw, 54px);
}

.library-curiosities-block + .library-curiosities-block {
  margin-top: clamp(38px, 6vw, 66px);
}

.library-curiosities-block h3 {
  margin: 0 0 24px;
  color: var(--library-accent-deep);
  font-family: var(--font-identity);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.library-curiosities-grid,
.library-final-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.library-curiosities-grid article,
.library-final article {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.08);
  transition: transform 330ms ease, border-color 330ms ease, box-shadow 330ms ease;
}

.library-curiosities-grid article {
  position: relative;
  border-color: rgba(104, 75, 92, 0.16);
  background: rgba(255, 253, 248, 0.76);
}

.library-curiosities-grid h4 {
  margin: 0 0 14px;
  color: var(--library-ink);
  font-family: var(--font-identity);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.08;
}

.library-curiosities-grid p {
  color: var(--muted);
}

.library-curiosities-grid span {
  display: block;
  margin-top: 14px;
  color: rgba(104, 75, 92, 0.72);
  font-family: var(--font-identity);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.library-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.short-story-page {
  background:
    linear-gradient(rgba(104, 75, 92, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 75, 92, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.short-story-article {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) clamp(22px, 5vw, 70px) clamp(84px, 10vw, 136px);
}

.short-story-hero {
  max-width: 760px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  padding-bottom: clamp(30px, 4vw, 46px);
  border-bottom: 1px solid rgba(104, 75, 92, 0.18);
}

.short-story-back {
  display: inline-flex;
  margin-bottom: clamp(30px, 4vw, 44px);
  color: var(--library-accent-deep);
  font-family: var(--font-structure);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.short-story-back:hover,
.short-story-back:focus-visible {
  color: var(--forest);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.short-story-hero h1 {
  margin: 10px 0 20px;
  color: var(--forest);
  font-family: var(--font-identity);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 300;
  line-height: 0.96;
}

.short-story-hero p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
}

.short-story-body {
  max-width: 760px;
  margin: 0 auto;
}

.short-story-body p {
  margin: 0;
  color: var(--text);
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.78;
}

.short-story-body p + p,
.short-story-body blockquote + p,
.short-story-body p + blockquote {
  margin-top: 1.45em;
}

.short-story-body blockquote {
  margin: clamp(34px, 5vw, 52px) 0;
  padding: clamp(24px, 4vw, 36px);
  border-left: 3px solid rgba(184, 135, 88, 0.78);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 44px rgba(39, 38, 36, 0.06);
}

.short-story-body blockquote p {
  color: var(--library-accent-deep);
  font-family: var(--font-identity);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 300;
  line-height: 1.22;
}

.short-story-rights {
  margin-top: clamp(48px, 7vw, 76px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(104, 75, 92, 0.18);
}

.short-story-body .short-story-rights p {
  max-width: 760px;
  color: rgba(85, 78, 72, 0.78);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.58;
}

.short-story-body .short-story-rights p + p {
  margin-top: 10px;
}

.short-story-body .short-story-rights .short-story-rights-source {
  margin-top: 24px;
}

.short-story-rights strong {
  color: rgba(73, 53, 64, 0.82);
  font-weight: 600;
}

.library-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(104, 75, 92, 0.16);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.05);
}

.library-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.library-photo-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.library-manifest {
  max-width: 900px;
}

.library-manifest h2 {
  margin: 0 0 28px;
}

.library-final {
  padding: clamp(78px, 8vw, 120px) 0 clamp(92px, 9vw, 132px);
}

.library-final article {
  border-color: rgba(104, 75, 92, 0.18);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 24px 60px rgba(39, 38, 36, 0.06);
}

.library-final h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.library-contact-final {
  padding: clamp(72px, 8vw, 118px) 0 clamp(88px, 9vw, 132px);
  border-top: 1px solid rgba(197, 148, 104, 0.22);
  background:
    radial-gradient(circle at 86% 16%, rgba(197, 148, 104, 0.14), transparent 32%),
    linear-gradient(135deg, var(--library-accent-deep) 0%, #382e36 100%);
}

.library-contact-final-inner {
  width: min(735px, calc(100% - 40px));
  margin-right: max(20px, calc((100% - 1180px) / 2));
  margin-left: auto;
}

.library-contact-final-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: clamp(34px, 4vw, 48px);
  border: 1px solid rgba(197, 148, 104, 0.24);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.055);
  box-shadow: 0 28px 72px rgba(39, 38, 36, 0.16);
}

.library-contact-final-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(34px, 5vw, 58px);
  width: min(220px, 28%);
  height: 2px;
  background: rgba(184, 135, 88, 0.72);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 720ms ease-out 120ms;
}

.library-contact-final-card.is-visible::before,
body:not(.library-motion) .library-contact-final-card::before {
  transform: scaleX(1);
}

.library-contact-final-copy {
  max-width: 780px;
}

.library-contact-final-copy .section-kicker {
  margin: 0 0 16px;
}

.library-contact-final-copy h2 {
  max-width: 660px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.library-contact-final-button {
  display: inline-flex;
  gap: 10px;
  margin-top: 34px;
  white-space: nowrap;
  border-color: rgba(255, 253, 249, 0.74);
  background: rgba(255, 253, 249, 0.94);
  color: var(--library-accent-deep);
  box-shadow: 0 16px 34px rgba(73, 53, 64, 0.16);
}

.library-contact-final-button:hover,
.library-contact-final-button:focus-visible {
  border-color: rgba(197, 148, 104, 0.86);
  background: var(--chroniques-accent, #c59468);
  color: #382e36;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(73, 53, 64, 0.2);
}

.site-final-cta {
  width: min(735px, calc(100% - 40px));
  margin-right: max(20px, calc((100% - 1180px) / 2));
  margin-left: auto;
}

.site-final-cta-card {
  --site-final-trace-color: rgba(184, 135, 88, 0.72);
  --site-final-trace-length: clamp(120px, 28%, 220px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(104, 75, 92, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(244, 238, 229, 0.68)),
    radial-gradient(circle at 90% 14%, rgba(159, 117, 95, 0.09), transparent 28%);
  box-shadow: 0 24px 60px rgba(39, 38, 36, 0.065);
}

.site-final-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--site-final-trace-length);
  height: 2px;
  background: var(--site-final-trace-color);
  opacity: 0.92;
  transform: none;
}

.site-final-cta-card.has-motion::before {
  animation: none;
}

.site-final-cta-card.has-motion.is-visible::before {
  animation: site-final-trace-around 5200ms ease-in-out 180ms 1 both;
}

.site-final-cta-card > * {
  position: relative;
  z-index: 1;
}

body.library-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(197, 148, 104, 0.78);
}

body.memory-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(169, 119, 95, 0.68);
}

body.story-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(190, 138, 88, 0.74);
}

body.conversation-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(159, 117, 95, 0.7);
}

body.about-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(159, 117, 95, 0.68);
}

@keyframes site-final-trace-around {
  0%,
  100% {
    top: 0;
    left: 0;
    width: var(--site-final-trace-length);
    height: 2px;
  }

  24% {
    top: 0;
    left: calc(100% - var(--site-final-trace-length));
    width: var(--site-final-trace-length);
    height: 2px;
  }

  25% {
    top: 0;
    left: calc(100% - 2px);
    width: 2px;
    height: var(--site-final-trace-length);
  }

  49% {
    top: calc(100% - var(--site-final-trace-length));
    left: calc(100% - 2px);
    width: 2px;
    height: var(--site-final-trace-length);
  }

  50% {
    top: calc(100% - 2px);
    left: calc(100% - var(--site-final-trace-length));
    width: var(--site-final-trace-length);
    height: 2px;
  }

  74% {
    top: calc(100% - 2px);
    left: 0;
    width: var(--site-final-trace-length);
    height: 2px;
  }

  75% {
    top: calc(100% - var(--site-final-trace-length));
    left: 0;
    width: 2px;
    height: var(--site-final-trace-length);
  }

  99% {
    top: 0;
    left: 0;
    width: 2px;
    height: var(--site-final-trace-length);
  }
}

@media (max-width: 1100px) {
  .library-travel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (hover: hover) and (pointer: fine) {
  .library-book-visual:hover,
  .library-project-visual:hover,
  .library-other-card:hover,
  .library-journalism-map a:hover,
  .library-journalism-map a:focus-visible,
  .library-journalism-feature:hover,
  .library-journalism-card-small:hover,
  .library-travel-card:hover,
  .library-curiosities-grid article:hover,
  .library-final article:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 135, 88, 0.58);
    box-shadow: 0 28px 68px rgba(73, 53, 64, 0.16);
  }

  .library-curiosities-grid article:hover {
    transform: translateY(-3px);
  }

  .library-journalism-map a:hover,
  .library-journalism-map a:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(197, 148, 104, 0.48);
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.72)),
      rgba(232, 221, 226, 0.28);
    box-shadow: 0 22px 54px rgba(73, 53, 64, 0.11);
  }

  .library-journalism-map a:hover::after,
  .library-journalism-map a:focus-visible::after {
    opacity: 1;
    transform: translateX(0);
  }
}

body.library-motion .library-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--library-reveal-delay, 0ms);
}

body.library-motion .library-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.library-motion .library-contact-final-card {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease-out,
    transform 500ms ease-out;
}

body.library-motion .library-contact-final-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .library-hero,
  .library-feature-book,
  .library-project,
  .library-project-reverse,
  .library-workshop-inner,
  .library-journalism-intro,
  .library-journalism-layout,
  .library-journalism-secondary,
  .library-literary-feature,
  .library-curiosities-grid,
  .library-photo-grid,
  .library-final-inner {
    grid-template-columns: 1fr;
  }

  .library-hero-stack {
    min-height: 430px;
  }

  .library-project-reverse .library-project-visual {
    order: 0;
  }

  .library-thread-rail {
    grid-template-columns: 1fr;
  }

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

  .library-thread-rail span {
    min-height: 0;
  }

  .library-thread-rail article + article {
    border-left: 0;
    border-top: 1px solid rgba(104, 75, 92, 0.16);
  }

  .library-journalism-family.is-reverse .library-journalism-feature {
    order: 0;
  }

  .library-journalism-family-head.has-identity {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .library-journalism-identity {
    width: min(100%, 320px);
  }

  .library-journalism-feature-stack .library-journalism-feature,
  .library-journalism-layout.is-single .library-journalism-feature {
    grid-template-columns: 1fr;
  }

  .library-travel-grid {
    grid-template-columns: 1fr;
  }

  .library-journalism-feature-stack .library-journalism-feature-visual,
  .library-journalism-layout.is-single .library-journalism-feature-visual {
    order: 1;
    aspect-ratio: 16 / 10;
  }

  .library-journalism-feature-stack .library-journalism-feature-visual img,
  .library-journalism-layout.is-single .library-journalism-feature-visual img {
    aspect-ratio: 16 / 10;
    height: 100%;
    max-height: none;
    min-height: 0;
  }

  .library-journalism-feature-stack .library-journalism-copy,
  .library-journalism-layout.is-single .library-journalism-copy {
    order: 2;
  }

  .library-literary-cover {
    width: min(100%, 340px);
    justify-self: center;
  }

  .library-literary-copy {
    text-align: left;
  }

  .library-literary-audio audio {
    max-width: 100%;
  }

}

@media (max-width: 620px) {
  .library-hero,
  .library-section-inner,
  .library-radio-inner,
  .library-final-inner {
    width: min(100% - 28px, 1180px);
  }

  .library-page {
    overflow-x: clip;
  }

  .library-hero-copy {
    position: relative;
    z-index: 2;
  }

  .library-hero-links a {
    position: relative;
    z-index: 3;
    max-width: 100%;
    justify-content: center;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .library-hero h1 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .library-hero-stack {
    min-height: 360px;
  }

  .library-stack-main {
    right: 22px;
    width: 74%;
  }

  .library-book-visual,
  .library-project-visual {
    min-height: 280px;
  }

  .library-workshop-book {
    grid-template-columns: 1fr;
  }

  .library-workshop-book .library-workshop-status,
  .library-workshop-cover,
  .library-workshop-copy {
    grid-column: 1;
  }

  .library-workshop-book .library-workshop-status {
    order: 1;
  }

  .library-workshop-cover {
    order: 2;
    grid-row: auto;
  }

  .library-workshop-copy {
    order: 3;
  }

  .library-workshop-cover img {
    width: min(78vw, 300px);
    max-height: none;
  }

  .library-workshop-typographic {
    width: min(78vw, 300px);
  }

  .library-other-grid {
    grid-template-columns: 1fr;
  }

  .library-other-cover {
    min-height: 245px;
  }

  .library-journalism-map a {
    grid-template-columns: 1fr;
  }

  .library-journalism-cta {
    align-items: flex-start;
    width: 100%;
    max-width: none;
  }

  .library-journalism-cta .button-link {
    width: 100%;
    justify-content: center;
  }

  .library-contact-final-card {
    padding: 30px 24px;
  }

  .library-contact-final-button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .library-journalism-sequences,
  .library-journalism-family,
  .library-journalism-layout,
  .library-journalism-feature-stack,
  .library-journalism-secondary,
  .library-travel-grid,
  .library-literary-feature {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  .library-journalism-feature,
  .library-journalism-card-small,
  .library-travel-card,
  .library-literary-feature {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .library-journalism-copy,
  .library-travel-card-copy,
  .library-literary-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .library-journalism-family h3,
  .library-journalism-family-intro,
  .library-journalism-copy h4,
  .library-journalism-copy p,
  .library-journalism-card-small h4,
  .library-journalism-card-small p,
  .library-journalism-meta,
  .library-travel-card h4,
  .library-travel-card p,
  .library-travel-meta,
  .library-literary-copy h4,
  .library-literary-description,
  .library-literary-author,
  .library-literary-publisher,
  .library-journalism-link {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .library-journalism-feature-stack .library-journalism-feature-visual,
  .library-journalism-layout.is-single .library-journalism-feature-visual,
  .library-journalism-thumb,
  .library-travel-thumb,
  .library-literary-cover {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .library-journalism-feature-stack .library-journalism-feature-visual,
  .library-journalism-layout.is-single .library-journalism-feature-visual {
    padding: 0;
    aspect-ratio: 16 / 10;
    max-height: 240px;
    background: rgba(232, 221, 226, 0.32);
  }

  .library-journalism-feature-stack .library-journalism-feature-visual img,
  .library-journalism-layout.is-single .library-journalism-feature-visual img,
  .library-journalism-thumb img,
  .library-travel-thumb img {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .library-travel-thumb {
    margin: 16px 16px 0;
    aspect-ratio: 16 / 10;
    max-height: 230px;
  }

  .library-travel-thumb.is-contain .library-image-watermark {
    display: none;
  }

  .library-travel-thumb.is-contain img {
    object-fit: cover;
  }

  .library-literary-cover {
    width: 100%;
    height: clamp(190px, 62vw, 270px);
    justify-self: stretch;
  }

  .library-literary-cover img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  .library-literary-audio,
  .library-literary-audio audio {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.library-motion .library-reveal,
  body.library-motion .library-contact-final-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .library-journalism-identity,
  .library-journalism-feature-visual,
  .library-journalism-thumb,
  .library-travel-thumb,
  .library-literary-cover {
    max-width: 100%;
    overflow: hidden;
  }

  .library-journalism-identity img,
  .library-journalism-feature img,
  .library-journalism-thumb img,
  .library-travel-thumb img,
  .library-literary-cover img {
    display: block;
    max-width: 100%;
  }

  .site-final-cta {
    width: min(100% - 28px, 735px);
    margin-inline: auto;
  }

  .site-final-cta-card {
    padding: 24px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-back-to-top {
    transition: none;
  }

  .site-final-cta-card.has-motion::before {
    animation: none;
  }

  body.library-motion .library-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .library-stack-card,
  .library-book-visual,
  .library-project-visual,
  .library-other-card,
  .library-journalism-map a,
  .library-journalism-feature,
  .library-journalism-card-small,
  .library-travel-card,
  .library-journalism-family-cta .library-journalism-link,
  .library-curiosities-grid article,
  .library-final article {
    transform: none !important;
    transition: none;
  }

  .library-contact-final-card::before {
    transform: scaleX(1);
    transition: none;
  }

  .library-journalism-family-cta .library-journalism-link::after {
    transform: none !important;
    transition: none;
  }
}

.site-final-cta-card {
  --site-final-trace-color: rgba(184, 135, 88, 0.78);
  --site-final-trace-length: clamp(120px, 28%, 220px);
  position: relative !important;
  overflow: hidden !important;
}

.site-final-cta-card::before {
  content: none !important;
}

.site-final-cta-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: var(--site-final-trace-length);
  height: 2px;
  pointer-events: none;
  background: var(--site-final-trace-color);
  opacity: 0.92;
}

.site-final-cta-card.has-motion::after {
  animation: none;
}

.site-final-cta-card.has-motion.is-visible::after {
  animation: site-final-trace-around 5200ms ease-in-out 180ms 1 both;
}

body.library-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(197, 148, 104, 0.84);
}

body.memory-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(169, 119, 95, 0.76);
}

body.story-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(190, 138, 88, 0.82);
}

body.conversation-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(221, 181, 132, 0.9);
}

body.about-typo-system .site-final-cta-card {
  --site-final-trace-color: rgba(159, 117, 95, 0.78);
}

.training-final.site-final-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(54px, 6.6vw, 88px) max(20px, calc((100% - 1180px) / 2)) clamp(66px, 7.4vw, 104px);
}

.training-final .training-final-inner.site-final-cta-card {
  width: min(900px, 100%);
  margin-left: auto;
}

@media (prefers-reduced-motion: reduce) {
  .site-final-cta-card.has-motion::after,
  .site-final-cta-card.has-motion.is-visible::after {
    animation: none;
  }
}

@media (max-width: 900px) {
  .story-network-inner {
    grid-template-columns: 1fr;
  }

  .story-network-button {
    justify-self: start;
  }

  .training-two-columns,
  .training-sessions-grid {
    grid-template-columns: 1fr;
  }

  .training-panel .button-link,
  .training-final .button-link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

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

  .training-final.site-final-cta {
    width: 100%;
    margin: 0;
    padding: 52px 20px 72px;
  }

  .training-final .training-final-inner.site-final-cta-card {
    margin-left: 0;
  }

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

@media (max-width: 640px) {
  .story-network-inner,
  .training-panel,
  .training-criteria,
  .training-transparency,
  .training-final-inner,
  .practitioners-check,
  .practitioners-empty,
  .practitioners-reference,
  .practitioner-card {
    padding: 24px;
  }

  .training-hero,
  .training-section-inner,
  .practitioners-hero,
  .practitioners-directory,
  .practitioners-reference {
    width: min(100% - 28px, 1080px);
  }

  .training-final.site-final-cta {
    width: 100%;
    padding: 50px 14px 68px;
  }

  .training-dimensions {
    grid-template-columns: 1fr;
  }

  .training-criteria li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 0;
  }

  .training-criteria-number {
    font-size: 17px;
  }

  .training-section {
    padding: 48px 0;
  }

  .practitioner-card {
    grid-template-columns: 1fr;
  }

  .practitioner-photo {
    width: 96px;
  }
}

/* ESSAI VÉROOM 2026-08-01 — repositionnement transversal à comparer avant validation. */
.story-veroom-test {
  padding-block: clamp(76px, 9vw, 118px);
  scroll-margin-top: 120px;
}

.story-veroom-test .veroom-frame {
  width: min(1100px, 100%);
}

.veroom-name {
  font-style: italic;
}

.button-link .veroom-name {
  font-style: italic;
}

.conversation-veroom-cta .veroom-name {
  font-style: italic !important;
  margin-left: 0.18em;
}

/* Essai visuel 2026-08-02 : VéRoom en doré dans le texte du bloc Conversations. */
.conversation-veroom-copy .conversation-copy .veroom-name,
.conversation-veroom-note .veroom-name {
  color: rgba(217, 170, 63, 0.92);
}

.veroom-test-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
  margin-top: clamp(18px, 3vw, 28px);
}

.veroom-copy {
  min-width: 0;
}

.story-veroom-test .veroom-subtitle {
  margin-top: 0;
}

.story-veroom-test .veroom-name {
  color: inherit;
}

.story-veroom-test h2 {
  margin-top: 12px;
  color: rgba(255, 253, 249, 0.78) !important;
}

.story-veroom-test .veroom-subtitle .veroom-name {
  color: var(--paper);
}

.story-veroom-test .veroom-signature .veroom-name {
  color: rgba(217, 170, 63, 0.92);
}

.story-veroom-test .veroom-content {
  max-width: 650px;
  margin-top: clamp(34px, 5vw, 54px);
  gap: 18px;
}

.story-veroom-test .veroom-content p {
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.66;
}

.story-veroom-test .veroom-highlight {
  font-family: var(--font-identity);
  color: rgba(217, 170, 63, 0.86);
  font-size: clamp(21px, 1.95vw, 28px) !important;
  line-height: 1.28 !important;
  letter-spacing: 0;
}

.story-veroom-test .veroom-confidentiality {
  margin-top: 6px;
  color: rgba(217, 170, 63, 0.92);
}

.veroom-signature {
  padding: clamp(30px, 4.5vw, 52px);
  border: 1px solid rgba(217, 170, 63, 0.36);
  background:
    radial-gradient(circle at 78% 20%, rgba(217, 170, 63, 0.11), transparent 34%),
    rgba(251, 247, 239, 0.075);
  color: rgba(255, 253, 249, 0.84);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.veroom-signature p {
  margin: 0;
  color: rgba(255, 253, 249, 0.82);
  font-family: var(--font-identity);
  font-size: clamp(24px, 2.35vw, 34px);
  font-weight: 300;
  line-height: 1.24;
}

.veroom-signature p + p {
  margin-top: clamp(28px, 3.8vw, 42px);
  padding-top: clamp(24px, 3.4vw, 36px);
  border-top: 1px solid rgba(217, 170, 63, 0.42);
}

.veroom-signature span {
  display: block;
  color: var(--paper);
  font-family: var(--font-signature);
  font-size: 1.45em;
  font-style: italic;
  line-height: 1;
}

.conversation-veroom-test {
  padding-block: clamp(62px, 7vw, 92px);
}

.conversation-veroom-test .conversation-veroom-frame {
  display: block;
  max-width: 840px;
}

.conversation-veroom-test h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.9vw, 52px);
}

.conversation-veroom-test .conversation-copy {
  max-width: 650px;
}

.conversation-veroom-test .conversation-veroom-note {
  margin-top: 24px;
}

.conversation-veroom-test .conversation-veroom-signature {
  padding: clamp(24px, 3.4vw, 38px);
}

.conversation-veroom-test .conversation-veroom-signature p {
  font-size: clamp(24px, 2.15vw, 32px);
}

body.architext-typo-system {
  --architext-ink: #245344;
  --architext-deep: #173f32;
  --architext-plum: #493540;
  --architext-accent: #b88758;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-reading);
}

body.architext-typo-system h1,
body.architext-typo-system h2,
body.architext-typo-system h3,
body.architext-typo-system .section-kicker,
body.architext-typo-system .button-link {
  font-family: var(--font-identity);
}

.architext-main {
  overflow: hidden;
}

.architext-hero,
.architext-section-inner,
.architext-final-card {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.architext-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  padding: clamp(76px, 9vw, 126px) 0 clamp(82px, 9vw, 128px);
  background: var(--paper);
}

.architext-hero-copy {
  max-width: 710px;
}

.architext-hero .section-kicker,
.architext-section .section-kicker,
.architext-step-label {
  color: var(--architext-accent);
}

.architext-hero h1,
.architext-section h2,
.architext-final h2 {
  margin: 0;
  color: var(--architext-ink);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
}

.architext-hero h1 {
  margin-top: 18px;
  font-size: clamp(58px, 8vw, 108px);
}

.architext-hero-line {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--architext-plum);
  font-family: var(--font-identity);
  font-size: clamp(31px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.05;
}

.architext-hero-text {
  max-width: 670px;
  margin-top: 28px;
}

.architext-hero-text p,
.architext-copy p,
.architext-card p,
.architext-service-card p,
.architext-process-grid p,
.architext-final p,
.architext-closing-line {
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.58;
}

.architext-hero-text p + p,
.architext-copy p + p,
.architext-service-card p + p,
.architext-process-grid p + p {
  margin-top: 16px;
}

.architext-hero .button-link {
  margin-top: 30px;
}

.architext-hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(104, 75, 92, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 28px 76px rgba(39, 38, 36, 0.1);
}

.architext-hero-visual::after {
  content: "";
  position: absolute;
  inset: clamp(18px, 2.6vw, 32px);
  border: 1px solid rgba(255, 253, 249, 0.72);
  pointer-events: none;
}

.architext-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(0.96) brightness(1.04);
}

.architext-section {
  padding: clamp(72px, 8vw, 112px) 0;
  border-top: 1px solid rgba(32, 91, 72, 0.09);
}

.architext-matter,
.architext-families {
  background: rgba(232, 221, 226, 0.38);
}

.architext-sense,
.architext-process,
.architext-final {
  background: rgba(255, 253, 248, 0.66);
}

.architext-section-heading {
  max-width: 790px;
  margin-bottom: clamp(32px, 4.6vw, 56px);
}

.architext-section h2 {
  margin-top: 12px;
  font-size: clamp(38px, 4.5vw, 66px);
}

.architext-process .architext-section-heading {
  max-width: 980px;
}

@media (min-width: 981px) {
  #architext-process-title {
    white-space: nowrap;
  }
}

.architext-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.architext-copy {
  max-width: 720px;
}

.architext-card-grid {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}

.architext-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.architext-card,
.architext-service-card,
.architext-process-grid article {
  border: 1px solid rgba(104, 75, 92, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 46px rgba(39, 38, 36, 0.052);
}

.architext-card {
  display: flex;
  min-height: 190px;
  align-items: flex-end;
  padding: clamp(24px, 3.2vw, 36px);
}

.architext-card p {
  margin: 0;
  color: var(--architext-ink);
  font-family: var(--font-identity);
  font-size: clamp(23px, 2.15vw, 32px);
  font-weight: 300;
  line-height: 1.15;
}

.architext-closing-line {
  max-width: 780px;
  margin: clamp(30px, 4vw, 46px) 0 0;
  color: var(--architext-plum);
  font-family: var(--font-identity);
  font-size: clamp(20px, 1.75vw, 26px);
  line-height: 1.36;
}

.architext-closing-note {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(73, 53, 64, 0.74);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.5;
}

.architext-service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(26px, 3.6vw, 42px);
}

.architext-service-card h3,
.architext-process-grid h3 {
  margin: 0;
  color: var(--architext-ink);
  font-family: var(--font-identity);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 1.08;
}

.architext-service-card p {
  margin: 20px 0 0;
}

.architext-examples {
  margin-top: auto !important;
  padding-top: 28px;
  color: var(--forest) !important;
  font-family: var(--font-identity);
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45 !important;
  text-transform: uppercase;
}

.architext-deliverables {
  margin-top: clamp(26px, 3.6vw, 42px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(184, 135, 88, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.58);
  box-shadow: 0 16px 40px rgba(39, 38, 36, 0.04);
}

.architext-deliverables .section-kicker {
  margin: 0 0 12px;
}

.architext-deliverables p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.5;
}

.architext-deliverables-list {
  max-width: none !important;
  margin-top: 18px !important;
  color: var(--architext-ink) !important;
  font-family: var(--font-identity);
  font-size: clamp(14px, 1.25vw, 18px) !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.65 !important;
  text-transform: uppercase;
}

.architext-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.architext-process-grid article {
  position: relative;
  padding: clamp(26px, 3.4vw, 40px);
}

.architext-process-grid article > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--architext-ink);
  color: var(--paper);
  font-family: var(--font-identity);
  font-size: 15px;
  font-weight: 600;
}

.architext-step-label {
  margin: 0 0 10px !important;
  font-family: var(--font-identity);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35 !important;
}

.architext-process-grid h3 {
  margin-bottom: 16px;
}

.architext-voice {
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 135, 88, 0.14), transparent 34%),
    linear-gradient(135deg, var(--forest) 0%, var(--pine) 100%);
}

.architext-voice-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.architext-voice .section-kicker {
  color: rgba(217, 170, 63, 0.92);
}

.architext-voice h2,
body.architext-typo-system .architext-voice h2 {
  color: var(--paper) !important;
}

.architext-voice .architext-copy p {
  color: rgba(255, 253, 249, 0.84);
}

.architext-final {
  padding: clamp(70px, 8vw, 112px) 0 clamp(86px, 9vw, 126px);
}

.architext-final-card {
  max-width: 860px;
  padding: clamp(34px, 4.4vw, 54px);
  border: 1px solid rgba(104, 75, 92, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(244, 238, 229, 0.68)),
    radial-gradient(circle at 90% 14%, rgba(184, 135, 88, 0.1), transparent 28%);
  box-shadow: 0 24px 60px rgba(39, 38, 36, 0.065);
}

.architext-final h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.7vw, 54px);
}

.architext-final p {
  max-width: 760px;
  margin: 22px 0 0;
}

.architext-final .button-link {
  display: inline-flex;
  margin-top: 30px;
}

@media (max-width: 980px) {
  .architext-hero,
  .architext-split,
  .architext-voice-inner {
    grid-template-columns: 1fr;
  }

  .architext-hero-visual img {
    min-height: 360px;
  }

  .architext-card-grid-three,
  .architext-card-grid-four,
  .architext-process-grid {
    grid-template-columns: 1fr;
  }

  .architext-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .architext-hero,
  .architext-section-inner,
  .architext-final-card {
    width: min(100% - 28px, 1180px);
  }

  .architext-hero {
    padding: 58px 0 66px;
  }

  .architext-section {
    padding: 56px 0;
  }

  .architext-hero h1 {
    font-size: clamp(52px, 14vw, 72px);
  }

  .architext-hero-line {
    font-size: clamp(30px, 9vw, 42px);
  }

  .architext-hero-visual img {
    min-height: 280px;
  }

  .architext-card,
  .architext-service-card,
  .architext-process-grid article,
  .architext-final-card {
    padding: 24px;
  }

}

@media (max-width: 1180px) {
  .veroom-test-layout,
  .conversation-veroom-test .conversation-veroom-frame {
    grid-template-columns: 1fr;
  }

  .veroom-signature,
  .conversation-veroom-test .conversation-veroom-signature {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .story-veroom-test {
    padding-block: 66px;
  }

  .veroom-test-layout {
    gap: 28px;
  }

  .veroom-signature {
    padding: 24px;
  }
}
