/* ==========================================================================
   NAYI — Network of Young Armenian Innovators
   Design system: Vibrant & Block-based (per ui-ux-pro-max recommendation)
   Brand colors: Armenian tricolor (red / blue / orange) + warm cream
   ========================================================================== */

:root {
  /* === BRAND COLORS === */
  --red:       #D90012;
  --red-deep:  #9F000D;
  --blue:      #0033A0;
  --blue-deep: #001E5F;
  --orange:    #F2A800;
  --orange-warm: #FF8F1F;

  /* === NEUTRALS === */
  --cream:     #FFF8EC;
  --cream-2:   #FCEFD3;
  --paper:     #FFFDF7;
  --ink:       #0F0E0D;
  --ink-2:     #2A2521;
  --ink-3:     #5A5048;
  --line:      rgba(15, 14, 13, 0.12);

  /* === TYPOGRAPHY === */
  --font-display: "Archivo Black", "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

  /* === SPACING (4pt scale) === */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;   --sp-11: 12rem;  --sp-12: 16rem;

  /* === RADIUS === */
  --r-1: 6px;  --r-2: 12px;  --r-3: 20px;  --r-4: 32px;  --r-pill: 999px;

  /* === ELEVATION === */
  --shadow-sm:   0 1px 2px rgba(15, 14, 13, 0.08);
  --shadow-md:   0 8px 24px rgba(15, 14, 13, 0.12);
  --shadow-lg:   0 24px 48px rgba(15, 14, 13, 0.18);
  --shadow-pop:  6px 6px 0 var(--ink);
  --shadow-pop-red: 6px 6px 0 var(--red);
  --shadow-pop-blue: 6px 6px 0 var(--blue);
  --shadow-pop-orange: 6px 6px 0 var(--orange);

  /* === MOTION === */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;
}

/* ==========================================================================
   BASE
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "kern", "liga", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection { background: var(--orange); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: var(--r-1);
  z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   TYPE SCALE
   ========================================================================== */

.display-xl {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink-2);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.section {
  padding: clamp(var(--sp-8), 10vw, var(--sp-11)) 0;
}

.section--tight { padding: clamp(var(--sp-7), 6vw, var(--sp-9)) 0; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 248, 236, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: transform var(--t-base) var(--ease-out);
}

.site-header.is-hidden { transform: translateY(-100%); }

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

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 0 var(--red));
  transition: transform var(--t-fast) var(--ease-out),
              filter var(--t-fast) var(--ease-out);
}
.nav__brand:hover .nav__logo {
  transform: rotate(-8deg) scale(1.05);
  filter: drop-shadow(3px 3px 0 var(--red));
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  padding: 0.625rem 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--r-pill);
  transition: background var(--t-fast), color var(--t-fast);
  position: relative;
}

.nav__link:hover { background: var(--ink); color: var(--cream); }

.nav__cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: background var(--t-fast), transform var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__cta:hover { background: var(--red); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--cream);
}

/* Hide mobile drawer at desktop (only render when mobile) */
.nav__drawer { display: none; }

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: grid; place-items: center; }

  .nav__drawer {
    display: block;
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--cream);
    padding: var(--sp-9) var(--sp-6) var(--sp-6);
    transform: translateY(-100%);
    transition: transform var(--t-slow) var(--ease-out);
    overflow-y: auto;
    z-index: 200;
  }
  .nav__drawer.is-open { transform: translateY(0); }
  .nav__drawer ul { list-style: none; padding: 0; margin: 0 0 var(--sp-7); }
  .nav__drawer li {
    border-bottom: 1px solid rgba(255, 248, 236, 0.15);
  }
  .nav__drawer a {
    display: block;
    padding: var(--sp-5) 0;
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .nav__drawer-cta {
    display: block;
    background: var(--orange);
    color: var(--ink);
    padding: var(--sp-5);
    border-radius: var(--r-3);
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
  }
  .nav__close {
    position: absolute;
    top: var(--sp-5); right: var(--sp-5);
    width: 44px; height: 44px;
    background: var(--cream);
    color: var(--ink);
    border-radius: var(--r-pill);
    display: grid; place-items: center;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.625rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              background var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--primary:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.btn--primary:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink); }

