/* Foundation New York - 111W57 taupe cinematic */

/* ── Light tokens ── */
.theme-newyork {
  --fw-surface: #ffffff;
  --fw-surface-alt: #f0eeea;
  --fw-text: #7c7262;
  --fw-text-muted: rgba(124, 114, 98, 0.68);
  --fw-border: rgba(124, 114, 98, 0.18);
  --fw-deep-crimson: #7c7262;
  --fw-crimson: #5c5348;
  --fw-accent: #9a8f7e;
  --fw-parchment: #ffffff;
  --fw-dark-parchment: #f0eeea;
  --fw-white: #ffffff;
  --fw-dominant: #7c7262;
  --fw-accent-live: #9a8f7e;
  --fw-steel: #7c7262;
  --fw-shadow: 0 20px 56px rgba(124, 114, 98, 0.1);
  --fw-header-fg: #7c7262;
  --fw-header-bg: rgba(255, 255, 255, 0.88);
  --fw-header-scrolled: rgba(255, 255, 255, 0.96);
  --fw-radius: 0;
  --fw-radius-lg: 0;
  --fw-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --fw-ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

.theme-newyork,
.theme-newyork body {
  background: var(--fw-surface);
  color: var(--fw-text);
}

/* ── Dark tokens (aligned with cinema charcoal) ── */
html[data-theme="dark"] .theme-newyork {
  --fw-surface: #0e0c0a;
  --fw-surface-alt: #161310;
  --fw-text: #f0eeea;
  --fw-text-muted: rgba(240, 238, 234, 0.62);
  --fw-border: rgba(240, 238, 234, 0.14);
  --fw-deep-crimson: #f0eeea;
  --fw-crimson: #d4cfc8;
  --fw-accent: #d4a85c;
  --fw-parchment: #0e0c0a;
  --fw-dark-parchment: #161310;
  --fw-white: #1c1916;
  --fw-dominant: #f0eeea;
  --fw-accent-live: #d4a85c;
  --fw-steel: #b5aa9a;
  --fw-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
  --fw-header-fg: #f0eeea;
  --fw-header-bg: rgba(14, 12, 10, 0.9);
  --fw-header-scrolled: rgba(14, 12, 10, 0.97);
}

html[data-theme="dark"] .theme-newyork,
html[data-theme="dark"] .theme-newyork body {
  background: var(--fw-surface);
  color: var(--fw-text);
}

/* ── Ambient ── */
.theme-newyork #fw-ambient {
  background:
    linear-gradient(180deg, rgba(124, 114, 98, 0.04) 0%, transparent 30%),
    var(--fw-surface);
}

html[data-theme="dark"] .theme-newyork #fw-ambient {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(154, 143, 126, 0.06), transparent 55%),
    var(--fw-surface);
}

/* ── Header & nav ── */
.theme-newyork .fw-header {
  background: var(--fw-header-bg);
  border-bottom: 1px solid var(--fw-border);
  transition: background 0.5s var(--fw-ease), border-color 0.5s var(--fw-ease), box-shadow 0.5s var(--fw-ease);
}

.theme-newyork .fw-header.is-scrolled {
  background: var(--fw-header-scrolled);
  box-shadow: 0 4px 24px rgba(124, 114, 98, 0.08);
}

.theme-newyork .fw-site-nav > a,
.theme-newyork .fw-site-nav__trigger {
  text-transform: capitalize;
  letter-spacing: 0.04em;
  font-size: 0.8125rem;
  color: var(--fw-header-fg);
}

.theme-newyork .fw-site-nav > a.is-active,
.theme-newyork .fw-site-nav__trigger.is-active,
.theme-newyork .fw-site-nav a.is-active {
  color: var(--fw-crimson);
}

html[data-theme="dark"] .theme-newyork .fw-header.is-menu-open,
html[data-theme="dark"] .theme-newyork .fw-header__menu {
  background: var(--fw-surface);
}

