/* ============================================================
   K A N A M A — Brand System
   Five-tone monochromatic navy. Hairline structure.
   Light-weight, wide-tracked typography.
   ============================================================ */

:root {
  /* Palette */
  --midnight:  #0B1A2E;
  --deepnavy:  #1E3A5C;
  --slate:     #8B97A3;
  --pearl:     #CCD1D5;
  --mist:      #E6EAED;
  --white:     #FFFFFF;

  /* Type — sans only, no italic */
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --rule: 0.5px solid var(--midnight);
  --rule-soft: 0.5px solid rgba(11, 26, 46, 0.18);
  --rule-on-dark: 0.5px solid rgba(230, 234, 237, 0.22);

  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1440px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --slow: 900ms;
  --med: 600ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--mist);
  color: var(--midnight);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--midnight); color: var(--mist); }

/* No italic font anywhere — kill browser default for <em>, <i>, <cite>, blockquote */
em, i, cite, blockquote, address { font-style: normal; }

/* ----------- Typography utilities ------------- */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--deepnavy);
}
.eyebrow--slate { color: var(--slate); }
.eyebrow--mist { color: var(--mist); }

.numeral {
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 400;
  color: var(--deepnavy);
}
.numeral--mist { color: var(--mist); }

.display {
  font-family: var(--sans);
  font-weight: 200;
  letter-spacing: -0.005em;
  line-height: 1.04;
  font-size: clamp(40px, 6.4vw, 96px);
  color: var(--midnight);
}
.display--mist { color: var(--mist); }
.display em {
  font-style: normal;
  font-weight: 300;
  color: var(--deepnavy);
}
.display--mist em { color: var(--pearl); }

.h2 {
  font-weight: 300;
  letter-spacing: -0.003em;
  line-height: 1.1;
  font-size: clamp(28px, 3.4vw, 48px);
}
.h2 em { font-style: normal; font-weight: 400; color: var(--deepnavy); }

.h3 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.body {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 56ch;
  color: var(--midnight);
}
.body--slate { color: #475563; }
.body--mist { color: var(--mist); }

.caption {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--slate);
}

/* ----------- Hairline rule ------------- */
.rule {
  border: 0;
  border-top: var(--rule);
  width: 100%;
  margin: 0;
}
.rule--soft { border-top: var(--rule-soft); }
.rule--mist { border-top: 0.5px solid rgba(230, 234, 237, 0.3); }

/* ----------- Layout ------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(80px, 11vh, 160px) 0;
}
.section--tight { padding: clamp(64px, 8vh, 112px) 0; }
.section--dark {
  background: var(--midnight);
  color: var(--mist);
}
.section--navy {
  background: var(--deepnavy);
  color: var(--mist);
}
.section--white { background: var(--white); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
@media (max-width: 800px) {
  .grid-12 { gap: 20px; }
}

/* ----------- Buttons / links ------------- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0 14px;
  line-height: 1;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--midnight);
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 0.5px;
  width: 100%;
  background: currentColor;
  transform-origin: right center;
  transition: transform 700ms var(--ease);
}
.cta:hover::before { transform: scaleX(0); transform-origin: left center; }
.cta .arrow { transition: transform 500ms var(--ease); }
.cta:hover .arrow { transform: translateX(8px); }
.cta--mist { color: var(--mist); }
.cta--inline { padding: 6px 0; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--midnight);
  color: var(--mist);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 400ms var(--ease), color 400ms var(--ease);
  border: 0.5px solid var(--midnight);
}
.btn-solid:hover { background: transparent; color: var(--midnight); }
.btn-solid--mist {
  background: var(--mist);
  color: var(--midnight);
  border-color: var(--mist);
}
.btn-solid--mist:hover { background: transparent; color: var(--mist); }

.arrow { display: inline-block; width: 18px; height: 0.5px; background: currentColor; position: relative; }
.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 0.5px solid currentColor;
  border-right: 0.5px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   HEADER (sticky, glass mist)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  background: rgba(230, 234, 237, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 0.5px solid transparent;
  transition: background 400ms var(--ease), border-color 400ms var(--ease), padding 400ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(230, 234, 237, 0.94);
  border-bottom-color: rgba(11, 26, 46, 0.12);
}
.site-header.is-dark {
  background: rgba(11, 26, 46, 0.6);
  color: var(--mist);
}
.site-header.is-dark.is-scrolled {
  background: rgba(11, 26, 46, 0.92);
  border-bottom-color: rgba(230, 234, 237, 0.14);
}

/* When mobile nav is open, force a distinct, visible header */
.site-header.menu-active {
  background: var(--midnight) !important;
  color: var(--mist) !important;
  border-bottom: 0.5px solid rgba(230, 234, 237, 0.22) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.menu-active .wordmark .descriptor { color: var(--pearl); }
.site-header.menu-active .menu-btn span { background: var(--mist); }
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height 400ms var(--ease);
}
.site-header.is-scrolled .wrap { height: 64px; }

