@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&family=Bodoni+Moda:opsz,wght@6..96,500;6..96,600;6..96,700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chango&display=swap');

:root {
  --bg: #090a0f;
  --bg-2: #11131a;
  --bg-3: #1b1620;
  --panel: rgba(16, 18, 26, 0.78);
  --panel-strong: rgba(14, 16, 23, 0.94);
  --text: #f4efe7;
  --muted: #b8afa8;
  --soft: #817972;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --gold: #b08a57;
  --gold-2: #dfc09a;
  --blue: #8eaac0;
  --rose: #b68c7a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-h: 84px;
  --max: 1380px;
  --display: "Instrument Serif", "Bodoni Moda", Georgia, serif;
  --editorial: "Bodoni Moda", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: #090a0f;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 86%);
  z-index: 0;
}

body.nav-open {
  overflow: hidden;
}

/* ── Skip link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus {
  top: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Focus visible (keyboard nav) ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  color: inherit;
  border: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.72;
}

li + li {
  margin-top: 0.5rem;
}

.container {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  background:
    linear-gradient(180deg, rgba(9, 10, 15, 0.97), rgba(9, 10, 15, 0.99)),
    radial-gradient(circle at 16% 18%, rgba(142, 170, 192, 0.12), transparent 26%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  padding: 28px;
  transition: transform 0.9s cubic-bezier(.77, 0, .18, 1), opacity 0.9s ease;
}

.preloader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.preloader-left {
  display: grid;
  gap: 14px;
  align-content: end;
}

.preloader-tag {
  color: var(--soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.preloader-title {
  font-family: var(--display);
  font-size: clamp(3.6rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  max-width: 8ch;
}

.preloader-copy {
  max-width: 34ch;
}

.preloader-right {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.preloader-count {
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.84;
  color: var(--gold-2);
  font-weight: 700;
}

.preloader-unit {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

/* header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.82), rgba(9, 10, 15, 0.24));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #e4c29d);
  color: #111216;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(176, 138, 87, 0.22);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: "Chango", var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.brand-role {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.22s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--rose));
}

/* base */
main {
  padding-top: var(--header-h);
  position: relative;
  z-index: 2;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 6px rgba(142, 170, 192, 0.12);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin-bottom: 34px;
}

.display-title,
.page-title,
.section-display,
.manifesto-title {
  font-family: "Chango", var(--display);
  letter-spacing: -0.02em;
  line-height: 0.95;
  word-spacing: 0.12em;
  font-weight: 400;
}

.display-title {
  font-size: clamp(3rem, 7.6vw, 6.7rem);
  max-width: 8.8ch;
}

.page-title {
  font-size: clamp(3.4rem, 9vw, 7rem);
  max-width: 9ch;
}

.section-display {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.manifesto-title {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 8ch;
  will-change: transform, letter-spacing, opacity;
}

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.15em;
}

.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0.2;
}

.page-ready .hero-title.is-in .split-word > span,
.page-ready .page-title.is-in .split-word > span {
  animation: wordIn 0.95s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: var(--word-delay);
}

@keyframes wordIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-sub,
.hero-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-fade.is-in,
.hero-sub.is-in {
  opacity: 1;
  transform: translateY(0);
}

.btn-row,
.pill-row,
.meta-row,
.contact-lines,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e2c29a);
  color: #111216;
  box-shadow: 0 16px 34px rgba(176, 138, 87, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.pill,
.info-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.9rem;
}

.pill strong {
  color: var(--text);
}

/* hero */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 28px 0 36px;
}

.hero-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-panel {
  min-height: 72vh;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(27,21,31,.95), rgba(14,18,25,.96));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -40px;
  right: -30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(243,239,231,.18), transparent 22%),
    linear-gradient(135deg, rgba(176,138,87,.44), rgba(142,170,192,.14));
  filter: blur(8px);
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -22px;
  bottom: -30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, rgba(243,239,231,.16), transparent 22%),
    linear-gradient(135deg, rgba(182,140,122,.2), rgba(142,170,192,.1));
  filter: blur(10px);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 86%);
  opacity: 0.34;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}

.hero-orbit.orbit-a {
  inset: 14% 18% auto auto;
  width: 260px;
  height: 260px;
}

.hero-orbit.orbit-b {
  inset: auto auto 14% 10%;
  width: 180px;
  height: 180px;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(9,10,15,.56);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 10px;
}

