/* ============================================================
   Hassan Ahmed — Portfolio · "Issue 01" Editorial / Brutalist
   Paper + ink + screaming orange. Huge type, asymmetry, motion.
   ============================================================ */

:root {
  --paper:   #f3efe5;   /* warm off-white */
  --paper-2: #e9e3d4;   /* darker panel */
  --ink:     #131210;   /* near-black */
  --ink-2:   #56524a;   /* muted ink */
  --ink-3:   #8b8678;   /* faint */
  --orange:  #ff3d00;   /* screaming accent */
  --orange-d:#d62f00;
  --line:    rgba(19,18,16,0.20);
  --line-2:  rgba(19,18,16,0.10);

  --display: "Anton", Impact, sans-serif;
  --serif:   "Fraunces", Georgia, serif;
  --sans:    "Hanken Grotesk", -apple-system, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

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

/* ── DARK THEME ── */
[data-theme="dark"] {
  --paper:   #100f0c;
  --paper-2: #1a1712;
  --ink:     #f3efe5;
  --ink-2:   #b4aea1;
  --ink-3:   #837d70;
  --orange:  #ff5526;
  --orange-d:#ff5526;
  --line:    rgba(243,239,229,0.22);
  --line-2:  rgba(243,239,229,0.11);
  color-scheme: dark;
}
[data-theme="dark"] .grain { mix-blend-mode: screen; opacity: 0.22; }

html { transition: background .35s var(--ease); }
body { transition: background .35s var(--ease), color .35s var(--ease); }

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--orange); color: var(--paper); }

h1, h2, h3 { font-weight: 400; line-height: 0.9; }
.ital { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }

/* ── paper grain ── */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

/* ── scroll progress ── */
.progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 200;
  background: var(--orange);
}

/* ════════ TOP TICKER ════════ */
.ticker {
  position: relative; z-index: 50;
  background: var(--ink); color: var(--paper);
  border-bottom: 2px solid var(--ink);
  overflow: hidden; white-space: nowrap;
}
.ticker-row {
  display: inline-flex; align-items: center; gap: 22px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  padding: 8px 0; will-change: transform;
}
.ticker-row span { text-transform: uppercase; }
.ticker-row b { color: var(--orange); }

/* ════════ MASTHEAD / NAV ════════ */
.mast {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px clamp(18px, 4vw, 56px);
  background: var(--paper); border-bottom: 2px solid var(--ink);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  font-family: var(--display); font-size: 20px; letter-spacing: 0.04em;
  background: var(--ink); color: var(--paper); padding: 4px 8px 2px;
}
.logo-text { font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; }
.nav { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav a {
  font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em;
  position: relative; padding-bottom: 3px;
}
.nav a i { color: var(--orange); font-style: normal; margin-right: 3px; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--ink); transition: width .3s var(--ease);
}
.nav a:hover::after { width: 100%; }
.cv-btn {
  font-family: var(--mono); font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; background: var(--orange); color: var(--paper);
  padding: 9px 16px; border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink); transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.cv-btn:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.cv-btn span { transition: transform .2s var(--ease); display: inline-block; }
.cv-btn:hover span { transform: translateX(4px); }