.btn--ink {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--orange);
}
.btn--ink:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--orange); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--white {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--white:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }

.btn--lg { padding: 1.25rem 2rem; font-size: 1.0625rem; }

/* ==========================================================================
   HERO — full-bleed photo background
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero--full {
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(8rem, 16vw, 12rem) 0 clamp(var(--sp-7), 6vw, var(--sp-9));
  color: var(--cream);
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  animation: hero-zoom 18s ease-out forwards;
}

@keyframes hero-zoom {
  to { transform: scale(1.08); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 14, 13, 0.35) 0%,
      rgba(15, 14, 13, 0.62) 55%,
      rgba(15, 14, 13, 0.93) 100%
    ),
    radial-gradient(ellipse at 75% 40%, rgba(217, 0, 18, 0.18), transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(242, 168, 0, 0.14), transparent 50%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; transform: scale(1); }
}

.hero--full .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--cream);
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-6);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.5); }
}

.hero__title {
  margin: 0 0 var(--sp-6);
}

.hero__title-line { display: block; }
.hero__title-line--red    { color: var(--red); }
.hero__title-line--blue   { color: var(--blue); }
.hero__title-line--orange { color: var(--orange); }
.hero__title-line--ink    { color: var(--ink); }

/* Dark-bg overrides — brand colors, deepened/saturated for richness on photo+scrim */
.hero--full .hero__title-line--red    { color: #DC2626; }
.hero--full .hero__title-line--blue   { color: #2563EB; }
.hero--full .hero__title-line--orange { color: #EA580C; }
.hero--full .hero__title-line--ink    { color: var(--cream); }

.hero--full .hero__sub {
  max-width: 580px;
  margin: 0 0 var(--sp-7);
  color: rgba(255, 248, 236, 0.86);
}
.hero--full .hero__sub strong { color: var(--cream); font-weight: 700; }

.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero--full .hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 2px solid rgba(255, 248, 236, 0.22);
  max-width: 720px;
}

@media (max-width: 600px) {
  .hero--full .hero__meta { grid-template-columns: repeat(2, 1fr); }
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__meta-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.125rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__meta-num--red    { color: var(--red); }
.hero__meta-num--blue   { color: var(--blue); }
.hero__meta-num--orange { color: var(--orange); }

.hero--full .hero__meta-num--red    { color: #FF3344; }
.hero--full .hero__meta-num--blue   { color: #5FA8FF; }
.hero--full .hero__meta-num--orange { color: var(--orange); }

.hero__meta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero--full .hero__meta-label { color: rgba(255, 248, 236, 0.62); }

/* light-on-dark outline button for hero */
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 1rem 1.625rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: transform var(--t-fast) var(--ease-out),
              background var(--t-fast),
              color var(--t-fast),
              box-shadow var(--t-fast);
}
.btn--outline-light:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--orange);
}

/* ==========================================================================
   WHAT IS NAYI — video section
   ========================================================================== */

.what-is-nayi {
  background: var(--cream);
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}

.what-text,
.what-video { min-width: 0; }

@media (min-width: 1024px) {
  .what-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: var(--sp-8);
  }
}

.what-text__title {
  margin: var(--sp-4) 0 var(--sp-5);
}
.what-text__title em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.what-text__title em::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  bottom: 6%;
  height: 22%;
  background: var(--orange);
  z-index: -1;
  transform: skewX(-8deg);
}

.what-text__copy {
  margin: 0 0 var(--sp-6);
  color: var(--ink-2);
  max-width: 52ch;
}

.what-text__ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.what-video {
  position: relative;
  border-radius: var(--r-4);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--blue);
  transform: rotate(-1.5deg);
  transition: transform var(--t-slow) var(--ease-out),
              box-shadow var(--t-slow) var(--ease-out);
  margin: 0;
  aspect-ratio: 9 / 16;
  max-height: 720px;
  max-width: 480px;
  justify-self: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .what-video {
    justify-self: end;
    max-width: 100%;
  }
}

