/* ==================================================================
   TOKENS
   Palette: velvet/editorial red + cream, grain, breathing room.
   ------------------------------------------------------------------
   --ink        : #0A0505  near-black w/ red undertone (dominant field)
   --cream      : #F3ECE3  bone cream (light sections / reversed text)
   --red        : #8A0F14  velvet/arterial red (primary accent)
   --red-hot    : #C9111B  brighter red — reserved for alerts / 2PM break
   --red-deep   : #5C1418  shadow red — grain, borders, depth
   --cream-dim  : #E4D9C9  muted cream for secondary text on dark
   ================================================================== */
:root{
  --ink: #0A0505;
  --ink-soft: #150B0B;
  --cream: #F3ECE3;
  --cream-dim: #E4D9C9;
  --red: #8A0F14;
  --red-hot: #C9111B;
  --red-deep: #5C1418;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Source Serif 4', serif;

  --space-xs: 0.75rem;
  --space-sm: 1.5rem;
  --space-md: 3rem;
  --space-lg: 6rem;
  --space-xl: 10rem;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html{ scroll-behavior: smooth; }

body{
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a{ color: inherit; }

::selection{ background: var(--red); color: var(--cream); }

/* ==================================================================
   GRAIN OVERLAY — subtle film-grain texture across whole page,
   gives the "velvet editorial" tactile feel without being a filter
   over readability.
   ================================================================== */
.grain{
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(4) infinite;
}
@keyframes grain-shift{
  0%,100%{ transform: translate(0,0); }
  25%{ transform: translate(-1%,1%); }
  50%{ transform: translate(1%,-1%); }
  75%{ transform: translate(-1%,-1%); }
}

/* ==================================================================
   NAV
   ================================================================== */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: rgba(10, 5, 5, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243, 236, 227, 0.08);
}
.nav-mark{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-decoration: none;
}
.nav-links{ display: flex; gap: var(--space-md); }
.nav-links a{
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--red-hot);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover{ color: var(--cream); }
.nav-links a:hover::after{ width: 100%; }

@media (max-width: 640px){
  .nav-links{ gap: var(--space-sm); }
  .nav-links a{ font-size: 0.8rem; }
}

/* ==================================================================
   SHARED SECTION SCAFFOLDING
   ================================================================== */
.section{
  position: relative;
  padding: var(--space-xl) var(--space-md);
}
.section-head{
  max-width: 760px;
  margin: 0 auto var(--space-lg);
  text-align: left;
}
.section-num{
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red-hot);
  letter-spacing: 0.3em;
  margin-bottom: var(--space-xs);
}
.section-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}
.section-sub{
  font-size: 1.2rem;
  color: var(--cream-dim);
  max-width: 620px;
  line-height: 1.6;
}
.subsection-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  color: var(--ink);
}
.subsection-title--light{ color: var(--cream); }

/* ==================================================================
   PUNCH LINE — short, isolated, full-bleed statement between
   sections. This is the "hit" beat: one sentence, split into a
   quiet setup and a loud payoff, nothing else on screen.
   ================================================================== */
