/* The Break Digital, refined option B
   palette: black bg, white text, pink accents (#f6a7d7)
   fonts: Futura (display + body) · JetBrains Mono (ASCII + meta only) */

:root {
  --black: #000000;
  --white: #ffffff;
  --pink: #f6a7d7;
  --pink-deep: #ef7fc4;
  --dim: rgba(255,255,255,1);
  --line: rgba(255,255,255,0.15);
  --gutter: clamp(20px, 3.5vw, 56px);
}

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

html, body {
  background: var(--black);
  color: var(--white);
  font-family: 'Futura', 'Futura PT', 'Futura Std', 'ITC Avant Garde Gothic Std', 'Jost', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { overflow-x: clip; }
body { overflow-x: clip; min-height: 100vh; width: 100%; }
.page { overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: var(--black); }

.mono {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 400;
}

/* ─── ASCII ART BACKGROUND ────────────────────────────── */
.ascii-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  color: var(--pink);
  opacity: 0.22;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
  line-height: 1.0;
  letter-spacing: 0.04em;
  white-space: pre;
  padding: 20px 24px;
}
.ascii-bg pre {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: pre;
  width: 100%;
  height: 100%;
}
@media (max-width: 760px) {
  .ascii-bg { font-size: 12px; padding: 12px; }
}

/* ─── TOP BAR ─────────────────────────────────────────── */
.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.bar .bar-brand { white-space: nowrap; }
.bar .bar-status { white-space: nowrap; }
.bar-nav {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.bar-nav a {
  color: var(--white);
  position: relative;
  transition: color .2s ease;
}
.bar-nav a:hover { color: var(--pink); }
.bar-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.bar-nav a:hover::after { transform: scaleX(1); }
.bar-nav .sep { color: var(--pink); opacity: 0.7; }
.bar .blink::after {
  content: "█"; color: var(--pink); margin-left: 4px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* anchor offset for sticky bar */
:target,
#services, #about, #experience, #contact {
  scroll-margin-top: 72px;
}

/* ─── HAMBURGER ───────────────────────────────────────── */
.bar-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 12px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.bar-burger:hover { border-color: var(--pink); color: var(--pink); }
.burger-lines {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 16px; height: 10px;
}
.burger-lines span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.bar.nav-open .burger-lines span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.bar.nav-open .burger-lines span:nth-child(2) { opacity: 0; }
.bar.nav-open .burger-lines span:nth-child(3) { transform: translateY(-4.25px) rotate(-45deg); }
.bar.nav-open .bar-burger { border-color: var(--pink); color: var(--pink); }

@media (max-width: 880px) {
  .bar { gap: 12px; padding: 12px var(--gutter); flex-wrap: wrap; }
  .bar-burger { display: inline-flex; }
  .bar-nav {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0 6px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
    display: none;
  }
  .bar.nav-open .bar-nav { display: flex; }
  .bar-nav a { font-size: 14px; letter-spacing: 0.12em; }
  .bar-nav a::after { display: none; }
  .bar-nav .sep { display: none; }
}
@media (max-width: 560px) {
  .bar { flex-direction: row; align-items: center; gap: 8px; }
  .bar-brand { font-size: 9.5px; letter-spacing: 0.06em; }
}

/* ─── PAGE LAYOUT ─────────────────────────────────────── */
.page {
  position: relative;
  z-index: 2;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  padding: 60px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  position: relative;
}

.logo-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
  text-align: center;
}
.logo-wrap img {
  width: clamp(240px, 42vw, 540px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(246,167,215,0.25));
}
.logo-wrap .sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--pink);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-copy .pre {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 22px;
}
.hero-copy .pre .pmt { color: var(--pink-deep); }
.hero-copy h1 {
  font-weight: 700;
  font-size: clamp(48px, 6.8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.hero-copy h1 .stroke {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.hero-copy .lede {
  margin-top: 28px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  font-weight: 500;
  max-width: 40ch;
  color: var(--white);
}
.hero-copy .lede strong { color: var(--pink); font-weight: 700; }

/* photo frame */
.photo-frame {
  position: relative;
  border: 2px solid var(--white);
  background: var(--black);
  padding: 32px 16px 16px;
}
.photo-frame::before {
  content: "● ruth.scheinberg · portrait_01.jpg";
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--white);
  color: var(--black);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 6px 12px;
}
.photo-frame::after {
  content: "□ ◯ ✕";
  position: absolute; top: 4px; right: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--black);
}
.photo-frame .corners span {
  position: absolute; width: 10px; height: 10px;
  border: 1.5px solid var(--pink);
}
.photo-frame .corners .tl { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.photo-frame .corners .tr { top: -6px; right: -6px; border-left: 0; border-bottom: 0; }
.photo-frame .corners .bl { bottom: -6px; left: -6px; border-right: 0; border-top: 0; }
.photo-frame .corners .br { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }

.photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(15%) contrast(1.02);
}
.photo-frame .caption {
  margin-top: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex; justify-content: space-between;
}

/* ─── MARQUEE ─────────────────────────────────────────── */
.marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(246,167,215,0.06);
}
.marquee-track {
  display: flex; gap: 38px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
  animation: marq 38s linear infinite;
}
.marquee-track span { color: var(--white); }
.marquee-track .pink { color: var(--pink); font-size: 22px; line-height: 0.8; }
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS MARQUEE ───────────────────────────────────── */
.stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  background: rgba(246,167,215,0.06);
  padding: 18px 0 22px;
}
.stats-head {
  display: flex; align-items: center; gap: 12px;
  padding: 0 var(--gutter) 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 16px;
}
.stats-head .pmt { color: var(--pink); }
.stats-head .stats-dot {
  color: var(--pink);
  font-size: 10px;
  animation: blink 1.4s steps(2) infinite;
}
.stats-head .stats-rec {
  color: var(--pink);
  letter-spacing: 0.3em;
}
.stats-marquee { border: 0; padding: 4px 0; background: transparent; }
.stats-marquee .marquee-track {
  font-family: 'Futura', 'Futura PT', 'Jost', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: -0.01em;
  text-transform: lowercase;
  gap: 44px;
  animation-duration: 60s;
}
.stats-marquee .stat { color: var(--white); }
.stats-marquee .stat b { color: var(--white); font-weight: 700; }
.stats-marquee .stat .num {
  color: var(--pink);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  letter-spacing: 0;
  padding-right: 4px;
}
.stats-marquee .pink {
  color: var(--pink);
  font-size: 28px;
  line-height: 0.8;
  align-self: center;
}

