/* =========================================================
   Alex King Creative — Brutalist Editorial
   ========================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --ink: #0a0a0a;
  --ink-2: #161616;
  --paper: #f4efe6;
  --paper-2: #ebe5d7;
  --rule: #1f1f1f;
  --rule-soft: #2a2a2a;
  --accent: #ff3b1f;     /* signal orange-red */
  --accent-2: #00ffcc;   /* secondary cool */
  --muted: #8a8a8a;
  --muted-paper: #6f6757;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

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

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  font-family: var(--sans);
  mix-blend-mode: difference;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }

.nav-mark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--paper);
  display: flex;
  align-items: baseline;
}
.mark-glyph { display: inline-block; }
.mark-dot { color: var(--accent); margin-left: -2px; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { color: var(--paper); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  border: 1px solid var(--paper);
  padding: 10px 18px;
  border-radius: 0;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--paper);
  color: var(--ink) !important;
}

/* Hamburger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
  pointer-events: auto;
  position: relative; z-index: 60;
}
.nav-burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--paper);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  z-index: 40;
  background: var(--ink);
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 48px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s cubic-bezier(0.2,0.7,0.2,1), transform 0.35s cubic-bezier(0.2,0.7,0.2,1);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav {
  display: flex; flex-direction: column;
  gap: 0;
}
.mob-link {
  font-family: var(--serif);
  font-size: clamp(48px, 14vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: color 0.2s;
  display: block;
}
.mob-link:hover { color: var(--accent); }
.mob-cta {
  color: var(--accent);
  font-style: italic;
  font-size: clamp(28px, 8vw, 48px);
  margin-top: 8px;
  border-bottom: none;
}
.mob-footer {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.mob-footer a { color: var(--muted); }
.mob-footer a:hover { color: var(--paper); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px 32px 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-image {
  position: absolute; inset: 0;
  background: url('assets/street-portrait.jpg') center 18% / cover no-repeat;
  filter: contrast(1.05) saturate(0.88);
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 4px
    );
  pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.85) 100%);
}

.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* hero-grid: vertical tick marks */
.hero-grid {
  position: absolute; top: 0; bottom: 0; left: 0; right: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-tick {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(244,239,230,0.06) 30%, rgba(244,239,230,0.06) 70%, transparent 100%);
}

/* hero meta corner labels */
.hero-meta {
  position: absolute;
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  font-weight: 500;
}
.hero-meta-tl { top: 90px; left: 32px; }
.hero-meta-tr { top: 90px; right: 32px; }
.hero-meta-bl { bottom: 32px; left: 32px; }
.hero-meta-br { bottom: 32px; right: 32px; }
.meta-rule { width: 32px; height: 1px; background: rgba(244,239,230,0.4); }
.meta-label { color: var(--muted); }
.meta-text { color: var(--paper); font-weight: 400; }

.scroll-indicator {
  display: inline-block;
  width: 1px; height: 28px;
  background: linear-gradient(180deg, var(--paper), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* hero content */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1400px;
  width: 100%;
}

.hero-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(244,239,230,0.15);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  border: 1px solid rgba(244,239,230,0.25);
  padding: 8px 14px;
  border-radius: 0;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(38px, 10vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--paper);
  overflow-wrap: break-word;
}
.hero-title .line {
  display: inline;
  margin-right: 0.18em;
}
.hero-title .muted { color: rgba(244,239,230,0.4); font-weight: 300; font-style: italic; }
.hero-title .accent { color: var(--accent); font-style: italic; font-weight: 900; }
.hero-title .strike {
  position: relative;
  font-weight: 300;
  font-style: italic;
  color: rgba(244,239,230,0.55);
}
.hero-title .strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 0.06em;
  background: var(--accent);
  transform: rotate(-2deg);
}

.hero-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  font-weight: 500;
  max-width: 900px;
}
.byline-num { color: var(--accent); font-weight: 700; }
.byline-sep { color: rgba(244,239,230,0.3); }
.byline-text { letter-spacing: 0.1em; text-transform: none; font-style: italic; font-family: var(--serif); font-size: 16px; line-height: 1.5; }