.punch-line{
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  background: var(--ink);
}
.punch-line--red{ background: var(--red-deep); }
.punch-line p{
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  color: var(--cream-dim);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.punch-line p.in-view{ opacity: 1; transform: translateY(0); }
.punch-line p span{
  display: block;
  color: var(--cream);
  font-weight: 900;
}
.punch-line--red p{ color: rgba(243,236,227,0.75); }
.punch-line--red p span{ color: var(--cream); }

/* ==================================================================
   SECTION 1 — MASTHEAD / MAIN
   ================================================================== */
.section--main{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8rem;
  overflow: hidden;
}
.main-bg-mark{
  position: absolute;
  top: 50%; right: -4vw;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243,236,227,0.05);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.main-inner{
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.headline{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.headline > br + span,
.headline{ opacity: 1; }
.headline{
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.25s forwards;
}
.headline-accent{
  color: var(--red-hot);
  font-style: italic;
}
.main-lede{
  font-size: 1.35rem;
  line-height: 1.6;
  max-width: 640px;
  color: var(--cream-dim);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}
.main-lede em{ color: var(--cream); font-style: normal; font-weight: 600; }

@keyframes rise{
  from{ opacity: 0; transform: translateY(24px); }
  to{ opacity: 1; transform: translateY(0); }
}

.scroll-cue{
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.65s forwards;
}
.scroll-cue-line{
  display: block;
  width: 48px; height: 1px;
  background: var(--red-hot);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after{
  content:'';
  position: absolute;
  top:0; left: -100%;
  width: 100%; height: 100%;
  background: var(--cream);
  animation: cue-sweep 1.8s ease-in-out infinite;
}
@keyframes cue-sweep{
  0%{ left: -100%; }
  50%{ left: 100%; }
  100%{ left: 100%; }
}

.stat-strip{
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  border-top: 1px solid rgba(243,236,227,0.12);
  padding-top: var(--space-md);
}
.stat{ display: flex; flex-direction: column; gap: 0.4rem; }
.stat-num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red-hot);
}
.stat-label{
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.4;
}

@media (max-width: 900px){
  .stat-strip{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .stat-strip{ grid-template-columns: 1fr; }
  .section{ padding: var(--space-lg) var(--space-sm); }
}

/* ==================================================================
   SECTION 2 — TIMELINE
   Spine changes color/glow as it crosses into "break" phase entries.
   ================================================================== */
.section--timeline{
  background: var(--cream);
  color: var(--ink);
}
.section--timeline .section-num{ color: var(--red); }
.section--timeline .section-sub{ color: #5a4f47; }

.timeline-spine{
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: var(--space-md);
  border-left: 3px solid var(--red-deep);
}

.tl-entry{
  position: relative;
  padding: 0 0 var(--space-lg) var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.tl-entry.in-view{ opacity: 1; transform: translateY(0); }

.tl-dot{
  position: absolute;
  left: calc(-1 * var(--space-md) - 9px);
  top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--red-deep);
}
.tl-dot--break{
  background: var(--red-hot);
  border-color: var(--red-hot);
  box-shadow: 0 0 0 6px rgba(201,17,27,0.15);
}

.tl-time{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.tl-entry--break .tl-time{ color: var(--red-hot); font-size: 1.3rem; }

.tl-break-tag{
  display: inline-block;
  background: var(--red-hot);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

.tl-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.tl-text{ font-size: 1.1rem; line-height: 1.65; margin-bottom: var(--space-sm); }
.tl-entry--break{
  background: linear-gradient(180deg, rgba(138,15,20,0.06), transparent 60%);
  border-radius: 4px;
}
/* the outbreak entry — same red system, slightly heavier border
   to mark it as the origin point of the whole timeline */
.tl-entry[data-phase="spark"]{
  border-left: 3px solid var(--red-hot);
  margin-left: -3px;
  padding-left: calc(var(--space-md) - 3px);
}

/* media handled by .media-slot, see below */

.tl-quote{
  font-style: italic;
  font-size: 1.15rem;
  border-left: 3px solid var(--red);
  padding-left: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #3a332e;
}
.tl-quote span{
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  margin-top: 0.4rem;
  color: #8a7f74;
}

.tl-source{
  font-size: 0.9rem;
  color: #8a7f74;
  letter-spacing: 0.01em;
}
.tl-source strong{ color: var(--red); }

/* ==================================================================
   SECTION 3 — FAILURES
   ================================================================== */
.section--failures{ background: var(--ink); }
.section-head--dark .section-sub{ color: var(--cream-dim); }

/* THE RULEBOOK — this is the site's thesis, made loud.
   Bigger cards, bigger numerals, high-contrast red-on-cream,
   short lines only. This section should read like a manifesto,
   not a legal footnote. */
.rulebook{
  background: var(--cream);
  color: var(--ink);
  border-radius: 6px;
  padding: var(--space-lg) var(--space-md);
  max-width: 1200px;
  margin: 0 auto var(--space-lg);
}
.rule-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.rule-card{
  position: relative;
  border-top: 5px solid var(--red);
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  background: linear-gradient(180deg, rgba(138,15,20,0.05), transparent 40%);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.rule-card:hover{
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(138,15,20,0.09), transparent 50%);
}
.rule-mark{
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}
.rule-card h4{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.rule-card p{ font-size: 1.1rem; color: #4a423b; line-height: 1.55; }

.violations{
  max-width: 900px;
  margin: 0 auto;
}
.violation-list{ display: flex; flex-direction: column; gap: var(--space-md); }
.violation-item{
  border-left: 5px solid var(--red-hot);
  padding: var(--space-sm) var(--space-md);
  background: rgba(201,17,27,0.06);
  border-radius: 0 4px 4px 0;
}
.violation-item--placeholder{
  border-left-color: rgba(243,236,227,0.25);
  background: rgba(243,236,227,0.03);
}
.v-tag{
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 0.5rem;
}
.v-tag--placeholder{ color: var(--cream-dim); }
.violation-item h4{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.violation-item p{ font-size: 1.05rem; line-height: 1.55; color: var(--cream-dim); margin-bottom: 0.7rem; }
.violation-item strong{ color: var(--cream); }

/* ==================================================================
   MEDIA COMPONENTS
   Three distinct hooks, each with a specific job. All collapse to
   zero height when empty — nothing renders until you add an <img>.
   ================================================================== */

/* ---- HERO MEDIA — one image behind the masthead. Desaturated
   toward the palette via a red/ink duotone overlay so it reads as
   part of the design system, not a stock photo dropped on top. ---- */
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media:empty{ display: none; }
.hero-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.1) brightness(0.55);
}
.hero-media::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,5,5,0.55), rgba(10,5,5,0.92) 85%),
              linear-gradient(90deg, rgba(138,15,20,0.25), transparent 60%);
}
.hero-media:empty::after{ content: none; }

/* ---- EVIDENCE FIGURE — inline, in-article image with caption.
   Styled like a photo credit line under a printed photograph:
   thin rule, small caption type, generous margin. Used sparingly —
   only at flashpoints/failures where a photo proves the claim. ---- */
.evidence-figure{ margin: 0 0 var(--space-sm); }
.evidence-figure:empty{ display: none; margin: 0; }
.evidence-figure img,
.evidence-figure video{
  display: block;
  width: 100%;
  border-radius: 2px;
}
.evidence-figure figcaption{
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(90,79,71,0.25);
  font-size: 0.9rem;
  color: #8a7f74;
  line-height: 1.5;
}
.section--failures .evidence-figure figcaption{
  border-top-color: rgba(243,236,227,0.15);
  color: var(--cream-dim);
}
/* ---- CLOSING MEDIA ---- */
.closing-media {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--ink); /* Blends seamless background framing */
  padding: var(--space-md) var(--space-sm);
}

.closing-media:empty {
  display: none;
}

.closing-media img {
  display: block;
  width: 100%;
  max-width: 900px; /* Constrains line length so sign stays proportional */
  height: auto;
  max-height: 80vh; /* Gives room on tall screens without clipping */
  object-fit: contain; /* Prevents cropping/truncation entirely */
  filter: grayscale(0.4) contrast(1.1) brightness(0.75);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6); /* Adds subtle depth against dark background */
}

/* ---- MEDIA SLOT — deliberately minimal/invisible for now.
   Media embedding is deferred; this is just a marked hook.
   When ready, drop <img>/<video> inside .media-slot in the HTML —
   it will size itself automatically. Empty slots take up no space. ---- */
.media-slot{ margin: 0; }
.media-slot:empty{ display: none; }
.media-slot img,
.media-slot video{
  display: block;
  width: 100%;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
}
.media-slot.media-slot--gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-xs);
}
.media-slot.media-slot--gallery:empty{ display: none; }

