@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,700;1,700&display=swap");

:root {
  --bg: #f2eee8;
  --paper: #f8f5f0;
  --ink: #111111;
  --muted: #5d5750;
  --line: #d8d0c6;
  --accent: #9d5a35;
  --accent-ink: #ffffff;
  --max: 1120px;
  --radius: 14px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --off-bg: #0a0a0d;
  --off-bg-soft: #12131a;
  --off-ink: #f3f3f2;
  --off-copy: #d3d4d7;
  --off-line: rgba(255, 255, 255, 0.35);
  --trs-texture-image: image-set(
    url("./assets/dark-texture-1920.webp") 1x,
    url("./assets/dark-texture-2560.webp") 2x
  );
}

@media (max-width: 900px) {
  :root {
    --trs-texture-image: url("./assets/dark-texture-1280.webp");
  }
}

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

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, #e9dfd1 0, transparent 45%),
    linear-gradient(180deg, #f7f3ee 0%, var(--bg) 100%);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(247, 243, 238, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}

.brand {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: none;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.menu .nav-cta {
  padding: 0.5rem 0.9rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
}

.hero {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 4rem);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 var(--space-3);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 18ch;
}

p {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  max-width: 70ch;
}

.actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.grid {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-3);
}

.card {
  grid-column: span 12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: var(--space-4);
}

.card h3 {
  font-size: 1.2rem;
}

.card .label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
}

.split {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.7);
}

.callout {
  margin-top: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  color: #fff;
  padding: var(--space-5);
}

.callout p {
  color: #e0ded9;
}

form {
  display: grid;
  gap: var(--space-3);
}

label {
  display: grid;
  gap: var(--space-1);
  font-size: 0.9rem;
}

input,
textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #c8c1b8;
  font-family: inherit;
}

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

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-5) var(--space-4);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Squarespace port notes are attached to major sections using data-port attributes. */
[data-port] {
  position: relative;
}

[data-port]::after {
  content: "Port: " attr(data-port);
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #80766a;
}

@media (min-width: 760px) {
  .card.span-6 {
    grid-column: span 6;
  }

  .card.span-4 {
    grid-column: span 4;
  }

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

/* Offerings page styles are scoped by body class so other scaffold pages remain intact. */
.offerings-page {
  --texture-opacity: 0.250;
  color: var(--off-ink);
  background-color: #000;
  position: relative;
  overflow-x: hidden;
}

.offerings-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000;
}

.offerings-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0) 46%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.007) 0 1px,
      rgba(255, 255, 255, 0) 1px 34px
    );
  opacity: 0.56;
}

.offerings-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--trs-texture-image);
  background-size: cover;
  background-position: center top;
  mix-blend-mode: luminosity;
  opacity: 0;
  filter: brightness(0.55) saturate(0.7);
  will-change: opacity;
  transition: opacity 280ms ease;
}

.trs-texture-ready .offerings-bg::after {
  opacity: var(--texture-opacity);
}

.offerings-page .site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: none;
  background: transparent;
  border-bottom: none;
  z-index: 5;
}

.offerings-nav {
  max-width: 1905px;
  justify-content: space-between;
  height: 141px;
  padding: 48px 88px 32px;
}

.offerings-logo {
  width: 132px;
  height: 97px;
  display: inline-block;
  mix-blend-mode: exclusion;
}

.offerings-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offerings-menu-shell {
  width: 866.5px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.offerings-tag {
  width: 68px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 8px;
  color: #fff;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 27.65px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

.offerings-menu-btn {
  width: 68px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.offerings-menu-btn img {
  width: 30px;
  height: 20px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.75));
}

.offerings-page [data-port]::after {
  display: none !important;
}

.offerings-main {
  max-width: 1905px;
  display: flex;
  flex-direction: column;
  gap: 107px;
  padding-top: 15px;
  padding-bottom: 80px;
  padding-left: 0;
  padding-right: 0;
}

.offering-block {
  display: grid;
  grid-template-columns: 695px 695px;
  width: 1390px;
  margin: 0 auto;
  gap: 0;
  align-items: start;
}

.offering-title {
  margin: 0;
  font-size: 33.18px;
  font-weight: 700;
  line-height: normal;
  font-family: "Cormorant", "Times New Roman", serif;
  letter-spacing: 0.005em;
  color: var(--off-ink);
  min-height: 274px;
}

.member-space-experiment .offering-title {
  position: sticky;
  top: 64px;
  align-self: start;
}

.member-space-experiment .nav2-bar {
  padding-right: 40px;
}

.member-space-experiment .nav2-right {
  gap: 6px;
}

.member-space-experiment .nav2-current {
  font-size: var(--type-h6);
}

@media (max-width: 1720px) and (min-width: 901px) {
  .member-space-experiment .nav2-bar {
    padding: 36px 52px 24px;
  }

  .member-space-experiment .nav2-logo {
    width: 108px;
    height: 79px;
  }

  .member-space-experiment .nav2-current {
    font-size: var(--type-h6);
  }

  .member-space-experiment .nav2-menu {
    width: 58px;
    height: 40px;
  }

  .member-space-experiment .offerings-main {
    gap: 88px;
    padding: 48px 48px 80px;
  }

  .member-space-experiment .offering-block {
    width: 100%;
    max-width: 1240px;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  }

  .member-space-experiment .offering-title {
    top: 72px;
    min-height: 230px;
    font-size: 30px;
    white-space: nowrap;
    transform: translateX(clamp(88px, 7.5vw, 150px));
  }

  .member-space-experiment .offering-copy {
    padding-top: 260px;
    padding-left: 36px;
    min-height: 980px;
    max-width: none;
    font-size: 24px;
  }

  .member-space-experiment .offering-visual {
    width: min(64vw, 700px);
    height: auto;
    aspect-ratio: 814.995 / 757.079;
  }

  .member-space-experiment .offering-visual-small {
    width: min(52vw, 540px);
    height: auto;
    aspect-ratio: 644.178 / 628.754;
  }
}

.offering-copy {
  border-left: 0.5px solid var(--off-line);
  padding-left: 48px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 27.65px;
  line-height: normal;
  color: #fff;
  max-width: 695px;
  padding-top: 333px;
  min-height: 1067px;
}

.offering-copy p {
  color: inherit;
  line-height: normal;
  max-width: 100%;
  margin-bottom: 1.25rem;
}

.offering-copy ul {
  margin: 0 0 1.25rem 1.2rem;
  padding: 0;
}

.offering-copy li {
  margin-bottom: 0.5rem;
}

.offering-visual {
  margin: 0 auto;
  width: 814.995px;
  height: 757.079px;
  position: relative;
  opacity: 0.94;
  animation: none;
}

.offering-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offering-visual-small {
  width: 644.178px;
  height: 628.754px;
  mix-blend-mode: screen;
}

.offerings-page .site-footer {
  max-width: 1905px;
  height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 48px 88px 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.95);
}

.offerings-footer {
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 33.18px;
  line-height: 44.8px;
  letter-spacing: 0.01em;
}

.offerings-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 12.177%,
    rgba(255, 255, 255, 0.2) 100%
  );
  mix-blend-mode: exclusion;
  pointer-events: none;
}

.offerings-page .site-footer .footer-legal {
  color: rgba(255, 255, 255, 0.9);
}


.offering-block-member .offering-copy {
  min-height: 1067px;
}

.offering-block-method .offering-copy {
  min-height: 1067px;
}

.offering-block-studio .offering-copy {
  min-height: 1177px;
  padding-top: 64px;
}

.member-space-entry-ctas {
  width: min(1390px, 100%);
  display: flex;
  justify-content: center;
  margin: -18px auto 0;
}

.member-space-entry-ctas .trs-links {
  margin-top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 695px 695px;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}

.member-space-entry-ctas .trs-link {
  width: auto;
  text-align: center;
}

.member-space-entry-ctas .trs-link:first-child {
  justify-self: end;
}

.member-space-entry-ctas .trs-link:last-child {
  justify-self: start;
}

.member-home-page {
  --texture-opacity: 0.25;
}

.member-home-main {
  width: 1905px;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 196px 132px;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.member-home-intro {
  width: 1390px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 24px;
  padding-left: 42px;
}

.member-home-title {
  margin: 0 0 14px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
}

.member-home-bulletin {
  margin: 0;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(243, 243, 247, 0.92);
}

.member-home-bulletin span {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 10px;
  font-size: 13px;
  color: rgba(243, 243, 247, 0.7);
}

.member-home-columns {
  width: 1390px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.member-home-column {
  min-height: 446px;
  padding: 0 42px;
  display: flex;
  flex-direction: column;
}

.member-home-column + .member-home-column {
  border-left: 0.5px solid var(--off-line);
}

.member-home-column h2 {
  margin: 0 0 14px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 33.18px;
  font-weight: 700;
  line-height: 1.02;
  color: #fff;
}

.member-home-column > p,
.member-home-column > ul > li,
.member-home-column > ul > li > a {
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 27.65px;
  font-weight: 400;
  line-height: 1.12;
  color: rgba(243, 243, 247, 0.95);
}

.member-home-column > p {
  margin: 0 0 18px;
  max-width: none;
}

.member-home-column > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.member-home-column > ul > li {
  margin: 0;
}

.member-home-column > ul > li > a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease, color 140ms ease;
}

.member-home-column > ul > li > a:hover,
.member-home-column > ul > li > a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.82);
  outline: none;
}