.what-video:hover {
  transform: rotate(0deg) translate(-4px, -4px);
  box-shadow: 16px 16px 0 var(--blue);
}

.what-video__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.what-video__caption {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: var(--cream);
  color: var(--ink);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

/* ==========================================================================
   COLOR-BLOCK SECTIONS
   ========================================================================== */

.block {
  padding: clamp(var(--sp-8), 10vw, var(--sp-10)) 0;
  position: relative;
  overflow: hidden;
}

.block--red    { background: var(--red);    color: var(--cream); }
.block--blue   { background: var(--blue);   color: var(--cream); }
.block--orange { background: var(--orange); color: var(--ink);   }
.block--ink    { background: var(--ink);    color: var(--cream); }
.block--cream  { background: var(--cream);  color: var(--ink);   }

/* Decorative shapes */
.block__shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.block__shape--circle { border-radius: 50%; }

.block__inner { position: relative; z-index: 1; }

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats-strip {
  background: var(--ink);
  color: var(--cream);
  padding: var(--sp-7) 0;
  border-top: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  overflow: hidden;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6) var(--sp-5);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-strip__grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.stat-item__num--red    { color: var(--red); }
.stat-item__num--blue   { color: var(--orange); }
.stat-item__num--orange { color: var(--orange); }
.stat-item__num--cream  { color: var(--cream); }

.stat-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 248, 236, 0.7);
}

/* ==========================================================================
   CHAPTER STORYTELLING — sticky progress indicator + chapter labels
   ========================================================================== */

/* Sticky chapter indicator (left side of viewport) */
.chapter-rail {
  position: fixed;
  top: 50%;
  left: clamp(12px, 2vw, 28px);
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .chapter-rail { display: none; }
}

.chapter-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.chapter-dot__mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--cream);
  transition: all var(--t-base) var(--ease-out);
  flex-shrink: 0;
}

.chapter-dot__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out),
              color var(--t-base);
  white-space: nowrap;
  background: var(--cream);
  padding: 4px 10px;
  border: 1.5px solid var(--ink);
  pointer-events: none;
}

.chapter-dot:hover .chapter-dot__label,
.chapter-dot.is-active .chapter-dot__label {
  opacity: 1;
  transform: translateX(0);
}

.chapter-dot.is-active .chapter-dot__mark {
  background: var(--red);
  border-color: var(--red);
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 4px rgba(217, 0, 18, 0.15);
}

.chapter-dot.is-passed .chapter-dot__mark {
  background: var(--ink);
  border-color: var(--ink);
}

/* Chapter intro — replaces or augments section header */
.chapter-intro {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-bottom: 1.5px solid currentColor;
}

.chapter-intro__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--red);
}

.chapter-intro__divider {
  width: 1px;
  height: 36px;
  background: currentColor;
  opacity: 0.4;
}

.chapter-intro__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chapter-intro__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.6;
}