/* ─── SECTIONS ────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.sec-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.sec-head h2 {
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}
.sec-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.sec-head .sec-sub {
  max-width: 44ch;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  color: var(--white);
  align-self: end;
  padding-bottom: 8px;
}
@media (max-width: 760px) {
  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sec-head .sec-sub { font-size: 14.5px; padding-bottom: 0; }
}
.sec-head .note {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.7;
  max-width: 30ch;
  color: var(--dim);
}
.sec-head .note .pmt { color: var(--pink); margin-right: 6px; }

/* ─── SERVICES LIST ───────────────────────────────────── */
.services {
  border-top: 1px solid var(--white);
  max-width: 1320px;
  margin: 0 auto;
  overflow: clip;
}
.svc-row {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.svc-row::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(246,167,215,0) 0%, rgba(246,167,215,0.08) 50%, rgba(246,167,215,0) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.svc-row:hover::before,
.svc-row.open::before { opacity: 1; }

.svc-head {
  all: unset;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  width: 100%;
  padding: 28px 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.svc-head:focus-visible {
  outline: 1px dashed var(--pink);
  outline-offset: 4px;
}
.svc-head .ix {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--pink);
}
.svc-head .ttl {
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  color: var(--white);
}
.svc-head .ttl em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.svc-row.open .svc-head .ttl { color: var(--pink); }
.svc-row.open .svc-head .ttl em { color: var(--white); }

.svc-toggle {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 22px;
  color: var(--pink);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
  line-height: 1;
}
.svc-head:hover .svc-toggle {
  border-color: var(--pink);
  background: rgba(246,167,215,0.08);
}
.svc-row.open .svc-toggle {
  background: var(--pink);
  color: var(--black);
  border-color: var(--pink);
}

.svc-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.22,.61,.36,1);
  position: relative;
  z-index: 1;
}
.svc-inner {
  overflow: hidden;
  min-height: 0;
  /* mirror the head grid so the desc lines up with the title column */
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
}
.svc-row.open .svc-detail { grid-template-rows: 1fr; }
.svc-row.open .svc-inner { padding-bottom: 28px; }

.svc-inner .desc {
  grid-column: 2;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--white);
  max-width: 60ch;
  padding-top: 4px;
  /* optical nudge for Futura bold's wider left side-bearing */
  padding-left: 12px;
}

