/* NYF Holdings public release 2026-08-14 */
:root {
  --ink: #11110f;
  --paper: #f1eee5;
  --paper-2: #e5e0d3;
  --acid: #d7ff45;
  --orange: #ff5c35;
  --blue: #223cff;
  --muted: #a5a195;
  --line-dark: rgba(241, 238, 229, .18);
  --line-light: rgba(17, 17, 15, .18);
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .5rem;
  left: .5rem;
  transform: translateY(-160%);
  background: var(--acid);
  color: var(--ink);
  padding: .7rem 1rem;
  font-weight: 800;
}
.skip-link:focus { transform: none; }

.section-pad { padding-inline: var(--pad); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 82px;
  padding: 1.05rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(17, 17, 15, .86);
  backdrop-filter: blur(18px);
  transition: transform .25s ease, background .25s ease;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -.04em;
}
.wordmark span { font-size: 1.65rem; font-weight: 950; line-height: 1; }
.wordmark small { font-size: .67rem; font-weight: 800; letter-spacing: .15em; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.4rem); }
.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 800;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--acid); }
.site-nav .nav-contact {
  border: 1px solid var(--paper);
  border-radius: 999px;
  padding: .72rem 1rem;
}
.site-nav .nav-contact:hover { border-color: var(--acid); }
.menu-button { display: none; }

.hero {
  min-height: 100svh;
  padding-top: 82px;
  position: relative;
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid var(--line-dark);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: min(15vw, 180px) min(15vw, 180px);
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
  gap: clamp(2rem, 7vw, 9rem);
  align-items: center;
  padding-block: clamp(5rem, 9vw, 9rem) 7rem;
  position: relative;
  z-index: 1;
}
.kicker {
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 900;
}
.hero .kicker { color: var(--acid); }
.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.15rem, 9.7vw, 9.7rem);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .78;
}
.hero h1 em { color: var(--acid); font-weight: 400; }
.hero-deck {
  max-width: 690px;
  margin: 2.25rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  color: #c9c5bb;
  line-height: 1.45;
}
.hero-actions { margin-top: 2.4rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  min-height: 50px;
  padding: .9rem 1.2rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--acid); }
.text-link {
  text-underline-offset: .38rem;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
  font-weight: 900;
}
.text-link:hover { color: var(--acid); }

.hero-mark {
  width: min(100%, 390px);
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}
.hero-mark::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 32px 8px rgba(215, 255, 69, .45);
  top: 7%;
}
.hero-mark p {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 950;
  line-height: .88;
  letter-spacing: -.06em;
}
.hero-mark strong { color: var(--orange); font-weight: inherit; }
.hero-mark > span {
  position: absolute;
  bottom: 12%;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .58rem;
  color: var(--muted);
}
.orbit { position: absolute; border: 1px solid var(--line-dark); border-radius: 50%; }
.orbit-one { inset: 8%; }
.orbit-two { inset: 20%; }

.ticker {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: var(--acid);
  color: var(--ink);
}
.ticker div {
  min-width: max-content;
  display: flex;
  gap: 1.75rem;
  align-items: center;
  padding: .8rem 0;
  animation: ticker 28s linear infinite;
}
.ticker span { text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; font-weight: 950; }
.ticker b { font-size: .65rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-index {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .65rem;
  font-weight: 900;
}
.statement {
  max-width: var(--max);
  margin: 0 auto;
  padding-block: clamp(5rem, 10vw, 10rem);
  background: var(--paper);
  color: var(--ink);
}
.statement::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(calc(-1 * clamp(5rem, 10vw, 10rem)));
  height: 1px;
}
.statement-grid {
  margin-top: clamp(3rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .65fr);
  gap: clamp(3rem, 10vw, 12rem);
}
.statement-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 7rem);
  line-height: .92;
  letter-spacing: -.06em;
}
.statement-copy { padding-top: .5rem; font-size: clamp(1rem, 1.35vw, 1.18rem); }
.statement-copy > p { margin: 0 0 1.4rem; }
.facts { margin: 3.5rem 0 0; border-top: 1px solid var(--line-light); }
.facts div { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-light); }
.facts dt { text-transform: uppercase; letter-spacing: .12em; font-size: .61rem; font-weight: 900; }
.facts dd { margin: 0; font-family: var(--serif); font-style: italic; }

