/* ============================================================
   Foundation World HQ — ESTATE shell (exclusive)
   Luxury beach-resort calm · Foundation crimson/parchment
   Namespace: wo-estate-*, wo-page-*, wo-btn, wo-dest
   ============================================================ */

.wo-estate {
  --wo-ink: #2c1810;
  --wo-muted: rgba(44, 24, 16, 0.58);
  --wo-deep: #6b1818;
  --wo-crimson: #8c2020;
  --wo-accent: #b4463e;
  --wo-paper: #f4ede0;
  --wo-paper-2: #ede4d3;
  --wo-white: #faf7f2;
  --wo-ease: cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--wo-ink);
  background: var(--wo-white);
  overflow: visible; /* critical: overflow:clip hid IntersectionObserver reveals */
}

html[data-theme="dark"] .wo-estate {
  --wo-ink: #f4ede0;
  --wo-muted: rgba(244, 237, 224, 0.6);
  --wo-deep: #8c2020;
  --wo-crimson: #b4463e;
  --wo-accent: #c45a52;
  --wo-paper: #1c1613;
  --wo-paper-2: #241612;
  --wo-white: #14100e;
  background: var(--wo-white);
  color: var(--wo-ink);
}

/* Reveal system — CSS defaults, JS adds .is-in */
.wo-will-reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.85s var(--wo-ease), transform 0.85s var(--wo-ease);
}
.wo-will-reveal.is-in {
  opacity: 1;
  transform: none;
}
.wo-estate--ready [data-wo-line] {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--wo-ease), transform 0.8s var(--wo-ease);
}
.wo-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.65em);
  transition: opacity 0.7s var(--wo-ease), transform 0.75s var(--wo-ease);
}
.wo-estate--ready .wo-char {
  opacity: 1;
  transform: none;
}

/* Soft wave ambience after hero */
.wo-estate--waves .wo-estate-horizon__foam,
.wo-estate--waves .wo-estate-horizon::before {
  animation: wo-wave 9s ease-in-out infinite;
}
@keyframes wo-wave {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50% { transform: translateX(-2.5%); opacity: 0.85; }
}

/* Buttons — always readable */
.wo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.75rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: transform 0.4s var(--wo-ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.wo-btn--solid {
  background: var(--wo-deep);
  color: #f4ede0 !important;
  border-color: var(--wo-deep);
}
.wo-btn--solid:hover {
  background: var(--wo-crimson);
  border-color: var(--wo-crimson);
  color: #f4ede0 !important;
}
.wo-btn--soft {
  background: #ffffff;
  color: var(--wo-deep) !important;
  border-color: rgba(44, 24, 16, 0.14);
  box-shadow: 0 1px 0 rgba(44, 24, 16, 0.04);
}
.wo-btn--soft:hover {
  border-color: var(--wo-crimson);
  color: var(--wo-crimson) !important;
}
html[data-theme="dark"] .wo-btn--soft {
  background: rgba(255,255,255,0.06);
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.2);
}
.wo-btn--ghost {
  background: transparent;
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.45);
}
.wo-btn--ghost:hover {
  border-color: #f4ede0;
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}
.wo-btn--line {
  background: transparent;
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.35);
}
.wo-btn--line:hover {
  border-color: #f4ede0;
  color: #fff !important;
}
.wo-text-link {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wo-crimson);
  text-decoration: none;
  font-weight: 600;
}
.wo-text-link:hover { color: var(--wo-deep); }
html[data-theme="dark"] .wo-text-link:hover { color: var(--wo-accent); }

/* Cover — balcony resort */
.wo-estate-cover {
  position: relative;
  min-height: min(88vh, 46rem);
  display: grid;
  align-items: end;
  color: #f4ede0;
  background: #2c1810;
}
.wo-estate-cover__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-estate-cover__gl,
.wo-estate-cover__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
.wo-estate-cover__fallback { opacity: 1; z-index: 0; }
.wo-estate-cover__gl { z-index: 1; }
.wo-estate-cover__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Soft warm scrim — still readable, not heavy black */
  background:
    linear-gradient(180deg, rgba(44, 24, 16, 0.18) 0%, rgba(44, 24, 16, 0.12) 40%, rgba(44, 24, 16, 0.72) 100%),
    linear-gradient(90deg, rgba(44, 24, 16, 0.45) 0%, transparent 58%);
  pointer-events: none;
}
.wo-estate-cover__goldline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(244, 237, 224, 0.35) 20%, #b4463e 50%, rgba(244, 237, 224, 0.35) 80%, transparent);
}
.wo-estate-cover__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wo-estate-cover__inner {
  position: relative;
  z-index: 4;
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(5.5rem, 12vh, 7.5rem) 0 clamp(3rem, 7vh, 4.5rem);
}
.wo-estate-cover__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.88);
  font-weight: 600;
}
.wo-estate-cover__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #f4ede0;
  text-shadow: 0 2px 28px rgba(44, 24, 16, 0.35);
}
.wo-estate-cover__word { display: block; overflow: hidden; }
.wo-estate-cover__word--gold { color: #f4ede0; }
.wo-estate-cover__lead {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.9);
}
.wo-estate-cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.85rem;
}
.wo-estate-cover__scroll {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: 1.5rem;
  z-index: 4;
  width: 1px;
  height: 3rem;
  background: rgba(244, 237, 224, 0.25);
}
.wo-estate-cover__scroll span {
  display: block;
  width: 1px;
  height: 40%;
  background: #f4ede0;
  animation: wo-scroll 2.2s ease-in-out infinite;
}
@keyframes wo-scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(150%); opacity: 0; }
}

/* Horizon promenade — private beach after hero */
.wo-estate-horizon {
  position: relative;
  min-height: min(52vh, 26rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f4ede0;
}
.wo-estate-horizon__media {
  position: absolute;
  inset: -8% 0;
  will-change: transform;
}
.wo-estate-horizon__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.wo-estate-horizon__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44, 24, 16, 0.35), rgba(44, 24, 16, 0.55)),
    linear-gradient(90deg, rgba(44, 24, 16, 0.4), transparent 60%);
}
.wo-estate-horizon__foam {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244,237,224,0.5), transparent);
  opacity: 0.6;
  pointer-events: none;
}
.wo-estate-horizon__copy {
  position: relative;
  z-index: 1;
  width: min(40rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3.5rem 0;
  text-align: center;
}
.wo-estate-horizon__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.85);
  font-weight: 600;
}
.wo-estate-horizon__copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.12;
}
.wo-estate-horizon__copy p {
  margin: 1rem auto 0;
  max-width: 30rem;
  color: rgba(244, 237, 224, 0.88);
  line-height: 1.65;
}

/* Shared section chrome */
.wo-estate-network,
.wo-estate-pillars,
.wo-estate-news,
.wo-estate-dossier {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}
.wo-estate-network { background: var(--wo-white); }
.wo-estate-pillars { background: var(--wo-paper); }
.wo-estate-news { background: var(--wo-white); }
.wo-estate-dossier { background: var(--wo-paper); }

.wo-estate-network__head,
.wo-estate-pillars__head,
.wo-estate-news__head,
.wo-estate-dossier__head {
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto 2rem;
}
.wo-estate-network__kicker,
.wo-estate-pillars__kicker,
.wo-estate-news__kicker,
.wo-estate-dossier__kicker,
.wo-estate-thesis__kicker,
.wo-estate-operator__kicker,
.wo-estate-horizon__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wo-crimson);
  font-weight: 600;
}
.wo-estate-network__head h2,
.wo-estate-pillars__head h2,
.wo-estate-news__head h2,
.wo-estate-dossier__head h2,
.wo-estate-thesis__copy h2,
.wo-estate-operator__copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--wo-ink);
}
.wo-estate-network__lead,
.wo-estate-dossier__aside {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  color: var(--wo-muted);
  line-height: 1.65;
}

/* Network destinations */
.wo-estate-network__rail {
  width: min(92rem, calc(100% - 1.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (max-width: 1100px) {
  .wo-estate-network__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .wo-estate-network__rail { grid-template-columns: 1fr; }
}
.wo-dest {
  position: relative;
  display: grid;
  grid-template-rows: 13rem auto;
  background: #fff;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(44, 24, 16, 0.08);
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.55s var(--wo-ease), box-shadow 0.55s var(--wo-ease), border-color 0.3s;
}
html[data-theme="dark"] .wo-dest {
  background: var(--wo-paper-2);
  border-color: rgba(244, 237, 224, 0.1);
}
.wo-dest:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 32, 32, 0.28);
  box-shadow: 0 16px 40px rgba(44, 24, 16, 0.08);
}
.wo-dest__media {
  position: relative;
  overflow: hidden;
  background: var(--wo-paper-2);
}
.wo-dest__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--wo-ease);
}
.wo-dest:hover .wo-dest__media img { transform: scale(1.05); }
.wo-dest__body {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem 1.25rem;
}
.wo-dest__label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wo-crimson);
  font-weight: 600;
}
.wo-dest__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--wo-ink);
}
.wo-dest__text {
  font-size: 0.88rem;
  color: var(--wo-muted);
  line-height: 1.5;
}
.wo-dest__go {
  margin-top: 0.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wo-deep);
  font-weight: 600;
}
html[data-theme="dark"] .wo-dest__go { color: var(--wo-accent); }

/* Thesis — soft deep band, not heavy */
.wo-estate-thesis {
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  background: var(--wo-deep);
  color: #f4ede0;
}
.wo-estate-thesis__grid {
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
@media (max-width: 860px) {
  .wo-estate-thesis__grid { grid-template-columns: 1fr; }
}
.wo-estate-thesis__kicker { color: rgba(244, 237, 224, 0.75); }
.wo-estate-thesis__copy h2 { color: #f4ede0 !important; }
.wo-estate-thesis__lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(244, 237, 224, 0.86);
  line-height: 1.7;
  font-size: 1.02rem;
}
.wo-estate-thesis__quote {
  margin: 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(244, 237, 224, 0.28);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  font-style: italic;
  color: rgba(244, 237, 224, 0.95);
}

/* Pillars */
.wo-estate-pillars__grid {
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
@media (max-width: 800px) {
  .wo-estate-pillars__grid { grid-template-columns: 1fr; }
}
.wo-pillar {
  padding: 1.5rem 1.35rem 1.6rem;
  border: 1px solid rgba(44, 24, 16, 0.08);
  background: #fff;
  min-height: 10.5rem;
  border-radius: 2px;
}
html[data-theme="dark"] .wo-pillar {
  background: var(--wo-paper-2);
  border-color: rgba(244, 237, 224, 0.1);
}
.wo-pillar__n {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--wo-crimson);
  font-weight: 600;
}
.wo-pillar h3 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--wo-ink);
}
.wo-pillar p {
  margin: 0;
  color: var(--wo-muted);
  line-height: 1.6;
}

/* Operator */
.wo-estate-operator {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: min(70vh, 36rem);
  background: var(--wo-deep);
  color: #f4ede0;
}
@media (max-width: 900px) {
  .wo-estate-operator { grid-template-columns: 1fr; min-height: 0; }
}
.wo-estate-operator__media {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background: #2c1810;
}
.wo-estate-operator__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.wo-estate-operator__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(107, 24, 24, 0.35));
  pointer-events: none;
}
.wo-estate-operator__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 34rem;
}
.wo-estate-operator__copy h2 { color: #f4ede0 !important; }
.wo-estate-operator__role {
  margin: 0.35rem 0 0;
  color: rgba(244, 237, 224, 0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.wo-estate-operator__lead {
  margin: 1.15rem 0 1.6rem;
  color: rgba(244, 237, 224, 0.88);
  line-height: 1.7;
}
.wo-estate-operator__kicker { color: rgba(244, 237, 224, 0.7); }

/* News */
.wo-estate-news__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.wo-estate-news__grid {
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
@media (max-width: 900px) {
  .wo-estate-news__grid { grid-template-columns: 1fr; }
}
.wo-news-card {
  display: grid;
  background: #fff;
  border: 1px solid rgba(44, 24, 16, 0.08);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.45s var(--wo-ease), border-color 0.3s, box-shadow 0.3s;
}
html[data-theme="dark"] .wo-news-card {
  background: var(--wo-paper-2);
  border-color: rgba(244, 237, 224, 0.1);
}
.wo-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 32, 32, 0.25);
  box-shadow: 0 14px 36px rgba(44, 24, 16, 0.07);
}
.wo-news-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--wo-paper-2);
}
.wo-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--wo-ease);
}
.wo-news-card:hover .wo-news-card__media img { transform: scale(1.04); }
.wo-news-card__body {
  display: grid;
  gap: 0.4rem;
  padding: 1.1rem 1.15rem 1.25rem;
}
.wo-news-card time {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wo-crimson);
}
.wo-news-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--wo-ink);
}
.wo-news-card p {
  margin: 0;
  color: var(--wo-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Dossier */
.wo-estate-dossier__measure {
  width: min(48rem, calc(100% - 2.5rem));
  margin: 0 auto;
}
.wo-estate-dossier__prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--wo-ink);
}
.wo-estate-dossier__prose h1,
.wo-estate-dossier__prose h2,
.wo-estate-dossier__prose h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: var(--wo-ink);
}
.wo-estate-dossier__prose a { color: var(--wo-crimson); }

/* Close */
.wo-estate-close {
  padding: clamp(3.75rem, 8vw, 5.5rem) 1.25rem;
  text-align: center;
  background: var(--wo-paper);
  color: var(--wo-ink);
  border-top: 1px solid rgba(44, 24, 16, 0.06);
}
html[data-theme="dark"] .wo-estate-close {
  border-top-color: rgba(244, 237, 224, 0.08);
}
.wo-estate-close__line {
  margin: 0 auto 1.5rem;
  max-width: 26rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--wo-ink);
}
.wo-estate-close__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
/* Close CTAs: solid + soft (readable on parchment) */
.wo-estate-close .wo-btn--ghost,
.wo-estate-close .wo-btn--line {
  color: var(--wo-deep) !important;
  border-color: rgba(44, 24, 16, 0.18);
}
.wo-estate-close .wo-btn--ghost:hover,
.wo-estate-close .wo-btn--line:hover {
  color: var(--wo-crimson) !important;
  border-color: var(--wo-crimson);
  background: transparent;
}
html[data-theme="dark"] .wo-estate-close .wo-btn--ghost,
html[data-theme="dark"] .wo-estate-close .wo-btn--line {
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.28);
}

/* Page shells */
.wo-page {
  --wo-ink: #2c1810;
  --wo-muted: rgba(44, 24, 16, 0.58);
  --wo-deep: #6b1818;
  --wo-crimson: #8c2020;
  --wo-paper: #f4ede0;
  --wo-white: #faf7f2;
}
html[data-theme="dark"] .wo-page {
  --wo-ink: #f4ede0;
  --wo-muted: rgba(244, 237, 224, 0.6);
  --wo-deep: #8c2020;
  --wo-crimson: #b4463e;
  --wo-paper: #1c1613;
  --wo-white: #14100e;
}
.wo-page-hero {
  position: relative;
  min-height: min(48vh, 24rem);
  display: grid;
  align-items: end;
  background: #2c1810;
  color: #f4ede0;
  overflow: hidden;
}
.wo-page-hero__media { position: absolute; inset: 0; }
.wo-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.wo-page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 24, 16, 0.2), rgba(44, 24, 16, 0.78));
}
.wo-page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(52rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 2.5rem;
}
.wo-page-hero__kicker {
  margin: 0 0 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.8);
  font-weight: 600;
}
.wo-page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  color: #f4ede0;
}
.wo-page-body {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 4.5rem;
  background: var(--fw-surface, #faf7f2);
}
.wo-page-body__measure {
  width: min(48rem, calc(100% - 2.5rem));
  margin: 0 auto;
}
.wo-page-body__prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--wo-ink);
}
.wo-page-body__prose h2,
.wo-page-body__prose h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: var(--wo-ink);
}
.wo-page-body__prose a { color: var(--wo-crimson); }

/* Footer — clean dark ink, not muddy */
.theme-world .theme-footer {
  background: #2c1810;
  color: rgba(244, 237, 224, 0.88);
  border-top: 1px solid rgba(180, 70, 62, 0.25);
}
.theme-world .theme-footer a { color: rgba(244, 237, 224, 0.88); }
.theme-world .theme-footer a:hover { color: #b4463e; }
.theme-world .theme-footer h4 {
  color: #b4463e;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  text-transform: uppercase;
}
.theme-world .theme-footer__legal {
  color: rgba(244, 237, 224, 0.55);
}

/* ============================================================
   Shore walk — REAL video POV (feet → horizon walk + cards)
   ============================================================ */

.wo-dossier-source,
.wo-journey-source { display: none !important; }

.wo-shore {
  position: relative;
  /* Tall enough for stand + lift + long walk (JS also stretches walk phase) */
  min-height: 900vh;
  background: #1a1410;
}

.wo-shore__sticky {
  position: sticky;
  /* Stick below fixed header — stage fills remaining viewport (fixes bottom clip) */
  top: var(--fw-header-h, 4.75rem);
  height: calc(100svh - var(--fw-header-h, 4.75rem));
  height: calc(100dvh - var(--fw-header-h, 4.75rem));
  max-height: calc(100vh - var(--fw-header-h, 4.75rem));
  overflow: hidden;
  z-index: 1;
}

.wo-shore-stage {
  position: absolute;
  inset: 0;
  background: #1a1410;
}

.wo-shore-plate {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: opacity, transform;
  transition: opacity 0.05s linear;
}
.wo-shore-plate[data-wo-plate-walk] {
  opacity: 0;
}
.wo-shore-video,
.wo-shore-video__buf {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Feet plate bias: same beach, lower third (feet + shoreline) */
.wo-shore-plate[data-wo-plate-feet] .wo-shore-video,
.wo-shore-plate[data-wo-plate-feet] .wo-shore-video__buf {
  object-position: center 72%;
}
.wo-shore-video__buf {
  opacity: 0;
}

/* Soft readability scrim over real video */
.wo-shore-stage__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(44, 24, 16, 0.1) 0%, rgba(44, 24, 16, 0.06) 40%, rgba(44, 24, 16, 0.52) 100%),
    linear-gradient(90deg, rgba(44, 24, 16, 0.18) 0%, transparent 48%);
}

.wo-shore-stage__progress {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: rgba(244, 237, 224, 0.22);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 8;
  pointer-events: none;
  will-change: transform;
}
.wo-shore-stage__progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4ede0, #b4463e);
}

.wo-shore-hero {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  /*
   * Stage height already excludes the header, so bottom offsets are true
   * viewport-safe. Sit high enough that title + CTAs + cue all clear the fold.
   */
  bottom: clamp(7.5rem, 18vh, 10rem);
  z-index: 4;
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0;
  color: #f4ede0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-shadow: 0 2px 28px rgba(44, 24, 16, 0.5);
}
.wo-shore-hero.is-faded { pointer-events: none; }
.wo-shore-hero__eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.92);
}
.wo-shore-hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.wo-shore-hero__word { display: block; overflow: hidden; }
.wo-shore-hero__lead {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.94);
}
.wo-shore-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.wo-shore--ready .wo-shore-hero__word .wo-char {
  display: inline-block;
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.wo-shore-hero__word .wo-char {
  opacity: 0;
  transform: translateY(0.7em);
}

.wo-shore-stage__cue {
  position: absolute;
  left: 50%;
  /* Below CTAs, always inside the sticky stage */
  bottom: clamp(1.35rem, 3.5vh, 2.25rem);
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(244, 237, 224, 0.95);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 0.45s ease;
  pointer-events: none;
  text-shadow: 0 1px 14px rgba(44, 24, 16, 0.55);
}
.wo-shore-stage__cue.is-hidden { opacity: 0; }
.wo-shore-stage__cue i {
  display: block;
  width: 1px;
  height: 1.75rem;
  background: rgba(244, 237, 224, 0.55);
  animation: wo-shore-cue 1.9s ease-in-out infinite;
}
@keyframes wo-shore-cue {
  0% { transform: scaleY(0.25); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* Short viewports — keep block compact and fully on-screen */
@media (max-height: 800px) {
  .wo-shore-hero {
    bottom: clamp(7.5rem, 18vh, 9.5rem);
  }
  .wo-shore-hero__title {
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  }
  .wo-shore-hero__lead {
    margin-top: 0.85rem;
    font-size: 0.95rem;
  }
  .wo-shore-hero__actions {
    margin-top: 1.15rem;
  }
  .wo-shore-stage__cue {
    bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Narrow + short (typical phone portrait): extra separation CTAs ↔ cue */
@media (max-width: 430px) and (max-height: 950px) {
  .wo-shore-hero {
    bottom: clamp(9rem, 24vh, 12rem);
  }
  .wo-shore-stage__cue {
    bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Constellation — sky dots zoom to center, then pass by */
.wo-shore-float,
.wo-shore-constellation {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: visible; /* tall folios size to content — never clip CTAs */
  opacity: 0;
}

.wo-shore__flow {
  position: relative;
  z-index: 2;
  pointer-events: none;
  /* Match sticky stage height so scroll math stays continuous */
  margin-top: calc(-1 * (100svh - var(--fw-header-h, 4.75rem)));
  margin-top: calc(-1 * (100dvh - var(--fw-header-h, 4.75rem)));
}

/* Short stand/lift so scene-2 starts almost immediately */
.wo-shore-phase--stand { height: 18vh; }
.wo-shore-phase--lift { height: 32vh; }
.wo-shore-phase--walk { height: 900vh; }
.wo-shore-phase--sit { height: 110vh; }

/* Scene 3 — sit with sunset / feet return */
.wo-shore-sit {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(2rem, 5vh, 3.25rem);
  z-index: 7;
  width: min(40rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0;
  color: #f4ede0;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  pointer-events: none;
  text-shadow: 0 2px 28px rgba(44, 24, 16, 0.55);
  will-change: opacity, transform;
}
.wo-shore-sit__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.9);
}
.wo-shore-sit__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.wo-shore-sit__lead {
  margin: 1.1rem 0 0;
  max-width: 32rem;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.94);
}
.wo-shore-sit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.wo-poi {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Isolate layout so folio thrash doesn’t reflow the whole shore stage */
  contain: layout style;
}

.wo-poi__anchor {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 0;
  height: 0;
  /* transform-only compositing when rotating; left/top are discrete */
  will-change: transform;
}

/* ── Night-sky stars (soft blurred light — never reticles / targets) ── */
.wo-poi__beacon {
  --b: 28px;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--b);
  height: var(--b);
  margin: 0;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(1);
  will-change: opacity, transform;
  pointer-events: none;
  contain: layout style;
}
/* Wide soft atmospheric bloom */
.wo-poi__star-halo {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 248, 235, 0.55) 0%,
    rgba(244, 220, 180, 0.22) 28%,
    rgba(180, 90, 60, 0.08) 52%,
    transparent 72%
  );
  filter: blur(4px);
  opacity: 0.85;
}
/* Mid glow body */
.wo-poi__star-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 245, 225, 0.65) 28%,
    rgba(244, 220, 190, 0.28) 55%,
    transparent 78%
  );
  filter: blur(1.5px);
}
/* Soft optical diffraction (blurred, not hard crosshairs) */
.wo-poi__star-flare {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  filter: blur(1.2px);
}
.wo-poi__star-flare::before,
.wo-poi__star-flare::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 250, 240, 0.15) 22%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 250, 240, 0.15) 78%,
    transparent 100%
  );
  border-radius: 50%;
}
/* horizontal soft spike */
.wo-poi__star-flare::before {
  width: 100%;
  height: 2px;
}
/* vertical soft spike */
.wo-poi__star-flare::after {
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 250, 240, 0.15) 22%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 250, 240, 0.15) 78%,
    transparent 100%
  );
}
/* Hot white stellar core */
.wo-poi__star-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 4px 1px rgba(255, 255, 255, 0.95),
    0 0 10px 3px rgba(255, 240, 210, 0.65),
    0 0 18px 6px rgba(244, 220, 180, 0.35);
}

/* States — twinkle / brighten, never “lock on” */
.wo-poi__beacon.is-dormant .wo-poi__star-halo { opacity: 0.45; }
.wo-poi__beacon.is-dormant .wo-poi__star-glow { opacity: 0.55; }
.wo-poi__beacon.is-dormant .wo-poi__star-flare { opacity: 0.25; }
.wo-poi__beacon.is-dormant .wo-poi__star-core {
  box-shadow:
    0 0 3px 1px rgba(255, 255, 255, 0.7),
    0 0 8px 2px rgba(255, 240, 210, 0.35);
}

.wo-poi__beacon.is-imminent .wo-poi__star-halo {
  opacity: 1;
  animation: wo-star-breathe 2.4s ease-in-out infinite;
}
.wo-poi__beacon.is-imminent .wo-poi__star-flare { opacity: 0.7; }
.wo-poi__beacon.is-imminent .wo-poi__star-core {
  box-shadow:
    0 0 5px 2px rgba(255, 255, 255, 1),
    0 0 14px 4px rgba(255, 240, 210, 0.75),
    0 0 28px 8px rgba(244, 220, 180, 0.4);
}

.wo-poi__beacon.is-blooming {
  --b: 40px;
}
.wo-poi__beacon.is-blooming .wo-poi__star-halo {
  opacity: 1;
  filter: blur(6px);
}
.wo-poi__beacon.is-blooming .wo-poi__star-flare { opacity: 0.85; }
.wo-poi__beacon.is-blooming .wo-poi__star-core {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  box-shadow:
    0 0 6px 2px rgba(255, 255, 255, 1),
    0 0 18px 6px rgba(255, 240, 210, 0.8),
    0 0 36px 12px rgba(244, 220, 180, 0.45);
}