.hero-float-card.top {
  top: 22px;
  right: 22px;
  width: min(230px, 52%);
}

.hero-float-card.bottom {
  left: 22px;
  bottom: 22px;
  width: min(260px, 60%);
}

.float-label {
  color: var(--soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.float-value {
  font-weight: 700;
  line-height: 1.45;
}

.hero-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 148px;
  z-index: 2;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(9,10,15,.48);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 8px;
}

.hero-caption small {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-caption strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 0.94;
}

/* intro band */
.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.intro-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  min-height: 96px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

.intro-dot {
  color: var(--gold);
}

/* manifesto */
.manifesto-wrap {
  position: relative;
  height: 420vh;
  z-index: 2;
  --manifesto-progress: 0;
}

.manifesto-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  background: rgba(6, 8, 12, 0.36);
}

.manifesto-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.manifesto-glow,
.manifesto-grid {
  position: absolute;
  inset: 0;
}

.manifesto-glow-a {
  inset: 10% auto auto 8%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 138, 87, 0.22), transparent 68%);
  transform: translate3d(0, calc(var(--manifesto-progress) * -40px), 0);
  filter: blur(24px);
  opacity: calc(0.35 + var(--manifesto-progress) * 0.25);
}

.manifesto-glow-b {
  inset: auto 6% 8% auto;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 170, 192, 0.16), transparent 70%);
  transform: translate3d(0, calc(var(--manifesto-progress) * 30px), 0);
  filter: blur(20px);
  opacity: calc(0.28 + var(--manifesto-progress) * 0.18);
}

.manifesto-grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 82%);
}

.manifesto-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 4vw;
  align-items: start;
  padding: clamp(52px, 7vh, 84px) 0;
}

.manifesto-meta {
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 10px;
}

.manifesto-sub {
  max-width: 32ch;
  color: rgba(244, 239, 231, 0.62);
  font-size: 0.98rem;
}

.manifesto-stage {
  position: relative;
  display: grid;
  align-content: center;
  gap: 28px;
  min-height: min(78vh, 860px);
}

.manifesto-title {
  max-width: 12ch;
  color: rgba(244, 239, 231, 0.94);
}

.manifesto-title-line {
  display: block;
}

.manifesto-copy {
  max-width: 13.5ch;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: rgba(244, 239, 231, 0.2);
  text-wrap: balance;
}

.manifesto-word {
  display: inline-block;
  vertical-align: baseline;
  opacity: 0.14;
  transform: translate3d(0, 18px, 0) scale(0.985);
  filter: blur(9px);
  will-change: transform, opacity, filter;
  transition:
    opacity 0.22s linear,
    transform 0.22s linear,
    filter 0.22s linear,
    color 0.22s linear;
}

.manifesto-word[data-state="active"] {
  color: rgba(255, 250, 242, 0.98);
}

.manifesto-word[data-state="passed"] {
  color: rgba(244, 239, 231, 0.78);
}

.manifesto-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  opacity: 0.38;
  color: rgba(244, 239, 231, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.manifesto-footer-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.manifesto-footer-line::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 192, 154, 0.8), transparent);
}

.manifesto-wrap.is-reduced-motion .manifesto-copy,
.manifesto-wrap.is-mobile .manifesto-copy {
  color: rgba(244, 239, 231, 0.28);
}

.manifesto-wrap.is-reduced-motion .manifesto-word {
  opacity: 1;
  transform: none;
  filter: none;
}

.manifesto-wrap.is-mobile .manifesto-word {
  transition-delay: calc(var(--word-index) * 12ms);
}

.manifesto-wrap.is-mobile.is-active .manifesto-word {
  opacity: 0.92 !important;
  transform: none !important;
  filter: blur(0) !important;
}

/* horizontal */
.h-section {
  position: relative;
  background: #090a0f;
}

.h-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  display: flex;
  align-items: center;
}

.h-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  padding-right: 8vw;
  backface-visibility: hidden;
}

.project-panel {
  width: min(84vw, 1120px);
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(16,20,29,.96), rgba(27,21,31,.96));
  box-shadow: var(--shadow);
}

.project-visual {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.project-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,10,15,.12), rgba(9,10,15,.74)),
    linear-gradient(135deg, rgba(176,138,87,.08), transparent 40%);
}