/* ---- COUNTER-BOX — "what TV said" vs "what was left out".
   This is the explicit media-narrative rebuttal device. ---- */
.counter-box{
  border: 1px solid rgba(243,236,227,0.15);
  border-radius: 4px;
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
  background: rgba(0,0,0,0.15);
}
.section--timeline .counter-box{
  background: rgba(90,79,71,0.05);
  border-color: rgba(90,79,71,0.2);
}
.counter-tag{
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7f74;
  margin-bottom: 0.3rem;
}
.counter-tag--reply{ color: var(--red-hot); margin-top: 0.8rem; }
.section--timeline .counter-tag--reply{ color: var(--red); }
.counter-box p{
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
  color: var(--cream-dim);
}
.section--timeline .counter-box p{ color: #4a423b; }
.counter-box p:first-of-type{ font-style: italic; }

.closing-figures{
  max-width: 900px;
  margin: var(--space-lg) auto 0;
  text-align: center;
  border-top: 1px solid rgba(243,236,227,0.15);
  padding-top: var(--space-lg);
}
.closing-line{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--cream);
}
.closing-line strong{ color: var(--red-hot); }

/* ==================================================================
   CLOSING STATEMENT
   ================================================================== */
.section--closing{
  background: var(--red);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.closing-statement{
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.3;
  color: var(--cream);
}
.closing-statement-em{
  display: block;
  margin-top: 0.4rem;
  font-weight: 900;
  color: var(--ink);
}

/* ==================================================================
   FLAG REVEAL — quirky, small-scale animated section explaining
   the favicon. One screen, self-contained. The stripes draw in
   left-to-right on scroll, like the flag is being unfurled.
   ================================================================== */
.section--flag{
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}
.flag-wrap{ max-width: 640px; margin: 0 auto; }

.flag-graphic{
  width: 180px;
  height: 120px;
  margin: 0 auto var(--space-md);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10,5,5,0.18);
  display: flex;
  flex-direction: column;
}
.flag-stripe{
  flex: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--ease);
}
.flag-graphic.in-view .flag-stripe--1{ transition-delay: 0.05s; }
.flag-graphic.in-view .flag-stripe--2{ transition-delay: 0.2s; }
.flag-graphic.in-view .flag-stripe--3{ transition-delay: 0.35s; }
.flag-graphic.in-view .flag-stripe--4{ transition-delay: 0.5s; }
.flag-graphic.in-view .flag-stripe{ transform: scaleX(1); }
.flag-stripe--1{ background: #F2C230; }
.flag-stripe--2{ background: #1B2A6B; }
.flag-stripe--3{ background: #C9111B; }
.flag-stripe--4{ background: #1E7A3D; }

.flag-eyebrow{
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.flag-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.flag-text{
  font-size: 1.1rem;
  line-height: 1.65;
  color: #4a423b;
  margin-bottom: var(--space-sm);
}
.flag-text--small{
  font-size: 1rem;
  color: #8a7f74;
  font-style: italic;
  margin-bottom: 0;
}

/* ==================================================================
   FOOTER
   ================================================================== */
.site-footer{
  background: var(--ink);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  border-top: 1px solid rgba(243,236,227,0.08);
}
.footer-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.footer-main{ font-size: 1rem; color: var(--cream-dim); margin-bottom: 0.5rem; }
.footer-sub{ font-size: 0.95rem; color: #8a7f74; }
.footer-sub a{
  color: var(--red-hot);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.footer-sub a:hover{ border-color: var(--red-hot); }
.footer-meta{
  font-size: 0.8rem;
  color: #6b6259;
  margin-top: var(--space-sm);
  letter-spacing: 0.02em;
}
.footer-social{
  margin-top: var(--space-sm);
  display: flex;
  justify-content: center;
}
.instagram-link{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(243,236,227,0.18);
  border-radius: 999px;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.instagram-link svg{ width: 16px; height: 16px; fill: currentColor; }
.instagram-link:hover{ border-color: var(--red-hot); color: var(--cream); }

/* ==================================================================
   RESPONSIVE — mobile refinements
   ================================================================== */
@media (max-width: 640px){
  .timeline-spine{ padding-left: var(--space-sm); border-left-width: 2px; }
  .tl-entry{ padding-left: var(--space-sm); }
  .tl-dot{ left: calc(-1 * var(--space-sm) - 8px); }
  .rulebook{ padding: var(--space-md) var(--space-sm); }
  .site-nav{ padding: var(--space-xs) var(--space-sm); }
  .rule-mark{ font-size: 2.6rem; }
}