@keyframes wo-star-breathe {
  0%, 100% { opacity: 0.75; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Vertical journey rail — right edge, scene 2 */
.wo-shore-rail {
  position: absolute;
  right: clamp(0.65rem, 2.2vw, 1.5rem);
  left: auto;
  top: 50%;
  z-index: 8;
  transform: translate3d(12px, -50%, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: min(72vh, 36rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}
html[dir="rtl"] .wo-shore-rail {
  right: auto;
  left: clamp(0.65rem, 2.2vw, 1.5rem);
  align-items: flex-start;
  transform: translate3d(-12px, -50%, 0);
}
.wo-shore-rail.is-visible {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
  pointer-events: auto;
}
html[dir="rtl"] .wo-shore-rail.is-visible {
  transform: translate3d(0, -50%, 0);
}
.wo-shore-rail__label {
  margin: 0 0.15rem 0.15rem 0;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.55);
  writing-mode: horizontal-tb;
  text-align: right;
}
.wo-shore-rail__list {
  list-style: none;
  margin: 0;
  padding: 0.55rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-height: min(64vh, 32rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1.35rem;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 242, 0.12) 0%,
    rgba(28, 18, 14, 0.32) 100%
  );
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 40px rgba(20, 12, 8, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.wo-shore-rail__item { margin: 0; }
.wo-shore-rail__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  width: 100%;
  margin: 0;
  padding: 0.4rem 0.35rem;
  border: 0;
  background: transparent;
  color: rgba(244, 237, 224, 0.55);
  cursor: pointer;
  text-align: right;
  transition: color 0.25s ease;
}
.wo-shore-rail__btn:hover,
.wo-shore-rail__btn:focus-visible {
  color: #f4ede0;
  outline: none;
}
.wo-shore-rail__btn.is-active {
  color: #f4ede0;
}
.wo-shore-rail__text {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  line-height: 1.25;
  max-width: 7.5rem;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wo-shore-rail:hover .wo-shore-rail__text,
.wo-shore-rail:focus-within .wo-shore-rail__text,
.wo-shore-rail__btn.is-active .wo-shore-rail__text {
  opacity: 1;
  transform: none;
}
.wo-shore-rail__mark {
  position: relative;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
}
.wo-shore-rail__star-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  display: block;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 240, 210, 0.25) 45%,
    transparent 70%
  );
  filter: blur(1px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wo-shore-rail__star-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
  border-radius: 50%;
  display: block;
  background: #fff;
  box-shadow:
    0 0 4px 1px rgba(255, 255, 255, 0.8),
    0 0 8px 2px rgba(255, 240, 210, 0.4);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.wo-shore-rail__btn.is-active .wo-shore-rail__star-glow {
  opacity: 1;
  transform: scale(1.25);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 240, 210, 0.4) 45%,
    transparent 72%
  );
}
.wo-shore-rail__btn.is-active .wo-shore-rail__star-core {
  box-shadow:
    0 0 5px 2px rgba(255, 255, 255, 0.95),
    0 0 12px 3px rgba(255, 240, 210, 0.55);
  transform: scale(1.15);
}
.wo-shore-rail__item.is-past .wo-shore-rail__star-glow {
  opacity: 0.4;
}
.wo-shore-rail__item.is-past .wo-shore-rail__star-core {
  box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.75);
}

/* Connector line through rail marks */
.wo-shore-rail__list {
  position: relative;
}
.wo-shore-rail__list::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  bottom: 1.1rem;
  right: calc(0.4rem + 5px);
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(244, 237, 224, 0.2) 12%,
    rgba(244, 237, 224, 0.2) 88%,
    transparent
  );
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   HORIZON FOLIO — iOS-style frosted glass (rounded, padded)
   Soft system-glass over the shore — content never touches edges
   ═══════════════════════════════════════════════════════════ */
.wo-poi__card {
  --folio-radius: 1.55rem;
  --folio-pad: 1.35rem;
  position: absolute;
  left: 0;
  top: 0;
  width: min(30rem, 91vw);
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 0;
  color: #f4ede0;
  background: transparent;
  border: none;
  border-radius: var(--folio-radius);
  box-shadow: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.08);
  transform-origin: center center;
  will-change: opacity, transform;
  pointer-events: none;
  contain: layout style;
}

/* Frosted glass body — content-height, no inner scroll */
.wo-poi__inner {
  position: relative;
  z-index: 1;
  height: auto;
  max-height: none;
  overflow: hidden; /* clip media to rounded glass */
  padding: var(--folio-pad);
  border-radius: var(--folio-radius);
  /* iOS liquid-glass: translucent, bright edge, deep soft shadow */
  background:
    linear-gradient(
      165deg,
      rgba(250, 247, 242, 0.18) 0%,
      rgba(44, 24, 16, 0.38) 38%,
      rgba(28, 18, 14, 0.48) 100%
    ),
    rgba(36, 24, 20, 0.42);
  /* Keep glass readable but cheap — heavy blur was lagging mid-walk on desktop */
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 50px rgba(20, 12, 8, 0.38),
    0 4px 16px rgba(20, 12, 8, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(44, 24, 16, 0.15);
}

/* Soft specular highlight across the top curve */
.wo-poi__inner::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 30%,
    rgba(244, 237, 224, 0.55) 50%,
    rgba(255, 255, 255, 0.45) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Hide museum corner brackets — conflict with rounded iOS glass */
.wo-poi__frame {
  display: none;
}
.wo-poi__card::before,
.wo-poi__card::after {
  display: none;
}

/* Soft seal accent — sits just above the glass, not on the edge */
.wo-poi__seal {
  position: absolute;
  top: -0.4rem;
  left: 50%;
  z-index: 3;
  width: 0.65rem;
  height: 0.65rem;
  margin: 0;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 35% 30%, #faf7f2 0%, #b4463e 48%, #6b1818 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 14px 2px rgba(180, 70, 62, 0.4);
  pointer-events: none;
}

.wo-poi.is-active .wo-poi__inner {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 24px 60px rgba(20, 12, 8, 0.42),
    0 6px 20px rgba(20, 12, 8, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(44, 24, 16, 0.12),
    0 0 36px rgba(180, 70, 62, 0.1);
}
.wo-poi.is-active .wo-poi__seal {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45),
    0 0 18px 3px rgba(180, 70, 62, 0.5);
}

/* Head: fig + hairline rule */
.wo-poi__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.95rem;
}
.wo-poi__fig {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.78);
  font-weight: 600;
}
.wo-poi__rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(180, 70, 62, 0.65) 0%,
    rgba(255, 255, 255, 0.18) 55%,
    transparent 100%
  );
}

/* Media — inset from glass edges (never full-bleed to card edge) */
.wo-poi__media {
  position: relative;
  margin: 0 0 1.05rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 11.5rem;
  border-radius: calc(var(--folio-radius) - 0.55rem);
  background: rgba(44, 24, 16, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.wo-poi__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.02);
}
.wo-poi__media-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 35%, rgba(28, 18, 14, 0.88) 100%),
    linear-gradient(90deg, rgba(44, 24, 16, 0.2) 0%, transparent 40%);
  box-shadow: inset 0 0 0 1px rgba(244, 237, 224, 0.06);
}
.wo-poi--operator .wo-poi__media {
  aspect-ratio: 5 / 4;
  max-height: 13rem;
}

.wo-poi__card h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #f4ede0;
  text-shadow: 0 1px 18px rgba(20, 12, 8, 0.35);
}
.wo-poi__role {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 90, 82, 0.95);
  font-weight: 600;
}
.wo-poi__body {
  margin: 0 0 0.35rem;
}
.wo-poi__text {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(244, 237, 224, 0.78);
  white-space: pre-line;
  font-weight: 400;
}
.wo-poi__text:last-child { margin-bottom: 0; }
.wo-poi__quote {
  margin: 0.85rem 0 1rem;
  padding: 0.65rem 0 0.65rem 0.95rem;
  border-left: 1px solid rgba(180, 70, 62, 0.75);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.4;
  font-style: italic;
  color: rgba(244, 237, 224, 0.92);
}

/* Four principles — one folio */
.wo-poi__pillars {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.wo-poi__pillar {
  margin: 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(244, 237, 224, 0.14);
}
.wo-poi__pillar-n {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(180, 70, 62, 0.95);
  font-weight: 600;
}
.wo-poi__pillar-t {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #f4ede0;
}
.wo-poi__pillar-d {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.72);
}
.wo-poi__card--pillars {
  width: min(34rem, 93vw);
}
.wo-poi__card--pillars .wo-poi__inner {
  max-height: none;
  overflow: visible;
}
.wo-poi__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Text links — catalogue, not buttons */
.wo-poi__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.75rem;
  padding: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f4ede0 !important;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(180, 70, 62, 0.85);
  border-radius: 0;
  transition: color 0.25s ease, border-color 0.25s ease, letter-spacing 0.25s ease;
}
.wo-poi__link::after {
  content: "→";
  font-size: 0.85em;
  opacity: 0.75;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-poi__link:hover {
  color: #faf7f2 !important;
  border-bottom-color: #f4ede0;
  letter-spacing: 0.16em;
}
.wo-poi__link:hover::after {
  transform: translateX(3px);
}
.wo-poi__link--ghost {
  color: rgba(244, 237, 224, 0.72) !important;
  border-bottom-color: rgba(244, 237, 224, 0.28);
}
.wo-poi__link--ghost:hover {
  color: #f4ede0 !important;
  border-bottom-color: rgba(180, 70, 62, 0.85);
}

/* Legacy shore-btn kept for any residual markup */
.wo-shore-btn {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: #6b1818;
  color: #f4ede0 !important;
  border: 1px solid #6b1818;
  border-radius: 2px;
}
.wo-shore-btn:hover { background: #8c2020; border-color: #8c2020; color: #f4ede0 !important; }
.wo-shore-btn--ghost {
  background: transparent;
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.28);
}
.wo-shore-btn--ghost:hover {
  border-color: #b4463e;
  color: #f4ede0 !important;
}
.wo-shore-end { height: 45vh; }

@media (max-width: 720px) {
  .wo-shore { min-height: 700vh; }
  .wo-poi__card {
    --folio-radius: 1.35rem;
    --folio-pad: 1.15rem;
    width: min(24.5rem, 93vw);
    max-height: none;
    /* JS drives opacity/transform every frame — CSS transitions fight and look shaky */
    transition: none !important;
  }
  .wo-poi__beacon {
    transition: none !important;
  }
  .wo-poi__anchor {
    transition: none !important;
  }
  .wo-poi__card--pillars { width: min(24.5rem, 93vw); }
  .wo-poi__pillars { grid-template-columns: 1fr; gap: 0.65rem; }
  .wo-poi__inner {
    padding: var(--folio-pad);
    max-height: none;
    border-radius: var(--folio-radius);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
  }
  .wo-poi__media {
    margin: 0 0 0.95rem;
    max-height: 8.5rem;
    border-radius: calc(var(--folio-radius) - 0.45rem);
  }
  .wo-poi__star-halo,
  .wo-poi__star-glow,
  .wo-poi__star-flare {
    filter: none;
  }
  .wo-shore-hero__title { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  /*
   * Mobile (iPhone-class): keep CTAs clear of the scroll cue.
   * Hero sits higher; cue sits lower near the safe-area home indicator.
   */
  .wo-shore-hero {
    bottom: clamp(8.75rem, 22vh, 11.5rem);
    width: min(72rem, calc(100% - 1.75rem));
  }
  .wo-shore-hero__lead { margin-top: 1rem; }
  .wo-shore-hero__actions { margin-top: 1.25rem; gap: 0.55rem; }
  .wo-shore-stage__cue {
    bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
    max-width: min(18rem, calc(100% - 2.5rem));
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.12em;
    font-size: 0.58rem;
    gap: 0.35rem;
  }
  .wo-shore-stage__cue i {
    height: 1.35rem;
  }

  /*
   * Mobile journey dock — full-width sticky bottom bar (FB-style)
   * Cards center above it; no overlay on folio CTAs
   */
  .wo-shore-constellation {
    /* Shrink playfield so POIs center above the dock */
    bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
  }
  .wo-shore-rail {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-height: none;
    align-items: stretch;
    gap: 0;
    transform: translate3d(0, 110%, 0);
    z-index: 10;
    padding: 0;
  }
  html[dir="rtl"] .wo-shore-rail {
    left: 0;
    right: 0;
    transform: translate3d(0, 110%, 0);
  }
  .wo-shore-rail.is-visible {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }
  html[dir="rtl"] .wo-shore-rail.is-visible {
    transform: translate3d(0, 0, 0);
  }
  .wo-shore-rail__label { display: none; }
  .wo-shore-rail__text { display: none !important; }
  .wo-shore-rail__list {
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    margin: 0;
    padding: 0.5rem 0.35rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background:
      linear-gradient(
        180deg,
        rgba(36, 24, 20, 0.55) 0%,
        rgba(20, 14, 12, 0.82) 100%
      );
    backdrop-filter: blur(28px) saturate(1.35);
    -webkit-backdrop-filter: blur(28px) saturate(1.35);
    box-shadow:
      0 -12px 40px rgba(12, 8, 6, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .wo-shore-rail__list::before { display: none; }
  .wo-shore-rail__item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: center;
  }
  .wo-shore-rail__btn {
    justify-content: center;
    width: 100%;
    min-height: 2.85rem;
    min-width: 2.5rem;
    padding: 0.45rem 0.15rem;
    -webkit-tap-highlight-color: transparent;
  }
  .wo-shore-rail__mark {
    width: 14px;
    height: 14px;
  }
  .wo-shore-rail__btn.is-active .wo-shore-rail__star-core {
    transform: scale(1.35);
  }
  /* Sit copy clears the dock when visible after walk */
  .wo-shore-sit {
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Reduced transparency fallback */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .wo-poi__inner {
    background: rgba(32, 22, 18, 0.9);
  }
}

/* ═══════════════════════════════════════════════════════════
   WO-FOOT — Estate footer (replaces bare theme-footer list)
   After shore sit: parchment band, refined links, network tiles
   ═══════════════════════════════════════════════════════════ */
.wo-foot {
  position: relative;
  margin-top: 0;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 0;
  background:
    linear-gradient(180deg, #ede4d3 0%, #f4ede0 42%, #faf7f2 100%);
  color: #2c1810;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  overflow: hidden;
}
html[data-theme="dark"] .wo-foot {
  background:
    linear-gradient(180deg, #1c1613 0%, #181210 55%, #14100e 100%);
  color: #f4ede0;
  border-top-color: rgba(244, 237, 224, 0.08);
}

.wo-foot__glow {
  position: absolute;
  left: 50%;
  top: -20%;
  width: min(48rem, 90vw);
  height: 18rem;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(180, 70, 62, 0.1) 0%,
    transparent 68%
  );
}
html[data-theme="dark"] .wo-foot__glow {
  background: radial-gradient(
    ellipse at center,
    rgba(180, 70, 62, 0.16) 0%,
    transparent 68%
  );
}

.wo-foot__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.wo-foot__logo {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 1rem;
}
/* Size only — do NOT set display:block on all imgs (that forces pale+ink both visible). */
.wo-foot__logo img,
.wo-foot__logo svg {
  height: 1.65rem;
  width: auto;
  max-width: 11rem;
}
.wo-foot__logo .fw-brand-logo {
  display: inline-block;
  position: relative;
  line-height: 0;
}
.wo-foot__logo .fw-brand-logo__ink {
  display: block;
}
.wo-foot__logo .fw-brand-logo__pale {
  display: none;
}
html[data-theme="dark"] .wo-foot__logo .fw-brand-logo__ink {
  display: none;
}
html[data-theme="dark"] .wo-foot__logo .fw-brand-logo__pale {
  display: block;
}

.wo-foot__tagline {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-foot__tagline { color: #f4ede0; }

.wo-foot__mission {
  margin: 0 0 1.5rem;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(44, 24, 16, 0.62);
}
html[data-theme="dark"] .wo-foot__mission {
  color: rgba(244, 237, 224, 0.62);
}

.wo-foot__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.wo-foot__kicker {
  margin: 0 0 1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8c2020;
}
html[data-theme="dark"] .wo-foot__kicker { color: #c45a52; }

/* Explore — elegant link rows, not bullet lists */
.wo-foot__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.wo-foot__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  text-decoration: none;
  color: #2c1810;
  font-size: 0.9rem;
  line-height: 1.3;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
html[data-theme="dark"] .wo-foot__links a { color: #f4ede0; }
.wo-foot__links a i {
  font-style: normal;
  opacity: 0;
  transform: translateX(-4px);
  color: #8c2020;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 0.85em;
}
.wo-foot__links a:hover {
  background: rgba(44, 24, 16, 0.05);
  color: #6b1818;
}
html[data-theme="dark"] .wo-foot__links a:hover {
  background: rgba(244, 237, 224, 0.06);
  color: #faf7f2;
}
.wo-foot__links a:hover i {
  opacity: 1;
  transform: none;
}

/* Network — soft destination tiles */
.wo-foot__dests {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.wo-foot__dest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: #2c1810;
  background: rgba(250, 247, 242, 0.72);
  border: 1px solid rgba(44, 24, 16, 0.08);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.04);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
html[data-theme="dark"] .wo-foot__dest {
  color: #f4ede0;
  background: rgba(28, 22, 19, 0.65);
  border-color: rgba(244, 237, 224, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.wo-foot__dest:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 32, 32, 0.28);
  box-shadow: 0 14px 32px rgba(44, 24, 16, 0.1);
}
html[data-theme="dark"] .wo-foot__dest:hover {
  border-color: rgba(180, 70, 62, 0.4);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.wo-foot__dest-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
}
.wo-foot__dest-go {
  flex: 0 0 auto;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8c2020;
}
html[data-theme="dark"] .wo-foot__dest-go { color: #c45a52; }

/* Legal bar */
.wo-foot__bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(44, 24, 16, 0.1);
}
html[data-theme="dark"] .wo-foot__bar {
  border-top-color: rgba(244, 237, 224, 0.1);
}
.wo-foot__legal,
.wo-foot__mark {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(44, 24, 16, 0.5);
}
html[data-theme="dark"] .wo-foot__legal,
html[data-theme="dark"] .wo-foot__mark {
  color: rgba(244, 237, 224, 0.48);
}
.wo-foot__mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* Soft buttons already defined; ensure contrast on parchment footer */
.wo-foot .wo-btn--soft {
  background: #ffffff;
  color: #6b1818 !important;
  border-color: rgba(44, 24, 16, 0.12);
}
.wo-foot .wo-btn--soft:hover {
  border-color: #8c2020;
  color: #8c2020 !important;
}
html[data-theme="dark"] .wo-foot .wo-btn--soft {
  background: rgba(244, 237, 224, 0.08);
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.18);
}

@media (max-width: 900px) {
  .wo-foot__inner {
    grid-template-columns: 1fr 1fr;
  }
  .wo-foot__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .wo-foot__inner {
    grid-template-columns: 1fr;
  }
  /* Sections list is redundant on mobile (header drawer + network tiles cover links) */
  .wo-foot__nav {
    display: none !important;
  }
  .wo-foot__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════════
   WO-FAQ — Estate FAQ Brief (parity with IL/UA/Inc shells)
   Cover · search · sticky chips · accordion groups · close
   ═══════════════════════════════════════════════════════════ */
.wo-faq {
  --wo-faq-ink: #2c1810;
  --wo-faq-cream: #f4ede0;
  --wo-faq-crimson: #8c2020;
  --wo-faq-deep: #6b1818;
  /* Alias estate button tokens so .wo-btn--solid is never washed out */
  --wo-ink: #2c1810;
  --wo-deep: #6b1818;
  --wo-crimson: #8c2020;
  --wo-muted: rgba(44, 24, 16, 0.58);
  color: var(--wo-faq-ink);
  background: #faf7f2;
  overflow: visible;
}
html[data-theme="dark"] .wo-faq {
  --wo-ink: #f4ede0;
  --wo-deep: #8c2020;
  --wo-crimson: #b4463e;
  --wo-muted: rgba(244, 237, 224, 0.6);
  color: var(--wo-faq-cream);
  background: #14100e;
}

.wo-faq-cover {
  position: relative;
  min-height: min(72vh, 36rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--fw-header-h, 4.75rem) + 2.5rem) 1.25rem 2.75rem;
  overflow: hidden;
  color: #f4ede0;
}
.wo-faq-cover__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wo-faq-cover__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-faq-cover__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  will-change: transform;
}
.wo-faq-cover__grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 70% 20%, rgba(180, 70, 62, 0.28), transparent 60%),
    linear-gradient(180deg, rgba(44, 24, 16, 0.35) 0%, rgba(44, 24, 16, 0.55) 45%, rgba(20, 14, 12, 0.92) 100%);
}
.wo-faq-cover__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 14, 12, 0.55) 0%, transparent 55%);
}
.wo-faq-cover__copy {
  position: relative;
  z-index: 2;
  width: min(44rem, 100%);
  margin: 0 auto 0 0;
  max-width: min(44rem, calc(100% - 0.5rem));
}
.wo-faq-cover__code {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.65);
}
.wo-faq-cover__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.88);
}
.wo-faq-cover__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.wo-faq-cover__title span { display: block; }
.wo-faq-cover__title-acc { color: rgba(244, 237, 224, 0.82); }
.wo-faq-cover__lead {
  margin: 1.1rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.9);
}
.wo-faq-cover__signal {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
}
.wo-faq-cover__signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b4463e;
  box-shadow: 0 0 10px rgba(180, 70, 62, 0.6);
}

/* Search */
.wo-faq-search {
  margin-top: 1.75rem;
  max-width: 28rem;
}
.wo-faq-search__field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.wo-faq-search__icon { color: rgba(244, 237, 224, 0.7); flex: 0 0 auto; display: flex; }
.wo-faq-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #f4ede0;
  font-size: 0.95rem;
  outline: none;
}
.wo-faq-search__input::placeholder { color: rgba(244, 237, 224, 0.5); }
.wo-faq-search__meta {
  margin: 0.55rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(244, 237, 224, 0.55);
}

/* Cover line boot */
.wo-faq--ready .wo-faq-cover [data-wo-faq-line] {
  opacity: 0;
  transform: translateY(0.7rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-faq--ready.is-booted .wo-faq-cover [data-wo-faq-line] {
  opacity: 1;
  transform: none;
}
.wo-faq--ready.is-booted .wo-faq-cover__copy > [data-wo-faq-line]:nth-child(1) { transition-delay: 0.05s; }
.wo-faq--ready.is-booted .wo-faq-cover__copy > [data-wo-faq-line]:nth-child(2) { transition-delay: 0.12s; }
.wo-faq--ready.is-booted .wo-faq-cover__title [data-wo-faq-line]:first-child { transition-delay: 0.2s; }
.wo-faq--ready.is-booted .wo-faq-cover__title [data-wo-faq-line]:last-child { transition-delay: 0.3s; }
.wo-faq--ready.is-booted .wo-faq-cover__copy > [data-wo-faq-line]:nth-child(4) { transition-delay: 0.4s; }
.wo-faq--ready.is-booted .wo-faq-cover__copy > [data-wo-faq-line]:nth-child(5) { transition-delay: 0.5s; }

/* Body board */
.wo-faq-body {
  width: min(52rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
}
.wo-faq__board { display: block; }
.wo-faq__chips {
  position: sticky;
  top: var(--fw-header-h, 4.75rem);
  z-index: 5;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 2rem;
  padding: 0.7rem 0 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  background: linear-gradient(180deg, #faf7f2 70%, rgba(250, 247, 242, 0));
  /* subtle edge fade so single-row scroll feels intentional */
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.5rem), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.5rem), transparent 100%);
}
html[data-theme="dark"] .wo-faq__chips {
  background: linear-gradient(180deg, #14100e 70%, rgba(20, 16, 14, 0));
}
.wo-faq__chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.15rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 24, 16, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: #2c1810;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
html[data-theme="dark"] .wo-faq__chip {
  background: rgba(28, 22, 19, 0.85);
  border-color: rgba(244, 237, 224, 0.12);
  color: #f4ede0;
}
.wo-faq__chip:hover,
.wo-faq__chip.is-active {
  border-color: rgba(140, 32, 32, 0.45);
  background: #6b1818;
  color: #f4ede0;
}
.wo-faq__chip-count {
  font-size: 0.62rem;
  opacity: 0.7;
  font-weight: 600;
}

.wo-faq__group {
  margin: 0 0 2.5rem;
  scroll-margin-top: calc(var(--fw-header-h, 4.75rem) + 4.5rem);
}
.wo-faq__group.is-pulse {
  animation: wo-faq-pulse 0.85s ease;
}
@keyframes wo-faq-pulse {
  0% { box-shadow: 0 0 0 0 rgba(140, 32, 32, 0); }
  40% { box-shadow: 0 0 0 6px rgba(140, 32, 32, 0.12); }
  100% { box-shadow: 0 0 0 0 rgba(140, 32, 32, 0); }
}
.wo-faq__group-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}
html[data-theme="dark"] .wo-faq__group-head {
  border-bottom-color: rgba(244, 237, 224, 0.1);
}
.wo-faq__group-n {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #8c2020;
}
.wo-faq__group-title {
  margin: 0;
  flex: 1 1 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}
.wo-faq__group-count {
  font-size: 0.65rem;
  color: rgba(44, 24, 16, 0.45);
}
html[data-theme="dark"] .wo-faq__group-count { color: rgba(244, 237, 224, 0.45); }

.wo-faq__list { display: flex; flex-direction: column; gap: 0.55rem; }
.wo-faq__item {
  border-radius: 1rem;
  border: 1px solid rgba(44, 24, 16, 0.08);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
html[data-theme="dark"] .wo-faq__item {
  background: rgba(28, 22, 19, 0.72);
  border-color: rgba(244, 237, 224, 0.1);
}
.wo-faq__item[open] {
  border-color: rgba(140, 32, 32, 0.28);
  box-shadow: 0 10px 28px rgba(44, 24, 16, 0.06);
}
.wo-faq__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
}
.wo-faq__summary::-webkit-details-marker { display: none; }
.wo-faq__q {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}
.wo-faq__toggle {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  border: 1px solid rgba(44, 24, 16, 0.15);
  position: relative;
}
html[data-theme="dark"] .wo-faq__toggle {
  border-color: rgba(244, 237, 224, 0.2);
}
.wo-faq__toggle::before,
.wo-faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #8c2020;
  transform: translate(-50%, -50%);
}
.wo-faq__toggle::before { width: 9px; height: 1px; }
.wo-faq__toggle::after { width: 1px; height: 9px; transition: transform 0.2s ease, opacity 0.2s ease; }
.wo-faq__item[open] .wo-faq__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.wo-faq__a {
  padding: 0 1.15rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(44, 24, 16, 0.72);
}
html[data-theme="dark"] .wo-faq__a { color: rgba(244, 237, 224, 0.72); }
.wo-faq__a p { margin: 0 0 0.75rem; }
.wo-faq__a p:last-child { margin-bottom: 0; }
.wo-faq__a a { color: #8c2020; }

.wo-faq-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(44, 24, 16, 0.5);
  font-size: 0.95rem;
}
html[data-theme="dark"] .wo-faq-empty { color: rgba(244, 237, 224, 0.5); }