.wordmark {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 16px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  white-space: nowrap;
}
.wordmark .descriptor {
  font-size: 8px;
  letter-spacing: 0.32em;
  color: var(--slate);
  margin-left: 4px;
}
.is-dark .wordmark .descriptor { color: var(--pearl); }

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav .has-submenu { position: relative; padding: 18px 0; margin: -18px 0; }
.nav .has-submenu > a { display: inline-flex; align-items: center; gap: 8px; }
.nav .chev {
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 0.5px solid currentColor;
  border-bottom: 0.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 300ms var(--ease);
  opacity: 0.7;
}
.nav .has-submenu:hover .chev,
.nav .has-submenu:focus-within .chev { transform: rotate(225deg) translateY(-1px); }
.nav .submenu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  background: var(--mist);
  border: 0.5px solid rgba(11,26,46,0.14);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 350ms var(--ease), transform 350ms var(--ease), visibility 350ms;
  z-index: 2;
  margin-top: 10px;
}
.is-dark .nav .submenu { background: var(--midnight); border-color: rgba(230,234,237,0.18); }
.nav .has-submenu:hover .submenu,
.nav .has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .submenu a {
  display: block;
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  white-space: nowrap;
  transition: background 300ms var(--ease), padding 300ms var(--ease);
}
.nav .submenu a::after { display: none; }
.nav .submenu a:hover { padding-left: 32px; background: rgba(11,26,46,0.04); }
.is-dark .nav .submenu a:hover { background: rgba(230,234,237,0.06); }
.nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color 300ms var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 500ms var(--ease);
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav .nav-cta {
  padding: 10px 18px;
  border: 0.5px solid currentColor;
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--midnight); color: var(--mist); border-color: var(--midnight); }
.is-dark .nav .nav-cta:hover { background: var(--mist); color: var(--midnight); border-color: var(--mist); }

.menu-btn { display: none; }

/* Drop descriptor before nav collides */
@media (max-width: 1180px) {
  .wordmark .descriptor { display: none; }
}
@media (max-width: 1024px) {
  .nav { gap: 28px; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .menu-btn {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
  }
  .menu-btn span {
    display: block;
    width: 24px;
    height: 0.5px;
    background: currentColor;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--midnight);
  color: var(--mist);
  z-index: 110;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 700ms var(--ease), visibility 700ms;
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.04em;
  border-bottom: 0.5px solid rgba(230, 234, 237, 0.18);
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--midnight);
  color: var(--mist);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pearl);
  margin-bottom: 24px;
}
.footer-grid a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--mist);
  opacity: 0.8;
  transition: opacity 300ms var(--ease);
}
.footer-grid a:hover { opacity: 1; }
.footer-brand .wordmark { color: var(--mist); }
.footer-brand .wordmark .descriptor { color: var(--slate); }
.footer-brand p {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--pearl);
  max-width: 38ch;
}
.footer-base {
  padding-top: 28px;
  border-top: 0.5px solid rgba(230, 234, 237, 0.18);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}
@media (max-width: 600px) {
  .footer-base { flex-direction: column; gap: 16px; }
}

/* ============================================================
   PLACEHOLDER MATERIAL CROPS
   Striped luxury placeholder, with monospace caption telling
   asset team what to drop here.
   ============================================================ */
.crop {
  position: relative;
  overflow: hidden;
  background: var(--deepnavy);
  color: var(--mist);
  isolation: isolate;
}
.crop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.04) 0 18px,
    rgba(255,255,255,0.00) 18px 38px
  ),
  radial-gradient(120% 80% at 80% 20%, rgba(204, 209, 213, 0.18), transparent 60%),
  radial-gradient(80% 60% at 20% 90%, rgba(139, 151, 163, 0.22), transparent 70%);
}
.crop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,26,46,0.55) 100%);
  pointer-events: none;
}
.crop > * { position: relative; z-index: 2; }

