/* ============================================================
   TRUE ARCHITECTS — single-page portfolio
   Soft-modern · warm neutral · architectural
   ============================================================ */

:root {
  /* WARM NEUTRAL PALETTE */
  --bone:      #f4f0e8;   /* page background */
  --paper:     #faf8f3;   /* lifted surface */
  --sand:      #e8e0d2;   /* subtle fill */
  --line:      #ddd3c2;   /* hairlines */
  --ink:       #18140e;   /* near-black, warm */
  --graphite:  #463f34;
  --stone:     #877c6c;   /* muted text */
  --accent:    #223047;   /* midnight blue */
  --accent-dk: #223047;   /* same midnight blue — for eyebrow/hover on light bg */
  --accent-on-dark: #8198b8; /* lighter blue tint, legible on dark backgrounds */

  /* TYPE */
  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Inter", -apple-system, system-ui, sans-serif;
  --f-accent:  "Fraunces", Georgia, serif;

  --max: 1400px;
  --gut: clamp(1.4rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--bone); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.h-xl { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -0.03em; }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -0.025em; }
.accent-i {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.eyebrow {
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-dk);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow.solo::before { display: none; }
.lede {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: var(--graphite);
  font-weight: 400;
  max-width: 58ch;
}

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
section { padding-block: clamp(4.5rem, 10vw, 9rem); }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: var(--bone); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--bone); }
.head { max-width: 820px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.head .h-lg { margin-top: 1.3rem; }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--f-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.05rem 1.9rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bone); }
.btn:hover .arr { transform: translateX(5px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.bg-ink .btn-ghost { color: var(--bone); border-color: rgba(244,240,232,.5); }
.bg-ink .btn-ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.txt-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--accent);
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.txt-link:hover { gap: .95rem; color: var(--accent-dk); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.5rem;
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner { max-width: var(--max); margin-inline: auto; padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.12rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bone); transition: color .45s var(--ease);
}
.logo .sq { width: 11px; height: 11px; background: var(--accent); flex: 0 0 auto; transition: transform .5s var(--ease); }
.logo:hover .sq { transform: rotate(45deg); }
/* logo image */
.logo img { height: 84px; width: auto; display: block; transition: filter .45s var(--ease); }
.nav:not(.scrolled) .logo img { filter: brightness(0) invert(1); }   /* white over hero */
.footer .logo img { height: 90px; filter: brightness(0) invert(1); }  /* white on dark footer */

.nav-links { display: flex; align-items: center; gap: clamp(1.5rem, 2.6vw, 2.8rem); }
.nav-links a {
  position: relative; font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--bone);
  padding: .25rem 0; transition: color .35s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--accent); transition: width .4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { width: 100%; }
.nav-links a.active:not(.nav-cta) { color: var(--accent); }
.nav.scrolled .nav-links a.active:not(.nav-cta) { color: var(--accent-dk); }
.nav-cta {
  border: 1px solid rgba(244,240,232,.45);
  padding: .6rem 1.25rem !important;
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); }