/* Close band — CTA hierarchy + glass network tiles */
.wo-faq-close {
  margin: 2rem 0 0;
  padding: clamp(2.75rem, 6vw, 4.25rem) 1.25rem clamp(3.25rem, 7vw, 4.75rem);
  color: #2c1810;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(180, 70, 62, 0.08), transparent 62%),
    linear-gradient(180deg, #f4ede0 0%, #ede4d3 100%);
  border-top: 1px solid rgba(44, 24, 16, 0.07);
}
html[data-theme="dark"] .wo-faq-close {
  color: #f4ede0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(180, 70, 62, 0.14), transparent 62%),
    linear-gradient(180deg, #1c1613 0%, #14100e 100%);
  border-top-color: rgba(244, 237, 224, 0.08);
}
.wo-faq-close[data-wo-faq-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-faq-close[data-wo-faq-reveal].is-in {
  opacity: 1;
  transform: none;
}
.wo-faq-close__inner {
  width: min(52rem, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.75rem);
}
.wo-faq-close__head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
}
.wo-faq-close__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-faq-close__kicker { color: #c45a52; }
.wo-faq-close__title {
  margin: 0 auto;
  max-width: 18ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-faq-close__title { color: #f4ede0; }
.wo-faq-close__lead {
  margin: 0.9rem auto 0;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(44, 24, 16, 0.62);
}
html[data-theme="dark"] .wo-faq-close__lead { color: rgba(244, 237, 224, 0.65); }
.wo-faq-close__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.55rem;
}

/* Explicit parchment-safe CTAs (never rely on missing tokens) */
.wo-faq-close .wo-btn--solid {
  background: #6b1818;
  color: #f4ede0 !important;
  border-color: #6b1818;
  box-shadow: 0 10px 28px rgba(107, 24, 24, 0.22);
}
.wo-faq-close .wo-btn--solid:hover {
  background: #8c2020;
  border-color: #8c2020;
  color: #faf7f2 !important;
  box-shadow: 0 12px 32px rgba(140, 32, 32, 0.28);
}
.wo-faq-close .wo-btn--line {
  background: transparent;
  color: #2c1810 !important;
  border-color: rgba(44, 24, 16, 0.22);
}
.wo-faq-close .wo-btn--line:hover {
  color: #6b1818 !important;
  border-color: #8c2020;
  background: rgba(255, 255, 255, 0.45);
}
html[data-theme="dark"] .wo-faq-close .wo-btn--solid {
  background: #8c2020;
  border-color: #8c2020;
  color: #f4ede0 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
html[data-theme="dark"] .wo-faq-close .wo-btn--solid:hover {
  background: #b4463e;
  border-color: #b4463e;
}
html[data-theme="dark"] .wo-faq-close .wo-btn--line {
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.32);
  background: transparent;
}
html[data-theme="dark"] .wo-faq-close .wo-btn--line:hover {
  color: #faf7f2 !important;
  border-color: rgba(244, 237, 224, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* Network — glass destination tiles */
.wo-faq-close__net {
  margin: 0;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(44, 24, 16, 0.1);
}
html[data-theme="dark"] .wo-faq-close__net {
  border-top-color: rgba(244, 237, 224, 0.1);
}
.wo-faq-close__net-kicker {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 24, 16, 0.48);
}
html[data-theme="dark"] .wo-faq-close__net-kicker {
  color: rgba(244, 237, 224, 0.48);
}
.wo-faq-close__tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.wo-faq-close__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #2c1810;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 247, 242, 0.55) 100%);
  border: 1px solid rgba(44, 24, 16, 0.08);
  box-shadow:
    0 10px 28px rgba(44, 24, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
html[data-theme="dark"] .wo-faq-close__tile {
  color: #f4ede0;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(28, 22, 19, 0.55) 100%);
  border-color: rgba(244, 237, 224, 0.12);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.wo-faq-close__tile:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 32, 32, 0.3);
  box-shadow:
    0 16px 36px rgba(44, 24, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
html[data-theme="dark"] .wo-faq-close__tile:hover {
  border-color: rgba(180, 70, 62, 0.42);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.wo-faq-close__tile-meta {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c2020;
  line-height: 1.3;
}
html[data-theme="dark"] .wo-faq-close__tile-meta { color: #c45a52; }
.wo-faq-close__tile-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.wo-faq-close__tile-go {
  margin-top: auto;
  padding-top: 0.55rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44, 24, 16, 0.45);
  transition: color 0.2s ease;
}
html[data-theme="dark"] .wo-faq-close__tile-go {
  color: rgba(244, 237, 224, 0.45);
}
.wo-faq-close__tile:hover .wo-faq-close__tile-go {
  color: #8c2020;
}
html[data-theme="dark"] .wo-faq-close__tile:hover .wo-faq-close__tile-go {
  color: #c45a52;
}

@media (max-width: 900px) {
  .wo-faq-close__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .wo-faq-cover {
    min-height: min(68vh, 32rem);
    padding-bottom: 2.25rem;
  }
  .wo-faq-cover__signal { display: none; }
  .wo-faq-body { width: min(52rem, calc(100% - 1.5rem)); }
  .wo-faq__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.85rem;
  }
  .wo-faq__chip { flex: 0 0 auto; }
  .wo-faq-close__actions {
    flex-direction: column;
    width: 100%;
  }
  .wo-faq-close__actions .wo-btn {
    width: 100%;
    max-width: 22rem;
  }
  .wo-faq-close__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wo-faq-close__tile-name { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════
   WO-CONTACT — Private Desk (exclusive World HQ contact)
   Cover · creed · lanes · protocol + form chamber · exit
   ═══════════════════════════════════════════════════════════ */
.wo-contact {
  --wo-ink: #2c1810;
  --wo-deep: #6b1818;
  --wo-crimson: #8c2020;
  --wo-muted: rgba(44, 24, 16, 0.58);
  --wo-paper: #f4ede0;
  --wo-white: #faf7f2;
  --wo-ease: cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--wo-ink);
  background: var(--wo-white);
  overflow: visible;
}
html[data-theme="dark"] .wo-contact {
  --wo-ink: #f4ede0;
  --wo-deep: #8c2020;
  --wo-crimson: #b4463e;
  --wo-muted: rgba(244, 237, 224, 0.6);
  --wo-paper: #1c1613;
  --wo-white: #14100e;
  color: var(--wo-ink);
  background: var(--wo-white);
}

/* Cover */
.wo-contact-cover {
  position: relative;
  min-height: min(72vh, 36rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--fw-header-h, 4.75rem) + 2.5rem) 1.25rem 2.75rem;
  overflow: hidden;
  color: #f4ede0;
}
.wo-contact-cover__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wo-contact-cover__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-contact-cover__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
  will-change: transform;
}
.wo-contact-cover__grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 18%, rgba(180, 70, 62, 0.26), transparent 60%),
    linear-gradient(180deg, rgba(44, 24, 16, 0.32) 0%, rgba(44, 24, 16, 0.55) 45%, rgba(20, 14, 12, 0.92) 100%);
}
.wo-contact-cover__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 14, 12, 0.55) 0%, transparent 55%);
}
.wo-contact-cover__copy {
  position: relative;
  z-index: 2;
  width: min(44rem, 100%);
}
.wo-contact-cover__code {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.65);
}
.wo-contact-cover__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.88);
}
.wo-contact-cover__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.wo-contact-cover__title span { display: block; }
.wo-contact-cover__title-acc {
  color: rgba(244, 237, 224, 0.78);
  font-style: italic;
}
.wo-contact-cover__lead {
  margin: 1.1rem 0 0;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.78);
}
.wo-contact-cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
/* Cover CTAs on dark photo */
.wo-contact-cover .wo-btn--solid {
  background: #f4ede0;
  color: #6b1818 !important;
  border-color: #f4ede0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.wo-contact-cover .wo-btn--solid:hover {
  background: #faf7f2;
  border-color: #faf7f2;
  color: #8c2020 !important;
}
.wo-contact-cover .wo-btn--line {
  background: transparent;
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.4);
}
.wo-contact-cover .wo-btn--line:hover {
  border-color: #f4ede0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}
.wo-contact-cover__signal {
  position: absolute;
  right: 1.25rem;
  bottom: 1.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.7);
}
.wo-contact-cover__signal-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #b4463e;
  box-shadow: 0 0 0 3px rgba(180, 70, 62, 0.25);
}

/* Cover line boot */
.wo-contact [data-wo-contact-line] {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.75s var(--wo-ease), transform 0.75s var(--wo-ease);
}
.wo-contact.is-booted [data-wo-contact-line],
.wo-contact--reduced [data-wo-contact-line] {
  opacity: 1;
  transform: none;
}
.wo-contact.is-booted [data-wo-contact-line]:nth-child(1) { transition-delay: 0.05s; }
.wo-contact.is-booted [data-wo-contact-line]:nth-child(2) { transition-delay: 0.12s; }
.wo-contact.is-booted [data-wo-contact-line]:nth-child(3) { transition-delay: 0.2s; }
.wo-contact.is-booted [data-wo-contact-line]:nth-child(4) { transition-delay: 0.28s; }
.wo-contact.is-booted [data-wo-contact-line]:nth-child(5) { transition-delay: 0.36s; }