.project-copy {
  padding: 28px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.project-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}

.project-title {
  font-family: "Chango", var(--display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.05em;
  max-width: 8.5ch;
}

/* feature cards */
.feature-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018)),
    rgba(14, 15, 22, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 24px;
}

.card-index {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold-2);
  background: linear-gradient(135deg, rgba(176, 138, 87, 0.18), rgba(142, 170, 192, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.grid-2 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* work page */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(14, 15, 22, 0.66);
  backdrop-filter: blur(12px);
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.work-card:hover {
  border-color: rgba(127, 183, 190, 0.2);
  transform: translateY(-3px);
}

.work-card h3 {
  font-family: "Chango", var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  word-spacing: 0.1em;
}

.work-card-featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(167, 196, 228, 0.04), rgba(211, 243, 238, 0.03)),
    rgba(14, 15, 22, 0.72);
  border-color: rgba(167, 196, 228, 0.15);
  padding: 32px;
}

.work-card-featured h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.work-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}

.work-media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 780px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card-featured { grid-column: auto; }
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.portrait-card {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(14, 15, 22, 0.66);
  backdrop-filter: blur(12px);
  overflow: hidden;
  padding: 0;
}

.portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(9,10,15,0) 40%, rgba(9,10,15,0.7) 100%),
    linear-gradient(135deg, rgba(127,183,190,0.12), rgba(211,226,152,0.08)),
    linear-gradient(180deg, #12141d, #090a0f);
}

.portrait-meta {
  padding: 20px 24px 24px;
}

.portrait-meta p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(14, 15, 22, 0.5);
  backdrop-filter: blur(10px);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 16px;
  transition: border-color 0.3s ease;
}

.about-card:hover {
  border-color: rgba(127,183,190,0.15);
}

.about-card .section-display {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
}

.about-card .card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  padding: clamp(16px, 2vw, 24px);
  display: grid;
  gap: 6px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.about-card .card:hover {
  border-color: rgba(127,183,190,0.18);
  background: rgba(127,183,190,0.04);
}

.about-card .card h3 {
  font-family: "Clash Display", var(--display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: -0.01em;
  word-spacing: 0.1em;
}

.about-card .card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.resume-stack {
  display: grid;
  gap: 24px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .portrait-card {
    position: relative;
    top: auto;
    max-width: 380px;
  }
}

/* ─────────────────────────────────────────
   RESUME PAGE
───────────────────────────────────────── */
.resume-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(14, 15, 22, 0.5);
  backdrop-filter: blur(10px);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 16px;
  transition: border-color 0.3s ease;
}

.resume-card:hover {
  border-color: rgba(127,183,190,0.15);
}

.resume-card .resume-stack {
  display: grid;
  gap: 20px;
}