.mast-right { display: flex; align-items: center; gap: 10px; }
.theme-btn {
  width: 40px; height: 40px; flex-shrink: 0; cursor: pointer;
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 4px 4px 0 var(--ink); transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.theme-btn:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.theme-btn svg { width: 18px; height: 18px; }
.theme-btn .ic-sun { display: none; }
[data-theme="dark"] .theme-btn .ic-sun { display: block; }
[data-theme="dark"] .theme-btn .ic-moon { display: none; }

@media (max-width: 760px) { .nav { display: none; } }

/* ════════ COVER / HERO ════════ */
.cover {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "top      top"
    "title    portrait"
    "role     portrait"
    "lead     cta";
  gap: 8px clamp(20px, 4vw, 60px);
  padding: clamp(28px, 5vw, 60px) clamp(18px, 4vw, 56px) 40px;
  align-items: start;
}
.cover-top {
  grid-area: top; display: flex; flex-wrap: wrap; gap: 10px;
  padding-bottom: 18px; margin-bottom: 6px; border-bottom: 2px solid var(--ink);
}
.tag {
  font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1.5px solid var(--ink); padding: 4px 10px;
}
.tag.dot { background: var(--ink); color: var(--paper); display: inline-flex; align-items: center; gap: 8px; }
.tag.dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: blink 1.6s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

.cover-title { grid-area: title; align-self: end; }
.ct-line {
  display: block; font-family: var(--display);
  font-size: clamp(64px, 17vw, 230px); line-height: 0.82; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.ct-line.out {
  color: transparent; -webkit-text-stroke: 2px var(--ink);
  position: relative;
}
.ct-line .dot-orange { color: var(--orange); -webkit-text-stroke: 0; font-style: normal; }

.cover-portrait {
  grid-area: portrait; position: relative; align-self: center;
  width: 100%; max-width: 360px; justify-self: end; margin-top: 10px;
}
.cp-block {
  position: absolute; inset: 14px -14px -14px 14px; background: var(--orange); z-index: 0;
}
.cover-portrait img {
  position: relative; z-index: 1; width: 100%; display: block;
  border: 2px solid var(--ink);
  filter: grayscale(1) contrast(1.12);
  transition: filter .5s var(--ease);
}
.cover-portrait:hover img { filter: grayscale(0) contrast(1.02); }
.cover-portrait figcaption {
  position: absolute; z-index: 2; bottom: 8px; left: 8px;
  font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--ink); color: var(--paper); padding: 3px 7px;
}

.cover-role {
  grid-area: role; font-family: var(--display); text-transform: uppercase;
  font-size: clamp(20px, 3.4vw, 40px); letter-spacing: 0.01em; line-height: 1;
  margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--ink);
}
.cover-role em { font-family: var(--serif); font-style: italic; color: var(--orange); text-transform: none; }

.cover-lead {
  grid-area: lead; max-width: 56ch; font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2); margin-top: 24px;
}
.cover-lead strong { color: var(--ink); font-weight: 700; }
.cover-lead b { font-family: var(--mono); color: var(--orange); font-weight: 700; }

.cover-cta { grid-area: cta; display: flex; flex-wrap: wrap; gap: 12px; align-self: end; margin-top: 24px; }
.btn {
  font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 13px 20px; border: 2px solid var(--ink);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .2s, color .2s;
}
.btn span { display: inline-block; transition: transform .2s var(--ease); }
.btn.primary { background: var(--ink); color: var(--paper); box-shadow: 5px 5px 0 var(--orange); }
.btn.primary:hover { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--orange); }
.btn.primary:hover span { transform: translate(3px,3px); }
.btn.ghost { background: transparent; box-shadow: 5px 5px 0 var(--ink); }
.btn.ghost:hover { background: var(--orange); color: var(--paper); border-color: var(--orange); transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }

.cover-scroll {
  position: absolute; right: clamp(18px,4vw,56px); bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; color: var(--ink-3);
}
.cover-scroll i { width: 1px; height: 34px; background: var(--ink); position: relative; overflow: hidden; }
.cover-scroll i::after { content: ""; position: absolute; inset: 0; background: var(--orange); animation: scrolldrop 1.8s var(--ease) infinite; }
@keyframes scrolldrop { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

@media (max-width: 860px) {
  .cover {
    grid-template-columns: 1fr;
    grid-template-areas: "top" "title" "portrait" "role" "lead" "cta";
  }
  .cover-portrait { max-width: 280px; justify-self: start; }
  .cover-scroll { display: none; }
}

/* ════════ MARQUEE BAND ════════ */
.band {
  position: relative; z-index: 2;
  background: var(--orange); color: var(--ink);
  border-block: 2px solid var(--ink); overflow: hidden;
  display: flex; padding: 14px 0;
}
.band-track {
  display: flex; align-items: center; gap: 26px; flex-shrink: 0;
  font-family: var(--display); font-size: clamp(28px, 5vw, 64px); text-transform: uppercase;
  white-space: nowrap; padding-right: 26px;
  animation: marquee 26s linear infinite;
}
.band-track b { font-family: var(--serif); font-style: italic; font-weight: 400; }
@keyframes marquee { to { transform: translateX(-100%); } }
.band:hover .band-track { animation-play-state: paused; }

/* ════════ SECTION HEADERS ════════ */
section { position: relative; z-index: 2; padding: clamp(56px, 9vw, 130px) clamp(18px, 4vw, 56px); }
.sec-kicker {
  display: inline-block; font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange);
  margin-bottom: 18px;
}
.sec-head .sec-title { font-family: var(--display); font-size: clamp(36px, 7vw, 92px); text-transform: uppercase; }
.sec-head.big { max-width: 1100px; margin-bottom: clamp(40px, 6vw, 80px); }
.sec-head.big .sec-title { font-size: clamp(44px, 9vw, 130px); }
.sec-lead { max-width: 52ch; margin-top: 22px; color: var(--ink-2); font-size: clamp(15px,1.3vw,18px); }
.sec-link {
  display: inline-block; margin-top: 20px; font-family: var(--mono); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--orange); padding-bottom: 2px;
}
.sec-link:hover { color: var(--orange); }