/* Creed */
.wo-contact-creed {
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem;
  background: linear-gradient(180deg, #ede4d3 0%, #f4ede0 100%);
  border-bottom: 1px solid rgba(44, 24, 16, 0.07);
}
html[data-theme="dark"] .wo-contact-creed {
  background: linear-gradient(180deg, #1c1613 0%, #181410 100%);
  border-bottom-color: rgba(244, 237, 224, 0.08);
}
.wo-contact-creed__quote {
  margin: 0 auto;
  max-width: 38rem;
  text-align: center;
}
.wo-contact-creed__quote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-contact-creed__quote p { color: #f4ede0; }
.wo-contact-creed__quote footer {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-contact-creed__quote footer { color: #c45a52; }

/* Audience lanes */
.wo-contact-lanes {
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem;
  background: #faf7f2;
}
html[data-theme="dark"] .wo-contact-lanes { background: #14100e; }
.wo-contact-lanes__head {
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 28rem;
}
.wo-contact-lanes__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-contact-lanes__kicker { color: #c45a52; }
.wo-contact-lanes__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  line-height: 1.15;
  color: #2c1810;
}
html[data-theme="dark"] .wo-contact-lanes__head h2 { color: #f4ede0; }
.wo-contact-lanes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(52rem, 100%);
  margin: 0 auto;
}
.wo-contact-lane {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(44, 24, 16, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 247, 242, 0.6) 100%);
  box-shadow:
    0 8px 24px rgba(44, 24, 16, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #2c1810;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s var(--wo-ease), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
html[data-theme="dark"] .wo-contact-lane {
  color: #f4ede0;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(28, 22, 19, 0.55) 100%);
  border-color: rgba(244, 237, 224, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.wo-contact-lane:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 32, 32, 0.3);
}
.wo-contact-lane.is-active {
  background: #6b1818;
  border-color: #6b1818;
  color: #f4ede0;
  box-shadow: 0 12px 32px rgba(107, 24, 24, 0.22);
}
html[data-theme="dark"] .wo-contact-lane.is-active {
  background: #8c2020;
  border-color: #8c2020;
}
.wo-contact-lane__n {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0.35;
  letter-spacing: -0.02em;
}
.wo-contact-lane.is-active .wo-contact-lane__n { opacity: 0.55; color: #f4ede0; }
.wo-contact-lane__l {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* Chamber — protocol + form */
.wo-contact-chamber {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: stretch;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
html[data-theme="dark"] .wo-contact-chamber {
  border-top-color: rgba(244, 237, 224, 0.08);
  border-bottom-color: rgba(244, 237, 224, 0.08);
}
.wo-contact-chamber__protocol {
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.35rem, 4vw, 2.75rem);
  background: linear-gradient(165deg, #ede4d3 0%, #f4ede0 72%);
  border-right: 1px solid rgba(44, 24, 16, 0.08);
}
html[data-theme="dark"] .wo-contact-chamber__protocol {
  background: linear-gradient(165deg, #1c1613 0%, #181410 72%);
  border-right-color: rgba(244, 237, 224, 0.08);
}
.wo-contact-chamber__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c2020;
}
html[data-theme="dark"] .wo-contact-chamber__kicker { color: #c45a52; }
.wo-contact-chamber__protocol h2 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-contact-chamber__protocol h2 { color: #f4ede0; }
.wo-contact-chamber__lead {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(44, 24, 16, 0.62);
}
html[data-theme="dark"] .wo-contact-chamber__lead { color: rgba(244, 237, 224, 0.62); }

.wo-contact-steps {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  border-top: 1px solid rgba(44, 24, 16, 0.1);
}
html[data-theme="dark"] .wo-contact-steps { border-top-color: rgba(244, 237, 224, 0.1); }
.wo-contact-steps li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
html[data-theme="dark"] .wo-contact-steps li { border-bottom-color: rgba(244, 237, 224, 0.08); }
.wo-contact-steps__n {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #8c2020;
  letter-spacing: -0.02em;
}
html[data-theme="dark"] .wo-contact-steps__n { color: #c45a52; }
.wo-contact-steps strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-contact-steps strong { color: #f4ede0; }
.wo-contact-steps p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(44, 24, 16, 0.6);
}
html[data-theme="dark"] .wo-contact-steps p { color: rgba(244, 237, 224, 0.6); }

.wo-contact-chamber__notes {
  padding-top: 0.35rem;
  border-top: 1px dashed rgba(44, 24, 16, 0.12);
}
html[data-theme="dark"] .wo-contact-chamber__notes {
  border-top-color: rgba(244, 237, 224, 0.12);
}
.wo-contact-chamber__nda {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 600;
  color: #2c1810;
}
html[data-theme="dark"] .wo-contact-chamber__nda { color: #f4ede0; }
.wo-contact-chamber__decline {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(44, 24, 16, 0.52);
}
html[data-theme="dark"] .wo-contact-chamber__decline { color: rgba(244, 237, 224, 0.52); }

/* Form panel — glass desk */
.wo-contact-chamber__form {
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.35rem, 4vw, 2.75rem);
  background: #faf7f2;
}
html[data-theme="dark"] .wo-contact-chamber__form { background: #14100e; }
.wo-contact-form__head { margin-bottom: 1.5rem; }
.wo-contact-form__meta {
  margin: 0 0 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c2020;
}
html[data-theme="dark"] .wo-contact-form__meta { color: #c45a52; }
.wo-contact-form__head h2 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-contact-form__head h2 { color: #f4ede0; }
.wo-contact-form__sub {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(44, 24, 16, 0.58);
}
html[data-theme="dark"] .wo-contact-form__sub { color: rgba(244, 237, 224, 0.58); }

.wo-contact-form__flash {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  border-radius: 0.75rem;
  border: 1px solid transparent;
}
.wo-contact-form__flash--ok {
  background: rgba(45, 106, 79, 0.1);
  border-color: rgba(45, 106, 79, 0.28);
  color: #2c1810;
}
.wo-contact-form__flash--err {
  background: rgba(140, 32, 32, 0.08);
  border-color: rgba(140, 32, 32, 0.28);
  color: #2c1810;
}
html[data-theme="dark"] .wo-contact-form__flash--ok,
html[data-theme="dark"] .wo-contact-form__flash--err { color: #f4ede0; }

.wo-contact-form { position: relative; }
.wo-contact-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.wo-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.wo-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44, 24, 16, 0.55);
}
html[data-theme="dark"] .wo-contact-field { color: rgba(244, 237, 224, 0.55); }
.wo-contact-field--full { grid-column: 1 / -1; }
.wo-contact-field input,
.wo-contact-field select,
.wo-contact-field textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(44, 24, 16, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: #2c1810;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
html[data-theme="dark"] .wo-contact-field input,
html[data-theme="dark"] .wo-contact-field select,
html[data-theme="dark"] .wo-contact-field textarea {
  background: rgba(28, 22, 19, 0.72);
  border-color: rgba(244, 237, 224, 0.14);
  color: #f4ede0;
}
.wo-contact-field input:focus,
.wo-contact-field select:focus,
.wo-contact-field textarea:focus {
  outline: none;
  border-color: rgba(140, 32, 32, 0.45);
  box-shadow: 0 0 0 3px rgba(140, 32, 32, 0.12);
}
.wo-contact-field textarea {
  min-height: 9rem;
  resize: vertical;
}
.wo-contact-field select {
  background-image: linear-gradient(45deg, transparent 50%, #8c2020 50%),
    linear-gradient(135deg, #8c2020 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) calc(50% - 0.15rem), calc(100% - 0.85rem) calc(50% - 0.15rem);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}
html[data-theme="dark"] .wo-contact-field select {
  background-image: linear-gradient(45deg, transparent 50%, #c45a52 50%),
    linear-gradient(135deg, #c45a52 50%, transparent 50%);
}

.wo-contact-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.45;
  color: rgba(44, 24, 16, 0.72);
  cursor: pointer;
}
html[data-theme="dark"] .wo-contact-check { color: rgba(244, 237, 224, 0.72); }
.wo-contact-check input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: #6b1818;
}

.wo-contact-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}
.wo-contact-form__foot .wo-btn--solid {
  background: #6b1818;
  color: #f4ede0 !important;
  border-color: #6b1818;
  box-shadow: 0 10px 28px rgba(107, 24, 24, 0.22);
  min-width: 10rem;
}
.wo-contact-form__foot .wo-btn--solid:hover {
  background: #8c2020;
  border-color: #8c2020;
}
.wo-contact-form__foot .wo-btn--solid:disabled {
  opacity: 0.65;
  cursor: wait;
}
html[data-theme="dark"] .wo-contact-form__foot .wo-btn--solid {
  background: #8c2020;
  border-color: #8c2020;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.wo-contact-form__note {
  margin: 0;
  flex: 1 1 12rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(44, 24, 16, 0.5);
}
html[data-theme="dark"] .wo-contact-form__note { color: rgba(244, 237, 224, 0.5); }

.wo-contact-form__status {
  margin: 1rem 0 0;
  padding: 0.75rem 0.95rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 600;
}
.wo-contact-form__status[hidden] { display: none !important; }
.wo-contact-form__status.is-ok {
  background: rgba(45, 106, 79, 0.1);
  border: 1px solid rgba(45, 106, 79, 0.28);
  color: #1b4332;
}
.wo-contact-form__status.is-err {
  background: rgba(140, 32, 32, 0.08);
  border: 1px solid rgba(140, 32, 32, 0.28);
  color: #6b1818;
}
html[data-theme="dark"] .wo-contact-form__status.is-ok {
  background: rgba(45, 106, 79, 0.22);
  border-color: rgba(82, 183, 136, 0.4);
  color: #b7e4c7;
}
html[data-theme="dark"] .wo-contact-form__status.is-err {
  background: rgba(140, 32, 32, 0.18);
  border-color: rgba(224, 112, 104, 0.4);
  color: #e07068;
}

/* Exit */
.wo-contact-exit {
  padding: clamp(3rem, 6vw, 4.25rem) 1.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(180, 70, 62, 0.07), transparent 62%),
    linear-gradient(180deg, #f4ede0 0%, #ede4d3 100%);
  border-top: 1px solid rgba(44, 24, 16, 0.06);
}
html[data-theme="dark"] .wo-contact-exit {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(180, 70, 62, 0.12), transparent 62%),
    linear-gradient(180deg, #1c1613 0%, #14100e 100%);
  border-top-color: rgba(244, 237, 224, 0.08);
}
.wo-contact-exit__inner {
  width: min(48rem, 100%);
  margin: 0 auto;
  text-align: center;
}
.wo-contact-exit__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-contact-exit__kicker { color: #c45a52; }
.wo-contact-exit__title {
  margin: 0 auto;
  max-width: 18ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.12;
  color: #2c1810;
}
html[data-theme="dark"] .wo-contact-exit__title { color: #f4ede0; }
.wo-contact-exit__lead {
  margin: 0.85rem auto 0;
  max-width: 30rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(44, 24, 16, 0.6);
}
html[data-theme="dark"] .wo-contact-exit__lead { color: rgba(244, 237, 224, 0.6); }
.wo-contact-exit__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.75rem;
  text-align: left;
}
.wo-contact-exit__nav a {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #2c1810;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 247, 242, 0.55) 100%);
  border: 1px solid rgba(44, 24, 16, 0.08);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.04);
  transition: transform 0.3s var(--wo-ease), border-color 0.25s ease, box-shadow 0.25s ease;
}
html[data-theme="dark"] .wo-contact-exit__nav a {
  color: #f4ede0;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(28, 22, 19, 0.55) 100%);
  border-color: rgba(244, 237, 224, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.wo-contact-exit__nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 32, 32, 0.3);
}
.wo-contact-exit__n {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #8c2020;
}
html[data-theme="dark"] .wo-contact-exit__n { color: #c45a52; }
.wo-contact-exit__l {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

/* Reveals */
.wo-contact [data-wo-contact-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s var(--wo-ease), transform 0.8s var(--wo-ease);
}
.wo-contact [data-wo-contact-reveal].is-in,
.wo-contact--reduced [data-wo-contact-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .wo-contact-lanes__grid,
  .wo-contact-exit__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wo-contact-chamber {
    grid-template-columns: 1fr;
  }
  .wo-contact-chamber__protocol {
    border-right: none;
    border-bottom: 1px solid rgba(44, 24, 16, 0.08);
  }
  html[data-theme="dark"] .wo-contact-chamber__protocol {
    border-bottom-color: rgba(244, 237, 224, 0.08);
  }
}
@media (max-width: 720px) {
  .wo-contact-cover {
    min-height: min(68vh, 32rem);
    padding-bottom: 2.25rem;
  }
  .wo-contact-cover__signal { display: none; }
  .wo-contact-cover__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wo-contact-cover__actions .wo-btn {
    width: 100%;
    max-width: 22rem;
  }
  .wo-contact-form__grid {
    grid-template-columns: 1fr;
  }
  .wo-contact-form__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .wo-contact-form__foot .wo-btn--solid {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   WO-FOLIO — Gazette (UNIQUE World journal shell)
   Mast · tools · lead plate · spine list · article · related
   ═══════════════════════════════════════════════════════════ */
.wo-folio {
  --wo-ink: #2c1810;
  --wo-deep: #6b1818;
  --wo-crimson: #8c2020;
  --wo-muted: rgba(44, 24, 16, 0.58);
  --wo-paper: #f4ede0;
  --wo-white: #faf7f2;
  --wo-ease: cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--wo-ink);
  background: var(--wo-white);
  overflow: visible;
}
html[data-theme="dark"] .wo-folio {
  --wo-ink: #f4ede0;
  --wo-deep: #8c2020;
  --wo-crimson: #b4463e;
  --wo-muted: rgba(244, 237, 224, 0.6);
  --wo-paper: #1c1613;
  --wo-white: #14100e;
  color: var(--wo-ink);
  background: var(--wo-white);
}

/* Mast — parchment gazette, not full-bleed photo */
.wo-folio-mast {
  position: relative;
  padding: calc(var(--fw-header-h, 4.75rem) + 2.25rem) 1.25rem 2.5rem;
  background: linear-gradient(165deg, #ede4d3 0%, #f4ede0 55%, #faf7f2 100%);
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
  overflow: hidden;
}
html[data-theme="dark"] .wo-folio-mast {
  background: linear-gradient(165deg, #1c1613 0%, #181410 55%, #14100e 100%);
  border-bottom-color: rgba(244, 237, 224, 0.08);
}
.wo-folio-mast__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(180, 70, 62, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(107, 24, 24, 0.06), transparent 50%);
}
.wo-folio-mast__inner {
  position: relative;
  z-index: 1;
  width: min(68rem, 100%);
  margin: 0 auto;
}
.wo-folio-mast__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}
.wo-folio-mast__code {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.5);
}
html[data-theme="dark"] .wo-folio-mast__code { color: rgba(244, 237, 224, 0.5); }
.wo-folio-mast__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-mast__live { color: #c45a52; }
.wo-folio-mast__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #b4463e;
  box-shadow: 0 0 0 3px rgba(180, 70, 62, 0.22);
}
.wo-folio-mast__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.wo-folio-mast__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-mast__kicker { color: #c45a52; }
.wo-folio-mast__kicker a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.wo-folio-mast__kicker a:hover { border-bottom-color: rgba(140, 32, 32, 0.4); }
.wo-folio-mast__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-folio-mast__title { color: #f4ede0; }
.wo-folio-mast__title span { display: block; }
.wo-folio-mast__title-acc {
  font-style: italic;
  color: rgba(44, 24, 16, 0.72);
}
html[data-theme="dark"] .wo-folio-mast__title-acc { color: rgba(244, 237, 224, 0.72); }
.wo-folio-mast__lead {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(44, 24, 16, 0.62);
  max-width: 28rem;
}
html[data-theme="dark"] .wo-folio-mast__lead { color: rgba(244, 237, 224, 0.62); }
.wo-folio-mast__lead--solo { max-width: 40rem; margin-top: 0.85rem; }
.wo-folio-mast__count {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.45);
}
html[data-theme="dark"] .wo-folio-mast__count { color: rgba(244, 237, 224, 0.45); }
.wo-folio-mast__count span:first-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: #8c2020;
  margin-right: 0.35rem;
}
html[data-theme="dark"] .wo-folio-mast__count span:first-child { color: #c45a52; }

.wo-folio [data-wo-folio-line] {
  opacity: 0;
  transform: translateY(0.7rem);
  transition: opacity 0.75s var(--wo-ease), transform 0.75s var(--wo-ease);
}
.wo-folio.is-booted [data-wo-folio-line] {
  opacity: 1;
  transform: none;
}

/* Tools */
.wo-folio-tools {
  position: sticky;
  top: var(--fw-header-h, 4.75rem);
  z-index: 6;
  padding: 0.85rem 1.25rem 0.95rem;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
html[data-theme="dark"] .wo-folio-tools {
  background: rgba(20, 16, 14, 0.92);
  border-bottom-color: rgba(244, 237, 224, 0.08);
}
.wo-folio-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(68rem, 100%);
  margin: 0 auto 0.85rem;
  padding: 0.35rem 0.45rem 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 24, 16, 0.12);
  background: rgba(255, 255, 255, 0.75);
}
html[data-theme="dark"] .wo-folio-search {
  background: rgba(28, 22, 19, 0.75);
  border-color: rgba(244, 237, 224, 0.12);
}
.wo-folio-search__icon { color: #8c2020; display: flex; }
.wo-folio-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: #2c1810;
  padding: 0.55rem 0.35rem;
  outline: none;
}
html[data-theme="dark"] .wo-folio-search__input { color: #f4ede0; }
.wo-folio-search__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #6b1818;
  color: #f4ede0;
  cursor: pointer;
}
html[data-theme="dark"] .wo-folio-search__btn { background: #8c2020; }

.wo-folio-filters {
  width: min(68rem, 100%);
  margin: 0 auto;
}
.wo-folio-filters__label {
  margin: 0 0 0.45rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.45);
}
html[data-theme="dark"] .wo-folio-filters__label { color: rgba(244, 237, 224, 0.45); }
.wo-folio-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.35rem;
}
.wo-folio-chip {
  appearance: none;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 24, 16, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: #2c1810;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
html[data-theme="dark"] .wo-folio-chip {
  background: rgba(28, 22, 19, 0.8);
  border-color: rgba(244, 237, 224, 0.12);
  color: #f4ede0;
}
.wo-folio-chip:hover,
.wo-folio-chip.is-active {
  background: #6b1818;
  border-color: #6b1818;
  color: #f4ede0;
}
html[data-theme="dark"] .wo-folio-chip:hover,
html[data-theme="dark"] .wo-folio-chip.is-active {
  background: #8c2020;
  border-color: #8c2020;
}
.wo-folio-chip__n { opacity: 0.65; font-size: 0.6rem; }
.wo-folio-filters__archives {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.55rem;
}
.wo-folio-archive-link {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.48);
}
html[data-theme="dark"] .wo-folio-archive-link { color: rgba(244, 237, 224, 0.48); }
.wo-folio-archive-link:hover { color: #8c2020; }
.wo-folio-filters__status {
  margin: 0.45rem 0 0;
  min-height: 1.1em;
  font-size: 0.75rem;
  color: rgba(44, 24, 16, 0.45);
}
html[data-theme="dark"] .wo-folio-filters__status { color: rgba(244, 237, 224, 0.45); }

/* Feed */
.wo-folio-feed {
  padding: clamp(1.5rem, 3vw, 2.25rem) 1.25rem 3rem;
  overflow-x: clip;
}
.wo-folio-stream {
  width: min(68rem, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
  max-width: 100%;
}
.wo-folio-item {
  min-width: 0;
  max-width: 100%;
  opacity: 0;
  transform: translateY(0.85rem);
  transition: opacity 0.7s var(--wo-ease), transform 0.7s var(--wo-ease);
}
.wo-folio-item.is-in { opacity: 1; transform: none; }
.wo-folio-item.is-filtered-out { display: none !important; }

/* Lead — cinematic plate */
.wo-folio-lead {
  display: block;
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  text-decoration: none;
  color: #f4ede0;
  min-height: min(58vh, 28rem);
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.12);
}
.wo-folio-lead__media {
  position: absolute;
  inset: 0;
}
.wo-folio-lead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--wo-ease);
}
.wo-folio-lead:hover .wo-folio-lead__media img { transform: scale(1.04); }
.wo-folio-lead__empty {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #6b1818, #2c1810);
}
.wo-folio-lead__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.2) 0%, rgba(12, 10, 8, 0.62) 42%, rgba(12, 10, 8, 0.94) 100%);
}
.wo-folio-lead__plate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 40rem;
}
.wo-folio-lead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 237, 224, 0.7);
}
.wo-folio-lead__cat { color: #e8c4a8; }
/* Beat .theme-world a { crimson } — cream on dark photo, always readable */
.theme-world a.wo-folio-lead,
.theme-world a.wo-folio-lead:hover,
html[data-theme="dark"] .theme-world a.wo-folio-lead,
html[data-theme="dark"] .theme-world a.wo-folio-lead:hover {
  color: #faf7f2 !important;
  text-decoration: none !important;
}
.wo-folio-lead__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #faf7f2 !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.wo-folio-lead__excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.88) !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.wo-folio-lead__go {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #faf7f2 !important;
}
.wo-folio-lead__meta {
  color: rgba(250, 247, 242, 0.78) !important;
}
.wo-folio-lead__meta time {
  color: rgba(250, 247, 242, 0.78) !important;
}

/* Spine rows — flex (never grid-overlap media with body) */
.wo-folio-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem 1.15rem;
  padding: 1rem;
  border-radius: 1.15rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 247, 242, 0.5) 100%);
  border: 1px solid rgba(44, 24, 16, 0.08);
  box-shadow: 0 10px 28px rgba(44, 24, 16, 0.04);
  transition: transform 0.35s var(--wo-ease), border-color 0.25s ease, box-shadow 0.25s ease;
}
html[data-theme="dark"] .wo-folio-row {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(28, 22, 19, 0.55) 100%);
  border-color: rgba(244, 237, 224, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.wo-folio-row:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 32, 32, 0.28);
  box-shadow: 0 16px 36px rgba(44, 24, 16, 0.08);
}
.wo-folio-row__spine {
  flex: 0 0 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.15rem 0.75rem 0.15rem 0;
  border-right: 1px solid rgba(44, 24, 16, 0.1);
  min-width: 0;
}
html[data-theme="dark"] .wo-folio-row__spine { border-right-color: rgba(244, 237, 224, 0.1); }
.wo-folio-row__n {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #8c2020;
  letter-spacing: -0.02em;
}
html[data-theme="dark"] .wo-folio-row__n { color: #c45a52; }
.wo-folio-row__spine time {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.45);
}
html[data-theme="dark"] .wo-folio-row__spine time { color: rgba(244, 237, 224, 0.45); }
.wo-folio-row__media {
  flex: 0 0 11rem;
  width: 11rem;
  max-width: 11rem;
  display: block;
  position: relative;
  z-index: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  height: auto;
  align-self: center;
  background: rgba(44, 24, 16, 0.06);
}
.wo-folio-row__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--wo-ease);
}
.wo-folio-row:hover .wo-folio-row__media img { transform: scale(1.05); }
.wo-folio-row__media-empty {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 6rem;
  background: linear-gradient(145deg, rgba(140, 32, 32, 0.2), rgba(44, 24, 16, 0.15));
}
.wo-folio-row__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0; /* critical: allow shrink so text never invades media */
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 0.15rem 0;
}
.wo-folio-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.48);
}
html[data-theme="dark"] .wo-folio-row__meta { color: rgba(244, 237, 224, 0.48); }
.wo-folio-row__cat {
  color: #8c2020;
  text-decoration: none;
}
html[data-theme="dark"] .wo-folio-row__cat { color: #c45a52; }
.wo-folio-row__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.wo-folio-row__title a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.wo-folio-row__title a:hover { color: #8c2020; }
html[data-theme="dark"] .wo-folio-row__title a:hover { color: #c45a52; }
.wo-folio-row__excerpt {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(44, 24, 16, 0.6);
  min-width: 0;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}
html[data-theme="dark"] .wo-folio-row__excerpt { color: rgba(244, 237, 224, 0.6); }
.wo-folio-row__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #8c2020;
  padding-top: 0.35rem;
}
html[data-theme="dark"] .wo-folio-row__more { color: #c45a52; }

.wo-folio-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: rgba(44, 24, 16, 0.5);
  font-size: 0.95rem;
}
html[data-theme="dark"] .wo-folio-empty { color: rgba(244, 237, 224, 0.5); }

/* Close */
.wo-folio-close {
  padding: clamp(2.75rem, 5vw, 3.75rem) 1.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(180, 70, 62, 0.07), transparent 62%),
    linear-gradient(180deg, #f4ede0 0%, #ede4d3 100%);
  border-top: 1px solid rgba(44, 24, 16, 0.07);
  text-align: center;
}
html[data-theme="dark"] .wo-folio-close {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(180, 70, 62, 0.12), transparent 62%),
    linear-gradient(180deg, #1c1613 0%, #14100e 100%);
  border-top-color: rgba(244, 237, 224, 0.08);
}
.wo-folio-close__inner { width: min(36rem, 100%); margin: 0 auto; }
.wo-folio-close__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-close__kicker { color: #c45a52; }
.wo-folio-close__line {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: #2c1810;
}
html[data-theme="dark"] .wo-folio-close__line { color: #f4ede0; }
.wo-folio-close__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
}
.wo-folio-close .wo-btn--solid {
  background: #6b1818;
  color: #f4ede0 !important;
  border-color: #6b1818;
}
.wo-folio-close .wo-btn--line {
  color: #2c1810 !important;
  border-color: rgba(44, 24, 16, 0.22);
  background: transparent;
}
html[data-theme="dark"] .wo-folio-close .wo-btn--solid {
  background: #8c2020;
  border-color: #8c2020;
}
html[data-theme="dark"] .wo-folio-close .wo-btn--line {
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.32);
}

.wo-folio [data-wo-folio-reveal] {
  opacity: 0;
  transform: translateY(0.85rem);
  transition: opacity 0.75s var(--wo-ease), transform 0.75s var(--wo-ease);
}
.wo-folio [data-wo-folio-reveal].is-in { opacity: 1; transform: none; }

/* ── Article ── */
.wo-folio-article {
  --wo-ink: #2c1810;
  --wo-deep: #6b1818;
  --wo-crimson: #8c2020;
  color: var(--wo-ink);
  background: #faf7f2;
}
html[data-theme="dark"] .wo-folio-article {
  --wo-ink: #f4ede0;
  --wo-deep: #8c2020;
  --wo-crimson: #b4463e;
  color: var(--wo-ink);
  background: #14100e;
}
/* Parchment mast — portrait lives in the rail, not as washed full-bleed */
.wo-folio-article__hero {
  position: relative;
  padding: calc(var(--fw-header-h, 4.75rem) + 2.25rem) 1.25rem 2.25rem;
  background: linear-gradient(165deg, #ede4d3 0%, #f4ede0 55%, #faf7f2 100%);
  color: #2c1810;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
html[data-theme="dark"] .wo-folio-article__hero {
  background: linear-gradient(165deg, #1c1613 0%, #181410 55%, #14100e 100%);
  color: #f4ede0;
  border-bottom-color: rgba(244, 237, 224, 0.08);
}
.wo-folio-article__hero-inner {
  position: relative;
  z-index: 1;
  width: min(52rem, 100%);
  margin: 0 auto;
}
.wo-folio-article__kicker {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.55);
}
html[data-theme="dark"] .wo-folio-article__kicker { color: rgba(244, 237, 224, 0.65); }
.wo-folio-article__kicker a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.wo-folio-article__kicker a:hover {
  color: #8c2020;
  border-bottom-color: rgba(140, 32, 32, 0.4);
}
html[data-theme="dark"] .wo-folio-article__kicker a:hover { color: #c45a52; }
.wo-folio-article__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
}
.wo-folio-article__meta {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.5);
}
html[data-theme="dark"] .wo-folio-article__meta { color: rgba(244, 237, 224, 0.55); }
.wo-folio-article__deck {
  margin: 1.15rem 0 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(44, 24, 16, 0.68);
}
html[data-theme="dark"] .wo-folio-article__deck { color: rgba(244, 237, 224, 0.72); }

/* Two-column: left sidebar (meta · portrait · TOC) + body */
.wo-folio-article__layout {
  display: grid;
  grid-template-columns: minmax(15rem, 17.5rem) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  width: min(68rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 2.5rem;
  align-items: start;
  isolation: isolate;
}
.wo-folio-article__rail {
  position: sticky;
  top: calc(var(--fw-header-h, 4.75rem) + 0.85rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
  max-width: 100%;
  max-height: calc(100dvh - var(--fw-header-h, 4.75rem) - 1.5rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  z-index: 1; /* stay in own column — never paint over body */
  align-self: start;
}
.wo-folio-article__main {
  position: relative;
  z-index: 0;
  min-width: 0;
  max-width: 42rem;
}
.wo-folio-article__rail-card {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 247, 242, 0.7) 100%);
  border: 1px solid rgba(44, 24, 16, 0.1);
  box-shadow: 0 10px 28px rgba(44, 24, 16, 0.05);
}
html[data-theme="dark"] .wo-folio-article__rail-card {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(28, 22, 19, 0.65) 100%);
  border-color: rgba(244, 237, 224, 0.12);
}
.wo-folio-article__rail-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-article__rail-kicker { color: #c45a52; }
.wo-folio-article__rail-link,
.wo-folio-article__rail-cat {
  display: block;
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
  color: #2c1810;
  margin-bottom: 0.35rem;
}
html[data-theme="dark"] .wo-folio-article__rail-link,
html[data-theme="dark"] .wo-folio-article__rail-cat { color: #f4ede0; }
.wo-folio-article__rail-link:hover,
.wo-folio-article__rail-cat:hover {
  color: #8c2020;
  text-decoration: underline;
}
.wo-folio-article__rail-date {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.45);
}
html[data-theme="dark"] .wo-folio-article__rail-date { color: rgba(244, 237, 224, 0.45); }

/* Portrait plate — proper image incorporation */
.wo-folio-article__portrait {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(44, 24, 16, 0.1);
  box-shadow: 0 14px 36px rgba(44, 24, 16, 0.1);
  background: rgba(44, 24, 16, 0.06);
  aspect-ratio: 4 / 5;
}
html[data-theme="dark"] .wo-folio-article__portrait {
  border-color: rgba(244, 237, 224, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.wo-folio-article__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Sidebar outline — clipped to rail column */
.wo-folio-article__toc {
  position: relative;
  z-index: 0;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0.85rem 0.9rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(44, 24, 16, 0.1);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
html[data-theme="dark"] .wo-folio-article__toc {
  background: rgba(28, 22, 19, 0.72);
  border-color: rgba(244, 237, 224, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.wo-folio-article__toc-label {
  margin: 0 0 0.45rem;
  flex: 0 0 auto;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-article__toc-label { color: #c45a52; }
.wo-folio-article__toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-height: 0;
  flex: 1 1 auto;
  max-height: min(42vh, 18rem);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}
.wo-folio-article__toc-list a {
  display: block;
  padding: 0.3rem 0.4rem;
  border-radius: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.35;
  text-decoration: none;
  color: rgba(44, 24, 16, 0.7);
  overflow-wrap: anywhere;
  word-break: break-word;
}
html[data-theme="dark"] .wo-folio-article__toc-list a { color: rgba(244, 237, 224, 0.7); }
.wo-folio-article__toc-list a:hover,
.wo-folio-article__toc-list a.is-active {
  color: #6b1818;
  background: rgba(140, 32, 32, 0.08);
}
html[data-theme="dark"] .wo-folio-article__toc-list a:hover,
html[data-theme="dark"] .wo-folio-article__toc-list a.is-active {
  color: #f4ede0;
  background: rgba(180, 70, 62, 0.15);
}
.wo-folio-article__toc-item--h3 a { padding-left: 0.55rem; }

.wo-folio-article__body {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2c1810;
}
html[data-theme="dark"] .wo-folio-article__body { color: #f4ede0; }
.wo-folio-article__body > .fw-compose > .fw-chapter > .fw-chapter__inner > * + * {
  margin-top: 1.05rem;
}

/* Kill compose full-bleed breakouts inside the narrow article column */
.wo-folio-article__body .fw-chapter,
.wo-folio-article__body .fw-chapter__inner,
.wo-folio-article__body .fw-compose {
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
}
.wo-folio-article__body .fw-chapter__inner > .fw-feature-grid,
.wo-folio-article__body .fw-chapter__inner > .fw-media-break,
.wo-folio-article__body .fw-feature-grid {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.85rem !important;
}
.wo-folio-article__body .fw-feature,
.wo-folio-article__body .fw-feature--soft {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(44, 24, 16, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
}
html[data-theme="dark"] .wo-folio-article__body .fw-feature,
html[data-theme="dark"] .wo-folio-article__body .fw-feature--soft {
  background: rgba(28, 22, 19, 0.65);
  border-color: rgba(244, 237, 224, 0.12);
}
.wo-folio-article__body .fw-feature__index {
  color: #8c2020;
  font-variant-numeric: tabular-nums;
}
html[data-theme="dark"] .wo-folio-article__body .fw-feature__index { color: #c45a52; }
.wo-folio-article__body .fw-feature__body,
.wo-folio-article__body .fw-feature__text {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.wo-folio-article__body .fw-feature__title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  line-height: 1.25;
}
.wo-folio-article__body .fw-feature__text p {
  margin: 0;
}
.wo-folio-article__body .fw-stack,
.wo-folio-article__body .fw-stack-row {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  transform: none !important;
}
.wo-folio-article__body h2,
.wo-folio-article__body h3,
.wo-folio-article__body .fw-interview__q {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  scroll-margin-top: calc(var(--fw-header-h, 4.75rem) + 1.25rem);
}
.wo-folio-article__body a { color: #8c2020; }
.wo-folio-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.85rem;
}

/* Interview Q&A — separate lines, clear hierarchy */
.fw-interview__caption {
  font-style: italic;
  color: rgba(44, 24, 16, 0.58);
  margin: 0 0 1.25rem !important;
}
html[data-theme="dark"] .fw-interview__caption { color: rgba(244, 237, 224, 0.58); }
.fw-interview__q {
  margin: 1.75rem 0 0.65rem !important;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border-left: 3px solid #8c2020;
  background: rgba(140, 32, 32, 0.06);
  font-size: clamp(1.15rem, 2vw, 1.35rem) !important;
  line-height: 1.3 !important;
  color: #2c1810;
}
html[data-theme="dark"] .fw-interview__q {
  background: rgba(180, 70, 62, 0.12);
  color: #f4ede0;
  border-left-color: #c45a52;
}
.fw-interview__turn {
  margin: 0.65rem 0 1.35rem;
  padding: 0 0 0 0.15rem;
}
.fw-interview__speaker {
  margin: 0 0 0.4rem !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c2020 !important;
  line-height: 1.3 !important;
}
html[data-theme="dark"] .fw-interview__speaker { color: #c45a52 !important; }
.fw-interview__turn p {
  margin: 0 0 0.75rem;
}
.fw-interview__turn p:last-child { margin-bottom: 0; }

.wo-folio-article__body .fw-compose-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(44, 24, 16, 0.78);
}
html[data-theme="dark"] .wo-folio-article__body .fw-compose-lead {
  color: rgba(244, 237, 224, 0.78);
}

@media (max-width: 900px) {
  .wo-folio-article__layout {
    grid-template-columns: 1fr;
  }
  .wo-folio-article__rail {
    position: static;
    max-height: none;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 11rem);
    gap: 0.85rem;
    align-items: start;
  }
  .wo-folio-article__rail-card { min-width: 0; grid-column: 1; }
  .wo-folio-article__portrait {
    aspect-ratio: 3 / 4;
    max-height: 14rem;
    grid-column: 2;
    grid-row: 1;
  }
  .wo-folio-article__toc {
    grid-column: 1 / -1;
    max-height: none;
  }
  .wo-folio-article__toc-list {
    max-height: 12rem;
  }
  .wo-folio-article__main { max-width: none; }
}
@media (max-width: 560px) {
  .wo-folio-article__rail {
    grid-template-columns: 1fr;
  }
  .wo-folio-article__portrait {
    grid-column: 1;
    grid-row: auto;
    max-width: 16rem;
    max-height: none;
    margin: 0 auto;
  }
}

/* Related filmstrip */
.wo-folio-related {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  background: #f4ede0;
}
html[data-theme="dark"] .wo-folio-related {
  background: #1c1613;
  border-top-color: rgba(244, 237, 224, 0.08);
}
.wo-folio-related__inner {
  width: min(68rem, calc(100% - 2.5rem));
  margin: 0 auto;
}
.wo-folio-related__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-related__kicker { color: #c45a52; }
.wo-folio-related__title {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}
.wo-folio-related__film {
  display: grid;
  grid-template-columns: repeat(var(--related-n, 4), minmax(0, 1fr));
  gap: 0.75rem;
}
.wo-folio-related__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(44, 24, 16, 0.08);
  transition: transform 0.3s var(--wo-ease), border-color 0.25s ease;
}
html[data-theme="dark"] .wo-folio-related__link {
  background: rgba(28, 22, 19, 0.65);
  border-color: rgba(244, 237, 224, 0.1);
}
.wo-folio-related__link:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 32, 32, 0.3);
}
.wo-folio-related__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.wo-folio-related__thumb--empty {
  background: linear-gradient(145deg, rgba(140, 32, 32, 0.25), rgba(44, 24, 16, 0.2));
}
.wo-folio-related__body {
  padding: 0.85rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.wo-folio-related__cat {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-related__cat { color: #c45a52; }
.wo-folio-related__body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.2;
}
.wo-folio-related__body p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(44, 24, 16, 0.58);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
html[data-theme="dark"] .wo-folio-related__body p { color: rgba(244, 237, 224, 0.58); }

.wo-folio-article__close {
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem;
  text-align: center;
  background: linear-gradient(180deg, #f4ede0 0%, #ede4d3 100%);
}
html[data-theme="dark"] .wo-folio-article__close {
  background: linear-gradient(180deg, #1c1613 0%, #14100e 100%);
}
.wo-folio-article__close-line {
  margin: 0 auto;
  max-width: 22rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
}
.wo-folio-article__close-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.wo-folio-article__close .wo-btn--solid {
  background: #6b1818;
  color: #f4ede0 !important;
  border-color: #6b1818;
}
.wo-folio-article__close .wo-btn--line {
  color: #2c1810 !important;
  border-color: rgba(44, 24, 16, 0.22);
  background: transparent;
}
html[data-theme="dark"] .wo-folio-article__close .wo-btn--solid {
  background: #8c2020;
  border-color: #8c2020;
}
html[data-theme="dark"] .wo-folio-article__close .wo-btn--line {
  color: #f4ede0 !important;
  border-color: rgba(244, 237, 224, 0.32);
}

@media (max-width: 900px) {
  .wo-folio-mast__grid { grid-template-columns: 1fr; }
  .wo-folio-row__media {
    flex: 0 0 8.5rem;
    width: 8.5rem;
    max-width: 8.5rem;
  }
  .wo-folio-related__film {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .wo-folio-row {
    flex-wrap: wrap;
  }
  .wo-folio-row__spine {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    border-right: 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.08);
    padding: 0 0 0.65rem;
    width: 100%;
  }
  html[data-theme="dark"] .wo-folio-row__spine {
    border-bottom-color: rgba(244, 237, 224, 0.1);
  }
  .wo-folio-row__media {
    flex: 0 0 7.5rem;
    width: 7.5rem;
    max-width: 7.5rem;
  }
  .wo-folio-row__body {
    flex: 1 1 calc(100% - 8.75rem);
    min-width: 0;
  }
  .wo-folio-lead { min-height: min(48vh, 22rem); }
  .wo-folio-related__film { grid-template-columns: 1fr; }
  .wo-folio-search { flex-wrap: wrap; border-radius: 1rem; }
  .wo-folio-search__btn { width: 100%; }
}
@media (max-width: 420px) {
  .wo-folio-row {
    flex-direction: column;
  }
  .wo-folio-row__spine {
    width: 100%;
  }
  .wo-folio-row__media {
    width: 100%;
    max-width: none;
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
  }
  .wo-folio-row__body {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   CHARTER — About Us (unique shell) · cinema edition
   WebGL cover · film vista · credo video · photo atlas · parallax
   ═══════════════════════════════════════════════════════════ */
.wo-charter {
  --wo-charter-ink: #2c1810;
  --wo-charter-cream: #f4ede0;
  --wo-charter-crimson: #8c2020;
  --wo-charter-deep: #6b1818;
  --wo-charter-sand: #e8dcc8;
  --wo-charter-line: rgba(44, 24, 16, 0.12);
  background: var(--wo-charter-cream);
  color: var(--wo-charter-ink);
  overflow: clip;
}

html[data-theme="dark"] .wo-charter {
  --wo-charter-ink: #f4ede0;
  --wo-charter-cream: #1a1210;
  --wo-charter-line: rgba(244, 237, 224, 0.12);
  background: #14100e;
  color: var(--wo-charter-ink);
}

/* —— Cover / WebGL —— */
.wo-charter-cover {
  position: relative;
  min-height: min(92vh, 52rem);
  display: grid;
  align-items: end;
  padding: clamp(5.5rem, 12vh, 7.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(2.5rem, 6vh, 4rem);
  color: #f4ede0;
  isolation: isolate;
}

.wo-charter-cover__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a1210;
}

.wo-charter-cover__gl,
.wo-charter-cover__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.wo-charter-cover__fallback {
  object-fit: cover;
  object-position: center 40%;
  opacity: 1;
  transition: opacity 0.8s ease;
  will-change: transform;
}

.wo-charter-cover__fallback.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.wo-charter-cover__gl {
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.wo-charter-cover__gl.is-live { opacity: 1; }

.wo-charter-cover__grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(20, 12, 10, 0.78) 0%, rgba(20, 12, 10, 0.35) 48%, rgba(20, 12, 10, 0.15) 100%),
    linear-gradient(to top, rgba(20, 12, 10, 0.72) 0%, transparent 42%);
  pointer-events: none;
}

.wo-charter-cover__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 80% 60% at 20% 70%, rgba(140, 32, 32, 0.18), transparent 60%);
  pointer-events: none;
}

.wo-charter-cover__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(244, 237, 224, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 237, 224, 0.35) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to top, transparent 0%, #000 40%, #000 100%);
  pointer-events: none;
}

.wo-charter-cover__copy {
  position: relative;
  z-index: 3;
  max-width: 38rem;
}

.wo-charter-cover__code {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.72);
}

.wo-charter-cover__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.78);
}

.wo-charter-cover__title {
  margin: 0 0 1.1rem;
  font-family: var(--fw-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif);
  font-size: clamp(2.4rem, 6.2vw, 4.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.wo-charter-cover__title span { display: block; }
.wo-charter-cover__title-acc { color: rgba(244, 237, 224, 0.78); font-style: italic; }

.wo-charter-cover__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.88);
}

.wo-charter-cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wo-charter-cover__signal {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  top: clamp(5.5rem, 14vh, 8rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
}

.wo-charter-cover__signal-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #c44;
  box-shadow: 0 0 0 0 rgba(196, 68, 68, 0.5);
  animation: wo-charter-pulse 2.4s ease-out infinite;
}

@keyframes wo-charter-pulse {
  0% { box-shadow: 0 0 0 0 rgba(196, 68, 68, 0.45); }
  70% { box-shadow: 0 0 0 0.65rem rgba(196, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 68, 68, 0); }
}

.wo-charter-cover__cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
}

.wo-charter-cover__cue i {
  display: block;
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(244, 237, 224, 0.55), transparent);
  animation: wo-charter-cue 1.8s ease-in-out infinite;
}

@keyframes wo-charter-cue {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.wo-charter--ready .wo-charter-cover [data-wo-charter-line] {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-charter--ready.is-booted .wo-charter-cover [data-wo-charter-line] {
  opacity: 1;
  transform: none;
}
.wo-charter--ready.is-booted .wo-charter-cover__copy > [data-wo-charter-line]:nth-child(1) { transition-delay: 0.05s; }
.wo-charter--ready.is-booted .wo-charter-cover__copy > [data-wo-charter-line]:nth-child(2) { transition-delay: 0.12s; }
.wo-charter--ready.is-booted .wo-charter-cover__title [data-wo-charter-line]:first-child { transition-delay: 0.2s; }
.wo-charter--ready.is-booted .wo-charter-cover__title [data-wo-charter-line]:last-child { transition-delay: 0.28s; }
.wo-charter--ready.is-booted .wo-charter-cover__copy > [data-wo-charter-line]:nth-child(4) { transition-delay: 0.36s; }
.wo-charter--ready.is-booted .wo-charter-cover__copy > [data-wo-charter-line]:nth-child(5) { transition-delay: 0.44s; }
.wo-charter--ready.is-booted .wo-charter-cover__signal { transition-delay: 0.55s; }
.wo-charter--ready.is-booted .wo-charter-cover__cue { transition-delay: 0.7s; }

/* —— Film vista —— */
.wo-charter-film {
  position: relative;
  height: clamp(11rem, 28vh, 16rem);
  overflow: hidden;
  background: #140f0d;
  border-block: 1px solid rgba(244, 237, 224, 0.08);
}

.wo-charter-film__track {
  --film-shift: 0%;
  display: flex;
  gap: 0.65rem;
  height: 100%;
  width: max-content;
  padding: 0.65rem 0;
  animation: wo-charter-film 48s linear infinite;
  transform: translate3d(var(--film-shift), 0, 0);
  will-change: transform;
}

.wo-charter-film.is-in .wo-charter-film__track {
  animation-play-state: running;
}

@keyframes wo-charter-film {
  from { translate: 0 0; }
  to { translate: -50% 0; }
}

.wo-charter-film__cell {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  width: clamp(9rem, 18vw, 14rem);
  margin: 0;
  border-radius: 0.55rem;
  overflow: hidden;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.65);
}

.wo-charter-film__cell:nth-child(odd) { width: clamp(11rem, 22vw, 17rem); }
.wo-charter-film__cell:nth-child(3n) { width: clamp(8rem, 14vw, 12rem); }

.wo-charter-film__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 0.8s ease;
}

.wo-charter-film__cell:hover img { transform: scale(1.06); }

.wo-charter-film__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #140f0d 0%, transparent 8%, transparent 92%, #140f0d 100%),
    linear-gradient(to bottom, transparent 60%, rgba(20, 15, 13, 0.55));
}

.wo-charter-film__caption {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: 0.85rem;
  z-index: 2;
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.65);
}

/* —— Credo cinema —— */
.wo-charter-credo {
  position: relative;
  min-height: min(72vh, 38rem);
  display: grid;
  place-items: center;
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  color: #f4ede0;
}

.wo-charter-credo__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wo-charter-credo__video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  filter: saturate(0.9) brightness(0.72);
}

.wo-charter-credo__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(20, 12, 10, 0.25), rgba(20, 12, 10, 0.78)),
    linear-gradient(to top, rgba(20, 12, 10, 0.85), transparent 50%);
}

.wo-charter-credo__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  text-align: center;
}

.wo-charter-credo__mark {
  margin: 0 auto 1rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 0.85;
  color: rgba(196, 68, 68, 0.55);
  will-change: transform;
}

.wo-charter-credo__quote { margin: 0; }

.wo-charter-credo__quote p {
  margin: 0 0 1rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.65rem, 4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.wo-charter-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.65em, 0) rotate(1.5deg);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-charter-word.is-in {
  opacity: 1;
  transform: none;
}

.wo-charter-credo__quote footer {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
}

/* —— Mandate split —— */
.wo-charter-mandate {
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wo-charter-cream);
}

.wo-charter-mandate__stage {
  max-width: 74rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(16rem, 0.95fr) 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.wo-charter-mandate__visual {
  position: sticky;
  top: 5.5rem;
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1a1210;
  box-shadow: 0 30px 60px -36px rgba(44, 24, 16, 0.55);
}

.wo-charter-mandate__stack {
  position: absolute;
  inset: 0;
}

.wo-charter-mandate__plate {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.wo-charter-mandate__plate.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.wo-charter-mandate__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.wo-charter-mandate__frame {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(244, 237, 224, 0.28);
  border-radius: 0.75rem;
  z-index: 2;
  pointer-events: none;
}

.wo-charter-mandate__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  margin: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 12, 10, 0.55);
  backdrop-filter: blur(10px);
  color: #f4ede0;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wo-charter-mandate__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wo-charter-crimson);
}

.wo-charter-mandate__copy h2 {
  margin: 0 0 1rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wo-charter-mandate__lead {
  margin: 0 0 1.35rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--wo-charter-ink) 88%, transparent);
}

.wo-charter-mandate__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.wo-charter-mandate__cols p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--wo-charter-ink) 78%, transparent);
}