.chapter-intro__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Chapter color tints — building intensity through page */
.chapter-tint-1 { background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%); }
.chapter-tint-2 { background: linear-gradient(180deg, var(--cream) 0%, #FFF4E6 100%); }
.chapter-tint-3 { background: linear-gradient(180deg, #FFF4E6 0%, var(--cream) 100%); }
.chapter-tint-4 { background: linear-gradient(180deg, var(--cream) 0%, #FFE8E0 100%); }

/* End-of-chapter mini CTA */
.chapter-cta {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.chapter-cta__next {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: color var(--t-fast), gap var(--t-fast);
}
.chapter-cta__next:hover {
  color: var(--red);
  gap: 16px;
}
.chapter-cta__next-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--red);
}

/* ==========================================================================
   EDITORIAL GRID — magazine / NYT-style layout primitives
   ========================================================================== */

.ed-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-6);
  align-items: start;
}
@media (max-width: 768px) {
  .ed-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .ed-grid > * { grid-column: auto !important; }
}

.ed-c-2  { grid-column: span 2; }
.ed-c-3  { grid-column: span 3; }
.ed-c-4  { grid-column: span 4; }
.ed-c-5  { grid-column: span 5; }
.ed-c-6  { grid-column: span 6; }
.ed-c-7  { grid-column: span 7; }
.ed-c-8  { grid-column: span 8; }
.ed-c-9  { grid-column: span 9; }
.ed-c-10 { grid-column: span 10; }
.ed-c-12 { grid-column: span 12; }
.ed-start-2 { grid-column-start: 2; }
.ed-start-3 { grid-column-start: 3; }
.ed-start-4 { grid-column-start: 4; }
.ed-start-6 { grid-column-start: 6; }
.ed-start-7 { grid-column-start: 7; }
.ed-start-8 { grid-column-start: 8; }

/* Editorial section header — left-anchored, rule below, big section number on right */
.ed-section {
  padding: clamp(var(--sp-9), 9vw, var(--sp-11)) 0;
}
.ed-section--cream { background: var(--cream); }
.ed-section--paper { background: var(--paper); }
.ed-section--ink   { background: var(--ink); color: var(--cream); }

.ed-mast {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-8);
  border-bottom: 2px solid currentColor;
}
.ed-mast__text { max-width: 56ch; }
.ed-mast__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--red);
  opacity: 0.85;
}
.ed-mast--white .ed-mast__num { color: var(--orange); opacity: 0.9; }
.ed-section--ink .ed-mast { border-color: rgba(255, 248, 236, 0.3); }

.ed-mast__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-4);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}
.ed-section--ink .ed-mast__kicker {
  color: var(--orange);
  border-color: var(--orange);
}

.ed-mast__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

.ed-mast__sub {
  margin: var(--sp-4) 0 0;
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 60ch;
}
.ed-section--ink .ed-mast__sub { color: rgba(255, 248, 236, 0.78); }

/* Drop cap on the first paragraph of an editorial body */
.dropcap::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 5.6em;
  line-height: 0.82;
  font-weight: 900;
  margin: 0.06em 12px 0 -0.04em;
  color: var(--red);
  text-transform: uppercase;
}

/* Pull quote — breaks out of column */
.pull-quote {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2.375rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink);
  padding: var(--sp-5) 0;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: var(--sp-6) 0;
}
.pull-quote__attrib {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: var(--sp-3);
  text-transform: uppercase;
}

/* Editorial body text with optional 2-column wrap */
.ed-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.ed-body p { margin: 0 0 var(--sp-5); }
.ed-body p:last-child { margin-bottom: 0; }
.ed-body em { color: var(--ink); font-style: italic; }
.ed-body strong { color: var(--ink); font-weight: 700; }

@media (min-width: 1024px) {
  .ed-body--2col {
    column-count: 2;
    column-gap: var(--sp-7);
  }
  .ed-body--2col p { break-inside: avoid; }
}

/* Byline / dateline — top of an editorial article */
.byline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: var(--sp-6);
}
.byline__author { color: var(--ink); }

/* Article row — for press / founder lists */
.article-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-5);
  align-items: baseline;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding var(--t-fast) var(--ease-out), background var(--t-fast);
}
.article-row:first-child { border-top: 2px solid var(--ink); }
.article-row:hover { padding-left: var(--sp-3); padding-right: var(--sp-3); background: var(--cream-2); }

.article-row__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--red);
  min-width: 56px;
}
.article-row__hed {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.article-row__sub {
  font-size: 0.9375rem;
  color: var(--ink-3);
  margin: 4px 0 0;
}
.article-row__arrow {
  font-size: 1.25rem;
  color: var(--ink);
  transition: transform var(--t-fast) var(--ease-out);
}
.article-row:hover .article-row__arrow { transform: translate(4px, -4px); color: var(--red); }

@media (max-width: 600px) {
  .article-row { grid-template-columns: auto 1fr; }
  .article-row__arrow { grid-row: 1; grid-column: 2; justify-self: end; }
}

/* ==========================================================================
   PILLARS — block grid
   ========================================================================== */

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  position: relative;
  padding: var(--sp-7);
  border-radius: var(--r-4);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
  overflow: hidden;
}