.resume-card .resume-stack > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.resume-card .resume-stack > div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.resume-card h3 {
  font-family: "Clash Display", var(--display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: -0.01em;
  word-spacing: 0.1em;
  margin-bottom: 4px;
}

.resume-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* lab page */
.lab-shell {
  background:
    linear-gradient(180deg, #0a0b10 0%, #0e1016 100%);
}

.lab-shell::before {
  opacity: 0.16;
}

.lab-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: rgba(10, 11, 16, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lab-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lab-brand {
  color: var(--soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.lab-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lab-nav a {
  padding: 10px 12px;
  color: var(--muted);
  transition: 0.2s ease;
}

.lab-nav a.active,
.lab-nav a:hover {
  color: var(--text);
}

.lab-main {
  padding-top: 78px;
}

.lab-hero {
  padding: 52px 0 26px;
}

.lab-hero-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 13ch;
}

.lab-collection {
  padding: 24px 0 90px;
}

.lab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lab-item {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.lab-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,0.03);
}

.lab-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 28% 26%, rgba(223,192,154,0.16), transparent 18%),
    radial-gradient(circle at 72% 76%, rgba(142,170,192,0.14), transparent 18%),
    linear-gradient(135deg, rgba(176,138,87,.12), rgba(142,170,192,.1)),
    linear-gradient(180deg, #151821, #0f1117);
}

.lab-placeholder::before {
  content: "Placeholder";
  position: absolute;
  left: 14px;
  top: 14px;
  color: rgba(243,239,231,.72);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lab-placeholder::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 12px;
}

.lab-item-title {
  font-family: var(--display);
  font-size: 1.85rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lab-item-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.lab-open {
  width: fit-content;
  padding: 10px 0;
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

/* footer */
.footer {
  padding: 26px 0 44px;
  color: var(--soft);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  background: #090a0f;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .hero-grid,
  .grid-3,
  .lab-list,
  .project-panel {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .project-visual {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manifesto-wrap {
    height: auto;
  }

  .manifesto-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .manifesto-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 72px 0;
  }

  .manifesto-stage {
    min-height: auto;
  }

  .manifesto-copy {
    max-width: 100%;
    font-size: clamp(2.4rem, 9vw, 4.6rem);
  }

  .manifesto-word {
    opacity: 0.18;
    transform: translate3d(0, 16px, 0);
    filter: blur(7px);
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 74px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(10,11,16,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-hint {
    font-size: 0.7rem;
  }

  .hero-panel {
    min-height: 520px;
  }

  .hero-caption {
    bottom: 126px;
  }

  .preloader {
    grid-template-columns: 1fr;
    align-content: space-between;
  }

  .preloader-right {
    justify-items: start;
  }

  .manifesto-shell {
    padding: 56px 0;
  }

  .manifesto-title {
    max-width: 9ch;
  }

  .manifesto-copy {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
    line-height: 1.2;
    max-width: 90%;
  }

  .manifesto-footer {
    gap: 12px;
  }

  .h-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .h-track {
    display: grid;
    transform: none !important;
    padding-right: 0;
  }

  .project-panel {
    width: 100%;
    min-height: auto;
  }

  .lab-header-inner {
    min-height: 70px;
  }

  .lab-main {
    padding-top: 70px;
  }
}

/* ─────────────────────────────────────────
   PALETTE OVERRIDES
───────────────────────────────────────── */
:root {
  --accent: #7FB7BE;
  --tint:   #D3F3EE;
  --lime:   #D3E298;
  --gold:   #7FB7BE;
  --gold-2: #D3F3EE;
  --blue:   #7FB7BE;
  --rose:   #D3E298;
  --bg:     #090a0f;
  --bg-2:   #11131a;
  --bg-3:   #1b1620;
  --text:   #f2f2f0;
  --muted:  #a8a8a4;
  --soft:   #707070;
  --display: "Clash Display", "Instrument Serif", "Bodoni Moda", Georgia, serif;
  --editorial: "Clash Display", "Bodoni Moda", Georgia, serif;
}

body {
  background: #090a0f;
}

.preloader {
  background:
    linear-gradient(180deg, rgba(9, 10, 15, 0.97), rgba(9, 10, 15, 0.99)),
    radial-gradient(circle at 16% 18%, rgba(127, 183, 190, 0.1), transparent 26%);
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
}
.preloader-title {
  font-family: "Chango", var(--display);
  color: var(--text);
}
.preloader-tag {
  color: var(--accent);
  letter-spacing: 0.28em;
}
.preloader-count {
  font-family: "Clash Display", var(--display);
  color: var(--lime);
}
.preloader-bar {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--lime));
  border-radius: 1px;
  transition: width 0.1s linear;
}
.scroll-progress { background: linear-gradient(90deg, var(--accent), var(--tint), var(--lime)); }
.brand-mark { background: linear-gradient(135deg, var(--accent), var(--tint)); color: #1c1c1c; box-shadow: 0 12px 28px rgba(127,183,190,0.22); }
.brand-logo { height: 38px; width: auto; object-fit: contain; display: block; }
.eyebrow::before { background: linear-gradient(135deg, var(--accent), var(--lime)); box-shadow: 0 0 0 6px rgba(127,183,190,0.12); }
.kicker { color: var(--accent); }
.kicker::before { background: linear-gradient(90deg, var(--accent), transparent); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--tint)); color: #1c1c1c; box-shadow: 0 16px 34px rgba(127,183,190,0.22); }
.manifesto-footer-line::before { background: linear-gradient(90deg, rgba(127,183,190,0.8), transparent); }
.manifesto-glow-a { background: radial-gradient(circle, rgba(127,183,190,0.18), transparent 68%); }
.manifesto-glow-b { background: radial-gradient(circle, rgba(211,226,152,0.14), transparent 70%); }

/* ─────────────────────────────────────────
   HERO — blank right panel
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   HERO — name spotlight
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #090a0f;
}
@media (pointer: fine) {
  .hero { cursor: none; }
}

#fluid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 10, 15, 0.88);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
  padding: 0 clamp(32px, 6vw, 96px);
}

.hero-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  font-weight: 700;
}

.hero-first {
  font-family: "Chango", var(--display);
  font-size: clamp(7rem, 22vw, 24rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: #D3E298;
}

.hero-last {
  font-family: "Chango", var(--display);
  font-size: clamp(2.4rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #D3E298;
  text-transform: uppercase;
}

.hero-char.is-lit {
  opacity: 1 !important;
  filter: none !important;
  color: #e8f5b3;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-role {
  margin-top: clamp(20px, 4vh, 48px);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tint);
  word-spacing: 0.25em;
}

.hero-role-separator {
  display: inline-block;
  width: 3em;
}

.hero-space {
  display: inline-block;
  width: 0.35em;
}

.hero-char {
  display: inline-block;
  opacity: 0.15;
  filter: blur(2px);
  color: #D3E298;
  will-change: opacity, filter, color;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-hint {
  position: absolute;
  bottom: clamp(24px, 5vh, 56px);
  left: clamp(32px, 6vw, 96px);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(211,226,152,0.5);
  opacity: 1;
  transition: opacity 0.6s ease;
  z-index: 2;
}
.hero-hint.is-hidden { opacity: 0; }

/* ─────────────────────────────────────────
   MANIFESTO — cinematic slow reveal
───────────────────────────────────────── */
.manifesto-wrap { height: 400vh; }

.manifesto-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: #090a0f;
}

.manifesto-shell {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: clamp(24px, 3vh, 48px) 0;
}

.manifesto-meta {
  position: absolute;
  top: clamp(20px, 3vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: max-content;
}

.manifesto-sub { display: none; }

.manifesto-stage {
  min-height: min(90vh, 980px);
  align-content: center;
  justify-items: center;
  gap: 0;
  width: 100%;
}

.manifesto-copy {
  font-family: "Chango", var(--display);
  font-size: clamp(2.6rem, 6.5vw, 7.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(242,242,240,0.03);
  max-width: 90%;
  font-weight: 700;
  text-align: center;
}

.manifesto-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  filter: blur(3px);
  will-change: transform, opacity, filter;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.manifesto-word[data-state="active"]  { color: #fff; opacity: 1; }
.manifesto-word[data-state="passed"]  { color: rgba(242,242,240,0.85); }

.manifesto-footer { justify-content: center; }


.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle, rgba(211,226,152,0.7) 0%, rgba(211,226,152,0.3) 35%, transparent 68%);
  box-shadow: 0 0 24px 10px rgba(211,226,152,0.3), 0 0 60px 18px rgba(211,226,152,0.1);
  pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
}
.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-over-present-tense {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(211,226,152,0.22) 0%, rgba(211,226,152,0.08) 40%, transparent 72%);
  box-shadow: 0 0 40px 16px rgba(211,226,152,0.15);
}

/* ─────────────────────────────────────────
   SKILLS SECTION — sticky scroll reveal
───────────────────────────────────────── */
.skills-section {
  position: relative;
  height: 320vh;
  border-top: 1px solid var(--line);
  background: #090a0f;
}

.skills-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.skills-header {
  display: grid; gap: 12px; margin-bottom: 48px;
}

.section-display {
  font-family: "Chango", var(--display);
  word-spacing: 0.15em;
  font-weight: 400;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.skill-category {
  padding: 40px 36px;
  background: rgba(255,255,255,0.02);
  display: grid; gap: 18px;
  transition: background 0.3s ease;
  will-change: transform, opacity;
}
.skill-category:hover { background: rgba(255,255,255,0.04); }

.skill-cat-number {
  font-family: "Clash Display", var(--display);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--soft);
}

.skill-cat-label {
  font-family: "Clash Display", var(--display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  letter-spacing: -0.04em; line-height: 0.95;
  color: var(--text); font-weight: 600;
}
.skill-cat-label em { font-style: normal; color: var(--accent); }

.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted); font-size: 0.84rem;
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}
.skill-category:hover .skill-tag { border-color: rgba(127,183,190,0.26); color: var(--tint); background: rgba(127,183,190,0.05); }
.skill-tag.featured { border-color: rgba(211,226,152,0.36); color: var(--lime); background: rgba(211,226,152,0.07); }

/* ─────────────────────────────────────────
   PRESENT TENSE SECTION
───────────────────────────────────────── */
.present-tense-section {
  padding: 0;
  border-top: 1px solid var(--line);
  height: 300vh;
  position: relative;
  background: #090a0f;
}

.pt-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
}

.pt-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  height: 100%;
}

.pt-title-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(24px, 4vw, 60px);
  border-right: 1px solid var(--line);
  position: relative;
}