html[data-theme="dark"] .theme-newyork .fw-site-nav > a,
html[data-theme="dark"] .theme-newyork .fw-site-nav__trigger {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-newyork .fw-site-nav > a.is-active,
html[data-theme="dark"] .theme-newyork .fw-site-nav__trigger.is-active,
html[data-theme="dark"] .theme-newyork .fw-site-nav a.is-active {
  color: var(--fw-accent-live);
}

/* ── Links & buttons ── */
.theme-newyork a {
  color: var(--fw-deep-crimson);
  transition: color 0.4s var(--fw-ease);
}

.theme-newyork a:hover {
  color: var(--fw-crimson);
}

.theme-newyork .fw-btn {
  border-color: var(--fw-deep-crimson);
  background: transparent;
  color: var(--fw-deep-crimson);
  border-radius: var(--fw-radius);
  transition: background 0.5s var(--fw-ease), border-color 0.5s var(--fw-ease), color 0.5s var(--fw-ease);
}

.theme-newyork .fw-btn:hover {
  background: var(--fw-deep-crimson);
  border-color: var(--fw-deep-crimson);
  color: #fff;
}

.theme-newyork .fw-btn--ghost {
  background: transparent;
  color: var(--fw-deep-crimson);
  border-color: var(--fw-border);
}

.theme-newyork .fw-btn--ghost:hover {
  background: rgba(124, 114, 98, 0.06);
}

html[data-theme="dark"] .theme-newyork .fw-btn {
  border-color: rgba(240, 238, 234, 0.35);
  color: #f0eeea;
  background: transparent;
}

html[data-theme="dark"] .theme-newyork .fw-btn:hover {
  background: #f0eeea;
  border-color: #f0eeea;
  color: #1c1916;
}

html[data-theme="dark"] .theme-newyork .fw-btn--ghost {
  color: #f0eeea;
  border-color: rgba(240, 238, 234, 0.25);
}

html[data-theme="dark"] .theme-newyork a {
  color: #f0eeea;
}

html[data-theme="dark"] .theme-newyork a:hover {
  color: #9a8f7e;
}

/* ── Eyebrow & prose ── */
.theme-newyork .fw-eyebrow,
.theme-newyork .ny-eyebrow {
  color: var(--fw-accent-live);
  letter-spacing: 0.2em;
}

.theme-newyork .fw-prose blockquote {
  border-left-color: var(--fw-accent-live);
  background: rgba(240, 238, 234, 0.6);
}

html[data-theme="dark"] .theme-newyork .fw-prose blockquote {
  background: rgba(42, 38, 34, 0.8);
  border-left-color: #9a8f7e;
}

html[data-theme="dark"] .theme-newyork .fw-prose h1,
html[data-theme="dark"] .theme-newyork .fw-prose h2,
html[data-theme="dark"] .theme-newyork .fw-prose h3 {
  color: var(--fw-text);
}

/* ── Cards, blog, meta ── */
.theme-newyork .fw-card,
.theme-newyork .fw-blog-card {
  background: var(--fw-white);
  border-color: var(--fw-border);
  border-radius: var(--fw-radius-lg);
  transition: transform 0.5s var(--fw-ease), box-shadow 0.5s var(--fw-ease);
}

.theme-newyork .fw-card__label {
  color: var(--fw-accent-live);
}

.theme-newyork .fw-blog-card__title a:hover,
.theme-newyork .fw-blog-card__link {
  color: var(--fw-crimson);
}

.theme-newyork .fw-article-meta {
  color: var(--fw-text-muted);
}

.theme-newyork .fw-strip {
  background: var(--fw-surface-alt);
  border-color: var(--fw-border);
}

.theme-newyork .fw-hero__panel {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--fw-border);
  border-radius: var(--fw-radius-lg);
}

html[data-theme="dark"] .theme-newyork .fw-card,
html[data-theme="dark"] .theme-newyork .fw-blog-card {
  background: var(--fw-white);
  border-color: var(--fw-border);
}