.wo-charter-mandate__geo {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.wo-charter-mandate__geo li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem 0.65rem 0.65rem;
  border: 1px solid var(--wo-charter-line);
  border-radius: 0.9rem;
  background: color-mix(in srgb, var(--wo-charter-cream) 55%, #fff 45%);
  cursor: default;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  translate: 0 1rem;
}

html[data-theme="dark"] .wo-charter-mandate__geo li {
  background: rgba(244, 237, 224, 0.04);
}

.wo-charter-mandate__geo li.is-in {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.wo-charter-mandate__geo li:hover,
.wo-charter-mandate__geo li:focus-within {
  border-color: color-mix(in srgb, var(--wo-charter-crimson) 50%, var(--wo-charter-line));
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -20px rgba(44, 24, 16, 0.4);
}

.wo-charter-mandate__geo-thumb {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.55rem;
  overflow: hidden;
}

.wo-charter-mandate__geo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.wo-charter-mandate__geo li:hover .wo-charter-mandate__geo-thumb img {
  transform: scale(1.1);
}

.wo-charter-mandate__geo strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.wo-charter-mandate__geo p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: color-mix(in srgb, var(--wo-charter-ink) 65%, transparent);
}

/* —— Atlas photo cards —— */
.wo-charter-atlas {
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 10vh, 6.5rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(140, 32, 32, 0.07), transparent 55%),
    var(--wo-charter-cream);
}

.wo-charter-atlas__head {
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.wo-charter-atlas__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wo-charter-crimson);
}

.wo-charter-atlas__head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.wo-charter-atlas__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--wo-charter-ink) 72%, transparent);
}

.wo-charter-atlas__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 74rem;
  margin: 0 auto;
}

.wo-charter-card {
  --tx: 0deg;
  --ty: 0deg;
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  min-height: clamp(18rem, 38vh, 24rem);
  padding: 1.35rem 1.2rem 1.2rem;
  border-radius: 1.1rem;
  overflow: hidden;
  color: #f4ede0;
  text-decoration: none;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--ty)) rotateY(var(--tx));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 22px 48px -28px rgba(20, 12, 10, 0.55);
  opacity: 0;
  translate: 0 1.5rem;
}

.wo-charter-card.is-in {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.wo-charter-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wo-charter-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.wo-charter-card:hover .wo-charter-card__media img,
.wo-charter-card:focus-visible .wo-charter-card__media img {
  transform: scale(1.12);
}

.wo-charter-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(16, 10, 8, 0.92) 0%, rgba(16, 10, 8, 0.45) 48%, rgba(16, 10, 8, 0.15) 100%),
    radial-gradient(circle at var(--mx) var(--my), rgba(196, 68, 68, 0.22), transparent 45%);
  pointer-events: none;
}

.wo-charter-card__meta,
.wo-charter-card__name,
.wo-charter-card__body,
.wo-charter-card__go {
  position: relative;
  z-index: 2;
}

.wo-charter-card__meta {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
}

.wo-charter-card__name {
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.wo-charter-card__body {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(244, 237, 224, 0.78);
}

.wo-charter-card__go {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4ede0;
}

.wo-charter-card:hover,
.wo-charter-card:focus-visible {
  box-shadow: 0 30px 60px -24px rgba(20, 12, 10, 0.7);
  outline: none;
}

/* —— Operator cinematic —— */
.wo-charter-operator {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  color: #f4ede0;
}

.wo-charter-operator__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wo-charter-operator__bg img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  display: block;
  will-change: transform;
  filter: saturate(0.85) brightness(0.45);
}

.wo-charter-operator__bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(14, 10, 8, 0.88) 0%, rgba(14, 10, 8, 0.55) 50%, rgba(14, 10, 8, 0.72) 100%),
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(140, 32, 32, 0.25), transparent 60%);
}

.wo-charter-operator__frame {
  position: relative;
  z-index: 1;
  max-width: 74rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.wo-charter-operator__portrait {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #2a1c16;
  will-change: transform;
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.65);
}

.wo-charter-operator__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.94) contrast(1.05);
}

.wo-charter-operator__frame-edge {
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(244, 237, 224, 0.3);
  border-radius: 0.7rem;
  pointer-events: none;
}

.wo-charter-operator__glow {
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(196, 68, 68, 0.35), transparent 65%);
  pointer-events: none;
  animation: wo-charter-glow 5s ease-in-out infinite;
}

@keyframes wo-charter-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.wo-charter-operator__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
}

.wo-charter-operator__copy h2 {
  margin: 0 0 0.4rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.wo-charter-operator__role {
  margin: 0 0 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c44;
}

.wo-charter-operator__lead {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.92);
}

.wo-charter-operator__body {
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.72);
}

.wo-charter-operator__quote {
  margin: 0 0 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(196, 68, 68, 0.65);
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  color: rgba(244, 237, 224, 0.88);
}

/* —— Pillars on vista —— */
.wo-charter-pillars {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  color: #f4ede0;
}

.wo-charter-pillars__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wo-charter-pillars__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
  filter: saturate(0.8) brightness(0.4);
}

.wo-charter-pillars__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 10, 8, 0.72), rgba(14, 10, 8, 0.82)),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(140, 32, 32, 0.28), transparent 55%);
}

.wo-charter-pillars__inner {
  position: relative;
  z-index: 1;
  max-width: 74rem;
  margin: 0 auto;
}

.wo-charter-pillars__head {
  max-width: 34rem;
  margin: 0 0 2rem;
}

.wo-charter-pillars__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
}

.wo-charter-pillars__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500;
}

.wo-charter-pillars__lead {
  margin: 0;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.75);
}

.wo-charter-pillars__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.wo-charter-pillars__list li {
  padding: 1.35rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(244, 237, 224, 0.14);
  background: rgba(244, 237, 224, 0.07);
  backdrop-filter: blur(14px);
  opacity: 0;
  translate: 0 1.1rem;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.wo-charter-pillars__list li.is-in {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.wo-charter-pillars__list li:hover {
  border-color: rgba(196, 68, 68, 0.45);
  background: rgba(244, 237, 224, 0.11);
}

.wo-charter-pillars__n {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: #c44;
}

.wo-charter-pillars__list strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.wo-charter-pillars__list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.72);
}

/* —— Close cinematic —— */
.wo-charter-close {
  position: relative;
  min-height: min(62vh, 32rem);
  display: grid;
  align-items: end;
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  color: #f4ede0;
}

.wo-charter-close__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wo-charter-close__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
  filter: saturate(0.9) brightness(0.55);
}

.wo-charter-close__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14, 10, 8, 0.9) 0%, rgba(14, 10, 8, 0.45) 55%, rgba(14, 10, 8, 0.35) 100%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(140, 32, 32, 0.3), transparent 60%);
}

.wo-charter-close__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.wo-charter-close__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
}

.wo-charter-close__title {
  margin: 0 0 0.85rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.wo-charter-close__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.8);
}

.wo-charter-close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Scroll reveals */
.wo-charter [data-wo-charter-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-charter [data-wo-charter-reveal].is-in {
  opacity: 1;
  transform: none;
}

.wo-charter--reduced [data-wo-charter-reveal],
.wo-charter--reduced [data-wo-charter-line],
.wo-charter--reduced [data-wo-charter-card],
.wo-charter--reduced .wo-charter-word {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
}

.wo-charter--reduced .wo-charter-film__track {
  animation: none;
}

/* Responsive */
@media (max-width: 980px) {
  .wo-charter-atlas__grid,
  .wo-charter-pillars__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wo-charter-operator__frame,
  .wo-charter-mandate__stage {
    grid-template-columns: 1fr;
  }
  .wo-charter-mandate__visual {
    position: relative;
    top: auto;
    max-width: 28rem;
    aspect-ratio: 16 / 11;
  }
  .wo-charter-operator__portrait {
    max-width: 22rem;
  }
  .wo-charter-cover__signal { display: none; }
}

@media (max-width: 720px) {
  .wo-charter-mandate__geo,
  .wo-charter-atlas__grid,
  .wo-charter-pillars__list {
    grid-template-columns: 1fr;
  }
  .wo-charter-cover { min-height: min(88vh, 40rem); }
  .wo-charter-film { height: 9.5rem; }
  .wo-charter-card { min-height: 16rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wo-charter-film__track,
  .wo-charter-cover__signal-dot,
  .wo-charter-cover__cue i,
  .wo-charter-operator__glow {
    animation: none !important;
  }
}

/* —— Founders roster —— */
.wo-charter-founders {
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(140, 32, 32, 0.06), transparent 55%),
    var(--wo-charter-cream);
}

.wo-charter-founders__head {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.wo-charter-founders__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wo-charter-crimson);
}

.wo-charter-founders__head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.wo-charter-founders__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--wo-charter-ink) 72%, transparent);
}

.wo-charter-founders__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: 74rem;
  margin: 0 auto;
}

.wo-charter-founder {
  --tx: 0deg;
  --ty: 0deg;
  --mx: 50%;
  --my: 40%;
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--wo-charter-line);
  background: color-mix(in srgb, var(--wo-charter-cream) 70%, #fff 30%);
  box-shadow: 0 22px 48px -30px rgba(44, 24, 16, 0.4);
  transform: perspective(900px) rotateX(var(--ty)) rotateY(var(--tx));
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.35s ease;
  opacity: 0;
  translate: 0 1.4rem;
}

html[data-theme="dark"] .wo-charter-founder {
  background: rgba(244, 237, 224, 0.04);
}

.wo-charter-founder.is-in {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.wo-charter-founder:hover {
  border-color: color-mix(in srgb, var(--wo-charter-crimson) 40%, var(--wo-charter-line));
  box-shadow: 0 28px 56px -26px rgba(44, 24, 16, 0.5);
}

.wo-charter-founder__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1210;
}

.wo-charter-founder__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.94) contrast(1.04);
}

.wo-charter-founder:hover .wo-charter-founder__media img {
  transform: scale(1.1);
}

.wo-charter-founder__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16, 10, 8, 0.55) 0%, transparent 42%),
    radial-gradient(circle at var(--mx) var(--my), rgba(196, 68, 68, 0.18), transparent 50%);
  pointer-events: none;
}

.wo-charter-founder__n {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  z-index: 1;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(20, 12, 10, 0.5);
  backdrop-filter: blur(8px);
  color: #f4ede0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.wo-charter-founder__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.2rem 1.35rem;
}

.wo-charter-founder__role {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wo-charter-crimson);
  font-weight: 600;
}

.wo-charter-founder__name {
  margin: 0;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.wo-charter-founder__focus {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: color-mix(in srgb, var(--wo-charter-ink) 55%, transparent);
}

.wo-charter-founder__bio {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--wo-charter-ink) 78%, transparent);
}

@media (max-width: 980px) {
  .wo-charter-founders__grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }
  .wo-charter-founder__media {
    aspect-ratio: 16 / 12;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .wo-charter-founders__grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ENCLAVE — Foundation Israel vertical (UNIQUE on World HQ)
   Stone · champagne gold · marketplace listings · skyline
   Bridge to israel-compass visual DNA without cloning pier
   ═══════════════════════════════════════════════════════════ */
.wo-enclave {
  --we-ink: #1a1814;
  --we-cream: #f6f1e8;
  --we-stone: #2a2620;
  --we-champagne: #c8b89a;
  --we-champagne-deep: #a89472;
  --we-line: rgba(26, 24, 20, 0.12);
  --we-crimson: #8c2020;
  background: var(--we-cream);
  color: var(--we-ink);
  overflow: clip;
}

html[data-theme="dark"] .wo-enclave {
  --we-ink: #f6f1e8;
  --we-cream: #12110f;
  --we-stone: #0e0d0b;
  --we-line: rgba(246, 241, 232, 0.12);
  background: #0e0d0b;
  color: var(--we-ink);
}

/* Buttons — champagne / stone (Israel marketplace, not crimson solid-only) */
.wo-enclave-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  will-change: transform;
}
/* Default on cream pages */
.wo-enclave-btn--solid {
  background: var(--we-ink);
  color: var(--we-cream);
}
.wo-enclave-btn--solid:hover {
  background: var(--we-champagne-deep);
  color: #fff;
}
.wo-enclave-btn--line {
  border-color: color-mix(in srgb, var(--we-ink) 35%, transparent);
  color: var(--we-ink);
  background: transparent;
}
.wo-enclave-btn--line:hover {
  border-color: var(--we-champagne-deep);
  color: var(--we-champagne-deep);
}
/* Dark mast / visit — high contrast */
.wo-enclave-mast .wo-enclave-btn--solid,
.wo-enclave-visit .wo-enclave-btn--solid {
  background: var(--we-champagne);
  color: #1a1814;
  box-shadow: 0 10px 28px -12px rgba(200, 184, 154, 0.65);
}
.wo-enclave-mast .wo-enclave-btn--solid:hover,
.wo-enclave-visit .wo-enclave-btn--solid:hover {
  background: #f6f1e8;
  color: #1a1814;
  box-shadow: 0 14px 32px -12px rgba(246, 241, 232, 0.45);
}
.wo-enclave-mast .wo-enclave-btn--line {
  border-color: rgba(246, 241, 232, 0.65);
  color: #f6f1e8;
  background: rgba(246, 241, 232, 0.08);
}
.wo-enclave-mast .wo-enclave-btn--line:hover {
  border-color: #f6f1e8;
  background: rgba(246, 241, 232, 0.16);
  color: #fff;
}
.wo-enclave-btn--ghost,
.wo-enclave-visit .wo-enclave-btn--ghost {
  color: #f6f1e8;
  border-color: rgba(246, 241, 232, 0.75);
  background: rgba(246, 241, 232, 0.14);
  font-weight: 600;
}
.wo-enclave-btn--ghost:hover,
.wo-enclave-visit .wo-enclave-btn--ghost:hover {
  background: rgba(246, 241, 232, 0.24);
  border-color: #f6f1e8;
  color: #fff;
}

/* —— Split mast —— */
.wo-enclave-mast {
  position: relative;
  min-height: min(94vh, 56rem);
  padding: clamp(5.5rem, 12vh, 7rem) clamp(1.25rem, 4vw, 3.5rem) clamp(2.5rem, 5vh, 3.5rem);
  background: #12100e;
  color: #f6f1e8;
  overflow: hidden;
  isolation: isolate;
}

.wo-enclave-mast__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.wo-enclave-mast__bg-img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  will-change: transform;
  animation: wo-enclave-bg-ken 22s ease-in-out infinite alternate;
  filter: saturate(0.92) contrast(1.05) brightness(0.72);
}
@keyframes wo-enclave-bg-ken {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-2%, 1.5%, 0); }
}
.wo-enclave-mast__bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 10, 8, 0.88) 0%, rgba(12, 10, 8, 0.62) 42%, rgba(12, 10, 8, 0.35) 68%, rgba(12, 10, 8, 0.55) 100%),
    linear-gradient(to top, rgba(12, 10, 8, 0.75) 0%, transparent 42%),
    radial-gradient(ellipse 50% 45% at 75% 40%, rgba(200, 184, 154, 0.18), transparent 60%);
  pointer-events: none;
}
.wo-enclave-mast__bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  animation: wo-enclave-grain 0.4s steps(2) infinite;
}
@keyframes wo-enclave-grain {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-1%, 1%); }
}

.wo-enclave-mast__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 78rem;
  margin: 0 auto;
  min-height: min(78vh, 44rem);
}

.wo-enclave-mast__code {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(200, 184, 154, 0.85);
}

.wo-enclave-mast__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.65);
}

.wo-enclave-mast__title {
  margin: 0 0 1.1rem;
  font-family: var(--fw-serif, "Iowan Old Style", Palatino, Georgia, serif);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.wo-enclave-mast__title span { display: block; }
.wo-enclave-mast__title-acc {
  color: var(--we-champagne);
  font-style: italic;
  font-weight: 400;
}

.wo-enclave-mast__lead {
  margin: 0 0 1.25rem;
  max-width: 32rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: rgba(246, 241, 232, 0.82);
}

.wo-enclave-mast__pull {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1rem;
  border-left: 2px solid var(--we-champagne);
  max-width: 30rem;
}
.wo-enclave-mast__pull p {
  margin: 0 0 0.45rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.4;
  color: rgba(246, 241, 232, 0.9);
}
.wo-enclave-mast__pull footer {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 184, 154, 0.75);
}

.wo-enclave-mast__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wo-enclave-mast__visual {
  position: relative;
  min-height: min(62vh, 34rem);
}

.wo-enclave-mast__glow {
  position: absolute;
  inset: -10% -5% -15% -10%;
  background:
    radial-gradient(ellipse 55% 50% at 70% 40%, rgba(200, 184, 154, 0.28), transparent 62%),
    radial-gradient(ellipse 40% 35% at 30% 70%, rgba(140, 32, 32, 0.12), transparent 60%);
  animation: wo-enclave-glow 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes wo-enclave-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.wo-enclave-mast__cut {
  position: absolute;
  inset: 0;
  border-radius: 1.4rem 0.35rem 1.4rem 0.35rem;
  overflow: visible;
  z-index: 1;
}

.wo-enclave-mast__plate {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.wo-enclave-mast__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.wo-enclave-mast__plate--a {
  inset: 0 28% 0 0;
  z-index: 1;
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.7);
}
.wo-enclave-mast__plate--a img {
  animation: wo-enclave-ken-a 18s ease-in-out infinite alternate;
}
.wo-enclave-mast__plate--b {
  inset: 18% 0 0 42%;
  z-index: 2;
  border: 1px solid rgba(200, 184, 154, 0.45);
  box-shadow: 0 24px 56px -22px rgba(0, 0, 0, 0.75);
}
.wo-enclave-mast__plate--b img {
  animation: wo-enclave-ken-b 22s ease-in-out infinite alternate;
}
@keyframes wo-enclave-ken-a {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-3%, 2%, 0); }
}
@keyframes wo-enclave-ken-b {
  from { transform: scale(1.1) translate3d(0, 0, 0); }
  to { transform: scale(1.2) translate3d(3%, -2.5%, 0); }
}
.wo-enclave-mast__plate--a,
.wo-enclave-mast__plate--b {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
  50% { transform: translate3d(0, 12px, 0); }
}