.present-tense-title {
  font-family: "Clash Display", var(--display);
  font-size: clamp(4rem, 8vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

.pt-title-word {
  display: block;
}

.pt-title-accent {
  color: var(--accent);
}

.scramble-char {
  display: inline-block;
  transition: color 0.15s ease;
}
.scramble-char.is-scrambling {
  color: var(--lime);
}
.scramble-char.is-resolved {
  color: inherit;
}

.pt-cards-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  min-height: 100%;
}

.pt-item {
  padding: clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: default;
  display: grid;
  gap: 10px;
  align-content: start;
  transition: background 0.3s ease;
}

.pt-item:nth-child(3n) { border-right: none; }
.pt-item:nth-child(n+4) { border-bottom: none; }

/* cursor proximity highlight */
.pt-item.cursor-near {
  background: rgba(127,183,190,0.05);
}
.pt-item.cursor-near .pt-dot {
  background: var(--lime);
  box-shadow: 0 0 14px rgba(211,226,152,0.65);
}
.pt-item.cursor-near .pt-label { color: var(--accent); }
.pt-item.cursor-near .pt-value { color: var(--text); }
.pt-item.cursor-near .pt-sub   { color: var(--tint); }

.pt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--soft);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 4px;
  animation: dotPulse 3s ease-in-out infinite;
  animation-delay: calc(var(--pi, 0) * 500ms);
}
@media (prefers-reduced-motion: reduce) {
  .pt-dot { animation: none; }
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.pt-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  transition: color 0.3s ease;
}