html[data-theme="dark"] .theme-newyork .fw-card p,
html[data-theme="dark"] .theme-newyork .fw-blog-card__excerpt,
html[data-theme="dark"] .theme-newyork .fw-blog-card__meta {
  color: var(--fw-text-muted);
}

html[data-theme="dark"] .theme-newyork .fw-blog-card__title a {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-newyork .fw-blog-card__title a:hover,
html[data-theme="dark"] .theme-newyork .fw-blog-card__link {
  color: #9a8f7e;
}

html[data-theme="dark"] .theme-newyork .fw-hero__panel {
  background: rgba(42, 38, 34, 0.85);
}

html[data-theme="dark"] .theme-newyork .fw-strip {
  background: var(--fw-surface-alt);
}

/* ── Theme inner & footer ── */
.theme-newyork .theme-inner {
  background: var(--fw-surface);
}

.theme-newyork .fw-footer {
  background: var(--fw-surface-alt);
  border-top-color: var(--fw-border);
}

html[data-theme="dark"] .theme-newyork .theme-inner {
  background: var(--fw-surface);
}

html[data-theme="dark"] .theme-newyork .fw-footer {
  background: var(--fw-surface-alt);
}

html[data-theme="dark"] .theme-newyork .fw-footer a {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-newyork .fw-footer h4 {
  color: var(--fw-accent-live);
}

/* ── Hero (skyline) ── */
.ny-hero--skyline {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.ny-hero__media {
  position: absolute;
  inset: 0;
}

.ny-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ny-ken-burns 42s var(--fw-ease-out) infinite alternate;
}

@keyframes ny-ken-burns {
  from { transform: scale(1.04); }
  to { transform: scale(1.12) translate(-1%, 0); }
}

.ny-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 25, 22, 0.88) 0%,
    rgba(28, 25, 22, 0.35) 50%,
    rgba(28, 25, 22, 0.15) 100%
  );
}

.ny-hero__gradient {
  position: absolute;
  left: 0;
  right: 0;
  height: 20%;
  pointer-events: none;
}

.ny-hero__gradient--top {
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent);
}

.ny-hero__gradient--bottom {
  bottom: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.65), transparent);
}

.ny-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 40rem;
  padding-top: var(--fw-header-h);
}

.ny-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.65);
}

.ny-hero__title {
  font-family: var(--fw-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  margin: 0.5rem 0;
  line-height: 1.05;
}

.ny-hero__kicker {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.9);
  margin: 0 0 0.75rem;
}

.ny-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.ny-hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.ny-btn {
  padding: 0.8rem 1.4rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: background 0.5s var(--fw-ease), border-color 0.5s var(--fw-ease), color 0.5s var(--fw-ease);
}

.ny-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.ny-btn--line {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

/* ── Panels ── */
.ny-panels {
  padding: 4rem 0;
  background: var(--fw-surface-alt);
}

.ny-panels__grid {
  display: grid;
  gap: 1px;
  background: var(--fw-border);
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.ny-panel {
  background: var(--fw-surface);
  padding: 2rem 1.5rem;
  transition: background 0.5s var(--fw-ease);
}

.ny-panel:hover {
  background: var(--fw-white);
}

.ny-panel__index {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fw-steel);
}

.ny-panel h3 {
  font-family: var(--fw-font-display);
  font-size: 1.35rem;
  margin: 0.5rem 0;
  color: var(--fw-text);
}

.ny-panel p {
  font-size: 0.9375rem;
  color: var(--fw-text-muted);
  margin: 0;
}

html[data-theme="dark"] .theme-newyork .ny-panels {
  background: var(--fw-surface-alt);
}

html[data-theme="dark"] .theme-newyork .ny-panel {
  background: var(--fw-surface);
}

html[data-theme="dark"] .theme-newyork .ny-panel:hover {
  background: var(--fw-white);
}

html[data-theme="dark"] .theme-newyork .ny-panel h3 {
  color: var(--fw-text);
}

/* ── Page hero ── */
.ny-page-hero {
  position: relative;
  min-height: clamp(16rem, 40vw, 22rem);
  display: flex;
  align-items: flex-end;
}

.ny-page-hero__image {
  position: absolute;
  inset: 0;
}

.ny-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ny-page-hero__copy {
  position: relative;
  z-index: 1;
  padding: calc(var(--fw-header-h) + 1.5rem) 0 2rem;
  color: #fff;
}

/* ── Corporate footer ── */
.theme-footer--corporate {
  /* Inverse prestige — cinema tokens override when loaded */
  background: #141210;
  color: rgba(240, 238, 234, 0.88);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(240, 238, 234, 0.1);
}

.theme-footer--corporate .theme-footer__corporate {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 2fr;
  align-items: start;
}

.theme-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.theme-footer--corporate ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-footer--corporate a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.4s var(--fw-ease);
}