/* scrolled / solid */
.nav.scrolled {
  background: rgba(244,240,232,.9);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding-block: 1rem;
  border-bottom-color: var(--line);
}
.nav.scrolled .logo { color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-cta { border-color: var(--ink); }
.nav.scrolled .nav-cta:hover { border-color: var(--accent); color: var(--bone); }
.nav.scrolled .burger span { background: var(--ink); }

.burger { display: none; flex-direction: column; gap: 6px; width: 30px; padding: 6px 0; z-index: 120; }
.burger span { display: block; height: 2px; width: 100%; background: var(--bone); transition: transform .4s var(--ease), opacity .3s, background .45s var(--ease); }
body.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--ink); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--bone); }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 13s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(24,20,14,.42) 0%, rgba(24,20,14,.1) 38%, rgba(24,20,14,.82) 100%); }
.hero-inner { width: 100%; padding-block: 9rem clamp(3rem, 7vw, 5.5rem); }
.hero h1 { color: var(--bone); margin-block: 1.5rem 1.8rem; font-size: clamp(1.5rem, 4.5vw, 4.25rem); }
.hero .lede { color: rgba(244,240,232,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }
.hero-actions .btn { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.hero-actions .btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bone); }
.hero-actions .btn-ghost { background: transparent; color: var(--bone); border-color: rgba(244,240,232,.5); }
.hero-actions .btn-ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.scroll-cue { position: absolute; left: var(--gut); bottom: 1.6rem; display: flex; align-items: center; gap: .8rem;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(244,240,232,.7); }
.scroll-cue .ln { width: 46px; height: 1px; background: rgba(244,240,232,.4); position: relative; overflow: hidden; }
.scroll-cue .ln::after { content: ""; position: absolute; inset: 0 100% 0 0; background: var(--accent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { inset: 0 100% 0 0; } 50% { inset: 0 0 0 0; } 100% { inset: 0 0 0 100%; } }

/* ============================================================
   INTRO + STATS
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.intro-grid > div { max-width: 860px; }
.intro-statement { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.3; letter-spacing: -0.01em; }
.intro-statement .accent-i { font-size: 1.02em; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.5rem); margin-top: 3rem; }
.stat .n { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1; letter-spacing: -0.03em; }
.stat .l { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin-top: .55rem; }
.intro-side p { color: var(--graphite); margin-bottom: 1.1rem; font-size: 1.05rem; }

/* ============================================================
   MARQUEE (slim, modern)
   ============================================================ */
.marquee { background: var(--ink); color: var(--bone); overflow: hidden; padding-block: 1.15rem; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: scrollX 38s linear infinite; }
.marquee span { font-family: var(--f-display); font-weight: 500; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 3rem; }
.marquee .dot { width: 6px; height: 6px; background: var(--accent); display: inline-block; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ============================================================
   WORK / PORTFOLIO
   ============================================================ */
.work-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* filter */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.filters button { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: .65rem 1.2rem; border: 1px solid var(--line); color: var(--stone); transition: all .35s var(--ease); }
.filters button:hover { border-color: var(--ink); color: var(--ink); }
.filters button.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.project { position: relative; overflow: hidden; background: var(--ink); display: block;
  transition: opacity .5s var(--ease), transform .5s var(--ease); }
.project.hide { display: none; }
/* asymmetric editorial spans */
.project { grid-column: span 6; aspect-ratio: 3/2.1; }
.project.tall { grid-column: span 6; aspect-ratio: 3/3.4; }
.project.wide { grid-column: span 12; aspect-ratio: 16/8; }
.project img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.92);
  transition: transform 1s var(--ease), filter .6s var(--ease); }
.project:hover img { transform: scale(1.05); filter: brightness(.74); }
.project .meta { position: absolute; inset: 0; padding: clamp(1.5rem, 2.6vw, 2.4rem);
  display: flex; flex-direction: column; justify-content: space-between; color: var(--bone);
  background: linear-gradient(180deg, rgba(24,20,14,.15) 0%, rgba(24,20,14,0) 35%, rgba(24,20,14,.8) 100%); }
.project .tag { align-self: flex-start; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; background: rgba(244,240,232,.16); backdrop-filter: blur(6px); padding: .35rem .7rem; }
.project .b { }
.project h3 { color: var(--bone); font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 600; }
/* single-line project caption: Title │ Location │ Year */
.project h3.proj-oneline { font-size: clamp(1.05rem, 1.7vw, 1.4rem); line-height: 1.35; }
.project h3.proj-oneline .bar { color: var(--accent-on-dark); font-weight: 400; margin: 0 .25rem; }
.project .sub { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(244,240,232,.8); }
.project .sub span { display: inline-flex; align-items: center; gap: .4rem; }
.project .view { margin-top: 1.1rem; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  display: inline-flex; align-items: center; gap: .5rem; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease); }
.project:hover .view { max-height: 40px; opacity: 1; }

/* horizontal project gallery — auto-scroll (left ⇄ right) + manual drag/scroll */
.proj-scroller {
  width: 100vw; margin-left: calc(50% - 50vw);
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--accent) var(--sand);
}
.proj-scroller.dragging { cursor: grabbing; }
.proj-scroller + .proj-scroller { margin-top: clamp(1.6rem, 3.5vw, 2.8rem); }
.proj-scroller::-webkit-scrollbar { height: 7px; }
.proj-scroller::-webkit-scrollbar-track { background: var(--sand); }
.proj-scroller::-webkit-scrollbar-thumb { background: var(--accent); }
.proj-track {
  display: flex; gap: clamp(1rem, 2vw, 1.6rem); width: max-content;
  padding-inline: clamp(1rem, 4vw, 3rem);
}
.proj-track .project { flex: 0 0 clamp(300px, 44vw, 600px); aspect-ratio: 3 / 2.2; }
.proj-track .project img { pointer-events: none; }   /* let drags fall through to the scroller */

/* ============================================================
   APPROACH (process)
   ============================================================ */
.steps { border-top: 1px solid rgba(244,240,232,.16); }
.step { display: grid; grid-template-columns: 90px 1fr 2fr; gap: clamp(1.2rem, 3vw, 3rem);
  padding-block: clamp(1.8rem, 3vw, 2.6rem); border-bottom: 1px solid rgba(244,240,232,.16);
  align-items: start; transition: padding-left .4s var(--ease), background .4s var(--ease); }