@media (max-width: 760px) {
  .svc-head { grid-template-columns: 60px 1fr auto; gap: 14px; padding: 22px 0; }
  .svc-head .ix { font-size: 11px; align-self: center; }
  .svc-head .ttl { font-size: clamp(26px, 7vw, 36px); }
  .svc-inner { grid-template-columns: 60px 1fr auto; gap: 14px; }
  .svc-inner .desc { font-size: 14px; padding-left: 10px; }
}

/* ─── ABOUT BLOCK ─────────────────────────────────────── */
.about {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.3fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(40px, 6vw, 100px);
  row-gap: 24px;
  align-items: start;
}
.about-grid .lbl { grid-column: 1; grid-row: 1; }
.about-photo      { grid-column: 1; grid-row: 2; }
.about-body       { grid-column: 2; grid-row: 2; }

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 32px;
  }
  .about-grid .lbl { grid-column: 1; grid-row: 1; }
  .about-photo      { grid-column: 1; grid-row: 2; max-width: 360px; }
  .about-body       { grid-column: 1; grid-row: 3; }
}

.about-grid .lbl {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
}
.about-grid .lbl::before { content: "> "; }
.about-body p {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  font-weight: 500;
}
.about-body p + p { margin-top: 1.2em; }
.about-body p strong { color: var(--pink); font-weight: 700; }
.about-body .quote {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.45;
  color: var(--white);
}

/* portrait beside the text */
.about-photo {
  position: relative;
  border: 2px solid var(--white);
  background: var(--black);
  padding: 28px 12px 12px;
  align-self: start;
}
.about-photo::before {
  content: "● ruth.scheinberg · portrait_02.jpg";
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--white);
  color: var(--black);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 5px 10px;
}
.about-photo::after {
  content: "□ ◯ ✕";
  position: absolute; top: 3px; right: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--black);
}
.about-photo .corners span {
  position: absolute; width: 10px; height: 10px;
  border: 1.5px solid var(--pink);
}
.about-photo .corners .tl { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.about-photo .corners .tr { top: -6px; right: -6px; border-left: 0; border-bottom: 0; }
.about-photo .corners .bl { bottom: -6px; left: -6px; border-right: 0; border-top: 0; }
.about-photo .corners .br { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }
.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 62% 30%;
  filter: grayscale(10%) contrast(1.02);
}
.about-photo .photo-meta {
  margin-top: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex; justify-content: space-between;
}
@media (max-width: 900px) {
  .about-photo img { aspect-ratio: 4/5; }
}

/* ─── EXPERIENCE TIMELINE ─────────────────────────────── */
.timeline-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 64px;
  border-top: 1px solid var(--white);
}
.timeline-head {
  display: flex; align-items: center; gap: 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 40px;
}
.timeline-head .rule {
  flex: 1; height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--line) 0 6px,
    transparent 6px 12px
  );
}
.timeline-head .count {
  color: var(--dim);
}
.timeline {
  list-style: none;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px;
  left: clamp(120px, 14vw, 200px);
  width: 1px;
  background: var(--line);
}
.tl-row {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.tl-row:last-child { border-bottom: 0; }

.tl-head {
  all: unset;
  display: grid;
  grid-template-columns: clamp(100px, 13vw, 180px) 40px 1fr auto;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  cursor: pointer;
  box-sizing: border-box;
}
.tl-head:focus-visible {
  outline: 1px dashed var(--pink);
  outline-offset: 4px;
}
.tl-yr {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--pink);
  text-align: right;
  padding-right: 20px;
}
.tl-dot {
  position: relative;
  justify-self: center;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--pink);
  box-shadow: 0 0 0 4px var(--black);
  transition: background .25s ease, transform .25s ease;
}
.tl-head:hover .tl-dot,
.tl-row.open .tl-dot {
  background: var(--pink);
  transform: scale(1.15);
}
.tl-org {
  padding-left: 28px;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  transition: transform .3s ease, color .25s ease;
}
.tl-org em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.tl-head:hover .tl-org { transform: translateX(6px); }
.tl-row.open .tl-org { color: var(--pink); }
.tl-row.open .tl-org em { color: var(--white); }

.tl-toggle {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 22px;
  font-weight: 400;
  color: var(--pink);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
  line-height: 1;
}
.tl-head:hover .tl-toggle {
  border-color: var(--pink);
  background: rgba(246,167,215,0.08);
}
.tl-row.open .tl-toggle {
  background: var(--pink);
  color: var(--black);
  border-color: var(--pink);
}