.wo-enclave-mast__badge {
  position: absolute;
  left: -0.5rem;
  bottom: 1.5rem;
  z-index: 3;
  margin: 0;
  padding: 0.85rem 1.1rem;
  border-radius: 0.85rem;
  background: rgba(26, 24, 20, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 184, 154, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.wo-enclave-mast__badge span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 184, 154, 0.8);
}
.wo-enclave-mast__badge strong {
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: #f6f1e8;
  letter-spacing: 0.04em;
}

.wo-enclave-mast__lattice {
  position: absolute;
  inset: 8% 6% 8% 6%;
  z-index: 0;
  opacity: 0.16;
  animation: wo-enclave-lattice 10s linear infinite;
  background-image:
    linear-gradient(rgba(200, 184, 154, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 184, 154, 0.5) 1px, transparent 1px);
  background-size: 2.75rem 2.75rem;
  pointer-events: none;
}

.wo-enclave-mast__cue {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.45);
}
.wo-enclave-mast__cue i {
  width: 1px;
  height: 1.75rem;
  background: linear-gradient(to bottom, rgba(200, 184, 154, 0.7), transparent);
  animation: wo-enclave-cue 1.8s ease-in-out infinite;
}
@keyframes wo-enclave-cue {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.wo-enclave--ready .wo-enclave-mast [data-wo-enclave-line] {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-enclave--ready.is-booted .wo-enclave-mast [data-wo-enclave-line] {
  opacity: 1;
  transform: none;
}
.wo-enclave--ready.is-booted .wo-enclave-mast__copy > [data-wo-enclave-line]:nth-child(1) { transition-delay: 0.05s; }
.wo-enclave--ready.is-booted .wo-enclave-mast__copy > [data-wo-enclave-line]:nth-child(2) { transition-delay: 0.12s; }
.wo-enclave--ready.is-booted .wo-enclave-mast__title [data-wo-enclave-line]:first-child { transition-delay: 0.2s; }
.wo-enclave--ready.is-booted .wo-enclave-mast__title [data-wo-enclave-line]:last-child { transition-delay: 0.28s; }
.wo-enclave--ready.is-booted .wo-enclave-mast__copy > [data-wo-enclave-line]:nth-child(4) { transition-delay: 0.36s; }
.wo-enclave--ready.is-booted .wo-enclave-mast__copy > [data-wo-enclave-line]:nth-child(5) { transition-delay: 0.44s; }
.wo-enclave--ready.is-booted .wo-enclave-mast__copy > [data-wo-enclave-line]:nth-child(6) { transition-delay: 0.52s; }
.wo-enclave--ready.is-booted .wo-enclave-mast__cue { transition-delay: 0.7s; }

/* —— Manifest —— */
.wo-enclave-manifest {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(2.5rem, 6vh, 3.75rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--we-cream);
  border-bottom: 1px solid var(--we-line);
}
.wo-enclave-manifest__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--we-champagne-deep), transparent);
}
.wo-enclave-manifest__text {
  margin: 0;
  max-width: 36rem;
  text-align: center;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--we-ink);
}

/* —— Mandates / listings —— */
.wo-enclave-mandates {
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  max-width: 90rem;
  margin: 0 auto;
}
.wo-enclave-mandates__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  margin: 0 0 2.25rem;
  max-width: none;
}
.wo-enclave-mandates__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--we-champagne-deep);
}
.wo-enclave-mandates__head h2 {
  margin: 0;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.wo-enclave-mandates__lead {
  margin: 0;
  line-height: 1.55;
  font-size: 1.02rem;
  color: color-mix(in srgb, var(--we-ink) 70%, transparent);
  padding-bottom: 0.2rem;
}

.wo-enclave-mandates__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: none;
  width: 100%;
}

.wo-enclave-listing {
  --tx: 0deg;
  --ty: 0deg;
  --mx: 50%;
  --my: 40%;
  display: grid;
  grid-template-rows: minmax(12rem, 18rem) auto;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--we-line);
  background: color-mix(in srgb, var(--we-cream) 80%, #fff);
  box-shadow: 0 22px 48px -32px rgba(26, 24, 20, 0.4);
  transform: perspective(900px) rotateX(var(--ty)) rotateY(var(--tx));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  translate: 0 1.4rem;
}
html[data-theme="dark"] .wo-enclave-listing {
  background: rgba(246, 241, 232, 0.04);
}
.wo-enclave-listing.is-in {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.wo-enclave-listing:hover {
  box-shadow: 0 30px 60px -28px rgba(26, 24, 20, 0.55);
}

.wo-enclave-listing__media {
  position: relative;
  overflow: hidden;
  background: #1a1814;
}
.wo-enclave-listing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-enclave-listing:hover .wo-enclave-listing__media img {
  transform: scale(1.1);
}
.wo-enclave-listing__tag {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(26, 24, 20, 0.62);
  backdrop-filter: blur(10px);
  color: #f6f1e8;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 184, 154, 0.35);
}
.wo-enclave-listing__body {
  padding: 1.2rem 1.25rem 1.35rem;
}
.wo-enclave-listing__body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.wo-enclave-listing__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--we-ink) 72%, transparent);
}

/* —— Scarcity —— */
.wo-enclave-scarcity {
  position: relative;
  min-height: min(68vh, 36rem);
  display: grid;
  align-items: end;
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  color: #f6f1e8;
  overflow: hidden;
}
.wo-enclave-scarcity__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-enclave-scarcity__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
  filter: saturate(0.9) brightness(0.55);
}
.wo-enclave-scarcity__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14, 12, 10, 0.92) 0%, rgba(14, 12, 10, 0.45) 55%, rgba(14, 12, 10, 0.3) 100%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(200, 184, 154, 0.2), transparent 55%);
}
.wo-enclave-scarcity__inner {
  position: relative;
  z-index: 1;
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.wo-enclave-scarcity__copy { max-width: 42rem; }
.wo-enclave-scarcity__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--we-champagne);
}
.wo-enclave-scarcity__inner h2,
.wo-enclave-scarcity__copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.wo-enclave-scarcity__lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(246, 241, 232, 0.82);
}
.wo-enclave-scarcity__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.wo-enclave-scarcity__aside {
  padding: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(200, 184, 154, 0.35);
  background: rgba(14, 12, 10, 0.45);
  backdrop-filter: blur(12px);
  opacity: 0;
  translate: 0 1.2rem;
}
.wo-enclave-scarcity__aside.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), translate 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-enclave-scarcity__plate {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.wo-enclave-scarcity__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wo-enclave-scarcity__aside-kicker {
  margin: 0;
  padding: 1.1rem 1.2rem 0.35rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.35;
  color: #f6f1e8;
}
.wo-enclave-scarcity__aside-attr {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 184, 154, 0.8);
}
.wo-enclave-scarcity__metrics li {
  padding: 1.1rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(200, 184, 154, 0.28);
  background: rgba(246, 241, 232, 0.06);
  backdrop-filter: blur(12px);
  opacity: 0;
  translate: 0 1rem;
}
.wo-enclave-scarcity__metrics li.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-enclave-scarcity__metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--we-champagne);
}
.wo-enclave-scarcity__metrics span {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(246, 241, 232, 0.7);
}

/* —— Shadow corridor —— */
.wo-enclave-shadow {
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--we-cream);
}
.wo-enclave-shadow__stage {
  max-width: 74rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(14rem, 0.9fr) 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
}
.wo-enclave-shadow__visual {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1a1814;
  box-shadow: 0 36px 70px -36px rgba(26, 24, 20, 0.55);
}
.wo-enclave-shadow__visual img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.wo-enclave-shadow__frame {
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(200, 184, 154, 0.4);
  border-radius: 0.75rem;
  pointer-events: none;
}
.wo-enclave-shadow__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--we-champagne-deep);
}
.wo-enclave-shadow__copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.wo-enclave-shadow__lead {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--we-ink) 75%, transparent);
}
.wo-enclave-shadow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.wo-enclave-shadow__list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--we-line);
  background: color-mix(in srgb, var(--we-cream) 70%, #fff);
  opacity: 0;
  translate: 0 0.9rem;
}
html[data-theme="dark"] .wo-enclave-shadow__list li {
  background: rgba(246, 241, 232, 0.04);
}
.wo-enclave-shadow__list li.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-enclave-shadow__list li > span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--we-champagne-deep);
  font-weight: 600;
  padding-top: 0.15rem;
}
.wo-enclave-shadow__list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}
.wo-enclave-shadow__list p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--we-ink) 68%, transparent);
}

/* —— Platform stack —— */
.wo-enclave-stack {
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 10vh, 6rem);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(200, 184, 154, 0.12), transparent 55%),
    var(--we-cream);
  border-top: 1px solid var(--we-line);
}
.wo-enclave-stack__layout {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.wo-enclave-stack__head {
  max-width: none;
  margin: 0 0 1.75rem;
}
.wo-enclave-stack__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--we-champagne-deep);
}
.wo-enclave-stack__head h2 {
  margin: 0 0 0.7rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
}
.wo-enclave-stack__lead {
  margin: 0;
  line-height: 1.55;
  color: color-mix(in srgb, var(--we-ink) 72%, transparent);
}
.wo-enclave-stack__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.wo-enclave-stack__list li:last-child {
  grid-column: 1 / -1;
}
.wo-enclave-stack__rail {
  position: sticky;
  top: 5.5rem;
  display: block;
}
.wo-enclave-stack__rail-media {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: min(70vh, 32rem);
  border: 1px solid var(--we-line);
  box-shadow: 0 24px 48px -28px rgba(26, 24, 20, 0.4);
  opacity: 0;
  translate: 0 1rem;
}
.wo-enclave-stack__rail-media.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), translate 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-enclave-stack__rail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wo-enclave-stack__list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: 0.9rem;
  border: 1px solid var(--we-line);
  background: color-mix(in srgb, var(--we-cream) 75%, #fff);
  opacity: 0;
  translate: 0 0.85rem;
}
html[data-theme="dark"] .wo-enclave-stack__list li {
  background: rgba(246, 241, 232, 0.04);
}
.wo-enclave-stack__list li.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-enclave-stack__list li:hover {
  border-color: color-mix(in srgb, var(--we-champagne-deep) 50%, var(--we-line));
}
.wo-enclave-stack__n {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--we-champagne-deep);
  font-weight: 600;
  padding-top: 0.2rem;
}
.wo-enclave-stack__list strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.15rem;
  font-weight: 500;
}
.wo-enclave-stack__list p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--we-ink) 70%, transparent);
}

/* —— Visit portal —— */
.wo-enclave-visit {
  position: relative;
  min-height: min(58vh, 30rem);
  display: grid;
  align-items: end;
  padding: clamp(3.5rem, 10vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  color: #f6f1e8;
  overflow: hidden;
}
.wo-enclave-visit__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-enclave-visit__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
  filter: saturate(0.88) brightness(0.5);
}
.wo-enclave-visit__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 12, 10, 0.88) 0%, rgba(14, 12, 10, 0.45) 55%, rgba(14, 12, 10, 0.55) 100%),
    radial-gradient(ellipse 50% 50% at 85% 30%, rgba(200, 184, 154, 0.22), transparent 55%);
}
.wo-enclave-visit__inner {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}
.wo-enclave-visit__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--we-champagne);
}
.wo-enclave-visit__inner h2 {
  margin: 0 0 0.85rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.wo-enclave-visit__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(246, 241, 232, 0.82);
}
.wo-enclave-visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Reveals */
.wo-enclave [data-wo-enclave-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.6rem, 0);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-enclave [data-wo-enclave-reveal].is-in {
  opacity: 1;
  transform: none;
}
.wo-enclave--reduced [data-wo-enclave-reveal],
.wo-enclave--reduced [data-wo-enclave-line],
.wo-enclave--reduced [data-wo-enclave-card] {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
}

@media (max-width: 980px) {
  .wo-enclave-mast__grid,
  .wo-enclave-shadow__stage,
  .wo-enclave-mandates__head,
  .wo-enclave-scarcity__inner,
  .wo-enclave-stack__layout {
    grid-template-columns: 1fr;
  }
  .wo-enclave-mast__visual {
    min-height: 18rem;
    order: -1;
  }
  .wo-enclave-mast__cut {
    clip-path: none;
    border-radius: 1rem;
  }
  .wo-enclave-mast__plate--a { inset: 0 20% 20% 0; }
  .wo-enclave-mast__plate--b { inset: 22% 0 0 28%; }
  .wo-enclave-mandates__grid,
  .wo-enclave-stack__list {
    grid-template-columns: 1fr;
  }
  .wo-enclave-stack__list li:last-child {
    grid-column: auto;
  }
  .wo-enclave-scarcity__metrics {
    grid-template-columns: 1fr;
  }
  .wo-enclave-stack__rail {
    position: relative;
    top: auto;
  }
  .wo-enclave-stack__rail-media {
    aspect-ratio: 16 / 11;
    min-height: 0;
  }
  .wo-enclave-manifest {
    grid-template-columns: 1fr;
  }
  .wo-enclave-manifest__rule { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wo-enclave-mast__plate--a img,
  .wo-enclave-mast__plate--b img,
  .wo-enclave-mast__glow,
  .wo-enclave-mast__lattice,
  .wo-enclave.is-booted .wo-enclave-mast__plate--a,
  .wo-enclave.is-booted .wo-enclave-mast__plate--b {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wo-enclave-mast__cue i { animation: none !important; }
}

/* Enclave live motion extras */
.wo-enclave-listing__media img {
  animation: wo-enclave-listing-live 16s ease-in-out infinite alternate;
}
@keyframes wo-enclave-listing-live {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
.wo-enclave-listing:hover .wo-enclave-listing__media img {
  animation: none;
  transform: scale(1.12);
}
.wo-enclave-scarcity__plate img {
  animation: wo-enclave-listing-live 18s ease-in-out infinite alternate;
}
.wo-enclave-stack__rail-media img {
  transition: transform 0.8s ease;
}
.wo-enclave-stack__rail-media.is-in img {
  animation: wo-enclave-listing-live 20s ease-in-out infinite alternate;
}
.wo-enclave-visit__media img {
  animation: wo-enclave-bg-ken 24s ease-in-out infinite alternate;
}
.wo-enclave-manifest__rule {
  transform-origin: center;
  animation: wo-enclave-rule 4s ease-in-out infinite alternate;
}
@keyframes wo-enclave-rule {
  from { opacity: 0.45; transform: scaleX(0.92); }
  to { opacity: 1; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .wo-enclave-mast__bg-img,
  .wo-enclave-mast__bg-grain,
  .wo-enclave-listing__media img,
  .wo-enclave-scarcity__plate img,
  .wo-enclave-stack__rail-media.is-in img,
  .wo-enclave-visit__media img,
  .wo-enclave-manifest__rule {
    animation: none !important;
  }
}
/* —— Interactive data cards (metrics / shadow / stack / listings) —— */
.wo-enclave-interactive {
  --tx: 0deg;
  --ty: 0deg;
  --mx: 50%;
  --my: 40%;
  --lift: 0;
  position: relative;
  cursor: pointer;
  transform:
    perspective(900px)
    rotateX(var(--ty))
    rotateY(var(--tx))
    translate3d(0, calc(var(--lift) * -6px), 0);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    background 0.3s ease;
  will-change: transform;
}
.wo-enclave-interactive::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(200, 184, 154, 0.22),
    transparent 55%
  );
}
.wo-enclave-interactive.is-hot {
  box-shadow: 0 18px 40px -22px rgba(26, 24, 20, 0.45);
  border-color: color-mix(in srgb, var(--we-champagne-deep) 55%, var(--we-line));
  z-index: 2;
}
.wo-enclave-interactive.is-hot::after {
  opacity: 1;
}
.wo-enclave-interactive.is-press {
  transform:
    perspective(900px)
    rotateX(var(--ty))
    rotateY(var(--tx))
    translate3d(0, calc(var(--lift) * -2px), 0) scale(0.985);
}

/* Metric cards on dark scarcity */
.wo-enclave-scarcity__metrics li.wo-enclave-interactive {
  border: 1px solid rgba(200, 184, 154, 0.28);
}
.wo-enclave-scarcity__metrics li.wo-enclave-interactive.is-hot {
  background: rgba(246, 241, 232, 0.12);
  border-color: rgba(200, 184, 154, 0.65);
  box-shadow: 0 16px 36px -18px rgba(0, 0, 0, 0.55);
}
.wo-enclave-scarcity__metrics li.wo-enclave-interactive.is-hot strong {
  color: #f0e6d0;
  text-shadow: 0 0 24px rgba(200, 184, 154, 0.35);
}

/* Shadow list rows */
.wo-enclave-shadow__list li.wo-enclave-interactive {
  overflow: hidden;
}
.wo-enclave-shadow__list li.wo-enclave-interactive.is-hot {
  background: color-mix(in srgb, var(--we-cream) 40%, #fff);
  border-color: color-mix(in srgb, var(--we-champagne-deep) 50%, var(--we-line));
}
html[data-theme="dark"] .wo-enclave-shadow__list li.wo-enclave-interactive.is-hot {
  background: rgba(246, 241, 232, 0.08);
}
.wo-enclave-shadow__list li.wo-enclave-interactive.is-hot > span {
  color: var(--we-champagne-deep);
  transform: scale(1.08);
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Stack instrument cards */
.wo-enclave-stack__list li.wo-enclave-interactive {
  overflow: hidden;
}
.wo-enclave-stack__list li.wo-enclave-interactive.is-hot {
  background: color-mix(in srgb, var(--we-cream) 35%, #fff);
  border-color: color-mix(in srgb, var(--we-champagne-deep) 55%, var(--we-line));
  box-shadow: 0 20px 44px -24px rgba(26, 24, 20, 0.4);
}
html[data-theme="dark"] .wo-enclave-stack__list li.wo-enclave-interactive.is-hot {
  background: rgba(246, 241, 232, 0.09);
}
.wo-enclave-stack__list li.wo-enclave-interactive.is-hot .wo-enclave-stack__n {
  color: var(--we-champagne-deep);
}

/* Listing cards already use --tx/--ty — reinforce with interactive class */
.wo-enclave-listing.wo-enclave-interactive {
  transform:
    perspective(900px)
    rotateX(var(--ty))
    rotateY(var(--tx))
    translate3d(0, calc(var(--lift) * -8px), 0);
}
.wo-enclave-listing.wo-enclave-interactive.is-hot {
  box-shadow: 0 32px 60px -28px rgba(26, 24, 20, 0.55);
  border-color: color-mix(in srgb, var(--we-champagne-deep) 40%, var(--we-line));
}

@media (prefers-reduced-motion: reduce) {
  .wo-enclave-interactive {
    transform: none !important;
  }
  .wo-enclave-interactive::after {
    display: none;
  }
}


/* ── Gazette team ── */
.wo-folio-team {
  padding: clamp(3.5rem, 9vh, 5.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wo-parchment, #faf7f2);
  border-top: 1px solid rgba(44, 24, 16, 0.08);
}
html[data-theme="dark"] .wo-folio-team {
  background: #14100e;
  border-top-color: rgba(244, 237, 224, 0.1);
}
.wo-folio-team__head {
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 5vh, 2.75rem);
  text-align: center;
}
.wo-folio-team__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-team__kicker { color: #c45a52; }
.wo-folio-team__head h2 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-folio-team__head h2 { color: #f4ede0; }
.wo-folio-team__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(44, 24, 16, 0.62);
}
html[data-theme="dark"] .wo-folio-team__lead { color: rgba(244, 237, 224, 0.68); }
.wo-folio-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: 78rem;
  margin-inline: auto;
}
.wo-folio-person {
  background: #fff;
  border: 1px solid rgba(44, 24, 16, 0.1);
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
html[data-theme="dark"] .wo-folio-person {
  background: #1c1613;
  border-color: rgba(244, 237, 224, 0.1);
}
.wo-folio-person:hover {
  border-color: rgba(140, 32, 32, 0.35);
  box-shadow: 0 22px 48px -28px rgba(44, 24, 16, 0.35);
  transform: translateY(-3px);
}
.wo-folio-person__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1410;
}
.wo-folio-person__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.wo-folio-person:hover .wo-folio-person__media img {
  transform: scale(1.05);
}
.wo-folio-person__n {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #faf7f2;
  background: rgba(20, 14, 12, 0.72);
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
}
.wo-folio-person__body {
  padding: 1.15rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.wo-folio-person__role {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c2020;
}
html[data-theme="dark"] .wo-folio-person__role { color: #c45a52; }
.wo-folio-person__name {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2c1810;
}
html[data-theme="dark"] .wo-folio-person__name { color: #f4ede0; }
.wo-folio-person__focus {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(44, 24, 16, 0.5);
}
html[data-theme="dark"] .wo-folio-person__focus { color: rgba(244, 237, 224, 0.55); }
.wo-folio-person__bio {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(44, 24, 16, 0.68);
}
html[data-theme="dark"] .wo-folio-person__bio { color: rgba(244, 237, 224, 0.72); }

@media (max-width: 900px) {
  .wo-folio-team__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SKYLINE — Foundation New York vertical (UNIQUE on World HQ)
   Taupe · gold · charcoal cinema — bridge to NY site, not enclave
   ═══════════════════════════════════════════════════════════ */
.wo-skyline {
  --ws-ink: #1a1714;
  --ws-stone: #7c7262;
  --ws-gold: #c68f43;
  --ws-cream: #f0eeea;
  --ws-paper: #e8e4dc;
  --ws-line: rgba(124, 114, 98, 0.22);
  --ws-ease: cubic-bezier(0.19, 1, 0.22, 1);
  background: var(--ws-cream);
  color: var(--ws-ink);
  overflow: clip;
}
html[data-theme="dark"] .wo-skyline {
  --ws-ink: #f0eeea;
  --ws-stone: #b5aa9a;
  --ws-gold: #d4a85c;
  --ws-cream: #0e0c0a;
  --ws-paper: #161310;
  --ws-line: rgba(240, 238, 234, 0.14);
  background: #0e0c0a;
  color: var(--ws-ink);
}

/* CTAs: beat .theme-world a { crimson } (0,1,1) — never red-on-gold / red-on-video */
.wo-skyline a.wo-skyline-btn,
.theme-world .wo-skyline a.wo-skyline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: background 0.3s var(--ws-ease), color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  will-change: transform;
}
/* Solid — cream plate, near-black type (WCAG on dark video) */
.wo-skyline a.wo-skyline-btn--solid,
.theme-world .wo-skyline a.wo-skyline-btn--solid,
.wo-skyline-mast a.wo-skyline-btn--solid,
.wo-skyline-visit a.wo-skyline-btn--solid {
  background: #f0eeea !important;
  color: #141210 !important;
  border-color: #f0eeea !important;
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.55);
}
.wo-skyline a.wo-skyline-btn--solid:hover,
.theme-world .wo-skyline a.wo-skyline-btn--solid:hover,
.wo-skyline-mast a.wo-skyline-btn--solid:hover,
.wo-skyline-visit a.wo-skyline-btn--solid:hover {
  background: #ffffff !important;
  color: #0e0c0a !important;
  border-color: #ffffff !important;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.5);
}
/* Line — pale outline on dark cinema fields */
.wo-skyline a.wo-skyline-btn--line,
.theme-world .wo-skyline a.wo-skyline-btn--line,
.wo-skyline-mast a.wo-skyline-btn--line {
  border-color: rgba(240, 238, 234, 0.85) !important;
  color: #f0eeea !important;
  background: rgba(14, 12, 10, 0.45) !important;
  box-shadow: none;
}
.wo-skyline a.wo-skyline-btn--line:hover,
.theme-world .wo-skyline a.wo-skyline-btn--line:hover,
.wo-skyline-mast a.wo-skyline-btn--line:hover {
  background: rgba(240, 238, 234, 0.18) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}
/* Ghost — secondary on dark visit band */
.wo-skyline a.wo-skyline-btn--ghost,
.theme-world .wo-skyline a.wo-skyline-btn--ghost,
.wo-skyline-visit a.wo-skyline-btn--ghost {
  border-color: rgba(240, 238, 234, 0.9) !important;
  color: #f0eeea !important;
  background: rgba(14, 12, 10, 0.5) !important;
  font-weight: 600;
  box-shadow: none;
}
.wo-skyline a.wo-skyline-btn--ghost:hover,
.theme-world .wo-skyline a.wo-skyline-btn--ghost:hover,
.wo-skyline-visit a.wo-skyline-btn--ghost:hover {
  background: rgba(240, 238, 234, 0.22) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Mast */
.wo-skyline-mast {
  position: relative;
  min-height: min(96vh, 58rem);
  display: grid;
  align-items: end;
  padding: clamp(5.5rem, 12vh, 7.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 7vh, 4.5rem);
  color: #f0eeea;
  overflow: hidden;
  isolation: isolate;
  background: #0e0c0a;
}
.wo-skyline-mast__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.wo-skyline-mast__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.06) brightness(0.72);
  transform: scale(1.04);
  animation: wo-skyline-video-drift 28s ease-in-out infinite alternate;
}
@keyframes wo-skyline-video-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, 1%, 0); }
}
.wo-skyline-mast__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 8, 6, 0.88) 0%, rgba(10, 8, 6, 0.55) 48%, rgba(10, 8, 6, 0.4) 100%),
    linear-gradient(to top, rgba(10, 8, 6, 0.85) 0%, transparent 48%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(198, 143, 67, 0.16), transparent 60%);
}
.wo-skyline-mast__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wo-skyline-mast__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}
.wo-skyline-mast__code {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(198, 143, 67, 0.9);
}
.wo-skyline-mast__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.62);
}
.wo-skyline-mast__title {
  margin: 0 0 1rem;
  font-family: var(--fw-serif, "Iowan Old Style", Palatino, Georgia, serif);
  font-size: clamp(2.5rem, 6.2vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.wo-skyline-mast__title span { display: block; }
.wo-skyline-mast__title-acc {
  color: var(--ws-gold);
  font-style: italic;
  font-weight: 400;
}
.wo-skyline-mast__lead {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: rgba(240, 238, 234, 0.84);
}
.wo-skyline-triad {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.wo-skyline-triad li {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 143, 67, 0.4);
  background: rgba(240, 238, 234, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0eeea;
}
.wo-skyline-mast__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.wo-skyline-mast__cue {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.45);
}
.wo-skyline-mast__cue i {
  width: 1px;
  height: 1.75rem;
  background: linear-gradient(to bottom, rgba(198, 143, 67, 0.8), transparent);
  animation: wo-skyline-cue 1.8s ease-in-out infinite;
}
@keyframes wo-skyline-cue {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.wo-skyline--ready .wo-skyline-mast [data-wo-skyline-line] {
  opacity: 0;
  transform: translate3d(0, 1.15rem, 0);
  transition: opacity 0.9s var(--ws-ease), transform 0.9s var(--ws-ease);
}
.wo-skyline--ready.is-booted .wo-skyline-mast [data-wo-skyline-line] {
  opacity: 1;
  transform: none;
}
.wo-skyline--ready.is-booted .wo-skyline-mast__inner > [data-wo-skyline-line]:nth-child(1) { transition-delay: 0.05s; }
.wo-skyline--ready.is-booted .wo-skyline-mast__inner > [data-wo-skyline-line]:nth-child(2) { transition-delay: 0.12s; }
.wo-skyline--ready.is-booted .wo-skyline-mast__title [data-wo-skyline-line]:first-child { transition-delay: 0.2s; }
.wo-skyline--ready.is-booted .wo-skyline-mast__title [data-wo-skyline-line]:last-child { transition-delay: 0.28s; }
.wo-skyline--ready.is-booted .wo-skyline-mast__inner > [data-wo-skyline-line]:nth-child(4) { transition-delay: 0.36s; }
.wo-skyline--ready.is-booted .wo-skyline-mast__inner > [data-wo-skyline-line]:nth-child(5) { transition-delay: 0.44s; }
.wo-skyline--ready.is-booted .wo-skyline-mast__inner > [data-wo-skyline-line]:nth-child(6) { transition-delay: 0.52s; }
.wo-skyline--ready.is-booted .wo-skyline-mast__cue { transition-delay: 0.7s; }

/* Quote */
.wo-skyline-quote {
  padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: #141210;
  color: #f0eeea;
  text-align: center;
}
.wo-skyline-quote blockquote {
  margin: 0 auto;
  max-width: 44rem;
}
.wo-skyline-quote p {
  margin: 0 0 1rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.wo-skyline-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.55em, 0);
  transition: opacity 0.65s var(--ws-ease), transform 0.65s var(--ws-ease);
}
.wo-skyline-word.is-in {
  opacity: 1;
  transform: none;
}
.wo-skyline-quote footer {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(198, 143, 67, 0.85);
}

/* Opportunities */
.wo-skyline-opps {
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  max-width: 90rem;
  margin: 0 auto;
}
.wo-skyline-opps__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: end;
  margin: 0 0 2.25rem;
}
.wo-skyline-opps__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ws-gold);
}
.wo-skyline-opps__head h2 {
  margin: 0;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.wo-skyline-opps__lead {
  margin: 0;
  line-height: 1.55;
  font-size: 1.02rem;
  color: color-mix(in srgb, var(--ws-ink) 70%, transparent);
}
.wo-skyline-opps__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.wo-skyline-card {
  --tx: 0deg;
  --ty: 0deg;
  --mx: 50%;
  --my: 40%;
  --lift: 0;
  display: grid;
  grid-template-rows: minmax(12rem, 17rem) auto;
  border-radius: 1.05rem;
  overflow: hidden;
  border: 1px solid var(--ws-line);
  background: color-mix(in srgb, var(--ws-cream) 80%, #fff);
  box-shadow: 0 20px 48px -30px rgba(26, 23, 20, 0.35);
  opacity: 0;
  translate: 0 1.35rem;
}
html[data-theme="dark"] .wo-skyline-card {
  background: rgba(240, 238, 234, 0.04);
}
.wo-skyline-card.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.8s var(--ws-ease), translate 0.8s var(--ws-ease);
}
.wo-skyline-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: minmax(14rem, 18rem);
}
.wo-skyline-card--wide .wo-skyline-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wo-skyline-card__media {
  position: relative;
  overflow: hidden;
  background: #141210;
}
.wo-skyline-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.9s var(--ws-ease);
  animation: wo-skyline-live 18s ease-in-out infinite alternate;
}
@keyframes wo-skyline-live {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
.wo-skyline-card:hover .wo-skyline-card__media img,
.wo-skyline-card.is-hot .wo-skyline-card__media img {
  animation: none;
  transform: scale(1.12);
}
.wo-skyline-card__tag {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(14, 12, 10, 0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 143, 67, 0.4);
  color: #f0eeea;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wo-skyline-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
}
.wo-skyline-card__body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.wo-skyline-card__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ws-ink) 72%, transparent);
}