/* ════════ NUMBERS ════════ */
.numbers { border-top: 2px solid var(--ink); }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 2px solid var(--ink); }
.num-cell { padding: clamp(20px,3vw,38px) 22px; border-right: 2px solid var(--ink); }
.num-cell:last-child { border-right: none; }
.num-cell b { display: block; font-family: var(--display); font-size: clamp(48px, 8vw, 110px); line-height: 0.85; }
.num-cell b i { font-family: var(--serif); font-style: italic; color: var(--orange); font-size: 0.45em; }
.num-cell p { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-2); margin-top: 14px; line-height: 1.45; }
.num-footnotes {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px;
  font-family: var(--mono); font-size: 13px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.04em;
}
.num-footnotes b { color: var(--orange); }
@media (max-width: 760px) {
  .num-grid { grid-template-columns: 1fr 1fr; }
  .num-cell:nth-child(2) { border-right: none; }
  .num-cell:nth-child(1), .num-cell:nth-child(2) { border-bottom: 2px solid var(--ink); }
}

/* ════════ SELECTED WORK ════════ */
.work { border-top: 2px solid var(--ink); }
.feature {
  display: grid; grid-template-columns: 64px 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 46px); align-items: start;
  padding: clamp(34px, 5vw, 64px) 0; border-top: 2px dashed var(--line);
}
.feature:first-of-type { border-top: 4px solid var(--ink); }
.ft-index {
  font-family: var(--display); font-size: clamp(34px, 4vw, 60px); color: var(--orange);
  line-height: 1; position: sticky; top: 90px;
}
.ft-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; }
.ft-title { font-family: var(--display); font-size: clamp(34px, 5.5vw, 78px); text-transform: uppercase; line-height: 0.92; }
.ft-kind { font-family: var(--serif); font-style: italic; font-size: clamp(16px,1.6vw,22px); color: var(--ink-2); }
.ft-role { display: block; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); margin-top: 12px; }
.ft-link { display: inline-block; font-family: var(--mono); font-size: 13px; color: var(--orange); border-bottom: 2px solid transparent; margin-top: 6px; transition: border-color .2s; }
.ft-link:hover { border-color: var(--orange); }
.ft-desc { margin-top: 18px; color: var(--ink-2); max-width: 54ch; }
.ft-points { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.ft-points li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.ft-points li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--orange); font-family: var(--mono); font-weight: 700; }
.ft-points b { color: var(--ink); font-weight: 700; }
.ft-stack { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.ft-stack li {
  font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.03em;
  border: 1.5px solid var(--ink); padding: 4px 9px; transition: background .2s, color .2s;
}
.ft-stack li:hover { background: var(--ink); color: var(--paper); }

.ft-visual { position: sticky; top: 90px; }
.feature.flip { grid-template-columns: 64px 0.95fr 1.05fr; }
.feature.flip .ft-body { order: 2; }
.feature.flip .ft-visual { order: 1; }
.feature.flip .ft-index { order: 0; }

/* console mock */
.console {
  border: 2px solid #050505; background: #131210; color: #f3efe5;
  box-shadow: 8px 8px 0 var(--orange);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.console.alt { box-shadow: -8px 8px 0 var(--orange); }
.feature:hover .console { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--orange); }
.feature.flip:hover .console.alt { transform: translate(3px,-3px); box-shadow: -11px 11px 0 var(--orange); }
.console-bar {
  display: flex; align-items: center; gap: 7px; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.16);
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
}
.console-bar i { width: 10px; height: 10px; border-radius: 50%; background: #44423c; }
.console-bar i:first-child { background: var(--orange); }
.console-bar span { margin-left: auto; }
.console-body { padding: 16px; font-family: var(--mono); font-size: 12.5px; line-height: 1.9; }
.console-body p { white-space: nowrap; overflow: hidden; }
.console-body .c-t { color: #6f6c64; margin-right: 8px; }
.c-router { color: var(--orange); } .c-pm { color: #ffb38a; } .c-db { color: #8ad6c2; }
.c-sec { color: #ff7a59; } .c-fe { color: #9db8ff; }
.cur { color: var(--orange); animation: blink 1s steps(1) infinite; }

@media (max-width: 860px) {
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 18px; }
  .feature .ft-index { position: static; }
  .feature.flip .ft-body { order: 1; } .feature.flip .ft-visual { order: 2; }
  .ft-visual { position: static; }
  .console-body p { white-space: normal; }
}

/* ════════ STACK (spec sheet) ════════ */
.stack { border-top: 2px solid var(--ink); }
.spec-sheet { border: 2px solid var(--ink); }
.spec-row {
  display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: center;
  padding: 16px clamp(16px,2.4vw,28px); border-bottom: 1.5px solid var(--line-2);
  transition: background .2s, color .2s, padding-left .25s var(--ease);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: var(--ink); color: var(--paper); padding-left: calc(clamp(16px,2.4vw,28px) + 10px); }
.spec-k { font-family: var(--display); font-size: clamp(18px,2vw,26px); text-transform: uppercase; }
.spec-k i { font-family: var(--mono); font-style: normal; font-size: 12px; color: var(--orange); margin-right: 10px; }
.spec-v { font-family: var(--mono); font-size: 13.5px; letter-spacing: 0.01em; }
.spec-row:hover .spec-v { color: var(--paper); }
@media (max-width: 680px) {
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ════════ OPEN SOURCE ════════ */
.oss { border-top: 2px solid var(--ink); background: var(--paper-2); }
.oss-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(24px,4vw,56px); }
.oss-group { border-top: 2px solid var(--ink); padding-top: 14px; margin-top: 30px; }
.oss-cat {
  font-family: var(--mono); font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--orange); margin-bottom: 6px;
}
.repo {
  display: flex; align-items: baseline; gap: 14px; padding: 11px 4px;
  border-bottom: 1px solid var(--line-2); position: relative;
  transition: padding-left .25s var(--ease), color .2s;
}
.repo::before {
  content: "→"; position: absolute; left: -2px; opacity: 0; color: var(--orange);
  font-family: var(--mono); transition: opacity .2s, transform .25s var(--ease); transform: translateX(-6px);
}
.repo:hover { padding-left: 22px; }
.repo:hover::before { opacity: 1; transform: translateX(0); }
.repo:hover .repo-n { color: var(--orange); }
.repo-n { font-family: var(--mono); font-weight: 700; font-size: 14px; flex-shrink: 0; transition: color .2s; }
.repo.feat .repo-n { color: var(--orange-d); }
.repo-d { font-size: 13.5px; color: var(--ink-2); text-align: right; margin-left: auto; }
@media (max-width: 760px) {
  .oss-cols { grid-template-columns: 1fr; }
  .repo { flex-direction: column; gap: 2px; }
  .repo-d { text-align: left; margin-left: 0; }
}

/* ════════ ABOUT ════════ */
.about { border-top: 2px solid var(--ink); }
.about-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(24px,4vw,60px); align-items: start; }
.about-photo { position: relative; }
.about-photo img {
  width: 100%; display: block; border: 2px solid var(--ink);
  filter: grayscale(1) contrast(1.1); box-shadow: 10px 10px 0 var(--orange);
  transition: filter .5s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.about-photo:hover img { filter: grayscale(0) contrast(1.02); transform: translate(-3px,-3px); box-shadow: 13px 13px 0 var(--orange); }
.about-photo figcaption {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink-2); margin-top: 12px; padding-top: 10px; border-top: 1.5px solid var(--line);
}
.about-copy p { color: var(--ink-2); margin-bottom: 20px; font-size: clamp(15px,1.3vw,18px); }
.about-lead { font-family: var(--serif); font-size: clamp(22px,2.6vw,34px) !important; line-height: 1.3; color: var(--ink) !important; letter-spacing: -0.01em; }
.about-copy strong { color: var(--ink); font-weight: 700; }
.pull {
  font-family: var(--display); text-transform: uppercase; font-size: clamp(26px,3.6vw,52px);
  line-height: 0.98; color: var(--ink); margin: 30px 0; padding-left: 22px;
  border-left: 6px solid var(--orange);
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }

/* ════════ CONTACT ════════ */
.contact { border-top: 2px solid var(--ink); background: var(--ink); color: var(--paper); }
.contact .sec-kicker { color: var(--orange); }
.contact-title { font-family: var(--display); font-size: clamp(54px, 13vw, 200px); text-transform: uppercase; line-height: 0.84; margin-bottom: 40px; }
.contact-title .dot-orange { color: var(--orange); }
.contact-list { border-top: 2px solid var(--paper); }
.crow {
  display: grid; grid-template-columns: 220px 1fr 40px; align-items: center; gap: 16px;
  padding: clamp(16px,2.4vw,26px) 6px; border-bottom: 1.5px solid color-mix(in srgb, var(--paper) 26%, transparent);
  transition: padding-left .3s var(--ease), background .25s, color .25s;
}
.crow:hover { background: var(--orange); color: var(--ink); padding-left: 24px; }
.crow-k { font-family: var(--display); font-size: clamp(20px,2.6vw,38px); text-transform: uppercase; }
.crow-v { font-family: var(--mono); font-size: clamp(14px,1.4vw,18px); color: color-mix(in srgb, var(--paper) 68%, transparent); }
.crow:hover .crow-v { color: var(--ink); }
.crow-x { font-family: var(--mono); font-size: 22px; text-align: right; transition: transform .25s var(--ease); }
.crow:hover .crow-x { transform: translate(4px,-4px); }
@media (max-width: 680px) {
  .crow { grid-template-columns: 1fr auto; }
  .crow-v { grid-column: 1 / -1; }
}

/* ════════ COLOPHON ════════ */
.colophon {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  padding: 26px clamp(18px,4vw,56px); border-top: 2px solid var(--ink); background: var(--paper);
}
.col-mark { font-family: var(--display); font-size: 30px; background: var(--ink); color: var(--paper); padding: 4px 10px 2px; }
.col-meta p { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); }
.col-meta p b { color: var(--ink); }
.col-fine { text-align: right; }
.col-fine p { font-family: var(--mono); font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 680px) { .colophon { grid-template-columns: 1fr; text-align: left; } .col-fine { text-align: left; } }

/* ════════ FLOATING "LET'S TALK" ════════ */
.fab {
  position: fixed; z-index: 150; right: clamp(16px, 3vw, 34px); bottom: clamp(16px, 3vw, 34px);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--orange); color: #fff; padding: 14px 20px; border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transform: translateY(120px); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease), box-shadow .15s var(--ease);
}
.fab.show { transform: translateY(0); opacity: 1; }
.fab:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.fab .fab-dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); animation: pulse 1.8s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.65); } 70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
.fab .fab-x { transition: transform .2s var(--ease); }
.fab:hover .fab-x { transform: translate(3px,-3px); }
@media (max-width: 480px) { .fab span.fab-label { display: none; } .fab { padding: 14px; } }

/* ════════ CONTACT LEAD ════════ */
.contact-lead {
  max-width: 50ch; margin: -18px 0 36px; font-size: clamp(16px,1.5vw,20px);
  color: color-mix(in srgb, var(--paper) 75%, transparent);
}
.contact-lead b { color: var(--orange); font-family: var(--mono); }

/* ════════ REVEAL MOTION ════════ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .band-track { animation: none; }
}