.crop--pearl { background: var(--pearl); color: var(--midnight); }
.crop--pearl::before {
  background-image: repeating-linear-gradient(
    105deg,
    rgba(11,26,46,0.04) 0 14px,
    rgba(11,26,46,0) 14px 32px
  ),
  radial-gradient(80% 60% at 30% 80%, rgba(139,151,163,0.22), transparent 70%);
}
.crop--pearl::after {
  background: linear-gradient(180deg, transparent 60%, rgba(11,26,46,0.18) 100%);
}

.crop--midnight { background: var(--midnight); }
.crop--midnight::before {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.025) 0 20px,
    rgba(255,255,255,0) 20px 44px
  ),
  radial-gradient(110% 70% at 70% 30%, rgba(139,151,163,0.18), transparent 60%);
}

.crop-label {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
  z-index: 3;
}
.crop-tag {
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 3;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

.split-line { overflow: hidden; display: block; padding-bottom: 0.18em; }
.split-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1100ms var(--ease);
}
.is-in .split-line > span,
.split-line.is-in > span { transform: translateY(0); }
.split-delay-1 > span { transition-delay: 90ms; }
.split-delay-2 > span { transition-delay: 180ms; }
.split-delay-3 > span { transition-delay: 270ms; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--midnight);
  color: var(--mist);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero .crop {
  position: absolute;
  inset: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) clamp(48px, 8vh, 88px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: end;
}
.hero-numeral {
  grid-column: 1 / span 12;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  border-top: var(--rule-on-dark);
  padding-top: 28px;
}
.hero-numeral .meta { display: flex; gap: 56px; }
.hero-numeral .meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-numeral .meta b { font-weight: 400; font-size: 11px; letter-spacing: 0.2em; }
.hero-numeral .meta span { font-size: 10px; letter-spacing: 0.22em; color: var(--pearl); text-transform: uppercase; }
.hero-title {
  grid-column: 1 / span 9;
}
.hero-cta {
  grid-column: 10 / span 3;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-title { grid-column: 1 / span 12; }
  .hero-cta { grid-column: 1 / span 12; justify-content: flex-start; margin-top: 28px; }
  .hero-numeral .meta { gap: 28px; flex-wrap: wrap; }
  /* Push hero content below the sticky header on narrow viewports */
  .hero-inner { padding-top: 120px; }
}

/* Top status strip on hero */
.hero-strip {
  position: absolute;
  top: 96px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pearl);
}
@media (max-width: 960px) {
  .hero-strip { display: none; }
}

/* ============================================================
   COLUMN PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule-soft);
  border-bottom: var(--rule-soft);
}
.pillar {
  padding: 56px 32px 56px 0;
  border-right: var(--rule-soft);
  position: relative;
}
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar:nth-child(n+2) { padding-left: 32px; }
.pillar .numeral { display: block; margin-bottom: 28px; }
.pillar h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.pillar p { font-size: 14px; line-height: 1.7; color: #475563; max-width: 38ch; }
.pillar a { margin-top: 32px; display: inline-block; }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: var(--rule-soft); padding: 40px 0; }
  .pillar:nth-child(n+2) { padding-left: 0; }
  .pillar:last-child { border-bottom: 0; }
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  row-gap: 80px;
}
.project-card {
  display: block;
  cursor: pointer;
}
.project-card .crop {
  aspect-ratio: 4 / 5;
  transition: transform 1200ms var(--ease);
}
.project-card:hover .crop { transform: scale(1.015); }
.project-card .crop > img,
.project-card .crop > .ph { transition: transform 1500ms var(--ease); }
.project-card:hover .crop > .ph { transform: scale(1.04); }

.project-card.is-wide { grid-column: span 7; }
.project-card.is-narrow { grid-column: span 5; }
.project-card.is-half { grid-column: span 6; }
.project-card.is-full { grid-column: span 12; }
.project-card.is-full .crop { aspect-ratio: 16 / 8; }

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 22px;
  padding-top: 18px;
  border-top: var(--rule-soft);
  gap: 24px;
}
.project-meta h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.project-meta .caption { white-space: nowrap; }

@media (max-width: 900px) {
  .project-card.is-wide,
  .project-card.is-narrow,
  .project-card.is-half { grid-column: span 12; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 24px;
  border-bottom: var(--rule-soft);
}
.sec-head .left { grid-column: 1 / span 3; }
.sec-head .mid { grid-column: 4 / span 6; }
.sec-head .right { grid-column: 10 / span 3; display: flex; justify-content: flex-end; align-items: end; }
.sec-head .numeral { display: block; margin-bottom: 8px; }
.sec-head h2 {
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  letter-spacing: -0.005em;
  line-height: 1.08;
}
.sec-head h2 em { font-style: normal; font-weight: 400; color: var(--deepnavy); }
.sec-head.on-dark { border-bottom-color: rgba(230,234,237,0.2); }
@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: 18px; }
  .sec-head .left, .sec-head .mid, .sec-head .right { grid-column: 1 / -1; }
  .sec-head .right { justify-content: flex-start; }
}

/* ============================================================
   PAGE HEAD (intro band for non-home pages)
   ============================================================ */