.member-home-column .trs-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-chip {
  width: 100%;
}

.content-chip-link {
  display: grid;
  grid-template-columns: minmax(140px, 45%) minmax(0, 1fr);
  align-items: stretch;
  min-height: 188px;
  border: 0.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 11, 18, 0.46);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  overflow: hidden;
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.content-chip-link:hover,
.content-chip-link:focus-visible {
  background: rgba(17, 21, 32, 0.7);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.content-chip-media {
  min-height: 100%;
  border-right: 0.5px solid rgba(255, 255, 255, 0.2);
  background-size: cover;
  background-position: center;
}

.content-chip-media--recipe {
  background-image:
    linear-gradient(148deg, rgba(88, 63, 35, 0.72), rgba(23, 20, 26, 0.92)),
    radial-gradient(circle at 60% 32%, rgba(242, 190, 131, 0.55), transparent 62%);
}

.content-chip-media--read {
  background-image:
    linear-gradient(150deg, rgba(51, 68, 82, 0.78), rgba(14, 14, 20, 0.92)),
    radial-gradient(circle at 42% 35%, rgba(191, 212, 255, 0.46), transparent 60%);
}

.content-chip-media--cook {
  background-image:
    linear-gradient(150deg, rgba(69, 68, 40, 0.76), rgba(13, 13, 20, 0.92)),
    radial-gradient(circle at 56% 40%, rgba(223, 201, 117, 0.44), transparent 62%);
}

.content-chip-media--listen {
  background-image:
    linear-gradient(152deg, rgba(60, 46, 89, 0.78), rgba(14, 14, 20, 0.92)),
    radial-gradient(circle at 48% 34%, rgba(203, 176, 255, 0.44), transparent 62%);
}

.content-chip-media--img-brothy {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.34)),
    url("./assets/recipe-brothy-sausage.webp");
}

.content-chip-media--img-miso {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.34)),
    url("./assets/recipe-golden-miso.webp");
}

.content-chip-media--img-journal {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.34)),
    url("./assets/journal-start-signals.webp");
}

.content-chip-media--img-journal-essay {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.34)),
    url("./assets/journal-patterns-essay.webp");
}

.content-chip-media--img-playlist-current {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.34)),
    url("./assets/playlist-steady-morning.webp");
}

.content-chip-media--img-playlist-archive {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.34)),
    url("./assets/playlist-night-archive.webp");
}

.content-chip-media--img-recipe-citrus {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.32), rgba(14, 15, 20, 0.36)),
    url("./assets/recipe-citrus-chickpea.webp");
  background-position: 50% 50%;
}

.content-chip-media--img-recipe-salmon {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.32), rgba(14, 15, 20, 0.36)),
    url("./assets/recipe-herbed-salmon-rice.webp");
  background-position: 50% 50%;
}

.content-chip-media--img-recipe-mineral {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.32), rgba(14, 15, 20, 0.36)),
    url("./assets/recipe-mineral-broth.webp");
  background-position: 50% 50%;
}

.content-chip-media--img-recipe-squash {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.32), rgba(14, 15, 20, 0.36)),
    url("./assets/recipe-roasted-squash-soup.webp");
  background-position: 50% 50%;
}

.content-chip-media--img-journal-evening {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.36)),
    url("./assets/journal-start-signals.webp");
  background-position: 40% 45%;
}

.content-chip-media--img-journal-rhythm {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.36)),
    url("./assets/journal-patterns-essay.webp");
  background-position: 58% 46%;
}

.content-chip-media--img-journal-progress {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.36)),
    url("./assets/journal-start-signals.webp");
  background-position: 78% 58%;
}

.content-chip-media--img-journal-nervous {
  background-image:
    linear-gradient(150deg, rgba(14, 15, 20, 0.34), rgba(14, 15, 20, 0.36)),
    url("./assets/journal-patterns-essay.webp");
  background-position: 22% 52%;
}

.content-chip-body {
  padding: 14px 14px 13px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.content-chip-kicker {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 245, 248, 0.7);
}

.content-chip-title {
  margin: 0;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
}

.content-chip-text {
  margin: 0;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.14;
  color: rgba(244, 245, 248, 0.92);
}

.member-home-rcl {
  width: 1390px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.member-home-columns .member-home-column > .content-chip {
  flex: 1 1 auto;
  display: flex;
  align-self: stretch;
}

.member-home-columns .member-home-column > .content-chip > .content-chip-link {
  height: 100%;
  min-height: 100%;
}

.member-home-rcl-column {
  padding: 0 18px;
}

.member-home-rcl-column + .member-home-rcl-column {
  border-left: 0.5px solid var(--off-line);
}

.member-home-rcl-column h2 {
  margin: 0 0 12px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 27.65px;
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
}

.member-home-rcl-column > .content-chip {
  display: flex;
}

.member-home-rcl-column > .content-chip > .content-chip-link {
  height: 230px;
  min-height: 230px;
}

.member-home-rcl-column .content-chip-title {
  min-height: 2.1em;
}

.member-home-rcl-column .content-chip-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1720px) and (min-width: 901px) {
  .nav2-overlay {
    top: 104px;
    padding: 0 48px;
  }

  .nav2-overlay .offerings-public-overlay-nav {
    width: min(380px, 100%);
  }

  .nav2-menu .menu-lines {
    --menu-cross-shift: 8px;
  }

  .member-space-entry-ctas {
    width: min(1240px, 100%);
  }

  .member-space-entry-ctas .trs-links {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  }

  .member-home-main {
    padding: 20px 48px 104px;
    gap: 44px;
  }

  .member-home-intro,
  .member-home-columns {
    width: 100%;
    max-width: 1240px;
  }

  .member-home-intro {
    padding-left: 30px;
  }

  .member-home-title {
    font-size: clamp(34px, 2.5vw, 42px);
  }

  .member-home-bulletin {
    font-size: clamp(18px, 1.28vw, 21px);
  }

  .member-home-bulletin span {
    font-size: 12px;
  }

  .member-home-column {
    min-height: 396px;
    padding: 0 30px;
  }

  .member-home-column h2 {
    font-size: clamp(26px, 1.85vw, 33px);
  }

  .member-home-column > p,
  .member-home-column > ul > li,
  .member-home-column > ul > li > a {
    font-size: clamp(21px, 1.55vw, 27px);
  }

  .content-chip-link {
    min-height: 164px;
    grid-template-columns: minmax(130px, 42%) minmax(0, 1fr);
  }

  .content-chip-title {
    font-size: clamp(22px, 1.6vw, 28px);
  }

  .content-chip-text {
    font-size: clamp(17px, 1.22vw, 20px);
  }

  .content-chip-kicker {
    font-size: 9px;
  }

  .member-home-rcl {
    width: 100%;
    max-width: 1240px;
  }

  .member-home-rcl-column {
    padding: 0 14px;
  }

  .member-home-rcl-column h2 {
    font-size: clamp(22px, 1.5vw, 27px);
  }

  .member-home-rcl-column > .content-chip > .content-chip-link {
    height: 206px;
    min-height: 206px;
  }
}