.portfolio {
  padding-block: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line-dark);
}
.portfolio > * { width: min(100%, var(--max)); margin-inline: auto; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.section-head h2 {
  margin: 1.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7vw, 7rem);
  line-height: .87;
  letter-spacing: -.065em;
  font-weight: 400;
}
.section-head > p { max-width: 230px; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; }
.project-list { margin-top: clamp(3rem, 7vw, 6rem); border-top: 1px solid var(--line-dark); }
.project-card {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  min-height: 260px;
  padding: clamp(2rem, 4vw, 4rem) 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
  text-decoration: none;
  position: relative;
  transition: padding .25s ease, color .25s ease;
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0 calc(-1 * var(--pad));
  z-index: -1;
  background: var(--paper);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
a.project-card:hover { color: var(--ink); padding-inline: 1.25rem; }
a.project-card:hover::before { transform: scaleY(1); }
.project-number { align-self: start; font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.project-card .kicker { margin-bottom: .7rem; color: var(--muted); }
.project-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}
.project-card div > p:last-child { max-width: 650px; margin: 1.3rem 0 0; color: var(--muted); }
a.project-card:hover div > p:last-child, a.project-card:hover .kicker { color: #555249; }
.project-arrow { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; }
.project-status {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: .65rem .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .6rem;
  font-weight: 900;
}
.project-ledger strong { color: var(--acid); }

.formula {
  width: 100%;
  padding-block: clamp(5rem, 10vw, 11rem);
  background: var(--blue);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, .5fr);
  align-items: end;
  gap: 3rem;
}
.formula h2 {
  margin: 2.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 11vw, 11rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.08em;
}
.formula h2 span { font-style: italic; }
.formula-key { padding-bottom: .7rem; }
.formula-key p { margin: .35rem 0; color: rgba(255,255,255,.68); }
.formula-key b { color: #fff; }

.dispatch { padding-block: clamp(4rem, 9vw, 8rem); background: var(--paper); color: var(--ink); }
.dispatch-panel {
  width: min(100%, var(--max));
  min-height: 580px;
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 7rem);
  background: var(--acid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dispatch-panel::after {
  content: "NYF";
  position: absolute;
  right: -2vw;
  bottom: -10vw;
  font-size: clamp(13rem, 30vw, 32rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.11em;
  color: rgba(17,17,15,.07);
  pointer-events: none;
}
.dispatch-panel h2 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.dispatch-panel > p:not(.kicker) { max-width: 560px; margin: 2rem 0 0; font-size: 1.1rem; position: relative; z-index: 1; }
.dispatch-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; position: relative; z-index: 1; }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { background: var(--blue); color: white; }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--paper); }

.site-footer { padding-block: clamp(3rem, 6vw, 6rem) 1.25rem; }
.footer-top { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 2rem; }
.wordmark-footer span { font-size: clamp(3rem, 6vw, 6rem); }
.wordmark-footer small { display: none; }
.footer-top > p { margin: .4rem 0 0; color: var(--muted); }
.footer-email { justify-self: end; margin-top: .5rem; text-underline-offset: .35rem; }
.footer-bottom { width: min(100%, var(--max)); margin: 5rem auto 0; padding-top: 1rem; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); text-transform: uppercase; letter-spacing: .11em; font-size: .58rem; }