.page-head {
  padding: 160px 0 80px;
  background: var(--mist);
}
.page-head .grid-12 { align-items: end; }
.page-head .numeral { display: block; margin-bottom: 14px; }
.page-head h1 {
  grid-column: 1 / span 9;
  font-weight: 200;
  font-size: clamp(40px, 5.6vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.005em;
}
.page-head h1 em { font-style: normal; font-weight: 300; color: var(--deepnavy); }
.page-head .lede {
  grid-column: 8 / span 5;
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  color: #475563;
  max-width: 56ch;
}
.page-head .left-meta {
  grid-column: 1 / span 2;
}
.page-head .left-meta b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--deepnavy);
  margin-bottom: 6px;
}
.page-head .left-meta span { font-size: 12px; color: var(--slate); }
@media (max-width: 900px) {
  .page-head h1, .page-head .lede, .page-head .left-meta { grid-column: 1 / -1; }
}

/* ============================================================
   QUOTE / EDITORIAL BLOCK
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.editorial .num { grid-column: 1 / span 2; }
.editorial blockquote {
  grid-column: 3 / span 9;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.editorial blockquote::before { content: "“"; opacity: 0.4; }
.editorial blockquote::after { content: "”"; opacity: 0.4; }
.editorial cite {
  grid-column: 3 / span 9;
  margin-top: 32px;
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}
@media (max-width: 900px) {
  .editorial .num, .editorial blockquote, .editorial cite { grid-column: 1 / -1; }
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee {
  border-top: var(--rule-soft);
  border-bottom: var(--rule-soft);
  overflow: hidden;
  padding: 22px 0;
}
.marquee.on-dark { border-color: rgba(230,234,237,0.2); }
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate);
  width: max-content;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FORMS
   ============================================================ */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; }
.field {
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: 0.5px solid rgba(11,26,46,0.4);
  padding-bottom: 8px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deepnavy);
  margin-bottom: 14px;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  font: 300 16px/1.5 var(--sans);
  color: var(--midnight);
  padding: 6px 0;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field::after {
  content: "";
  position: absolute;
  bottom: -0.5px; left: 0;
  width: 0; height: 1px;
  background: var(--midnight);
  transition: width 600ms var(--ease);
}
.field:focus-within::after { width: 100%; }

.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label {
  margin: 0;
  padding: 10px 18px;
  border: 0.5px solid rgba(11,26,46,0.3);
  cursor: pointer;
  transition: all 300ms var(--ease);
}
.radio-row input { display: none; }
.radio-row input:checked + label,
.radio-row label.is-active {
  background: var(--midnight);
  color: var(--mist);
  border-color: var(--midnight);
}

@media (max-width: 700px) {
  .form { grid-template-columns: 1fr; }
}

/* ============================================================
   CURSOR / progress
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  width: 0%;
  background: var(--midnight);
  z-index: 200;
  transition: width 120ms linear;
}
.is-dark-bg + .scroll-progress,
.scroll-progress.on-dark { background: var(--mist); }

/* ============================================================
   UTILS
   ============================================================ */
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-32 { margin-bottom: 32px; }

.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }
.col-span-9 { grid-column: span 9; }
.col-span-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .col-span-3,.col-span-4,.col-span-5,.col-span-6,
  .col-span-7,.col-span-8,.col-span-9 { grid-column: span 12; }
}