.step:hover { padding-left: 1rem; }
.step .s-num { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--accent); }
.step .s-title { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.9rem); color: var(--bone); }
.step .s-desc { color: rgba(244,240,232,.72); font-size: 1.02rem; max-width: 560px; }

/* ============================================================
   STUDIO (about split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .tagblock { position: absolute; left: 0; bottom: 0; background: var(--accent); color: var(--bone);
  padding: 1.3rem 1.6rem; }
.split-media .tagblock .b-n { font-family: var(--f-display); font-weight: 700; font-size: 2.4rem; line-height: 1; }
.split-media .tagblock .b-l { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; margin-top: .35rem; }
.split-body p { color: var(--graphite); margin-bottom: 1.1rem; font-size: 1.05rem; }
.split-body .h-lg { margin-block: 1.2rem 1.6rem; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote { text-align: center; max-width: 980px; margin-inline: auto; }
.quote .mark { font-family: var(--f-accent); font-style: italic; font-size: 5rem; line-height: .4; color: var(--accent); }
.quote blockquote { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  line-height: 1.22; letter-spacing: -0.02em; margin: 1.5rem 0 2rem; }
.quote blockquote em { font-family: var(--f-accent); font-style: italic; font-weight: 400; color: var(--accent); }
.quote .who { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
.quote .who strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact { text-align: center; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 80vw; max-width: 900px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(177,90,55,.1), transparent 70%); pointer-events: none; }
.contact .h-xl { max-width: 16ch; margin: 1.4rem auto 2.4rem; position: relative; }
.contact-info { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(2rem, 5vw, 4rem); margin-top: 3.5rem; position: relative; }
.contact-info .ci .k { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-dk); font-weight: 600; margin-bottom: .5rem; }
.contact-info .ci .v { font-size: 1.1rem; color: var(--ink); }
.contact-info .ci .v a:hover { color: var(--accent-dk); }

.footer { background: var(--ink); color: rgba(244,240,232,.65); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(244,240,232,.12); }
.footer .logo { color: var(--bone); margin-bottom: 1.2rem; }
.footer-top p { max-width: 36ch; font-size: .96rem; }
.footer h4 { font-family: var(--f-body); color: var(--bone); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer-col a { display: block; padding: .35rem 0; font-size: .95rem; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--accent); padding-left: .4rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(244,240,232,.18); color: var(--bone); transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: .8rem; color: rgba(244,240,232,.4); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.fade { opacity: 0; transform: translateY(18px); animation: fadeUp .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg img { animation: none; transform: none; }
}

/* ============================================================
   ACCENT LEGIBILITY ON DARK BACKGROUNDS
   (use the lighter tint of the midnight blue where it sits on dark)
   ============================================================ */
.hero .eyebrow, .bg-ink .eyebrow { color: var(--accent-on-dark); }
.hero .eyebrow::before, .bg-ink .eyebrow::before { background: var(--accent-on-dark); }
.bg-ink .step .s-num { color: var(--accent-on-dark); }
.marquee .dot { background: var(--accent-on-dark); }
.scroll-cue .ln::after { background: var(--accent-on-dark); }
.nav:not(.scrolled) .nav-links a:not(.nav-cta)::after { background: var(--accent-on-dark); }
.nav:not(.scrolled) .nav-links a.active:not(.nav-cta) { color: var(--accent-on-dark); }
.hero .accent-i, .bg-ink .accent-i { color: var(--accent-on-dark); }
/* hero "True" — same display font as the rest of the headline, just coloured */
.hero h1 .hl { color: var(--accent); }   /* midnight blue #223047 */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .project, .project.tall { grid-column: span 6; }
}
/* nav collapses only on genuinely small screens */
@media (max-width: 720px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 2.2rem;
    background: var(--bone); transform: translateX(100%); transition: transform .5s var(--ease); z-index: 110;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  body.menu-open { overflow: hidden; }
  .nav-links a { color: var(--ink) !important; font-family: var(--f-display); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; text-transform: none; }
  .nav.scrolled .nav-links a { color: var(--ink) !important; }
  .nav-cta { border-color: var(--ink); padding: .85rem 1.7rem !important; }
}

@media (max-width: 860px) {
  .intro-grid, .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .project, .project.tall, .project.wide { grid-column: span 6; aspect-ratio: 3/2.2; }
  .step { grid-template-columns: 60px 1fr; }
  .step .s-desc { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .split-media .tagblock { padding: 1rem 1.2rem; }
}