/* Editorial subpages */
.subpage { background: var(--paper); color: var(--ink); }
.subpage .site-header { background: rgba(241,238,229,.88); border-bottom-color: var(--line-light); }
.subpage .wordmark, .subpage .site-nav { color: var(--ink); }
.subpage .site-nav .nav-contact { border-color: var(--ink); }
.subpage .menu-button { color: var(--ink); }
.sub-hero { padding-block: clamp(10rem, 18vw, 17rem) clamp(5rem, 10vw, 9rem); border-bottom: 1px solid var(--line-light); }
.sub-hero-inner { width: min(100%, var(--max)); margin: 0 auto; }
.sub-hero h1 { margin: 1rem 0 0; font-family: var(--serif); font-size: clamp(5rem, 15vw, 15rem); line-height: .72; letter-spacing: -.09em; font-weight: 400; }
.sub-hero .sub-deck { max-width: 720px; margin: 4rem 0 0 auto; font-size: clamp(1.2rem, 2.1vw, 1.8rem); line-height: 1.35; }
.east-page .sub-hero { background: var(--orange); }
.days-page .sub-hero { background: var(--acid); }
.sub-navline { display: flex; justify-content: space-between; gap: 1rem; text-transform: uppercase; letter-spacing: .13em; font-size: .62rem; font-weight: 900; }
.editorial-grid { padding-block: clamp(4rem, 8vw, 8rem); }
.editorial-grid > * { width: min(100%, var(--max)); margin-inline: auto; }
.editorial-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 10vw, 12rem); }
.editorial-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.5rem); line-height: .9; letter-spacing: -.06em; font-weight: 400; }
.editorial-intro p { margin: 0; font-size: 1.1rem; max-width: 570px; }
.pillar-grid { margin-top: clamp(4rem, 8vw, 8rem); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.pillar { min-height: 300px; padding: 1.5rem; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); display: flex; flex-direction: column; }
.pillar span { font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.pillar h3 { margin: auto 0 1rem; font-family: var(--serif); font-size: 2.35rem; line-height: .95; font-weight: 400; letter-spacing: -.04em; }
.pillar p { margin: 0; color: #5f5b52; font-size: .88rem; }
.desk-note { margin-top: clamp(4rem, 8vw, 8rem); padding: clamp(2rem, 5vw, 5rem); background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.desk-note h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); line-height: .9; letter-spacing: -.06em; font-weight: 400; }
.desk-note div:last-child { align-self: end; }
.desk-note p { color: #b5b0a4; max-width: 550px; }
.desk-note .button { margin-top: 1rem; }

.days-record { padding-block: clamp(4rem, 8vw, 8rem); }
.days-record > * { width: min(100%, var(--max)); margin-inline: auto; }
.record-head { display: grid; grid-template-columns: .5fr 1.5fr; gap: 2rem; align-items: start; }
.record-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 8rem); line-height: .84; font-weight: 400; letter-spacing: -.07em; }
.record-rule { margin-top: clamp(4rem, 8vw, 8rem); display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line-light); }
.record-rule article { min-height: 250px; padding: 1.6rem; border-right: 1px solid var(--line-light); display: flex; flex-direction: column; }
.record-rule article:last-child { border-right: 0; }
.record-rule span { color: #767168; font-size: .65rem; letter-spacing: .12em; font-weight: 900; }
.record-rule h3 { margin: auto 0 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; line-height: .92; letter-spacing: -.04em; }
.entry-card { margin-top: clamp(4rem, 8vw, 8rem); background: var(--blue); color: white; padding: clamp(2rem, 7vw, 7rem); }
.entry-card .entry-meta { display: flex; justify-content: space-between; gap: 1rem; text-transform: uppercase; letter-spacing: .13em; font-size: .64rem; font-weight: 900; }
.entry-statement { margin: clamp(3rem, 7vw, 7rem) 0 0; max-width: 1100px; font-family: var(--serif); font-size: clamp(3rem, 7vw, 7rem); line-height: .9; letter-spacing: -.06em; font-weight: 400; }
.entry-card p { max-width: 570px; margin: 3rem 0 0 auto; color: rgba(255,255,255,.75); }
.subpage .site-footer { background: var(--ink); color: var(--paper); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { min-height: 68px; }
  .menu-button {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .6rem 0;
    border: 0;
    background: none;
    color: var(--paper);
    text-transform: uppercase;
    font-size: .62rem;
    letter-spacing: .12em;
    font-weight: 900;
  }
  .menu-button i, .menu-button i::before { content: ""; display: block; width: 19px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-button i::before { transform: translateY(5px); }
  .menu-button[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    padding: 1.5rem var(--pad) 2rem;
    display: grid;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease;
  }
  .subpage .site-nav { background: var(--paper); }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line-dark); font-size: .75rem; }
  .subpage .site-nav a { border-bottom-color: var(--line-light); }
  .site-nav .nav-contact { border: 0; border-radius: 0; }
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 5rem 7rem; }
  .hero-mark { width: min(70vw, 330px); justify-self: center; }
  .statement-grid, .formula, .editorial-intro, .desk-note { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head > p { margin-top: 1.5rem; }
  .project-card { grid-template-columns: 45px 1fr auto; }
  .formula-key { max-width: 360px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-email { justify-self: start; grid-column: 1 / -1; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .record-head { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(3.65rem, 17vw, 5.8rem); }
  .hero-deck { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-mark { width: min(82vw, 320px); }
  .statement-lead { font-size: 3.1rem; }
  .project-card { grid-template-columns: 32px 1fr; min-height: 230px; }
  .project-arrow, .project-status { grid-column: 2; justify-self: start; }
  .project-card h3 { font-size: 2.85rem; }
  .formula { padding-block: 5rem; }
  .formula h2 { font-size: 4.2rem; }
  .dispatch { padding-inline: 0; padding-bottom: 0; }
  .dispatch-panel { min-height: 600px; }
  .dispatch-links { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-email { grid-column: auto; overflow-wrap: anywhere; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 3.5rem; }
  .sub-hero h1 { font-size: clamp(4.6rem, 23vw, 8rem); }
  .sub-hero .sub-deck { margin-top: 3rem; font-size: 1.1rem; }
  .sub-navline { flex-direction: column; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 240px; }
  .record-rule { grid-template-columns: 1fr; }
  .record-rule article { min-height: 200px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .record-rule article:last-child { border-bottom: 0; }
  .entry-card .entry-meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