@media (max-width: 768px) {
  .hero { padding: 100px 20px 60px; min-height: 100svh; }
  .hero-meta { font-size: 9px; gap: 8px; }
  .hero-meta-tl, .hero-meta-tr { display: none; }
  .hero-meta-bl, .hero-meta-br { bottom: 20px; }
  .hero-meta-bl { left: 20px; }
  .hero-meta-br { right: 20px; }
  .hero-byline { font-size: 10px; }
  .byline-text { font-size: 13px; line-height: 1.4; }
  .hero-footer { gap: 16px; padding-top: 24px; margin-top: 28px; }
  .hero-eyebrow { font-size: 9px; padding: 6px 10px; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--paper);
  color: var(--ink);
  padding: 22px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-left: 32px;
}
.marquee-track .dot-sep {
  color: var(--accent);
  font-size: 0.6em;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 32px 140px;
  position: relative;
}
.manifesto-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.m-label {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.section-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.section-name { color: var(--muted-paper); }

.m-body { max-width: 920px; }
.m-lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  color: var(--ink);
}
.m-text {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--ink-2);
  max-width: 800px;
}
.hi {
  background: var(--ink);
  color: var(--paper);
  padding: 0 6px;
  font-style: normal;
}

@media (max-width: 768px) {
  .manifesto { padding: 80px 20px 100px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .m-label { position: relative; top: 0; }
  .section-num { font-size: 40px; }
}

/* =========================================================
   VENTURES
   ========================================================= */
.ventures {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 32px 140px;
  position: relative;
}
.ventures-head {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: end;
}
.ventures-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--paper);
}
.ventures-title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 900;
}
.ventures-sub {
  grid-column: 2;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}

.ventures-table {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--rule-soft);
}

.venture {
  display: grid;
  grid-template-columns: 80px 240px 1fr 200px 140px;
  align-items: start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  transition: background 0.3s;
}
.venture::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,59,31,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.venture:hover::before { opacity: 1; }
.venture:hover .v-num { color: var(--accent); }
.venture:hover .v-name { transform: translateX(8px); }

.v-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  padding-top: 12px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.v-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
}
.v-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.v-year {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--paper);
  font-style: italic;
}
.v-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: transform 0.3s;
  color: var(--paper);
}
.v-name .v-amp {
  font-style: italic;
  font-weight: 300;
  color: rgba(244,239,230,0.55);
}
.v-blurb {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(244,239,230,0.7);
  padding-top: 8px;
}
.v-link {
  padding-top: 18px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.v-link a { color: var(--paper); border-bottom: 1px solid var(--rule-soft); padding-bottom: 2px; transition: border-color 0.2s, color 0.2s; }
.v-link a:hover { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 1100px) {
  .venture { grid-template-columns: 60px 1fr; gap: 16px; padding: 32px 0; }
  .v-meta, .v-blurb, .v-link { grid-column: 2; }
  .v-num { grid-column: 1; grid-row: 1 / 5; }
  .v-link { text-align: left; padding-top: 8px; }
}
@media (max-width: 768px) {
  .ventures { padding: 80px 20px 100px; }
  .ventures-head { grid-template-columns: 1fr; gap: 24px; }
  .ventures-sub { grid-column: 1; margin-top: 0; }
}

/* =========================================================
   EVENT PRODUCTION (the bookable thing)
   ========================================================= */
.event-prod {
  position: relative;
  background: var(--accent);
  color: var(--ink);
  padding: 140px 32px 140px;
  overflow: hidden;
}
.event-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,0,0,0.3), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.1), transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.event-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 40px,
      rgba(0,0,0,0.04) 40px,
      rgba(0,0,0,0.04) 41px
    );
}

.event-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  position: relative;
  z-index: 2;
}
.event-label .section-num { color: var(--ink); }
.event-label .section-name { color: var(--ink); }

.event-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 8px 14px;
  background: rgba(0,0,0,0.05);
}
.event-eyebrow .dot.live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 1.4s ease-in-out infinite;
}