.theme-footer--corporate a:hover {
  color: #f0eeea;
}

/* Dark footer handled by newyork-cinema.css inverse tokens */

@media (max-width: 768px) {
  .theme-footer--corporate .theme-footer__corporate { grid-template-columns: 1fr; }
  .theme-footer__nav-grid { grid-template-columns: 1fr; }
}

/* ── NY story home enhancement ── */
.ny-story { padding: 0; }
.ny-story__head {
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}
.ny-story__head h2 {
  font-family: var(--fw-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.75rem;
  max-width: 18ch;
}
.ny-story__lead {
  max-width: 36rem;
  color: var(--fw-text-muted);
  line-height: 1.75;
}
.ny-eyebrow--ink { color: var(--fw-steel); }
.ny-panels a.ny-panel { text-decoration: none; color: inherit; display: block; }
.ny-home-body { padding: 3rem 0 4rem; }

/* ── NY unique page shells ── */
.ny-page { padding-top: var(--fw-header-h); min-height: 70vh; }
.ny-page h1 {
  font-family: var(--fw-font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0.5rem 0 0;
  color: var(--fw-text);
}
.ny-page__quiet-head {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--fw-border);
}
.ny-page__essay-measure {
  max-width: 34rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem 5rem;
}

/* bleed approach */
.ny-page__bleed-media {
  position: relative;
  min-height: min(78vh, 40rem);
  display: flex;
  align-items: flex-end;
}
.ny-page__bleed-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ny-page__bleed-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,22,0.9), rgba(28,25,22,0.2) 55%, transparent);
}
.ny-page__bleed-title {
  position: relative; z-index: 1; padding: 0 0 clamp(2rem, 5vw, 3.5rem);
  color: #fff;
}
.ny-page__bleed-title h1 { color: #fff; }

/* team */
.ny-page__team-mast {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--fw-border);
}
.ny-page__team-frame {
  padding: 2.5rem 0 4.5rem;
  background: var(--fw-surface-alt);
}
.ny-page__team-frame .fw-container {
  background: var(--fw-surface);
  border: 1px solid var(--fw-border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* timeline */
.ny-page__timeline-head {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}
.ny-page__timeline-rail {
  padding: 0 0 4.5rem;
}
.ny-page__timeline-rail .fw-container {
  border-left: 2px solid var(--fw-border);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 44rem;
}

/* faq */
.ny-page__faq-sheet {
  padding: 2rem 0 4.5rem;
  background: var(--fw-surface-alt);
}
.ny-page__faq-sheet .fw-prose {
  max-width: 44rem;
  background: var(--fw-surface);
  border: 1px solid var(--fw-border);
  padding: clamp(1.25rem, 3vw, 2rem);
}

/* contact centered */
.ny-page--contact {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - var(--fw-header-h));
  padding: 3rem 1.25rem;
}
.ny-page__contact-center {
  max-width: 32rem; text-align: center; width: 100%;
}
.ny-page__contact-center .fw-prose { text-align: left; margin-top: 2rem; }

/* journal */
.ny-journal { padding: 1rem 0 5rem; display: flex; flex-direction: column; }
.ny-journal__item {
  display: block; padding: 2rem 0;
  border-bottom: 1px solid var(--fw-border);
  text-decoration: none; color: inherit;
  transition: opacity 0.5s var(--fw-ease);
}
.ny-journal__item:hover { opacity: 0.7; }
.ny-journal__item time {
  font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fw-text-muted);
}
.ny-journal__item h2 {
  font-family: var(--fw-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500; margin: 0.5rem 0;
  letter-spacing: -0.02em;
}
.ny-journal__item p { color: var(--fw-text-muted); margin: 0; max-width: 40rem; }

/* ═══════════════════════════════════════════════════════════
   Design v2 - 111w57 skyline cinema / sparse prestige
   ═══════════════════════════════════════════════════════════ */

.ny-hero--skyline {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
}

.ny-hero__title {
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  line-height: 1.02;
  max-width: 12ch;
}

.ny-hero__kicker {
  font-family: var(--fw-font-sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.72);
  margin: 0 0 1rem;
}

.ny-hero__lead {
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.ny-btn {
  border-radius: 0;
  letter-spacing: 0.14em;
  transition: background 0.6s var(--fw-ease), border-color 0.6s var(--fw-ease);
}

/* Story head with repeated label (111w57 rhythm) */
.ny-story {
  background: var(--fw-surface);
  padding: 0 0 clamp(3rem, 6vw, 4rem);
}

.ny-story__head {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  max-width: 38rem;
}

.ny-story__label-pair {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.55;
}

.ny-eyebrow--ink {
  color: var(--fw-steel);
}

.ny-story__head h2 {
  font-family: var(--fw-font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: #1c1916;
}

html[data-theme="dark"] .theme-newyork .ny-story__head h2 {
  color: var(--fw-text);
}

.ny-story__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fw-text-muted);
  max-width: 36ch;
}

/* Full-bleed chapter rows - not card grid */
.ny-chapters {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(124, 114, 98, 0.22);
}

.ny-chapter {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(124, 114, 98, 0.18);
  background: var(--fw-surface);
  transition: background 0.7s var(--fw-ease);
}

.ny-chapter:nth-child(even) {
  background: var(--fw-surface-alt);
}

.ny-chapter:hover {
  background: color-mix(in srgb, var(--fw-steel) 8%, var(--fw-surface));
}

.ny-chapter__inner {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.ny-chapter__index {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fw-steel);
}

.ny-chapter h3 {
  font-family: var(--fw-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  margin: 0 0 0.4rem;
  letter-spacing: -0.015em;
  color: #1c1916;
}

html[data-theme="dark"] .theme-newyork .ny-chapter h3 {
  color: var(--fw-text);
}

.ny-chapter p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--fw-text-muted);
  max-width: 38rem;
}