.tl-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.22,.61,.36,1);
}
.tl-inner {
  overflow: hidden;
  min-height: 0;
  padding-left: clamp(160px, 17vw, 240px);
  padding-right: 80px;
}
.tl-row.open .tl-detail { grid-template-rows: 1fr; }
.tl-row.open .tl-inner { padding-bottom: 32px; }

.tl-detail-inner { /* unused */ }
.tl-detail > div,
.tl-detail > .tl-roster,
.tl-detail > .tl-role,
.tl-detail > .tl-points { /* unused */ }
.tl-row .tl-detail { /* padding moved to .tl-inner */ }
.tl-row.open .tl-detail { /* see above */ }
.tl-roster {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  padding-top: 4px;
  padding-bottom: 18px;
  line-height: 1.7;
}
.tl-role {
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 20px);
  text-transform: lowercase;
  letter-spacing: -0.01em;
  color: var(--white);
  padding-bottom: 16px;
}
.tl-points {
  list-style: none;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  color: var(--dim);
}
.tl-points li {
  padding-left: 20px;
  position: relative;
  padding-bottom: 4px;
}
.tl-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

@media (max-width: 760px) {
  .tl-head {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 18px 0;
  }
  .timeline::before { display: none; }
  .tl-yr {
    grid-column: 1;
    text-align: left;
    padding-right: 0;
    grid-row: 1;
  }
  .tl-dot { display: none; }
  .tl-org {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
  }
  .tl-toggle {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .tl-row .tl-inner { padding-left: 0; padding-right: 0; }
}

/* ─── CONTACT ─────────────────────────────────────────── */
.contact {
  text-align: center;
  padding: clamp(56px, 7vw, 100px) var(--gutter) clamp(80px, 11vw, 160px);
  position: relative;
  z-index: 2;
}
.contact .pre {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}
.contact h2 {
  font-weight: 700;
  font-size: clamp(80px, 14vw, 240px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: lowercase;
}
.contact h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.contact .email {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 36px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--white);
  border-bottom: 2px solid var(--white);
  padding-bottom: 6px;
  transition: color .25s ease, border-color .25s ease;
}
.contact .email::before { content: "$ "; color: var(--pink); }
.contact .email::after {
  content: "█"; color: var(--pink); margin-left: 4px;
  animation: blink 1s steps(2) infinite;
}
.contact .email:hover { color: var(--pink); border-color: var(--pink); }
.contact .meta {
  margin-top: 40px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.contact .meta a:hover { color: var(--pink); }

/* ─── FOOT ────────────────────────────────────────────── */
.foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 16px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.foot .pink { color: var(--pink); }

/* ─── MOBILE TUNE-UP ──────────────────────────────────── */
@media (max-width: 760px) {
  .hero { padding: 36px var(--gutter) 56px; gap: 40px; }
  .logo-wrap img { width: min(86vw, 520px); }
  .logo-wrap .sub { font-size: 10.5px; letter-spacing: 0.28em; }

  .hero-copy h1 { font-size: clamp(40px, 12vw, 72px); }
  .hero-copy .lede { font-size: 15px; }

  .photo-frame { padding: 28px 12px 12px; }
  .photo-frame::before { font-size: 9.5px; }
  .photo-frame::after { font-size: 10px; }

  .stats-head {
    flex-wrap: wrap;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    gap: 8px;
  }
  .marquee-track { gap: 24px; }
  .stats-marquee .marquee-track { gap: 28px; animation-duration: 45s; }

  .section { padding: 64px var(--gutter); }
  .sec-head { margin-bottom: 32px; }
  .sec-head h2 { font-size: clamp(48px, 14vw, 96px); }

  .svc-row { gap: 14px 18px; padding: 0; }

  .about { padding-top: 24px; }
  .about-body p { font-size: 16px; }
  .about-body .quote { font-size: 18px; }

  .timeline-wrap { padding-top: 40px; }
  .timeline-head { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 24px; }
  .tl-org { font-size: clamp(22px, 6.4vw, 30px); }
  .tl-roster { font-size: 10px; letter-spacing: 0.14em; }
  .tl-points { font-size: 14px; }
  .tl-points li { padding-left: 18px; }

  .contact { padding: 48px var(--gutter) 72px; }
  .contact h2 { font-size: clamp(64px, 22vw, 140px); }
  .contact .email { font-size: clamp(15px, 4.6vw, 22px); word-break: break-all; }

  .foot { font-size: 9.5px; letter-spacing: 0.14em; padding: 14px var(--gutter); }
}

@media (max-width: 760px) {
  /* Make the services list two-row layout look intentional */
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-row .ix { align-self: start; padding-top: 6px; }
}