.pt-value {
  font-family: "Clash Display", var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.3s ease;
  word-spacing: 0.1em;
}

.pt-sub {
  font-size: 0.82rem;
  color: var(--soft);
  font-style: italic;
  transition: color 0.3s ease;
}

/* lit state — triggered by hover, sustained 5s */
.pt-item.is-lit {
  background: rgba(127,183,190,0.04);
}
.pt-item.is-lit .pt-dot {
  background: var(--lime);
  box-shadow: 0 0 12px rgba(211,226,152,0.6);
}
.pt-item.is-lit .pt-label { color: var(--accent); }
.pt-item.is-lit .pt-value { color: var(--text); }
.pt-item.is-lit .pt-sub   { color: var(--tint); }

/* ─────────────────────────────────────────
   CONTACT LINES (about page)
───────────────────────────────────────── */
.about-card .contact-lines {
  flex-direction: column;
  gap: 0;
}
.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-child { border-bottom: none; }
.contact-line div { display: grid; gap: 2px; }
.contact-line strong {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-line span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .present-tense-section { height: auto; }
  .pt-sticky { position: relative; top: auto; height: auto; }
  .pt-layout {
    grid-template-columns: 1fr;
  }
  .pt-item { opacity: 1 !important; transform: none !important; }
  .pt-title-col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 24px;
  }
  .present-tense-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(3rem, 12vw, 6rem);
  }
  .pt-title-word { display: inline; }
  .pt-title-accent { display: inline; }
  .pt-cards-col { grid-template-columns: repeat(2, 1fr); }
  .pt-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .pt-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .pt-item:nth-child(2n) { border-right: none; }
  .pt-item:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .pt-item:nth-child(5),
  .pt-item:nth-child(6) { border-bottom: none; }
}

@media (max-width: 780px) {
  .skills-section { height: auto; }
  .skills-sticky { position: relative; top: auto; height: auto; padding: 72px 0; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-category { padding: 28px 22px; opacity: 1 !important; transform: none !important; }
  .skills-header { opacity: 1 !important; transform: none !important; }
  .pt-cards-col { grid-template-columns: 1fr; }
  .pt-item:nth-child(2n) { border-right: none; }
  .pt-item:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .pt-item:last-child { border-bottom: none; }
  .present-tense-title { font-size: clamp(2.2rem, 10vw, 5rem); }
}