.ny-chapter__cue {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fw-steel);
  opacity: 0.5;
  transition: opacity 0.5s var(--fw-ease), color 0.5s var(--fw-ease);
}

.ny-chapter:hover .ny-chapter__cue {
  opacity: 1;
  color: #c68f43;
}

.ny-body {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 6rem;
  background: #f0eeea;
}

html[data-theme="dark"] .theme-newyork .ny-body {
  background: var(--fw-surface-alt);
}

.ny-body__measure {
  max-width: 40rem;
}

/* Cinematic ghost header over hero */
.theme-newyork .fw-header:not(.is-scrolled):not(.is-menu-open) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.theme-newyork .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav > a,
.theme-newyork .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav__trigger {
  color: rgba(255, 255, 255, 0.92);
}

.theme-newyork .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-header__toggle-icon span {
  background: #fff;
}

.theme-newyork .fw-header.is-scrolled {
  background: rgba(240, 238, 234, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 114, 98, 0.2);
}

/* Lux-slow motion */
.theme-newyork .fw-immerse {
  transition-duration: 1.1s, 1.25s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-newyork .fw-progress {
  color: #c68f43;
  height: 1px;
  mix-blend-mode: normal;
}

@media (max-width: 700px) {
  .ny-chapter__inner {
    grid-template-columns: 3rem 1fr;
  }
  .ny-chapter__cue {
    display: none;
  }
}