@media (max-width: 900px) {
  .offerings-nav {
    height: auto;
    padding: 20px 18px 16px;
  }

  .offerings-logo {
    width: 58px;
    height: 42px;
  }

  .offerings-menu-shell {
    width: auto;
    gap: 12px;
  }

  .offerings-tag {
    width: auto;
    font-size: 12px;
    padding: 0;
    height: auto;
  }

  .offerings-menu-btn {
    width: 24px;
    height: 20px;
    padding: 0;
  }

  .offerings-menu-btn img {
    width: 18px;
    height: 12px;
  }

  .offering-block {
    grid-template-columns: 1fr;
    width: auto;
    gap: 0.8rem;
    margin: 0;
  }

  .offering-copy {
    border-left: none;
    border-top: 0.5px solid var(--off-line);
    padding-left: 0;
    padding-top: 1.1rem;
    font-size: clamp(1.08rem, 4.2vw, 1.35rem);
    min-height: 0;
    font-size: 13px;
    line-height: normal;
  }

  .offering-title {
    min-height: 0;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .member-space-experiment .offering-title {
    position: static;
    top: auto;
  }

  .member-space-experiment .nav2-bar {
    padding-right: 12px;
  }

  .member-space-experiment .nav2-right {
    gap: 6px;
  }

  .member-space-experiment .nav2-current {
    font-size: var(--type-small);
  }

  .member-space-experiment .offerings-main {
    padding: 8px 18px 56px;
    gap: 48px;
  }

  .member-space-experiment .offering-block {
    gap: 14px;
  }

  .member-space-experiment .offering-title {
    font-size: clamp(20px, 6.2vw, 26px);
    white-space: normal;
    transform: none;
    min-height: 0;
    margin-bottom: 0;
  }

  .member-space-experiment .offering-copy {
    padding-top: 14px;
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.2;
  }

  .member-space-experiment .offering-block-member .offering-copy,
  .member-space-experiment .offering-block-method .offering-copy,
  .member-space-experiment .offering-block-studio .offering-copy {
    min-height: 0;
    padding-top: 14px;
  }

  .offering-visual {
    width: min(88vw, 340px);
    height: auto;
    position: static;
  }

  .member-space-experiment .offering-visual {
    width: min(82vw, 360px);
    max-width: 360px;
    aspect-ratio: 814.995 / 757.079;
  }

  .member-space-experiment .offering-visual-small {
    width: min(76vw, 300px);
    max-width: 300px;
    aspect-ratio: 644.178 / 628.754;
  }

  .offering-visual img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .member-space-experiment .offering-visual img,
  .member-space-experiment .offering-visual-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .member-space-entry-ctas {
    margin-top: 0;
  }

  .member-space-entry-ctas .trs-links {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(320px, 100%);
  }

  .member-home-main {
    padding: 10px 18px 74px;
    gap: 34px;
  }

  .member-home-intro {
    padding-bottom: 16px;
    padding-left: 0;
  }

  .member-home-title {
    font-size: clamp(26px, 8vw, 34px);
    margin-bottom: 8px;
    white-space: normal;
  }

  .member-home-bulletin {
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.25;
  }

  .member-home-bulletin span {
    margin-right: 8px;
    font-size: 0.78em;
  }

  .member-home-columns {
    grid-template-columns: 1fr;
  }

  .member-home-column {
    min-height: 0;
    padding: 16px 0 18px;
  }

  .member-home-column + .member-home-column {
    border-left: 0;
  }

  .member-home-column h2 {
    font-size: clamp(19px, 6vw, 26px);
    margin-bottom: 10px;
  }

  .member-home-column > p,
  .member-home-column > ul > li,
  .member-home-column > ul > li > a {
    font-size: clamp(15px, 4.7vw, 19px);
    line-height: 1.2;
  }

  .member-home-column ul {
    gap: 8px;
  }

  .member-home-column .trs-links {
    margin-top: 10px;
  }

  .content-chip-link {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .content-chip-media {
    min-height: 104px;
    border-right: 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }

  .content-chip-body {
    padding: 10px 10px 11px;
    gap: 4px;
  }

  .content-chip-kicker {
    font-size: 8px;
  }

  .content-chip-title {
    font-size: clamp(17px, 5.4vw, 21px);
  }

  .content-chip-text {
    font-size: clamp(13px, 4.1vw, 16px);
    line-height: 1.2;
  }

  .member-home-rcl {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .member-home-rcl-column {
    padding: 10px 0 14px;
    min-height: 0;
  }

  .member-home-rcl-column + .member-home-rcl-column {
    border-left: 0;
  }

  .member-home-rcl-column h2 {
    font-size: clamp(18px, 5.8vw, 24px);
    margin-bottom: 8px;
  }

  .member-home-rcl-column > .content-chip > .content-chip-link {
    height: auto;
    min-height: 0;
  }

  .member-home-rcl-column .content-chip-title {
    min-height: 0;
  }

  .member-home-rcl-column .content-chip-text {
    -webkit-line-clamp: initial;
    overflow: visible;
  }

  .offerings-main {
    gap: 3.4rem;
    padding-top: 20px;
    padding-bottom: 4.5rem;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .offerings-page .site-footer {
    height: 110px;
    padding: 24px 16px;
    justify-content: flex-end;
    gap: 6px;
  }

  .offerings-footer {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
  }

}

/* Shared dark scaffolding pages */
.trs-dark-page {
  --texture-opacity: 0.250;
  color: var(--off-ink);
  background: #000;
  min-height: 100vh;
}

.trs-dark-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000;
}

.trs-dark-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0) 46%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.007) 0 1px,
      rgba(255, 255, 255, 0) 1px 34px
    );
  opacity: 0.56;
}

.trs-dark-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--trs-texture-image);
  background-size: cover;
  background-position: center top;
  mix-blend-mode: luminosity;
  opacity: 0;
  filter: brightness(0.55) saturate(0.7);
  will-change: opacity;
  transition: opacity 280ms ease;
}

.trs-texture-ready .trs-dark-bg::after {
  opacity: var(--texture-opacity);
}

.trs-dark-page .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.trs-nav {
  max-width: 1905px;
  margin: 0 auto;
  height: 110px;
  padding: 26px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trs-logo {
  width: 92px;
  height: 68px;
  display: inline-block;
  mix-blend-mode: exclusion;
}

.trs-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trs-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trs-offerings-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  cursor: pointer;
}

.trs-offerings-toggle img {
  width: 24px;
  height: 16px;
  display: block;
}

.trs-offerings-drawer {
  position: fixed;
  top: 22px;
  right: 22px;
  width: min(560px, calc(100vw - 28px));
  max-height: calc(100vh - 44px);
  overflow: auto;
  z-index: 40;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(7, 11, 21, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
  padding: 18px;
}

.trs-offerings-drawer[hidden] {
  display: none;
}

.drawer-open .trs-offerings-toggle {
  background: rgba(255, 255, 255, 0.14);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.drawer-head h2 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 29px;
}

.drawer-close {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  padding: 6px 10px;
  cursor: pointer;
}

.drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drawer-col {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 10px;
}

.drawer-col h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.drawer-col a {
  display: block;
  color: rgba(244, 244, 246, 0.9);
  text-decoration: none;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.2;
  margin: 2px 0;
}

.drawer-col a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
}

.trs-main {
  max-width: 1390px;
  margin: 0 auto;
  padding: 44px 24px 90px;
}

.trs-hero {
  display: grid;
  grid-template-columns: 695px 695px;
}

.trs-hero-title {
  margin: 0;
  min-height: 220px;
  color: #fff;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 33.18px;
  line-height: normal;
  font-weight: 700;
}

.trs-hero-copy {
  border-left: 0.5px solid rgba(255, 255, 255, 0.35);
  padding-left: 48px;
  color: #fff;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 27.65px;
  line-height: normal;
}

.trs-hero-copy p,
.trs-hero-copy li {
  margin: 0 0 14px;
}

.trs-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trs-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 18px;
  background: rgba(7, 11, 21, 0.42);
  backdrop-filter: blur(4px);
}

.trs-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 28px;
}