.event-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 104px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 1100px;
}
.event-headline em { font-style: italic; font-weight: 300; }

.rotating-word {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
  font-style: italic;
  font-weight: 900;
  background: var(--ink);
  color: var(--accent);
  padding: 0 0.15em;
}
.rotating-word span {
  display: block;
  animation: rotate-word 8s steps(4) infinite;
}
@keyframes rotate-word {
  0%, 23%   { transform: translateY(0); }
  25%, 48%  { transform: translateY(-100%); }
  50%, 73%  { transform: translateY(-200%); }
  75%, 98%  { transform: translateY(-300%); }
  100%      { transform: translateY(-400%); }
}

.event-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 72px;
  max-width: 1100px;
}
.ec-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  padding-top: 12px;
  margin-bottom: 20px;
}
.ec-list {
  list-style: none;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}
.ec-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  color: var(--ink);
}
.ec-list li:last-child { border-bottom: 0; }

.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 36px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--ink);
  transition: all 0.25s;
  position: relative;
}
.event-cta:hover {
  background: var(--paper);
  color: var(--ink) !important;
}
.event-cta:hover .arrow { transform: translateX(8px); }
.event-cta .arrow {
  font-size: 20px;
  transition: transform 0.25s;
}

@media (max-width: 1100px) {
  .event-grid { grid-template-columns: 1fr; gap: 32px; }
  .event-detail { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .event-prod { padding: 80px 20px 100px; }
}

/* =========================================================
   STAGE
   ========================================================= */
.stage {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 32px 140px;
}
.stage-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
}
.stage-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 1000px;
}
.stage-text {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 850px;
  color: rgba(244,239,230,0.85);
}
.stage-text.muted { color: rgba(244,239,230,0.55); font-size: clamp(15px, 1.3vw, 18px); }
.stage-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.stage-link:hover { color: var(--accent); border-bottom: 2px solid var(--accent); }

@media (max-width: 768px) {
  .stage { padding: 80px 20px 100px; }
  .stage-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   FRAGMENTS / GALLERY
   ========================================================= */
.fragments {
  background: var(--paper);
  color: var(--ink);
  padding: 80px 0 80px;
  overflow: hidden;
}
.frag-rail {
  display: flex;
  gap: 32px;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.frag-rail::-webkit-scrollbar { display: none; }

.frag {
  flex: 0 0 auto;
  width: 360px;
  height: 480px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.frag-1 { transform: rotate(-1deg); margin-top: 12px; }
.frag-2 { transform: rotate(0.5deg); }
.frag-3 { transform: rotate(-0.5deg); margin-top: 24px; }
.frag-4 { transform: rotate(1deg); background: var(--accent); margin-top: 8px; }

.frag-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05);
  transition: filter 0.4s, transform 0.4s;
}
.frag:hover .frag-img { filter: grayscale(0) contrast(1.1); transform: scale(1.04); }
.frag-cap {
  position: absolute;
  bottom: 12px; left: 16px; right: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper);
  z-index: 2;
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  display: inline-block;
  width: fit-content;
}
.frag-4 .frag-cap { color: var(--ink); background: rgba(244,239,230,0.85); }

.frag-quote {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
}
.q-mark {
  color: var(--paper);
  font-size: 1.4em;
  font-weight: 900;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2,0.7,0.2,1), transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.venture.reveal { transition-delay: 0.05s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .scroll-indicator, .rotating-word span, .hero-eyebrow .dot, .event-eyebrow .dot.live {
    animation: none !important;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 32px 32px;
  border-top: 1px solid var(--rule-soft);
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule-soft);
}
.foot-col { display: flex; flex-direction: column; gap: 8px; }
.foot-mark {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.foot-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.foot-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.foot-col a, .foot-col div {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper);
}
.foot-col a:hover { color: var(--accent); }

.footer-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.strip-rule { width: 24px; height: 1px; background: var(--rule-soft); }

@media (max-width: 768px) {
  .footer { padding: 60px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 48px; }
  .foot-mark { font-size: 40px; }
  .footer-strip { font-size: 10px; gap: 8px; }
  .strip-rule { display: none; }
}