.pillar:hover { transform: translate(-6px, -6px); box-shadow: 12px 12px 0 var(--ink); }

.pillar--red    { background: var(--red);    color: var(--cream); }
.pillar--blue   { background: var(--blue);   color: var(--cream); }
.pillar--orange { background: var(--orange); color: var(--ink);   }

.pillar__num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  opacity: 0.25;
  letter-spacing: -0.04em;
  align-self: flex-start;
}

.pillar__body { margin-top: auto; }

.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-3);
  line-height: 0.95;
}

.pillar__copy { font-size: 0.9375rem; line-height: 1.55; opacity: 0.95; margin: 0; }

.pillar__shape {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  top: -60px; right: -60px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

/* ==========================================================================
   FOUNDER SPLIT
   ========================================================================== */

.founder-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-split { grid-template-columns: 1fr 1.2fr; gap: var(--sp-9); }
}

.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-4);
  overflow: hidden;
  background: var(--ink);
  box-shadow: -10px 10px 0 var(--blue);
  transform: rotate(-2deg);
}

.founder-photo img { width: 100%; height: 100%; object-fit: cover; }

.founder-photo__tag {
  position: absolute;
  bottom: var(--sp-4); left: var(--sp-4);
  background: var(--cream);
  color: var(--ink);
  padding: 0.625rem 1rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.founder-text__quote {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-6);
}
.founder-text__quote span { color: var(--red); }

.founder-text__copy {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
}
.founder-text__copy + .founder-text__copy { margin-top: var(--sp-4); }

.founder-text__attribution {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 2px solid var(--ink);
}

.founder-text__attribution-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.founder-text__attribution-role {
  font-size: 0.875rem;
  color: var(--ink-3);
}

/* ==========================================================================
   EVENTS MOSAIC
   ========================================================================== */

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: var(--sp-5);
  }
  .event-card--lg  { grid-column: span 4; grid-row: span 2; }
  .event-card--md  { grid-column: span 2; grid-row: span 2; }
  .event-card--sm  { grid-column: span 3; grid-row: span 1; }
}

.event-card {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  min-height: 260px;
  transition: transform var(--t-base) var(--ease-out);
}

.event-card:hover { transform: translateY(-6px); }
.event-card:hover .event-card__img { transform: scale(1.06); }

.event-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.event-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0.0) 40%, rgba(15, 14, 13, 0.85) 100%);
  z-index: 1;
}

.event-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5);
}

.event-card__date {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--orange);
  color: var(--ink);
  padding: 0.375rem 0.75rem;
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.event-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

.event-card__meta {
  font-size: 0.8125rem;
  color: rgba(255, 248, 236, 0.78);
  margin-top: var(--sp-2);
}

/* ==========================================================================
   FOUNDER FRIDAY STRIP
   ========================================================================== */

.ff-marquee-row {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  padding: var(--sp-3) 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ff-marquee-row::-webkit-scrollbar { display: none; }

.ff-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-3);
  padding: var(--sp-5);
  border: 3px solid var(--ink);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

.ff-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }

.ff-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.ff-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 var(--sp-2);
  letter-spacing: -0.01em;
}

.ff-card__company {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 0 var(--sp-4);
}

.ff-card__chip {
  display: inline-flex;
  background: var(--orange);
  color: var(--ink);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   UPCOMING EVENT CARD
   ========================================================================== */

.upcoming {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding: var(--sp-7);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-4);
  box-shadow: 12px 12px 0 var(--ink);
  align-items: center;
}

@media (min-width: 900px) {
  .upcoming {
    grid-template-columns: 1fr 1.4fr;
    padding: var(--sp-8);
    gap: var(--sp-8);
  }
}

.upcoming__media {
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4 / 5;
}
.upcoming__media img { width: 100%; height: 100%; object-fit: cover; }

.upcoming__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--cream);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.upcoming__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-4);
}

.upcoming__copy {
  font-size: 1.0625rem;
  color: var(--ink-2);
  margin: 0 0 var(--sp-5);
  max-width: 50ch;
}

.upcoming__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  padding: var(--sp-4);
  background: var(--cream-2);
  border-radius: var(--r-3);
}