.trs-card p,
.trs-card li {
  margin: 0 0 8px;
  color: rgba(241, 241, 244, 0.95);
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

.trs-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trs-link {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  text-decoration: none;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.trs-footer {
  max-width: 1905px;
  height: 160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  text-transform: uppercase;
  font-size: 28px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 16px;
  text-transform: none;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  border-bottom-color: currentColor;
  outline: none;
}

.footer-legal span[aria-hidden="true"] {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .trs-nav {
    height: auto;
    padding: 16px;
  }

  .trs-logo {
    width: 58px;
    height: 42px;
  }

  .trs-offerings-toggle {
    font-size: 14px;
    padding: 8px 10px;
    gap: 8px;
  }

  .trs-offerings-drawer {
    top: 10px;
    right: 10px;
    width: calc(100vw - 20px);
    padding: 12px;
  }

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

  .trs-main {
    padding: 18px 16px 60px;
  }

  .trs-hero {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trs-hero-title {
    min-height: 0;
    font-size: 24px;
  }

  .trs-hero-copy {
    border-left: 0;
    border-top: 0.5px solid rgba(255, 255, 255, 0.35);
    padding-left: 0;
    padding-top: 12px;
    font-size: 18px;
  }

  .trs-grid {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .trs-card h3 {
    font-size: 22px;
  }

  .trs-card p,
  .trs-card li {
    font-size: 18px;
  }

  .trs-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .trs-footer {
    height: 118px;
    font-size: 12px;
  }

  .footer-legal {
    font-size: 11px;
    gap: 8px;
  }
}

/* Offerings public style (Figma node 225:5) */
.offerings-public-page {
  margin: 0;
  background: #ffffff;
  color: #000;
}

.light-zone-page {
  margin: 0;
  background: #fff;
  color: #000;
}

.light-zone-page .trs-main {
  max-width: 1905px;
  margin: 0 auto;
  padding: 170px 88px 120px;
}

.light-zone-page .trs-hero {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(320px, 695px) minmax(320px, 695px);
  justify-content: space-between;
  gap: 48px 24px;
}

.light-zone-page .trs-hero-title {
  margin: 0;
  max-width: none;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
  color: #090909;
}

.light-zone-page .trs-hero-copy {
  border-left: 0.5px solid rgba(0, 0, 0, 0.26);
  padding-left: 24px;
  font-family: "Cormorant", "Times New Roman", serif;
}

.light-zone-page .trs-hero-copy p,
.light-zone-page .trs-hero-copy li {
  color: rgba(10, 10, 10, 0.82);
  font-size: 30px;
  line-height: 1.18;
}

.light-zone-page .trs-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
}

.light-zone-page .trs-card {
  border: 0.5px solid rgba(0, 0, 0, 0.24);
  border-radius: 10px;
  background: #fff;
  padding: 24px;
}

.light-zone-page .trs-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 33px;
  line-height: 1.15;
}

.light-zone-page .trs-card p {
  margin: 0;
  max-width: none;
  font-family: "Cormorant", "Times New Roman", serif;
  color: rgba(15, 15, 15, 0.78);
  font-size: 24px;
  line-height: 1.2;
}

.light-zone-page .trs-links {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.light-zone-page:not(.about-page) .trs-link {
  text-decoration: none;
  border: 0.5px solid rgba(0, 0, 0, 0.55);
  color: #000;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 12.69px 14.49px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.468px;
  text-transform: none;
  line-height: normal;
  transform: scale(1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.light-feed {
  margin-top: 42px;
  width: 100%;
  display: grid;
  gap: 14px;
}

.light-feed--two {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.light-feed--three {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.light-feed-title {
  margin: 0;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: #090909;
}

.light-feed > .light-feed-title {
  grid-column: 1 / -1;
}

.light-zone-page .content-chip-link {
  min-height: 170px;
  border: 0.5px solid rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 14px rgba(16, 16, 16, 0.08);
}

.light-zone-page .content-chip-link:hover,
.light-zone-page .content-chip-link:focus-visible {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.56);
  box-shadow: 0 8px 18px rgba(16, 16, 16, 0.12);
}

.light-zone-page .content-chip-media {
  border-right: 0.5px solid rgba(0, 0, 0, 0.2);
}

.light-zone-page .content-chip-kicker {
  color: rgba(0, 0, 0, 0.52);
}

.light-zone-page .content-chip-title {
  color: #090909;
}

.light-zone-page .content-chip-text {
  color: rgba(10, 10, 10, 0.72);
}

.light-zone-page .content-chip-media--img-brothy,
.light-zone-page .content-chip-media--img-miso,
.light-zone-page .content-chip-media--img-recipe-citrus,
.light-zone-page .content-chip-media--img-recipe-salmon,
.light-zone-page .content-chip-media--img-recipe-mineral,
.light-zone-page .content-chip-media--img-recipe-squash,
.light-zone-page .content-chip-media--img-journal,
.light-zone-page .content-chip-media--img-journal-essay,
.light-zone-page .content-chip-media--img-journal-evening,
.light-zone-page .content-chip-media--img-journal-rhythm,
.light-zone-page .content-chip-media--img-journal-progress,
.light-zone-page .content-chip-media--img-journal-nervous,
.light-zone-page .content-chip-media--img-playlist-current,
.light-zone-page .content-chip-media--img-playlist-archive {
  background-blend-mode: multiply, normal;
}

.entry-article-main {
  width: 1905px;
  max-width: 100%;
  margin: 0 auto;
  padding: 132px 88px 120px;
}

.entry-article-main--journal {
  width: 100%;
  padding: 132px 0 120px;
}

.entry-article {
  width: 1390px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 695px 695px;
  align-items: stretch;
}

.entry-article-left {
  padding-right: 42px;
  display: flex;
  flex-direction: column;
}

.entry-article-kicker {
  margin: 0 0 10px;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(8, 8, 8, 0.56);
}

.entry-article-title {
  margin: 0 0 18px;
  max-width: 12ch;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
  color: #090909;
}

.entry-article-dek {
  margin: 0 0 20px;
  max-width: none;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 27.65px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.14;
  color: rgba(10, 10, 10, 0.84);
}

.entry-article-meta {
  margin: 0 0 20px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(8, 8, 8, 0.54);
}

.entry-article-copy {
  border-left: 0.5px solid rgba(0, 0, 0, 0.24);
  padding-left: 24px;
  display: grid;
  gap: 14px;
}

.entry-article-copy p,
.entry-article-copy li {
  margin: 0;
  max-width: none;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.16;
  color: rgba(10, 10, 10, 0.86);
}

.entry-article-copy h2 {
  margin: 10px 0 4px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
  color: #090909;
}

.entry-article-copy ul,
.entry-article-copy ol {
  margin: 0;
  padding-left: 1.05em;
  display: grid;
  gap: 8px;
}

.entry-article-left .trs-links {
  margin-top: 28px;
}

.entry-article-right {
  border-left: 0.5px solid rgba(0, 0, 0, 0.24);
  min-height: 1120px;
}

.entry-article-right img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 1120px;
  object-fit: cover;
  object-position: center;
}

.entry-article--stacked {
  grid-template-columns: 1fr;
  gap: 28px;
}

.entry-article--stacked .entry-article-left {
  padding-right: 0;
}

.entry-article-main--journal .entry-article {
  width: 100%;
  max-width: none;
}

.entry-article-main--journal .entry-article-left {
  width: min(1390px, 100%);
  margin: 0 auto;
  padding: 0 88px;
  box-sizing: border-box;
}

.entry-article--stacked .entry-article-bottom-image {
  border-top: 0.5px solid rgba(0, 0, 0, 0.24);
  padding-top: 18px;
  min-height: 620px;
}

.entry-article-main--journal .entry-article-bottom-image {
  width: 100%;
  border-top: 0;
  padding-top: 0;
  min-height: min(70vh, 760px);
}

.entry-article--stacked .entry-article-bottom-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.entry-article-main--journal .entry-article-bottom-image img {
  min-height: min(70vh, 760px);
}

.entry-article-bottom-links {
  width: min(1390px, 100%);
  margin: 0 auto;
  padding: 18px 88px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 1720px) and (min-width: 901px) {
  .light-feed--three {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .light-feed-title {
    font-size: 30px;
  }

  .light-zone-page .content-chip-link {
    min-height: 152px;
  }

  .light-zone-page .content-chip-title {
    font-size: 24px;
  }

  .light-zone-page .content-chip-text {
    font-size: 17px;
  }

  .entry-article-main {
    padding: 122px 48px 100px;
  }

  .entry-article-main--journal {
    padding: 122px 0 100px;
  }

  .entry-article {
    width: 100%;
    max-width: 1240px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  }

  .entry-article-left {
    padding-right: 30px;
  }

  .entry-article-title {
    font-size: clamp(42px, 2.7vw, 54px);
  }

  .entry-article-dek {
    font-size: clamp(22px, 1.6vw, 27px);
  }

  .entry-article-copy p,
  .entry-article-copy li {
    font-size: clamp(20px, 1.45vw, 24px);
  }

  .entry-article-right,
  .entry-article-right img {
    min-height: 980px;
  }

  .entry-article--stacked .entry-article-bottom-image,
  .entry-article--stacked .entry-article-bottom-image img {
    min-height: 520px;
  }

  .entry-article-main--journal .entry-article-left,
  .entry-article-bottom-links {
    max-width: 1240px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .entry-article-main--journal .entry-article-bottom-image,
  .entry-article-main--journal .entry-article-bottom-image img {
    min-height: 56vh;
  }
}

.light-zone-page .trs-footer {
  width: 1905px;
  max-width: 100%;
  height: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  font-size: 20px;
  color: rgba(8, 8, 8, 0.72);
}

.dark-zone-page {
  --texture-opacity: 0.25;
  margin: 0;
  background: #000;
  color: #f4f5f7;
  overflow-x: hidden;
  position: relative;
}

.dark-zone-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000;
}

.dark-zone-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0) 46%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.007) 0 1px,
      rgba(255, 255, 255, 0) 1px 34px
    );
  opacity: 0.56;
}

.dark-zone-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--trs-texture-image);
  background-size: cover;
  background-position: center top;
  mix-blend-mode: luminosity;
  opacity: 0;
  filter: brightness(0.5) saturate(0.72);
  will-change: opacity;
  transition: opacity 280ms ease;
}

.trs-texture-ready .dark-zone-bg::after {
  opacity: var(--texture-opacity);
}

.dark-zone-page .trs-main {
  max-width: 1905px;
  margin: 0 auto;
  padding: 170px 88px 130px;
}

.dark-zone-page .trs-hero {
  border: 0.5px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 10, 19, 0.55);
  border-radius: 12px;
  padding: 28px;
}

.dark-zone-page .trs-hero-title {
  margin: 0;
  max-width: none;
  color: #f2f3f7;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.08;
}

.dark-zone-page .trs-hero-copy {
  border-left: 0.5px solid rgba(255, 255, 255, 0.38);
  padding-left: 24px;
  margin-top: 20px;
}