/* Benchmark */
.wo-skyline-bench {
  position: relative;
  min-height: min(72vh, 38rem);
  display: grid;
  align-items: end;
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  color: #f0eeea;
  overflow: hidden;
}
.wo-skyline-bench__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-skyline-bench__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.55);
  animation: wo-skyline-video-drift 30s ease-in-out infinite alternate;
}
.wo-skyline-bench__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 8, 6, 0.92) 0%, rgba(10, 8, 6, 0.45) 55%, rgba(10, 8, 6, 0.35) 100%),
    radial-gradient(ellipse 45% 40% at 80% 25%, rgba(198, 143, 67, 0.18), transparent 55%);
}
.wo-skyline-bench__inner {
  position: relative;
  z-index: 1;
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.wo-skyline-bench__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ws-gold);
}
.wo-skyline-bench__copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.wo-skyline-bench__lead {
  margin: 0 0 1.6rem;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(240, 238, 234, 0.84);
}
.wo-skyline-bench__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.wo-skyline-bench__metrics li {
  padding: 1.1rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(198, 143, 67, 0.32);
  background: rgba(240, 238, 234, 0.06);
  backdrop-filter: blur(12px);
  opacity: 0;
  translate: 0 1rem;
}
.wo-skyline-bench__metrics li.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.75s var(--ws-ease), translate 0.75s var(--ws-ease);
}
.wo-skyline-bench__metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 500;
  color: var(--ws-gold);
}
.wo-skyline-bench__metrics span {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(240, 238, 234, 0.72);
}
.wo-skyline-bench__aside {
  padding: 1.4rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(198, 143, 67, 0.35);
  background: rgba(14, 12, 10, 0.5);
  backdrop-filter: blur(12px);
  opacity: 0;
  translate: 0 1rem;
}
.wo-skyline-bench__aside.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.8s var(--ws-ease), translate 0.8s var(--ws-ease);
}
.wo-skyline-bench__pull {
  margin: 0 0 0.65rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.4;
  color: #f0eeea;
}
.wo-skyline-bench__attr {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(198, 143, 67, 0.85);
}

/* Execution */
.wo-skyline-exec {
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--ws-cream);
}
.wo-skyline-exec__layout {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.wo-skyline-exec__rail {
  position: sticky;
  top: 5.5rem;
}
.wo-skyline-exec__plate {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: min(68vh, 30rem);
  border: 1px solid var(--ws-line);
  box-shadow: 0 24px 48px -28px rgba(26, 23, 20, 0.4);
  opacity: 0;
  translate: 0 1rem;
}
.wo-skyline-exec__plate.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.8s var(--ws-ease), translate 0.8s var(--ws-ease);
}
.wo-skyline-exec__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.wo-skyline-exec__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ws-gold);
}
.wo-skyline-exec__main h2 {
  margin: 0 0 0.85rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.wo-skyline-exec__lead {
  margin: 0 0 1.5rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ws-ink) 72%, transparent);
}
.wo-skyline-exec__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.wo-skyline-exec__list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.85rem;
  padding: 1.1rem 1.05rem;
  border-radius: 0.9rem;
  border: 1px solid var(--ws-line);
  background: color-mix(in srgb, var(--ws-cream) 70%, #fff);
  opacity: 0;
  translate: 0 0.9rem;
}
html[data-theme="dark"] .wo-skyline-exec__list li {
  background: rgba(240, 238, 234, 0.04);
}
.wo-skyline-exec__list li.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.7s var(--ws-ease), translate 0.7s var(--ws-ease);
}
.wo-skyline-exec__list li > span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--ws-gold);
  font-weight: 600;
  padding-top: 0.15rem;
}
.wo-skyline-exec__list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}
.wo-skyline-exec__list p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--ws-ink) 68%, transparent);
}

/* Visit */
.wo-skyline-visit {
  position: relative;
  min-height: min(58vh, 30rem);
  display: grid;
  align-items: end;
  padding: clamp(3.5rem, 10vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  color: #f0eeea;
  overflow: hidden;
}
.wo-skyline-visit__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-skyline-visit__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(0.52);
  animation: wo-skyline-video-drift 26s ease-in-out infinite alternate;
}
.wo-skyline-visit__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 8, 6, 0.88) 0%, rgba(10, 8, 6, 0.45) 55%, rgba(10, 8, 6, 0.55) 100%),
    radial-gradient(ellipse 45% 40% at 80% 30%, rgba(198, 143, 67, 0.2), transparent 55%);
}
.wo-skyline-visit__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}
.wo-skyline-visit__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ws-gold);
}
.wo-skyline-visit__inner h2 {
  margin: 0 0 0.85rem;
  font-family: var(--fw-serif, Georgia, serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.wo-skyline-visit__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(240, 238, 234, 0.84);
}
.wo-skyline-visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Interactive */
.wo-skyline-interactive {
  --tx: 0deg;
  --ty: 0deg;
  --mx: 50%;
  --my: 40%;
  --lift: 0;
  position: relative;
  cursor: pointer;
  transform:
    perspective(900px)
    rotateX(var(--ty))
    rotateY(var(--tx))
    translate3d(0, calc(var(--lift) * -6px), 0);
  transition:
    transform 0.35s var(--ws-ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    background 0.3s ease;
  will-change: transform;
}
.wo-skyline-interactive::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(198, 143, 67, 0.2),
    transparent 55%
  );
}
.wo-skyline-interactive.is-hot {
  box-shadow: 0 18px 40px -22px rgba(26, 23, 20, 0.45);
  border-color: color-mix(in srgb, var(--ws-gold) 50%, var(--ws-line));
  z-index: 2;
}
.wo-skyline-interactive.is-hot::after { opacity: 1; }
.wo-skyline-interactive.is-press {
  transform:
    perspective(900px)
    rotateX(var(--ty))
    rotateY(var(--tx))
    translate3d(0, calc(var(--lift) * -2px), 0) scale(0.985);
}
.wo-skyline-card.wo-skyline-interactive {
  transform:
    perspective(900px)
    rotateX(var(--ty))
    rotateY(var(--tx))
    translate3d(0, calc(var(--lift) * -8px), 0);
}
.wo-skyline-bench__metrics li.wo-skyline-interactive.is-hot {
  background: rgba(240, 238, 234, 0.12);
  border-color: rgba(198, 143, 67, 0.7);
}
.wo-skyline-bench__metrics li.wo-skyline-interactive.is-hot strong {
  color: #e8c98a;
  text-shadow: 0 0 22px rgba(198, 143, 67, 0.35);
}
.wo-skyline-exec__list li.wo-skyline-interactive.is-hot {
  background: color-mix(in srgb, var(--ws-cream) 40%, #fff);
  border-color: color-mix(in srgb, var(--ws-gold) 50%, var(--ws-line));
}
html[data-theme="dark"] .wo-skyline-exec__list li.wo-skyline-interactive.is-hot {
  background: rgba(240, 238, 234, 0.09);
}

/* Reveals */
.wo-skyline [data-wo-skyline-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  transition: opacity 0.95s var(--ws-ease), transform 0.95s var(--ws-ease);
}
.wo-skyline [data-wo-skyline-reveal].is-in {
  opacity: 1;
  transform: none;
}
.wo-skyline--reduced [data-wo-skyline-reveal],
.wo-skyline--reduced [data-wo-skyline-line],
.wo-skyline--reduced [data-wo-skyline-card],
.wo-skyline--reduced .wo-skyline-word {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
}

@media (max-width: 980px) {
  .wo-skyline-opps__head,
  .wo-skyline-bench__inner,
  .wo-skyline-exec__layout {
    grid-template-columns: 1fr;
  }
  .wo-skyline-opps__grid {
    grid-template-columns: 1fr;
  }
  .wo-skyline-card--wide {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(12rem, 16rem) auto;
  }
  .wo-skyline-bench__metrics,
  .wo-skyline-exec__list {
    grid-template-columns: 1fr;
  }
  .wo-skyline-exec__rail {
    position: relative;
    top: auto;
  }
  .wo-skyline-exec__plate {
    aspect-ratio: 16 / 11;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wo-skyline-mast__video,
  .wo-skyline-bench__video,
  .wo-skyline-visit__video,
  .wo-skyline-card__media img,
  .wo-skyline-mast__cue i {
    animation: none !important;
  }
  .wo-skyline-interactive {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   REBUILD — Foundation Ukraine vertical (UNIQUE on World HQ)
   Parchment · crimson · wheat · warm ink — bridge to UA atlas
   NOT enclave / skyline / charter
   ═══════════════════════════════════════════════════════════ */
.wo-rebuild {
  --wr-ink: #1a1410;
  --wr-paper: #f4ede0;
  --wr-paper-alt: #ede4d3;
  --wr-crimson: #8c2020;
  --wr-crimson-hot: #b4463e;
  --wr-wheat: #c4a35a;
  --wr-soft: rgba(26, 20, 16, 0.62);
  --wr-line: rgba(26, 20, 16, 0.12);
  --wr-field: #120e0c;
  --wr-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--wr-paper);
  color: var(--wr-ink);
  overflow: clip;
}
html[data-theme="dark"] .wo-rebuild {
  --wr-ink: #f4ede0;
  --wr-paper: #14110e;
  --wr-paper-alt: #1c1713;
  --wr-crimson: #c45a50;
  --wr-crimson-hot: #d45a50;
  --wr-wheat: #d4b06a;
  --wr-soft: rgba(244, 237, 224, 0.68);
  --wr-line: rgba(244, 237, 224, 0.12);
  --wr-field: #0c0a08;
  background: #14110e;
  color: var(--wr-ink);
}

/* CTAs — beat .theme-world a crimson (high contrast on dark fields) */
.wo-rebuild a.wo-rebuild-btn,
.theme-world .wo-rebuild a.wo-rebuild-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: background 0.3s var(--wr-ease), color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  will-change: transform;
}
.wo-rebuild a.wo-rebuild-btn--solid,
.theme-world .wo-rebuild a.wo-rebuild-btn--solid,
.wo-rebuild-mast a.wo-rebuild-btn--solid,
.wo-rebuild-visit a.wo-rebuild-btn--solid {
  background: #f4ede0 !important;
  color: #1a1410 !important;
  border-color: #f4ede0 !important;
  box-shadow: 0 14px 36px -14px rgba(0, 0, 0, 0.55);
}
.wo-rebuild a.wo-rebuild-btn--solid:hover,
.theme-world .wo-rebuild a.wo-rebuild-btn--solid:hover,
.wo-rebuild-mast a.wo-rebuild-btn--solid:hover,
.wo-rebuild-visit a.wo-rebuild-btn--solid:hover {
  background: #ffffff !important;
  color: #120e0c !important;
  border-color: #ffffff !important;
}
.wo-rebuild a.wo-rebuild-btn--line,
.theme-world .wo-rebuild a.wo-rebuild-btn--line,
.wo-rebuild-mast a.wo-rebuild-btn--line {
  border-color: rgba(244, 237, 224, 0.85) !important;
  color: #f4ede0 !important;
  background: rgba(18, 14, 12, 0.45) !important;
}
.wo-rebuild a.wo-rebuild-btn--line:hover,
.theme-world .wo-rebuild a.wo-rebuild-btn--line:hover,
.wo-rebuild-mast a.wo-rebuild-btn--line:hover {
  background: rgba(244, 237, 224, 0.16) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.wo-rebuild a.wo-rebuild-btn--ghost,
.theme-world .wo-rebuild a.wo-rebuild-btn--ghost,
.wo-rebuild-visit a.wo-rebuild-btn--ghost {
  border-color: rgba(244, 237, 224, 0.9) !important;
  color: #f4ede0 !important;
  background: rgba(18, 14, 12, 0.5) !important;
}
.wo-rebuild a.wo-rebuild-btn--ghost:hover,
.theme-world .wo-rebuild a.wo-rebuild-btn--ghost:hover,
.wo-rebuild-visit a.wo-rebuild-btn--ghost:hover {
  background: rgba(244, 237, 224, 0.2) !important;
  border-color: #fff !important;
  color: #fff !important;
}

/* —— Dawn mast —— */
.wo-rebuild-mast {
  position: relative;
  min-height: min(96vh, 58rem);
  display: grid;
  align-items: end;
  padding: clamp(5.5rem, 12vh, 7.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 7vh, 4.5rem);
  color: #f4ede0;
  overflow: hidden;
  isolation: isolate;
  background: var(--wr-field);
}
.wo-rebuild-mast__field {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wo-rebuild-mast__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.wo-rebuild-mast__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 10, 8, 0.92) 0%, rgba(12, 10, 8, 0.72) 42%, rgba(12, 10, 8, 0.35) 70%, rgba(12, 10, 8, 0.55) 100%),
    linear-gradient(0deg, rgba(12, 10, 8, 0.75) 0%, transparent 45%);
}
.wo-rebuild-mast__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 237, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 237, 224, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, #000 20%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
}
.wo-rebuild-mast__dawn {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(196, 163, 90, 0.22), transparent 70%);
  pointer-events: none;
}
.wo-rebuild-mast__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  max-width: 78rem;
  width: 100%;
  margin-inline: auto;
}
.wo-rebuild-mast__code {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.72);
}
.wo-rebuild-mast__code span:first-child {
  color: var(--wr-wheat);
  font-weight: 700;
}
.wo-rebuild-mast__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wr-wheat);
}
.wo-rebuild-mast__title {
  margin: 0 0 1.1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.wo-rebuild-mast__title span { display: block; }
.wo-rebuild-mast__title-acc {
  color: color-mix(in srgb, #f4ede0 78%, var(--wr-wheat));
  font-style: italic;
  font-weight: 500;
}
.wo-rebuild-mast__lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.86);
}
.wo-rebuild-metrics {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.wo-rebuild-metrics li {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(244, 237, 224, 0.18);
  background: rgba(18, 14, 12, 0.4);
  backdrop-filter: blur(8px);
}
.wo-rebuild-metrics strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #f4ede0;
  letter-spacing: 0.02em;
}
.wo-rebuild-metrics span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: rgba(244, 237, 224, 0.68);
  text-transform: uppercase;
}
.wo-rebuild-mast__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.wo-rebuild-mast__plates {
  position: relative;
  min-height: 18rem;
}
.wo-rebuild-mast__plate {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 237, 224, 0.18);
  box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.65);
  will-change: transform;
}
.wo-rebuild-mast__plate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wo-rebuild-mast__plate--a {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 16rem;
  margin-left: auto;
  z-index: 2;
}
.wo-rebuild-mast__plate--b {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: min(58%, 14rem);
  aspect-ratio: 5 / 4;
  z-index: 1;
}
.wo-rebuild-mast__badge {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  z-index: 3;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--wr-crimson);
  color: #f4ede0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: grid;
  gap: 0.2rem;
}
.wo-rebuild-mast__badge strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: none;
}
.wo-rebuild-mast__cue {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.5rem);
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.65);
}
.wo-rebuild-mast__cue i {
  display: block;
  width: 1px;
  height: 2.25rem;
  background: linear-gradient(180deg, var(--wr-wheat), transparent);
  animation: wo-rebuild-cue 1.8s ease-in-out infinite;
}
@keyframes wo-rebuild-cue {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
.wo-rebuild--ready .wo-rebuild-mast [data-wo-rebuild-line] {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition: opacity 0.9s var(--wr-ease), transform 0.9s var(--wr-ease);
}
.wo-rebuild--ready.is-booted .wo-rebuild-mast [data-wo-rebuild-line] {
  opacity: 1;
  transform: none;
}
.wo-rebuild--ready.is-booted .wo-rebuild-mast__copy > [data-wo-rebuild-line]:nth-child(1) { transition-delay: 0.05s; }
.wo-rebuild--ready.is-booted .wo-rebuild-mast__copy > [data-wo-rebuild-line]:nth-child(2) { transition-delay: 0.12s; }
.wo-rebuild--ready.is-booted .wo-rebuild-mast__title [data-wo-rebuild-line]:first-child { transition-delay: 0.2s; }
.wo-rebuild--ready.is-booted .wo-rebuild-mast__title [data-wo-rebuild-line]:last-child { transition-delay: 0.28s; }
.wo-rebuild--ready.is-booted .wo-rebuild-mast__copy > [data-wo-rebuild-line]:nth-child(4) { transition-delay: 0.36s; }
.wo-rebuild--ready.is-booted .wo-rebuild-mast__copy > [data-wo-rebuild-line]:nth-child(5) { transition-delay: 0.44s; }
.wo-rebuild--ready.is-booted .wo-rebuild-mast__copy > [data-wo-rebuild-line]:nth-child(6) { transition-delay: 0.52s; }
.wo-rebuild--ready.is-booted .wo-rebuild-mast__badge { transition-delay: 0.6s; }
.wo-rebuild--ready.is-booted .wo-rebuild-mast__cue { transition-delay: 0.75s; }

/* —— Manifest —— */
.wo-rebuild-manifest {
  padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wr-paper);
  text-align: center;
}
.wo-rebuild-manifest__rule {
  width: min(8rem, 30vw);
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--wr-crimson), transparent);
}
.wo-rebuild-manifest__rule:last-child { margin: 1.5rem auto 0; }
.wo-rebuild-manifest__quote {
  margin: 0 auto;
  max-width: 44rem;
}
.wo-rebuild-manifest__quote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: var(--wr-ink);
}
.wo-rebuild-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.55rem, 0);
  transition: opacity 0.55s var(--wr-ease), transform 0.55s var(--wr-ease);
}
.wo-rebuild-word.is-in {
  opacity: 1;
  transform: none;
}
.wo-rebuild-manifest__quote footer {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wr-crimson);
}

/* —— Thesis spine —— */
.wo-rebuild-thesis {
  position: relative;
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  color: #f4ede0;
  overflow: hidden;
  isolation: isolate;
  background: var(--wr-field);
}
.wo-rebuild-thesis__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wo-rebuild-thesis__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.wo-rebuild-thesis__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12, 10, 8, 0.94) 0%, rgba(12, 10, 8, 0.82) 48%, rgba(12, 10, 8, 0.55) 100%),
    linear-gradient(0deg, rgba(12, 10, 8, 0.5), transparent 40%);
}
.wo-rebuild-thesis__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}
.wo-rebuild-thesis__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wr-wheat);
}
.wo-rebuild-thesis__inner h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
}
.wo-rebuild-thesis__lead {
  margin: 0 0 2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.82);
}
.wo-rebuild-spine {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  border-left: 1px solid rgba(196, 163, 90, 0.35);
}
.wo-rebuild-spine li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem 1rem 1.25rem;
  background: rgba(18, 14, 12, 0.45);
  border: 1px solid rgba(244, 237, 224, 0.12);
  opacity: 0;
  transform: translate3d(-0.75rem, 0, 0);
  transition: opacity 0.7s var(--wr-ease), transform 0.7s var(--wr-ease), border-color 0.3s ease;
}
.wo-rebuild-spine li.is-in {
  opacity: 1;
  transform: none;
}
.wo-rebuild-spine__n {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--wr-wheat);
  padding-top: 0.2rem;
}
.wo-rebuild-spine strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.wo-rebuild-spine p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.74);
}

/* —— Asset lanes —— */
.wo-rebuild-assets {
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wr-paper);
}
.wo-rebuild-assets__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem 2.5rem;
  margin-bottom: clamp(2rem, 5vh, 3rem);
  max-width: 78rem;
  margin-inline: auto;
  align-items: end;
}
.wo-rebuild-assets__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wr-crimson);
}
.wo-rebuild-assets__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--wr-ink);
}
.wo-rebuild-assets__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--wr-soft);
}
.wo-rebuild-assets__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: 78rem;
  margin-inline: auto;
}
.wo-rebuild-lane {
  background: var(--wr-paper-alt);
  border: 1px solid var(--wr-line);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  transition: opacity 0.75s var(--wr-ease), transform 0.75s var(--wr-ease), box-shadow 0.35s ease, border-color 0.35s ease;
}
.wo-rebuild-lane.is-in {
  opacity: 1;
  transform: none;
}
html[data-theme="dark"] .wo-rebuild-lane {
  background: var(--wr-paper-alt);
}
.wo-rebuild-lane__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.wo-rebuild-lane__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--wr-ease);
}
.wo-rebuild-lane:hover .wo-rebuild-lane__media img,
.wo-rebuild-lane.is-hot .wo-rebuild-lane__media img {
  transform: scale(1.06);
}
.wo-rebuild-lane__tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.4rem 0.65rem;
  background: rgba(18, 14, 12, 0.78);
  color: #f4ede0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wo-rebuild-lane__body {
  padding: 1.15rem 1.2rem 1.35rem;
}
.wo-rebuild-lane__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--wr-ink);
}
.wo-rebuild-lane__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--wr-soft);
}