.upcoming__meta-item-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
}
.upcoming__meta-item-val {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  text-transform: uppercase;
}

/* ==========================================================================
   PARTNERS MARQUEE
   ========================================================================== */

.marquee {
  background: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: var(--sp-5) 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: var(--sp-7);
  animation: scroll 40s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: var(--sp-7);
  white-space: nowrap;
}
.marquee__item::after {
  content: "★";
  font-size: 1.125rem;
  color: var(--red);
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ==========================================================================
   SECTION HEADER (eyebrow + title + sub)
   ========================================================================== */

.sh {
  margin-bottom: var(--sp-7);
  max-width: 760px;
}

.sh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.375rem 0.875rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.sh__title { margin: 0 0 var(--sp-4); }

.sh__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

/* white variants for inside dark blocks */
.sh--white .sh__eyebrow { background: var(--cream); color: var(--ink); }
.sh--white .sh__sub { color: rgba(255, 248, 236, 0.85); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.final-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: clamp(var(--sp-8), 10vw, var(--sp-10)) 0;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-5);
}
.final-cta__title span { color: var(--orange); }

.final-cta__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 248, 236, 0.78);
  max-width: 560px;
  margin: 0 auto var(--sp-7);
}

.final-cta__ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.final-cta__shape--red    { width: 460px; height: 460px; background: var(--red);    top: -100px; left: -100px; }
.final-cta__shape--blue   { width: 520px; height: 520px; background: var(--blue);   bottom: -180px; right: -160px; }
.final-cta__shape--orange { width: 280px; height: 280px; background: var(--orange); top: 40%; right: 30%; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--sp-9) 0 var(--sp-6);
  border-top: 3px solid var(--orange);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand-tag {
  font-family: var(--font-display);
  font-size: 1.625rem;
  text-transform: uppercase;
  margin: 0 0 var(--sp-3);
  letter-spacing: -0.01em;
}

.footer__copy {
  color: rgba(255, 248, 236, 0.68);
  max-width: 36ch;
  font-size: 0.9375rem;
  margin: 0 0 var(--sp-5);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 var(--sp-4);
}

.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); }

.footer__list a {
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.9375rem;
  transition: color var(--t-fast);
}
.footer__list a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 248, 236, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 248, 236, 0.5);
}

/* ==========================================================================
   PRESS SECTION
   ========================================================================== */

.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

@media (min-width: 768px) {
  .press-grid { grid-template-columns: repeat(3, 1fr); }
}

.press-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--r-3);
  padding: var(--sp-6);
  min-height: 280px;
  text-decoration: none;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

.press-card:nth-child(1):hover { box-shadow: 10px 10px 0 var(--red); }
.press-card:nth-child(2):hover { box-shadow: 10px 10px 0 var(--blue); }
.press-card:nth-child(3):hover { box-shadow: 10px 10px 0 var(--orange); }

.press-card:hover { transform: translate(-6px, -6px); }

.press-card__source {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: var(--sp-5);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.press-card__source::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--red);
  display: inline-block;
}

.press-card__headline {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.4vw, 1.4375rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 auto;
  flex-grow: 1;
}

.press-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--ink-3);
  font-weight: 700;
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 2px solid var(--line);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.press-card__arrow {
  font-size: 1.25rem;
  color: var(--ink);
  transition: transform var(--t-fast) var(--ease-out);
  font-weight: 800;
}

.press-card:hover .press-card__arrow { transform: translate(4px, -4px); }

.press-pullquote {
  margin: 0;
  padding: var(--sp-7);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-4);
  position: relative;
  overflow: hidden;
}

.press-pullquote::before {
  content: "";
  position: absolute;
  top: -40px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--red), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.press-pullquote p {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0 0 var(--sp-5);
  font-weight: 400;
  font-style: italic;
}

.press-pullquote footer {
  position: relative;
  font-size: 0.875rem;
  color: rgba(255, 248, 236, 0.7);
  letter-spacing: 0.02em;
}
.press-pullquote footer span {
  font-family: var(--font-display);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-style: normal;
  margin-right: 0.5em;
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