.dark-zone-page .trs-hero-copy p,
.dark-zone-page .trs-hero-copy li {
  color: rgba(244, 245, 248, 0.87);
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.18;
}

.dark-zone-page .trs-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 16px;
}

.dark-zone-page .trs-card {
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(7, 10, 20, 0.58);
  padding: 20px;
}

.dark-zone-page .trs-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.15;
}

.dark-zone-page .trs-card p {
  margin: 0;
  max-width: none;
  color: rgba(242, 243, 246, 0.84);
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

.dark-zone-page .trs-links {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dark-zone-page .trs-link {
  text-decoration: none;
  border: 0.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
  padding: 12.69px 14.49px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.468px;
  text-transform: none;
  line-height: normal;
  transform: scale(1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.offerings-page .trs-link {
  border: 0.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
  padding: 12.69px 14.49px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.468px;
  text-transform: none;
  line-height: normal;
  transform: scale(1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.dark-zone-page .trs-footer {
  width: 1905px;
  max-width: 100%;
  height: 210px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  font-size: 20px;
}

.dark-zone-page .trs-footer .footer-legal {
  color: rgba(255, 255, 255, 0.9);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.light-zone-page:not(.about-page) .trs-link:hover,
.light-zone-page:not(.about-page) .trs-link:focus-visible {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
  outline: none;
}

.dark-zone-page .trs-link:hover,
.dark-zone-page .trs-link:focus-visible,
.offerings-page .trs-link:hover,
.offerings-page .trs-link:focus-visible {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  transform: scale(1.1);
  outline: none;
}

.nav1-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.nav1-header--light {
  color: #000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav1-header--dark {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.nav1-bar {
  width: 1905px;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav1-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 172px;
}

.nav1-current {
  color: inherit;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: var(--type-h6);
  font-style: italic;
  font-weight: 700;
  line-height: var(--type-line-heading);
  white-space: nowrap;
}

.nav1-menu {
  width: 68px;
  height: 45px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-lines {
  --menu-cross-shift: 5px;
  width: 18px;
  height: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-lines span {
  width: 100%;
  height: 1.8px;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav1-header--light .menu-lines span {
  background: #000;
}

.nav1-header--dark .menu-lines span {
  background: #fff;
}

.public-nav-open .menu-lines span:nth-child(1) {
  transform: translateY(var(--menu-cross-shift)) rotate(45deg);
}

.public-nav-open .menu-lines span:nth-child(2) {
  opacity: 0;
}

.public-nav-open .menu-lines span:nth-child(3) {
  transform: translateY(calc(-1 * var(--menu-cross-shift))) rotate(-45deg);
}

.offerings-public-overlay {
  position: fixed;
  inset: 0;
  z-index: 15;
  padding: 110px 122px 34px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 220ms ease, transform 260ms ease;
}

.offerings-public-overlay[hidden] {
  display: block;
}

.public-nav-open .offerings-public-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.offerings-public-overlay-nav {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.overlay-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #050505;
  font-family: "Cormorant", "Times New Roman", serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 1.04;
  padding: 16px 24px 15px 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  opacity: 0;
  transform: translateY(16px);
  transition:
    background-color 110ms ease,
    color 110ms ease,
    opacity 190ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i) * 28ms);
}

.public-nav-open .overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.overlay-link::after {
  content: "›";
  font-size: 0.9em;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 110ms ease, transform 110ms ease;
}

.overlay-link:hover,
.overlay-link:focus-visible {
  background: #000;
  color: #fff;
  outline: none;
}

.overlay-link:hover::after,
.overlay-link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.nav1-wordmark {
  text-decoration: none;
  color: inherit;
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: var(--type-h4);
  line-height: var(--type-line-heading);
  letter-spacing: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav1-login {
  text-decoration: none;
  color: inherit;
  border: 0.5px solid currentColor;
  border-radius: 8px;
  padding: 0 11.52px;
  background: transparent;
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  font-size: 17px;
  line-height: 40.32px;
  letter-spacing: 0;
  box-shadow: none;
  transform: scale(1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav1-login:hover,
.nav1-login:focus-visible {
  transform: scale(1.1);
  color: #111;
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.34);
  outline: none;
}

.nav1-overlay {
  position: fixed;
  inset: auto 0 auto 0;
  top: 88px;
  z-index: 15;
  padding: 0 88px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(-10px);
}

.public-nav-open .nav1-overlay {
  pointer-events: none;
}

.nav1-overlay .offerings-public-overlay-nav {
  width: min(420px, 100%);
  border-top: 0;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.public-nav-open .nav1-overlay .offerings-public-overlay-nav {
  pointer-events: auto;
}

.nav1-overlay .overlay-link {
  font-size: var(--type-h6);
  line-height: var(--type-line-heading);
  padding: 11px 18px 10px 12px;
}

.nav1-overlay .overlay-link::after {
  font-size: var(--type-h5);
  line-height: 1;
}

.nav2-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  color: #fff;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav2-bar {
  width: 1905px;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 88px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav2-logo {
  width: 119px;
  height: 87px;
  display: inline-block;
  mix-blend-mode: exclusion;
}

.nav2-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav2-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.nav2-current {
  margin: 0;
  color: #fff;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: var(--type-h6);
  font-style: italic;
  font-weight: 700;
  line-height: var(--type-line-heading);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

.nav2-login {
  text-decoration: none;
  color: #fff;
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav2-menu {
  width: 68px;
  height: 45px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav2-menu .menu-lines {
  --menu-cross-shift: 9px;
  width: 30px;
  height: 20px;
}

.nav2-menu .menu-lines span {
  height: 2px;
}

.nav2-menu .menu-lines span {
  background: #fff;
}

.public-nav-open .nav2-header {
  color: #fff;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.public-nav-open .nav2-menu .menu-lines span {
  background: #fff;
}

.nav2-overlay {
  position: fixed;
  inset: auto 0 auto 0;
  top: 122px;
  z-index: 25;
  padding: 0 88px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(-10px);
  display: flex;
  justify-content: flex-end;
}

.public-nav-open .nav2-overlay {
  pointer-events: none;
}

.nav2-overlay .offerings-public-overlay-nav {
  border-top: 0;
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.public-nav-open .nav2-overlay .offerings-public-overlay-nav {
  pointer-events: auto;
}

.nav2-overlay .overlay-link {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  font-size: var(--type-h6);
  line-height: var(--type-line-heading);
  padding: 11px 18px 10px 12px;
}

.nav2-overlay .overlay-link[aria-current="page"] {
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
}

.nav2-overlay .overlay-link:hover,
.nav2-overlay .overlay-link:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: #050505;
}

.nav2-overlay .overlay-link[aria-current="page"]:hover,
.nav2-overlay .overlay-link[aria-current="page"]:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: #050505;
}

.nav2-overlay .overlay-link::after {
  font-size: var(--type-h5);
  line-height: 1;
  color: inherit;
}

.offerings-public-main {
  width: 1905px;
  max-width: 100%;
  margin: 0 auto;
  padding: 93px 196px 108px;
  display: flex;
  flex-direction: column;
  gap: 108px;
}

.offerings-public-section {
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
}

.offerings-public-section--spaced {
  min-height: 0;
  justify-content: flex-start;
}

.offerings-public-section h1,
.offerings-public-section h2 {
  margin: 0;
  width: 695px;
  max-width: 695px;
  min-height: 274px;
  display: flex;
  align-items: flex-end;
  font-family: "Cormorant", "Times New Roman", serif;
  font-weight: 700;
  font-size: var(--type-h5);
  line-height: var(--type-line-heading);
  letter-spacing: 0;
  white-space: normal;
  color: #000;
}

.offerings-public-copy {
  width: 695px;
  padding-left: 48px;
}

.offerings-public-copy p {
  margin: 0 0 26px;
  max-width: none;
  font-family: "Cormorant", "Times New Roman", serif;
  font-weight: 400;
  font-size: 27.65px;
  line-height: normal;
  letter-spacing: 0;
  color: #000;
}

.offerings-public-copy ul {
  margin: 0 0 26px 1.15em;
  padding: 0;
}

.offerings-public-copy li {
  margin: 0 0 14px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-weight: 400;
  font-size: 27.65px;
  line-height: normal;
  letter-spacing: 0;
  color: #000;
}

.offerings-public-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 108px;
}

.offerings-public-cta {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 10px 16px;
  text-decoration: none;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 19.2px;
  letter-spacing: 0.52px;
  line-height: normal;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background-color 140ms ease, color 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.offerings-public-cta:hover,
.offerings-public-cta:focus-visible {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  outline: none;
}

.offerings-public-footer {
  width: 1905px;
  max-width: 100%;
  height: 210px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.offerings-public-footer img {
  width: 85px;
  height: 62px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .nav1-bar {
    padding: 14px 16px;
  }

  .nav1-left {
    min-width: 110px;
    gap: 6px;
  }

  .nav2-bar {
    padding: 20px 16px 16px;
  }

  .nav2-logo {
    width: 68px;
    height: 50px;
  }

  .nav2-right {
    gap: 8px;
  }

  .nav2-current {
    font-size: var(--type-small);
    line-height: 1.25;
  }

  .nav2-login {
    font-size: 12px;
    padding: 5px 8px;
  }

  .nav2-menu {
    width: 54px;
    height: 42px;
  }

  .nav2-menu .menu-lines {
    --menu-cross-shift: 5px;
    width: 18px;
    height: 12px;
  }

  .nav2-menu .menu-lines span {
    height: 1.8px;
  }

  .offerings-public-overlay {
    padding: 86px 16px 20px;
  }

  .nav1-overlay {
    top: 72px;
    padding: 0 16px;
  }

  .nav1-overlay .offerings-public-overlay-nav {
    width: min(340px, 100%);
  }

  .nav2-overlay {
    top: 72px;
    padding: 0 16px;
  }

  .nav2-overlay .offerings-public-overlay-nav {
    width: min(340px, 100%);
  }

  .overlay-link {
    font-size: clamp(22px, 8vw, 36px);
    padding: 12px 20px 11px 4px;
  }

  .nav1-wordmark {
    font-size: var(--type-h6);
    line-height: 1;
  }

  .nav1-current {
    font-size: var(--type-small);
    line-height: 1.25;
  }

  .nav1-login {
    font-size: 11px;
    line-height: 1;
    padding: 9.6px;
  }

  .offerings-public-main {
    padding: 0 16px 64px;
    gap: 42px;
  }

  .light-zone-page .trs-main,
  .dark-zone-page .trs-main {
    padding: 118px 16px 64px;
  }

  .light-zone-page .trs-hero,
  .dark-zone-page .trs-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .light-zone-page .trs-hero-title {
    font-size: 38px;
  }

  .dark-zone-page .trs-hero-title {
    font-size: 36px;
  }

  .light-zone-page .trs-hero-copy,
  .dark-zone-page .trs-hero-copy {
    border-left: 0;
    border-top: 0.5px solid rgba(0, 0, 0, 0.2);
    padding-left: 0;
    padding-top: 12px;
  }

  .dark-zone-page .trs-hero-copy {
    border-top-color: rgba(255, 255, 255, 0.35);
  }

  .light-zone-page .trs-grid,
  .dark-zone-page .trs-grid {
    grid-template-columns: 1fr;
  }

  .light-feed {
    margin-top: 28px;
    gap: 10px;
  }

  .light-feed--two,
  .light-feed--three {
    grid-template-columns: 1fr;
  }

  .light-feed-title {
    font-size: 24px;
  }

  .light-zone-page .content-chip-link {
    min-height: 0;
  }

  .light-zone-page .content-chip-media {
    min-height: 120px;
    border-right: 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
  }

  .entry-article-main {
    padding: 108px 16px 64px;
  }

  .entry-article-main--journal {
    padding: 108px 0 64px;
  }

  .entry-article {
    grid-template-columns: 1fr;
  }

  .entry-article-left {
    padding-right: 0;
  }

  .entry-article-title {
    max-width: none;
    font-size: clamp(34px, 10vw, 44px);
    margin-bottom: 12px;
  }

  .entry-article-kicker {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .entry-article-dek {
    font-size: clamp(18px, 5.2vw, 23px);
    margin-bottom: 14px;
  }

  .entry-article-meta {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .entry-article-copy {
    border-left: 0;
    border-top: 0.5px solid rgba(0, 0, 0, 0.24);
    padding-left: 0;
    padding-top: 12px;
    gap: 10px;
  }

  .entry-article-copy h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .entry-article-copy p,
  .entry-article-copy li {
    font-size: clamp(17px, 4.9vw, 21px);
    line-height: 1.2;
  }

  .entry-article-left .trs-links {
    margin-top: 16px;
  }

  .entry-article-right {
    border-left: 0;
    border-top: 0.5px solid rgba(0, 0, 0, 0.24);
    min-height: 0;
    margin-top: 18px;
    padding-top: 14px;
  }

  .entry-article-right img {
    min-height: 330px;
    height: 330px;
  }

  .entry-article--stacked .entry-article-bottom-image {
    border-top: 0.5px solid rgba(0, 0, 0, 0.24);
    padding-top: 12px;
    min-height: 0;
    margin-top: 0;
  }

  .entry-article--stacked .entry-article-bottom-image img {
    min-height: 320px;
    height: 320px;
  }

  .entry-article-main--journal .entry-article-left,
  .entry-article-bottom-links {
    padding-left: 16px;
    padding-right: 16px;
  }

  .entry-article-main--journal .entry-article-bottom-image {
    border-top: 0;
    padding-top: 0;
    min-height: 46vh;
  }

  .entry-article-main--journal .entry-article-bottom-image img {
    min-height: 46vh;
    height: 46vh;
  }

  .light-zone-page .trs-hero-copy p,
  .light-zone-page .trs-hero-copy li,
  .dark-zone-page .trs-hero-copy p,
  .dark-zone-page .trs-hero-copy li {
    font-size: 20px;
  }

  .light-zone-page .trs-card h3,
  .dark-zone-page .trs-card h3 {
    font-size: 26px;
  }

  .light-zone-page .trs-card p,
  .dark-zone-page .trs-card p {
    font-size: 19px;
  }

  .offerings-public-section {
    min-height: 0;
    gap: 20px;
  }

  .offerings-public-section--spaced {
    min-height: 0;
    justify-content: flex-start;
  }

  .offerings-public-section h1,
  .offerings-public-section h2 {
    width: 100%;
    min-height: 0;
    font-size: var(--type-h5);
    line-height: var(--type-line-heading);
  }

  .offerings-public-copy {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }

  .offerings-public-copy p {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .offerings-public-copy li {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .offerings-public-copy ul {
    margin-bottom: 14px;
  }

  .offerings-public-cta {
    font-size: 12px;
    letter-spacing: 0.2px;
    padding: 8px 12px;
  }

  .offerings-public-footer {
    height: 136px;
  }

  .offerings-public-footer img {
    width: 58px;
    height: 42px;
  }
}

/* Home wire style (Figma node 234:247) */
.home-wire-page {
  margin: 0;
  min-height: 100vh;
  color: #fff;
  background: #000;
  overflow-x: hidden;
  position: relative;
}

.home-wire-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000;
  overflow: hidden;
}

.home-wire-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 50% -15%, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0) 62%),
    radial-gradient(44% 44% at 50% 115%, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.54));
}

.home-wire-page .nav1-header--dark {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-wire-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  object-position: center;
}

.home-wire-main {
  width: 1905px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  padding: 0 88px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-wire-hero {
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-18px);
}

.home-wire-hero h2 {
  margin: 0;
  width: min(695px, 100%);
  max-width: none;
  text-align: center;
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 68.808px;
  line-height: 72px;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.home-wire-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40.95px;
  padding: 12.69px 14.49px;
  border-radius: 4px;
  border: 0.5px solid rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.78);
  color: #111;
  text-decoration: none;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 19.2px;
  font-weight: 600;
  letter-spacing: 0.468px;
  text-transform: none;
  line-height: normal;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transform: scale(1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-wire-cta:hover,
.home-wire-cta:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.34);
}

.home-wire-footer {
  width: 1905px;
  max-width: 100%;
  height: 211px;
  margin: 0 auto;
  padding: 48px 88px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 12.177%, rgba(0, 0, 0, 0.5) 100%);
}

.home-wire-footer-stack {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-wire-footer-logo,
.home-wire-footer-legal {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.home-wire-footer-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-wire-footer img {
  width: 145px;
  height: 106px;
  object-fit: cover;
}

.home-wire-footer .footer-legal {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
  .home-wire-main {
    min-height: 100vh;
    padding: 0 16px 20px;
  }

  .home-wire-hero {
    height: auto;
    min-height: 100vh;
    gap: 16px;
    transform: translateY(-10px);
  }

  .home-wire-hero h2 {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.08;
  }

  .home-wire-cta {
    height: auto;
    padding: 10px 14px;
    font-size: 14px;
    letter-spacing: 0.18px;
  }

  .home-wire-footer {
    height: 140px;
    padding: 22px 16px;
    gap: 8px;
  }

  .home-wire-footer img {
    width: 99px;
    height: 72px;
  }

  .home-wire-footer .footer-legal {
    font-size: 11px;
  }
}

/* Typography normalization layer: centralized type scale and selector mapping. */
:root {
  --type-h1: 2.986rem;
  --type-h2: 2.488rem;
  --type-h3: 2.074rem;
  --type-h4: 1.728rem;
  --type-h5: 1.44rem;
  --type-h6: 1.2rem;
  --type-p: 1rem;
  --type-small: 0.833rem;
  --type-tiny: 0.694rem;
  --type-line-display: 1.1;
  --type-line-heading: 1.18;
  --type-line-copy: 1.45;
}

html {
  font-size: 16px;
}

h1,
.trs-hero-title,
.light-zone-page .trs-hero-title,
.dark-zone-page .trs-hero-title,
.entry-article-title,
.light-feed-title,
.member-home-title {
  font-size: var(--type-h1);
  line-height: var(--type-line-display);
}

h2,
.offering-title,
.member-space-experiment .offering-title,
.content-chip-title,
.light-zone-page .content-chip-title,
.member-home-column h2,
.member-home-rcl-column h2,
.home-wire-hero h2 {
  font-size: var(--type-h2);
  line-height: var(--type-line-heading);
}

h3,
.entry-article-copy h2 {
  font-size: var(--type-h3);
  line-height: var(--type-line-heading);
}

h4 {
  font-size: var(--type-h4);
  line-height: var(--type-line-heading);
}

h5 {
  font-size: var(--type-h5);
  line-height: var(--type-line-heading);
}

h6 {
  font-size: var(--type-h6);
  line-height: var(--type-line-heading);
}

body,
p,
textarea,
.trs-hero-copy,
.light-zone-page .trs-hero-copy,
.trs-hero-copy p,
.light-zone-page .trs-hero-copy p,
.dark-zone-page .trs-hero-copy p,
.offering-copy,
.member-space-experiment .offering-copy,
.offering-copy p,
.content-chip-text,
.light-zone-page .content-chip-text,
.member-home-bulletin,
.member-home-column > ul > li > a,
.entry-article-dek,
.entry-article-copy li,
.offerings-public-copy p,
.offerings-public-copy li,
.light-zone-page .trs-hero-copy li,
.dark-zone-page .trs-hero-copy li {
  font-size: var(--type-p);
  line-height: var(--type-line-copy);
}

small,
.text-small,
.overlay-link,
.offerings-public-cta,
.home-wire-cta,
.trs-link,
.site-footer,
.trs-footer,
.light-zone-page .trs-footer,
.dark-zone-page .trs-footer,
.offerings-footer,
label {
  font-size: var(--type-small);
  line-height: 1.25;
}

.tiny,
.text-tiny,
.content-chip-kicker,
.entry-article-kicker,
.entry-article-meta,
.member-home-bulletin span,
.overlay-link::after,
[data-port]::after {
  font-size: var(--type-tiny);
  line-height: 1.15;
}

/* Member home: map text to nearest design tokens. */
.member-home-page .member-home-title {
  font-size: var(--type-h3);
  line-height: var(--type-line-heading);
}

.member-home-page .member-home-bulletin {
  font-size: var(--type-h6);
  line-height: var(--type-line-copy);
}

.member-home-page .member-home-bulletin span {
  font-size: var(--type-small);
  line-height: 1.25;
}

.member-home-page .member-home-column h2 {
  font-size: var(--type-h5);
  line-height: var(--type-line-heading);
}

.member-home-page .member-home-column > p,
.member-home-page .member-home-column > ul > li,
.member-home-page .member-home-column > ul > li > a {
  font-size: var(--type-p);
  line-height: var(--type-line-copy);
}

.member-home-page .member-home-rcl-column h2,
.member-home-page .content-chip-title {
  font-size: var(--type-h5);
  line-height: var(--type-line-heading);
}

.member-home-page .content-chip-text {
  font-size: var(--type-p);
  line-height: var(--type-line-copy);
}

.member-home-page .content-chip-kicker {
  font-size: var(--type-small);
  line-height: 1.25;
}

/* Recipes page: keep heading scale and spacing aligned to latest review. */
.recipes-page .trs-main {
  padding-top: 30px;
}

.recipes-page .nav1-current,
.recipe-entry-page .nav1-current,
.journal-page .nav1-current,
.journal-entry-page .nav1-current {
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: var(--type-h6);
  font-style: italic;
  font-weight: 700;
  line-height: var(--type-line-heading);
  color: inherit;
}

.recipes-page .trs-hero-title {
  font-size: var(--type-h4);
  line-height: var(--type-line-heading);
  min-height: 0;
}

.recipes-page .content-chip-title {
  font-size: var(--type-h5);
  line-height: var(--type-line-heading);
  max-width: none;
  min-height: 0;
}

.recipes-page .light-feed {
  margin-top: 30px;
}

.recipes-page .content-chip-link {
  min-height: 204px;
}

.recipes-page .content-chip-kicker {
  font-size: var(--type-small);
  line-height: 1.25;
}

.recipes-page .content-chip-text {
  font-size: var(--type-p);
  line-height: var(--type-line-copy);
}

.journal-page .trs-main {
  padding-top: 30px;
}

.journal-page .trs-hero-title {
  font-size: var(--type-h4);
  line-height: var(--type-line-heading);
  min-height: 0;
}

.journal-page .content-chip-title {
  font-size: var(--type-h5);
  line-height: var(--type-line-heading);
  max-width: none;
  min-height: 0;
}

.journal-page .light-feed {
  margin-top: 30px;
}

.journal-page .content-chip-link {
  min-height: 204px;
}

.journal-page .content-chip-kicker {
  font-size: var(--type-small);
  line-height: 1.25;
}

.journal-page .content-chip-text {
  font-size: var(--type-p);
  line-height: var(--type-line-copy);
}

.journal-page .content-chip-media--img-journal,
.journal-page .content-chip-media--img-journal-essay,
.journal-page .content-chip-media--img-journal-evening,
.journal-page .content-chip-media--img-journal-rhythm,
.journal-page .content-chip-media--img-journal-progress,
.journal-page .content-chip-media--img-journal-nervous {
  background-position: 50% 50%;
}

/* Individual recipe pages: align nav gap and prevent title clipping/wrapping constraints. */
.recipe-entry-page .entry-article-main {
  padding-top: 30px;
}

.recipe-entry-page .entry-article-title {
  max-width: none;
  font-size: var(--type-h3);
  line-height: var(--type-line-heading);
}

.recipe-entry-page .entry-article-dek,
.recipe-entry-page .entry-article-copy p,
.recipe-entry-page .entry-article-copy li,
.recipe-entry-page .entry-article-copy h2 {
  font-size: var(--type-p);
  line-height: var(--type-line-copy);
}

.recipe-entry-page .entry-article-meta {
  font-size: var(--type-small);
  line-height: 1.25;
}

.journal-entry-page .entry-article-main {
  padding-top: 30px;
}

.journal-entry-page .entry-article-title {
  max-width: none;
  font-size: var(--type-h3);
  line-height: var(--type-line-heading);
}

.journal-entry-page .entry-article-dek,
.journal-entry-page .entry-article-copy p,
.journal-entry-page .entry-article-copy li,
.journal-entry-page .entry-article-copy h2 {
  font-size: var(--type-p);
  line-height: var(--type-line-copy);
}

.journal-entry-page .entry-article-meta {
  font-size: var(--type-small);
  line-height: 1.25;
}

@media (max-width: 900px) {
  .recipes-page .nav1-current,
  .recipe-entry-page .nav1-current,
  .journal-page .nav1-current,
  .journal-entry-page .nav1-current {
    font-size: var(--type-small);
    line-height: 1.25;
  }
}

@media (max-width: 1720px) and (min-width: 901px) {
  .recipes-page .content-chip-link {
    min-height: 182px;
  }

  .journal-page .content-chip-link {
    min-height: 182px;
  }
}

@media (max-width: 900px) {
  .recipes-page .content-chip-link {
    min-height: 0;
  }

  .journal-page .content-chip-link {
    min-height: 0;
  }
}

/* About page: keep type tokens while preserving Figma 225:5 rhythm and spacing. */
.about-page {
  background: #f2f2f2;
  color: #000;
}

.about-page .nav1-header--light {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-page .nav1-login {
  font-size: 19.2px;
  line-height: 40.32px;
}

.about-page .trs-main {
  max-width: 1905px;
  margin: 0 auto;
  padding: 93px 196px 108px;
  display: flex;
  flex-direction: column;
  gap: 108px;
}

.about-page .trs-hero {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  min-height: 0;
}

.about-page .trs-hero-title {
  margin: 0;
  min-height: 274px;
  max-width: 695px;
  display: flex;
  align-items: flex-end;
  font-size: var(--type-h5);
  line-height: var(--type-line-heading);
  color: #090909;
}

.about-page .trs-hero-copy {
  border-left: 0;
  padding-left: 48px;
  width: 695px;
  max-width: 695px;
  min-height: 0;
  display: block;
  color: #000;
}

.about-page .trs-hero-copy p,
.about-page .trs-hero-copy li {
  font-size: var(--type-p);
  line-height: var(--type-line-copy);
  margin: 0 0 0.95rem;
  max-width: 48ch;
}

.about-page .trs-hero-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page .about-page-cta {
  display: flex;
  justify-content: center;
}

.about-page .about-page-cta .trs-link {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 5px;
  color: #000;
  text-decoration: none;
  font-family: Inter, Arial, sans-serif;
  font-size: var(--type-h6);
  font-weight: 600;
  letter-spacing: 0.027em;
  line-height: normal;
  box-shadow: none;
  background: transparent;
}

.about-page .trs-footer {
  width: 1905px;
  max-width: 100%;
  height: 210px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .trs-footer img {
  width: 85px;
  height: 62px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-page .nav1-login {
    font-size: 11px;
    line-height: 1;
    padding: 9.6px;
  }

  .about-page .trs-main {
    padding: 118px 16px 64px;
    gap: 42px;
  }

  .about-page .trs-hero {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 0;
  }

  .about-page .trs-hero-title {
    min-height: 0;
    max-width: none;
  }

  .about-page .trs-hero-copy {
    min-height: 0;
    padding-left: 0;
    width: 100%;
    max-width: none;
    padding-top: 12px;
    border-top: 0.5px solid rgba(0, 0, 0, 0.2);
  }

  .about-page .about-page-cta {
    justify-content: flex-start;
  }

  .about-page .about-page-cta .trs-link {
    font-size: 12px;
    letter-spacing: 0.2px;
    padding: 8px 12px;
  }

  .about-page .trs-footer {
    height: 136px;
  }

  .about-page .trs-footer img {
    width: 58px;
    height: 42px;
  }
}

.member-home-1-page {
  margin: 0;
  min-height: 100vh;
  background: #f1f4f6;
  color: #1b1b18;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

.member-home-1-page a {
  color: inherit;
}

.member-home-1-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(241, 244, 246, 0.56);
  border-bottom: 1px solid #000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.member-home-1-nav {
  width: 100%;
  margin: 0 auto;
  padding: 14px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.member-home-1-wordmark,
.member-home-1-nav-right a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  line-height: 1;
}

.member-home-1-wordmark {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.member-home-1-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 28px;
  margin-left: auto;
}

.member-home-1-variant-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.member-home-1-nav:hover .member-home-1-variant-toggle,
.member-home-1-nav:focus-within .member-home-1-variant-toggle {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.member-home-1-variant-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(27, 27, 24, 0.46);
}

.member-home-1-variant-link.is-active,
.member-home-1-variant-link[aria-current="page"] {
  background: rgba(27, 27, 24, 0.1);
  color: #1b1b18;
}

.member-home-1-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.member-home-1-icon-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.member-home-1-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.member-home-1-stage {
  min-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}

.member-home-1-spacer {
  flex: 0 0 calc(28vh + 250px);
  min-height: calc(28vh + 250px);
}

.member-home-1-values {
  padding-bottom: 44px;
}

.member-home-1-values-head {
  padding: 0 16px 10px;
}

.member-home-1-values-head h1 {
  margin: 0 0 6px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: var(--type-h4);
  font-weight: 400;
  line-height: var(--type-line-heading);
  letter-spacing: -0.02em;
  color: #272722;
  white-space: nowrap;
}

.member-home-1-bulletin {
  margin: 0;
  font-size: var(--type-tiny);
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(27, 27, 24, 0.72);
}

.member-home-1-bulletin span {
  margin-right: 8px;
  font-size: inherit;
  line-height: inherit;
}

.member-home-1-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding: 16px;
  border-top: 1px solid #000;
}

.member-home-1-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 28ch;
}

.member-home-1-index {
  margin: 0 0 2px;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: 19px;
  line-height: 1;
  color: rgba(27, 27, 24, 0.72);
}

.member-home-1-column h2,
.member-home-1-column h3 {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(27, 27, 24, 0.82);
}

.member-home-1-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.member-home-1-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1f1f1c;
  color: #f8f7f3;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-home-1-column p {
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.38;
  color: rgba(27, 27, 24, 0.8);
}

.member-home-1-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-top: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 0.5px rgba(27, 27, 24, 0.28);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 11px;
  line-height: 1;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.member-home-1-button:hover,
.member-home-1-button:focus-visible {
  background: #1f1f1c;
  color: #f8f7f3;
  border-color: #1f1f1c;
  outline: none;
}

.member-home-1-footer {
  width: 100%;
  height: 188px;
  border-top: 1px solid rgba(27, 27, 24, 0.14);
  color: rgba(27, 27, 24, 0.72);
}

.member-home-1-footer img {
  width: 80px;
  height: 58px;
}

.member-home-1-footer .footer-legal {
  color: inherit;
}

@media (max-width: 980px) {
  .member-home-1-nav-right {
    gap: 16px;
  }

  .member-home-1-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

@media (max-width: 640px) {
  .member-home-1-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-home-1-nav-right {
    margin-left: 0;
    justify-content: flex-start;
    gap: 14px;
  }

  .member-home-1-spacer {
    flex-basis: 21vh;
    min-height: 21vh;
  }

  .member-home-1-grid {
    grid-template-columns: 1fr;
  }

  .member-home-1-values-head,
  .member-home-1-grid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .member-home-1-values-head h1 {
    white-space: normal;
  }
}

.member-home-2-page {
  margin: 0;
  min-height: 100vh;
  background: #ebebea;
  color: #1c1b18;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

.member-home-2-page a {
  color: inherit;
}

.member-home-2-header {
  padding-top: 10px;
}

.member-home-2-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 0 8px;
}

.member-home-2-wordmark {
  text-decoration: none;
  font-family: "Moulin", "Cormorant", "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.member-home-2-nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  white-space: nowrap;
}

.member-home-2-nav-center a,
.member-home-2-nav-icons a {
  text-decoration: none;
  text-transform: none;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(28, 27, 24, 0.74);
}

.member-home-2-nav-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.member-home-2-variant-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.member-home-2-nav:hover .member-home-2-variant-toggle,
.member-home-2-nav:focus-within .member-home-2-variant-toggle {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.member-home-2-variant-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(28, 27, 24, 0.46);
}

.member-home-2-variant-link.is-active,
.member-home-2-variant-link[aria-current="page"] {
  background: rgba(28, 27, 24, 0.1);
  color: #1c1b18;
}

.member-home-2-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.member-home-2-icon-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.member-home-2-main {
  max-width: none;
  margin: 0;
  padding: 242px 0 0;
}

.member-home-2-layout {
  display: grid;
  grid-template-columns: 42px minmax(400px, 1.62fr) minmax(240px, 0.8fr) minmax(300px, 1fr) minmax(44px, 0.5fr);
  gap: 26px;
  align-items: start;
  width: 100%;
}

.member-home-2-image-wrap {
  grid-column: 1 / span 2;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: #d8d5cf;
  margin-left: 6px;
}

.member-home-2-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
}

.member-home-2-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0;
  max-width: 28ch;
}

.member-home-2-column--primary {
  grid-column: 3;
}

.member-home-2-column--secondary {
  grid-column: 4;
  max-width: 35ch;
}

.member-home-2-intro {
  padding-bottom: 16px;
}

.member-home-2-kicker,
.member-home-2-column h2,
.member-home-2-column h3 {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(28, 27, 24, 0.82);
}

.member-home-2-intro h1 {
  margin: 0;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: var(--type-h4);
  line-height: var(--type-line-heading);
  font-weight: 400;
  color: #272722;
}

.member-home-2-column p {
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.42;
  color: rgba(28, 27, 24, 0.8);
}

.member-home-2-bulletin-block {
  padding-bottom: 18px;
}

.member-home-2-bulletin {
  font-size: var(--type-tiny);
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(28, 27, 24, 0.72);
}

.member-home-2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-top: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 0.5px rgba(27, 27, 24, 0.28);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 11px;
  line-height: 1;
}

.member-home-2-stack {
  display: grid;
  gap: 34px;
}

.member-home-2-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.member-home-2-stack h4 {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(28, 27, 24, 0.82);
}

.member-home-2-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1f1f1c;
  color: #f8f7f3;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-home-2-footer {
  width: 100%;
  height: 188px;
  color: rgba(27, 27, 24, 0.72);
}

.member-home-2-footer img {
  width: 80px;
  height: 58px;
}

.member-home-2-footer .footer-legal {
  color: inherit;
}

@media (max-width: 1100px) {
  .member-home-2-layout {
    grid-template-columns: 20px minmax(280px, 1.35fr) minmax(220px, 0.88fr) minmax(260px, 1fr);
  }

  .member-home-2-image-wrap {
    grid-column: 1 / span 2;
  }

  .member-home-2-column--primary {
    grid-column: 3;
  }

  .member-home-2-column--secondary {
    grid-column: 4;
  }
}

@media (max-width: 760px) {
  .member-home-2-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .member-home-2-nav-center {
    position: static;
    left: auto;
    transform: none;
  }

  .member-home-2-nav-center,
  .member-home-2-nav-icons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .member-home-2-main {
    padding-top: 36px;
  }

  .member-home-2-layout {
    grid-template-columns: 14px 1fr 14px;
    gap: 18px 0;
  }

  .member-home-2-image-wrap,
  .member-home-2-column--primary,
  .member-home-2-column--secondary {
    grid-column: 2;
    max-width: none;
  }
}