/* —— Model —— */
.wo-rebuild-model {
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wr-paper-alt);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  max-width: none;
  align-items: stretch;
}
.wo-rebuild-model__layout {
  max-width: 48rem;
}
.wo-rebuild-model__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wr-crimson);
}
.wo-rebuild-model__copy h2 {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--wr-ink);
}
.wo-rebuild-model__lead {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wr-soft);
}
.wo-rebuild-model__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.wo-rebuild-model__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  background: var(--wr-paper);
  border: 1px solid var(--wr-line);
  border-left: 3px solid var(--wr-crimson);
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 0.7s var(--wr-ease), transform 0.7s var(--wr-ease);
}
.wo-rebuild-model__list li.is-in {
  opacity: 1;
  transform: none;
}
.wo-rebuild-model__list li > span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--wr-crimson);
  padding-top: 0.2rem;
}
.wo-rebuild-model__list strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--wr-ink);
}
.wo-rebuild-model__list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--wr-soft);
}
.wo-rebuild-model__aside {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    linear-gradient(160deg, rgba(140, 32, 32, 0.94), rgba(26, 20, 16, 0.96)),
    var(--wr-field);
  color: #f4ede0;
  border: 1px solid rgba(140, 32, 32, 0.4);
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  transition: opacity 0.75s var(--wr-ease), transform 0.75s var(--wr-ease);
}
.wo-rebuild-model__aside.is-in {
  opacity: 1;
  transform: none;
}
.wo-rebuild-model__pull {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-style: italic;
  line-height: 1.3;
}
.wo-rebuild-model__attr {
  margin: 1.1rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
}

/* —— Crew —— */
.wo-rebuild-crew {
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wr-paper);
}
.wo-rebuild-crew__head {
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 5vh, 3rem);
  text-align: center;
}
.wo-rebuild-crew__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wr-crimson);
}
.wo-rebuild-crew__head h2 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  font-weight: 600;
  color: var(--wr-ink);
}
.wo-rebuild-crew__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--wr-soft);
}
.wo-rebuild-crew__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 78rem;
  margin-inline: auto;
}
.wo-rebuild-person {
  background: var(--wr-paper-alt);
  border: 1px solid var(--wr-line);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 1.3rem, 0);
  transition: opacity 0.75s var(--wr-ease), transform 0.75s var(--wr-ease), border-color 0.3s ease;
}
.wo-rebuild-person.is-in {
  opacity: 1;
  transform: none;
}
.wo-rebuild-person--accent {
  border-color: color-mix(in srgb, var(--wr-crimson) 45%, var(--wr-line));
}
.wo-rebuild-person__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.wo-rebuild-person__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--wr-ease);
}
.wo-rebuild-person:hover .wo-rebuild-person__media img,
.wo-rebuild-person.is-hot .wo-rebuild-person__media img {
  transform: scale(1.05);
}
.wo-rebuild-person__n {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: #f4ede0;
  background: rgba(18, 14, 12, 0.72);
  padding: 0.3rem 0.5rem;
}
.wo-rebuild-person__body {
  padding: 1.1rem 1.15rem 1.35rem;
}
.wo-rebuild-person__role {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wr-crimson);
}
.wo-rebuild-person h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wr-ink);
}
.wo-rebuild-person__body p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--wr-soft);
}

/* —— Visit —— */
.wo-rebuild-visit {
  position: relative;
  padding: clamp(4.5rem, 12vh, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  color: #f4ede0;
  overflow: hidden;
  isolation: isolate;
  background: var(--wr-field);
  text-align: center;
}
.wo-rebuild-visit__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wo-rebuild-visit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.wo-rebuild-visit__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.55), rgba(12, 10, 8, 0.88)),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(140, 32, 32, 0.28), transparent 70%);
}
.wo-rebuild-visit__inner {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin-inline: auto;
}
.wo-rebuild-visit__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wr-wheat);
}
.wo-rebuild-visit__inner h2 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
}
.wo-rebuild-visit__lead {
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.84);
}
.wo-rebuild-visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* —— Interactive tilt —— */
.wo-rebuild-interactive {
  transform-style: preserve-3d;
  transform:
    perspective(900px)
    rotateX(var(--ty, 0deg))
    rotateY(var(--tx, 0deg))
    translate3d(0, calc(var(--lift, 0) * -4px), 0);
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.wo-rebuild-interactive::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(196, 163, 90, 0.12),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wo-rebuild-interactive.is-hot {
  border-color: color-mix(in srgb, var(--wr-wheat) 40%, var(--wr-line));
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.35);
}
.wo-rebuild-interactive.is-hot::after { opacity: 1; }
.wo-rebuild-interactive.is-press {
  transform:
    perspective(900px)
    rotateX(var(--ty, 0deg))
    rotateY(var(--tx, 0deg))
    scale(0.985);
}
.wo-rebuild-lane.wo-rebuild-interactive,
.wo-rebuild-person.wo-rebuild-interactive {
  position: relative;
}
.wo-rebuild-spine li.wo-rebuild-interactive.is-hot,
.wo-rebuild-model__list li.wo-rebuild-interactive.is-hot {
  border-color: color-mix(in srgb, var(--wr-wheat) 50%, rgba(244, 237, 224, 0.2));
}

/* —— Reveal system —— */
.wo-rebuild [data-wo-rebuild-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  transition: opacity 0.9s var(--wr-ease), transform 0.9s var(--wr-ease);
}
.wo-rebuild [data-wo-rebuild-reveal].is-in {
  opacity: 1;
  transform: none;
}
.wo-rebuild--reduced [data-wo-rebuild-reveal],
.wo-rebuild--reduced [data-wo-rebuild-line],
.wo-rebuild--reduced [data-wo-rebuild-card],
.wo-rebuild--reduced .wo-rebuild-word {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
}

@media (max-width: 960px) {
  .wo-rebuild-mast__layout,
  .wo-rebuild-assets__head,
  .wo-rebuild-model,
  .wo-rebuild-crew__grid {
    grid-template-columns: 1fr;
  }
  .wo-rebuild-assets__grid {
    grid-template-columns: 1fr;
  }
  .wo-rebuild-mast__plates {
    min-height: 14rem;
    max-width: 22rem;
  }
  .wo-rebuild-mast__plate--a {
    max-width: 12rem;
  }
  .wo-rebuild-metrics {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .wo-rebuild-mast__actions,
  .wo-rebuild-visit__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wo-rebuild-mast__cue i,
  .wo-rebuild-lane__media img,
  .wo-rebuild-person__media img {
    animation: none !important;
    transition: none !important;
  }
  .wo-rebuild-interactive {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   FORGE — Foundation Incubator vertical (UNIQUE on World HQ)
   Dark linear · clinical ink · soft radius · crimson pulse
   Bridge to foundation-incubator.com — NOT rebuild/skyline/enclave
   ═══════════════════════════════════════════════════════════ */
.wo-forge {
  --wf-bg: #0a0a0b;
  --wf-elev: #121214;
  --wf-soft: #161618;
  --wf-card: #141516;
  --wf-ink: #f2f2f2;
  --wf-ink-soft: rgba(242, 242, 242, 0.68);
  --wf-ink-mute: rgba(242, 242, 242, 0.45);
  --wf-line: rgba(255, 255, 255, 0.1);
  --wf-crimson: #8c2020;
  --wf-crimson-hot: #c43c34;
  --wf-accent: #e07068;
  --wf-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wf-radius: 12px;
  --wf-radius-lg: 16px;
  background: var(--wf-bg);
  color: var(--wf-ink);
  overflow: clip;
}
html[data-theme="dark"] .wo-forge {
  --wf-bg: #08090a;
  --wf-elev: #121214;
  --wf-soft: #161618;
  --wf-card: #141516;
}

/* CTAs — high contrast; beat .theme-world a crimson */
.wo-forge a.wo-forge-btn,
.theme-world .wo-forge a.wo-forge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: background 0.25s var(--wf-ease), color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  will-change: transform;
}
.wo-forge a.wo-forge-btn--solid,
.theme-world .wo-forge a.wo-forge-btn--solid,
.wo-forge-mast a.wo-forge-btn--solid,
.wo-forge-visit a.wo-forge-btn--solid {
  background: #f2f2f2 !important;
  color: #0a0a0b !important;
  border-color: #f2f2f2 !important;
  box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.55);
}
.wo-forge a.wo-forge-btn--solid:hover,
.theme-world .wo-forge a.wo-forge-btn--solid:hover,
.wo-forge-mast a.wo-forge-btn--solid:hover,
.wo-forge-visit a.wo-forge-btn--solid:hover {
  background: #ffffff !important;
  color: #000 !important;
  border-color: #ffffff !important;
}
.wo-forge a.wo-forge-btn--line,
.theme-world .wo-forge a.wo-forge-btn--line,
.wo-forge-mast a.wo-forge-btn--line {
  border-color: rgba(242, 242, 242, 0.45) !important;
  color: #f2f2f2 !important;
  background: rgba(10, 10, 11, 0.4) !important;
}
.wo-forge a.wo-forge-btn--line:hover,
.theme-world .wo-forge a.wo-forge-btn--line:hover,
.wo-forge-mast a.wo-forge-btn--line:hover {
  border-color: #fff !important;
  background: rgba(242, 242, 242, 0.1) !important;
  color: #fff !important;
}
.wo-forge a.wo-forge-btn--ghost,
.theme-world .wo-forge a.wo-forge-btn--ghost,
.wo-forge-visit a.wo-forge-btn--ghost {
  border-color: rgba(242, 242, 242, 0.5) !important;
  color: #f2f2f2 !important;
  background: rgba(10, 10, 11, 0.45) !important;
}
.wo-forge a.wo-forge-btn--ghost:hover,
.theme-world .wo-forge a.wo-forge-btn--ghost:hover,
.wo-forge-visit a.wo-forge-btn--ghost:hover {
  background: rgba(242, 242, 242, 0.14) !important;
  border-color: #fff !important;
  color: #fff !important;
}

/* —— Signal mast —— */
.wo-forge-mast {
  position: relative;
  min-height: min(96vh, 58rem);
  display: grid;
  align-items: end;
  padding: clamp(5.5rem, 12vh, 7.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 7vh, 4.5rem);
  color: var(--wf-ink);
  overflow: hidden;
  isolation: isolate;
  background: var(--wf-bg);
}
.wo-forge-mast__field {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wo-forge-mast__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.08) brightness(0.48);
  transform: scale(1.06);
  will-change: transform;
}
.wo-forge-mast__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 10, 11, 0.94) 0%, rgba(10, 10, 11, 0.78) 44%, rgba(10, 10, 11, 0.4) 72%, rgba(10, 10, 11, 0.72) 100%),
    linear-gradient(0deg, rgba(10, 10, 11, 0.85) 0%, transparent 48%),
    linear-gradient(120deg, rgba(140, 32, 32, 0.22), transparent 55%);
}
.wo-forge-mast__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(224, 112, 104, 0.06) 48%,
    transparent 52%
  );
  background-size: 100% 220%;
  animation: wo-forge-scan 7s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes wo-forge-scan {
  0%, 100% { background-position: 0% 0%; opacity: 0.35; }
  50% { background-position: 0% 100%; opacity: 0.7; }
}
.wo-forge-mast__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wo-forge-mast__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: end;
  max-width: 78rem;
  width: 100%;
  margin-inline: auto;
}
.wo-forge-mast__code {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wf-ink-mute);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.wo-forge-mast__code span:first-child {
  color: var(--wf-accent);
  font-weight: 700;
}
.wo-forge-mast__kicker {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-accent);
  font-weight: 500;
}
.wo-forge-mast__title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.wo-forge-mast__title span { display: block; }
.wo-forge-mast__title-acc {
  color: var(--wf-ink-soft);
  font-weight: 500;
}
.wo-forge-mast__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  color: var(--wf-ink-soft);
}
.wo-forge-signals {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.wo-forge-signals li {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius);
  background: rgba(20, 21, 22, 0.65);
  backdrop-filter: blur(10px);
}
.wo-forge-signals strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.wo-forge-signals span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--wf-ink-mute);
}
.wo-forge-mast__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.wo-forge-mast__stack {
  position: relative;
  min-height: 18rem;
}
.wo-forge-mast__card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--wf-radius-lg);
  border: 1px solid var(--wf-line);
  box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.7);
  will-change: transform;
}
.wo-forge-mast__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}
.wo-forge-mast__card--a {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 15.5rem;
  margin-left: auto;
  z-index: 2;
}
.wo-forge-mast__card--b {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: min(58%, 13.5rem);
  aspect-ratio: 5 / 4;
  z-index: 1;
}
.wo-forge-mast__badge {
  position: absolute;
  right: 0.25rem;
  bottom: -0.35rem;
  z-index: 3;
  margin: 0;
  padding: 0.7rem 0.95rem;
  border-radius: var(--wf-radius);
  background: var(--wf-crimson);
  color: #f2f2f2;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: grid;
  gap: 0.2rem;
}
.wo-forge-mast__badge strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: none;
}
.wo-forge-mast__cue {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.5rem);
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wf-ink-mute);
}
.wo-forge-mast__cue i {
  display: block;
  width: 1px;
  height: 2.1rem;
  background: linear-gradient(180deg, var(--wf-accent), transparent);
  animation: wo-forge-cue 1.8s ease-in-out infinite;
}
@keyframes wo-forge-cue {
  0%, 100% { transform: scaleY(0.55); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}
.wo-forge--ready .wo-forge-mast [data-wo-forge-line] {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 0.85s var(--wf-ease), transform 0.85s var(--wf-ease);
}
.wo-forge--ready.is-booted .wo-forge-mast [data-wo-forge-line] {
  opacity: 1;
  transform: none;
}
.wo-forge--ready.is-booted .wo-forge-mast__copy > [data-wo-forge-line]:nth-child(1) { transition-delay: 0.04s; }
.wo-forge--ready.is-booted .wo-forge-mast__copy > [data-wo-forge-line]:nth-child(2) { transition-delay: 0.1s; }
.wo-forge--ready.is-booted .wo-forge-mast__title [data-wo-forge-line]:nth-child(1) { transition-delay: 0.16s; }
.wo-forge--ready.is-booted .wo-forge-mast__title [data-wo-forge-line]:nth-child(2) { transition-delay: 0.22s; }
.wo-forge--ready.is-booted .wo-forge-mast__title [data-wo-forge-line]:nth-child(3) { transition-delay: 0.28s; }
.wo-forge--ready.is-booted .wo-forge-mast__copy > [data-wo-forge-line]:nth-child(4) { transition-delay: 0.34s; }
.wo-forge--ready.is-booted .wo-forge-mast__copy > [data-wo-forge-line]:nth-child(5) { transition-delay: 0.42s; }
.wo-forge--ready.is-booted .wo-forge-mast__copy > [data-wo-forge-line]:nth-child(6) { transition-delay: 0.5s; }
.wo-forge--ready.is-booted .wo-forge-mast__badge { transition-delay: 0.58s; }
.wo-forge--ready.is-booted .wo-forge-mast__cue { transition-delay: 0.72s; }

/* —— Belief —— */
.wo-forge-belief {
  padding: clamp(3.25rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wf-elev);
  border-block: 1px solid var(--wf-line);
}
.wo-forge-belief__inner {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.wo-forge-belief__kicker {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-accent);
}
.wo-forge-belief blockquote {
  margin: 0;
}
.wo-forge-belief blockquote p {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}
.wo-forge-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.5rem, 0);
  transition: opacity 0.5s var(--wf-ease), transform 0.5s var(--wf-ease);
}
.wo-forge-word.is-in {
  opacity: 1;
  transform: none;
}
.wo-forge-belief footer {
  margin-top: 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-ink-mute);
}

/* —— Thesis —— */
.wo-forge-thesis {
  position: relative;
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--wf-bg);
}
.wo-forge-thesis__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wo-forge-thesis__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.45);
  transform: scale(1.06);
  will-change: transform;
}
.wo-forge-thesis__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 11, 0.94) 0%, rgba(10, 10, 11, 0.82) 50%, rgba(10, 10, 11, 0.55) 100%),
    linear-gradient(120deg, rgba(140, 32, 32, 0.18), transparent 50%);
}
.wo-forge-thesis__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}
.wo-forge-thesis__kicker {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-accent);
}
.wo-forge-thesis__inner h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.wo-forge-thesis__lead {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--wf-ink-soft);
}
.wo-forge-thesis__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wo-forge-thesis__cols p {
  margin: 0;
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius);
  background: rgba(20, 21, 22, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--wf-ink-soft);
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 0.7s var(--wf-ease), transform 0.7s var(--wf-ease);
}
.wo-forge-thesis__cols p.is-in {
  opacity: 1;
  transform: none;
}

/* —— Receive —— */
.wo-forge-receive {
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wf-elev);
}
.wo-forge-receive__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.25rem 2.25rem;
  margin: 0 auto clamp(2rem, 5vh, 3rem);
  max-width: 78rem;
  align-items: end;
}
.wo-forge-receive__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-accent);
}
.wo-forge-receive__head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.1vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.wo-forge-receive__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--wf-ink-soft);
}
.wo-forge-receive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 78rem;
  margin-inline: auto;
}
.wo-forge-tile {
  background: var(--wf-card);
  border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 1.3rem, 0);
  transition: opacity 0.75s var(--wf-ease), transform 0.75s var(--wf-ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.wo-forge-tile.is-in {
  opacity: 1;
  transform: none;
}
.wo-forge-tile__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.wo-forge-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.04);
  transition: transform 1s var(--wf-ease), filter 0.4s ease;
}
.wo-forge-tile:hover .wo-forge-tile__media img,
.wo-forge-tile.is-hot .wo-forge-tile__media img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.06);
}
.wo-forge-tile__n {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #f2f2f2;
  background: rgba(10, 10, 11, 0.72);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}
.wo-forge-tile__body {
  padding: 1.15rem 1.2rem 1.35rem;
}
.wo-forge-tile__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.wo-forge-tile__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--wf-ink-soft);
}

/* —— Model —— */
.wo-forge-model {
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wf-bg);
}
.wo-forge-model__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 78rem;
  margin-inline: auto;
  align-items: stretch;
}
.wo-forge-model__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-accent);
}
.wo-forge-model__copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.wo-forge-model__lead {
  margin: 0 0 1.6rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wf-ink-soft);
}
.wo-forge-model__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.wo-forge-model__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius);
  background: var(--wf-card);
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 0.7s var(--wf-ease), transform 0.7s var(--wf-ease), border-color 0.3s ease;
}
.wo-forge-model__list li.is-in {
  opacity: 1;
  transform: none;
}
.wo-forge-model__list li > span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--wf-accent);
  padding-top: 0.15rem;
}
.wo-forge-model__list strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.wo-forge-model__list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--wf-ink-soft);
}
.wo-forge-model__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--wf-radius-lg);
  background:
    linear-gradient(155deg, rgba(140, 32, 32, 0.92), rgba(10, 10, 11, 0.96)),
    var(--wf-crimson);
  border: 1px solid rgba(196, 60, 52, 0.35);
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  transition: opacity 0.75s var(--wf-ease), transform 0.75s var(--wf-ease);
}
.wo-forge-model__aside.is-in {
  opacity: 1;
  transform: none;
}
.wo-forge-model__pull {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
}
.wo-forge-model__attr {
  margin: 1rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.65);
}

/* —— Audience —— */
.wo-forge-audience {
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wf-elev);
  border-top: 1px solid var(--wf-line);
}
.wo-forge-audience__head {
  max-width: 38rem;
  margin: 0 auto clamp(2rem, 5vh, 2.75rem);
  text-align: center;
}
.wo-forge-audience__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-accent);
}
.wo-forge-audience__head h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.wo-forge-audience__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--wf-ink-soft);
}
.wo-forge-audience__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 78rem;
  margin-inline: auto;
}
.wo-forge-lane {
  position: relative;
  padding: 1.25rem 1.15rem 1.4rem;
  border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius-lg);
  background: var(--wf-card);
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  transition: opacity 0.7s var(--wf-ease), transform 0.7s var(--wf-ease), border-color 0.3s ease;
}
.wo-forge-lane.is-in {
  opacity: 1;
  transform: none;
}
.wo-forge-lane__n {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--wf-accent);
}
.wo-forge-lane h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.wo-forge-lane p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--wf-ink-soft);
}

/* —— Visit —— */


/* ── Forge team ── */
.wo-forge-team {
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--wf-elev, #121214);
  border-top: 1px solid var(--wf-line, rgba(255, 255, 255, 0.1));
}
.wo-forge-team__head {
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 5vh, 2.75rem);
  text-align: center;
}
.wo-forge-team__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wf-accent, #e07068);
}
.wo-forge-team__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.1vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #fff;
}
.wo-forge-team__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--wf-ink-soft, rgba(242, 242, 242, 0.68));
}
.wo-forge-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 78rem;
  margin-inline: auto;
}
.wo-forge-person {
  background: var(--wf-card, #141516);
  border: 1px solid var(--wf-line, rgba(255, 255, 255, 0.1));
  border-radius: var(--wf-radius-lg, 16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  transition: opacity 0.75s var(--wf-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    transform 0.75s var(--wf-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}
.wo-forge-person.is-in {
  opacity: 1;
  transform: none;
}
.wo-forge-person:hover,
.wo-forge-person.is-hot {
  border-color: rgba(224, 112, 104, 0.4);
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.65);
}
.wo-forge-person__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0b;
}
.wo-forge-person__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.12) contrast(1.04);
  transition: transform 0.9s var(--wf-ease, cubic-bezier(0.22, 1, 0.36, 1)), filter 0.4s ease;
}
.wo-forge-person:hover .wo-forge-person__media img,
.wo-forge-person.is-hot .wo-forge-person__media img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.06);
}
.wo-forge-person__n {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 600;
  color: #f2f2f2;
  background: rgba(10, 10, 11, 0.72);
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
}
.wo-forge-person__body {
  padding: 1.15rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.wo-forge-person__role {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wf-accent, #e07068);
}
.wo-forge-person__name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}
.wo-forge-person__focus {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--wf-ink-mute, rgba(242, 242, 242, 0.45));
}
.wo-forge-person__bio {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--wf-ink-soft, rgba(242, 242, 242, 0.68));
}
@media (max-width: 900px) {
  .wo-forge-team__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }
}

.wo-forge-visit {
  position: relative;
  padding: clamp(4.5rem, 12vh, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--wf-bg);
  text-align: center;
}
.wo-forge-visit__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wo-forge-visit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.42);
  transform: scale(1.06);
  will-change: transform;
}
.wo-forge-visit__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0.9)),
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(140, 32, 32, 0.28), transparent 70%);
}
.wo-forge-visit__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
}
.wo-forge-visit__kicker {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-accent);
}
.wo-forge-visit__inner h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.wo-forge-visit__lead {
  margin: 0 0 1.65rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--wf-ink-soft);
}
.wo-forge-visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

/* —— Interactive —— */
.wo-forge-interactive {
  transform-style: preserve-3d;
  transform:
    perspective(900px)
    rotateX(var(--ty, 0deg))
    rotateY(var(--tx, 0deg))
    translate3d(0, calc(var(--lift, 0) * -4px), 0);
  transition: transform 0.18s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.wo-forge-interactive::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(224, 112, 104, 0.12),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wo-forge-interactive.is-hot {
  border-color: rgba(224, 112, 104, 0.35);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.55);
}
.wo-forge-interactive.is-hot::after { opacity: 1; }
.wo-forge-interactive.is-press {
  transform:
    perspective(900px)
    rotateX(var(--ty, 0deg))
    rotateY(var(--tx, 0deg))
    scale(0.985);
}
.wo-forge-tile.wo-forge-interactive,
.wo-forge-lane.wo-forge-interactive {
  position: relative;
}

/* —— Reveals —— */
.wo-forge [data-wo-forge-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  transition: opacity 0.85s var(--wf-ease), transform 0.85s var(--wf-ease);
}
.wo-forge [data-wo-forge-reveal].is-in {
  opacity: 1;
  transform: none;
}
.wo-forge--reduced [data-wo-forge-reveal],
.wo-forge--reduced [data-wo-forge-line],
.wo-forge--reduced [data-wo-forge-card],
.wo-forge--reduced .wo-forge-word {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 960px) {
  .wo-forge-mast__layout,
  .wo-forge-receive__head,
  .wo-forge-model__layout,
  .wo-forge-thesis__cols {
    grid-template-columns: 1fr;
  }
  .wo-forge-receive__grid {
    grid-template-columns: 1fr;
  }
  .wo-forge-audience__grid {
    grid-template-columns: 1fr 1fr;
  }
  .wo-forge-mast__stack {
    min-height: 14rem;
    max-width: 22rem;
  }
  .wo-forge-mast__card--a { max-width: 12rem; }
  .wo-forge-signals { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wo-forge-audience__grid {
    grid-template-columns: 1fr;
  }
  .wo-forge-mast__actions,
  .wo-forge-visit__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wo-forge-mast__scan,
  .wo-forge-mast__cue i {
    animation: none !important;
  }
  .wo-forge-interactive {
    transform: none !important;
  }
}
