@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════ */
:root {
  --bg:      #080808;
  --bg2:     #0c0c0c;
  --surf:    #111111;
  --surf2:   #191919;
  --bdr:     rgba(255,255,255,0.07);
  --bdrh:    rgba(255,255,255,0.13);
  --ink:     #EDEAE3;
  --ink2:    #6E6B65;
  --ink3:    #2C2A28;
  --gold:    #C9913A;
  --project-color: var(--gold);
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a { color: inherit; text-decoration: none; cursor: none; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: none; font-family: inherit; }

/* ═══════════════════════════════════════════════
   GRAIN
═══════════════════════════════════════════════ */
body::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9900; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════════ */
.c-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--ink); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s;
  will-change: left, top;
}
.c-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(237,234,227,.35);
  border-radius: 50%; pointer-events: none;
  z-index: 9998; transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .25s, opacity .2s;
  will-change: left, top;
}
body.ch .c-dot  { width: 8px; height: 8px; }
body.ch .c-ring { width: 54px; height: 54px; border-color: rgba(237,234,227,.1); }
body.ck .c-ring { width: 24px; height: 24px; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; z-index: 800;
  transition: background .4s ease, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--bdr);
}
.nav-brand {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: .05em; text-transform: uppercase;
  z-index: 1200; transition: opacity .2s;
}
.nav-brand:hover { opacity: .45; }

.nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surf); border: 1px solid var(--bdr);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  z-index: 1200;
  transition: background .2s, border-color .2s, transform .25s;
}
.nav-btn:hover { background: var(--surf2); border-color: var(--bdrh); transform: scale(1.06); }
.nav-btn span {
  display: block; height: 1.5px; background: var(--ink);
  border-radius: 2px; transform-origin: center;
  transition: transform .4s cubic-bezier(.76,0,.24,1), opacity .3s, width .3s;
}
.nav-btn span:first-child { width: 16px; }
.nav-btn span:last-child  { width: 10px; }
body.menu-open .nav-btn span:first-child { transform: translateY(3.3px) rotate(45deg); width: 16px; }
body.menu-open .nav-btn span:last-child  { transform: translateY(-3.3px) rotate(-45deg); width: 16px; }

/* ═══════════════════════════════════════════════
   MENU OVERLAY
═══════════════════════════════════════════════ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: var(--bg2);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 60px;
  opacity: 0; pointer-events: none;
  transition: opacity .45s cubic-bezier(.76,0,.24,1);
}
body.menu-open .menu-overlay { opacity: 1; pointer-events: all; }

.menu-nav { display: flex; flex-direction: column; }
.menu-lnk {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 7.5vw, 7rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.06;
  color: var(--ink3);
  border-top: 1px solid var(--bdr); padding: 6px 0;
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(24px); opacity: 0;
  transition: color .2s, transform .5s cubic-bezier(.76,0,.24,1), opacity .5s cubic-bezier(.76,0,.24,1);
}
.menu-lnk:last-child { border-bottom: 1px solid var(--bdr); }
.menu-lnk-num {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em;
  color: var(--ink3); font-family: 'Manrope', sans-serif; margin-top: 4px;
  transition: color .2s;
}
.menu-lnk:hover { color: var(--ink); }
.menu-lnk:hover .menu-lnk-num { color: var(--ink2); }
body.menu-open .menu-lnk { transform: none; opacity: 1; }
body.menu-open .menu-lnk:nth-child(1) { transition-delay: .06s; }
body.menu-open .menu-lnk:nth-child(2) { transition-delay: .1s; }
body.menu-open .menu-lnk:nth-child(3) { transition-delay: .14s; }
body.menu-open .menu-lnk:nth-child(4) { transition-delay: .18s; }
body.menu-open .menu-lnk:nth-child(5) { transition-delay: .22s; }

.menu-foot {
  margin-top: 44px; display: flex; gap: 32px; flex-wrap: wrap;
  opacity: 0; transition: opacity .45s .26s;
}
body.menu-open .menu-foot { opacity: 1; }
.menu-foot a { font-size: .8rem; color: var(--ink2); transition: color .2s; }
.menu-foot a:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════
   HERO
   Photo is absolutely placed on the right.
   Text lives in a full-height left column.
═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

/* Full-bleed photo panel */
.hero-photo-panel {
  position: absolute; inset: 0; left: 45%;
  overflow: hidden;
}
.hero-photo-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(8,8,8,.4) 45%, transparent 75%);
  z-index: 1;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: grayscale(12%) contrast(1.06);
  will-change: transform;
}

/* Left content */
.hero-content {
  position: relative; z-index: 2;
  width: 56%; padding: 0 80px 90px;
  display: flex; flex-direction: column; gap: 0;
}

.hero-eyebrow {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.hero-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(5rem,9.5vw,10.5rem);
  font-weight: 800; letter-spacing: -.055em;
  line-height: .88; color: var(--ink);
  margin-bottom: 28px;
}
.hero-name .d { color: var(--ink3); }

.hero-rule {
  width: 44px; height: 1px; background: var(--ink2);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem; color: var(--ink2);
  max-width: 400px; line-height: 1.75;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Photo */
.hero-photo { opacity: 1; }

/* Badge */
.hero-badge {
  position: absolute; bottom: 36px; right: 36px; z-index: 3;
  background: rgba(17,17,17,.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bdr); border-radius: 14px;
  padding: 16px 22px;
}
.hero-badge-n {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  letter-spacing: -.05em; line-height: 1; color: var(--ink);
}
.hero-badge-l {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink2); margin-top: 3px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 38px; left: 80px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll-line {
  width: 30px; height: 1px; background: var(--ink3);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--ink2);
  animation: spulse 2.6s ease-in-out 1.8s infinite;
}
@keyframes spulse {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}
.hero-scroll span {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink3);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 28px;
  background: var(--ink); color: var(--bg);
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: .76rem; letter-spacing: .07em; text-transform: uppercase;
  border-radius: 999px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s;
}
.btn-p:hover { transform: scale(1.04); box-shadow: 0 0 40px rgba(237,234,227,.1); }
.btn-g {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 28px;
  border: 1px solid var(--bdrh); color: var(--ink2);
  font-size: .76rem; letter-spacing: .07em; text-transform: uppercase;
  border-radius: 999px;
  transition: border-color .2s, color .2s;
}
.btn-g:hover { border-color: var(--ink); color: var(--ink); }

/* ═══════════════════════════════════════════════
   PROJECT LOGOS
═══════════════════════════════════════════════ */
/* On project hero — no container, just the image */
.proj-logo {
  margin-bottom: 32px;
  display: flex; align-items: center;
  width: fit-content; align-self: flex-start;
}
.proj-logo img {
  height: 60px; width: auto;
  object-fit: contain; display: block;
}
.proj-logo.screen img {
  mix-blend-mode: screen;
  height: 80px;
}

/* ── CARD LOGO HERO ── replaces title text on home cards */
.card-logo-hero {
  flex: 1;
  display: flex; align-items: center;
  padding: 12px 0 16px;
}
.card-logo-hero img {
  width: 100%; max-width: 210px; height: auto;
  max-height: 88px; object-fit: contain; display: block;
  opacity: .82;
  transition: opacity .35s ease;
}
.card:hover .card-logo-hero img { opacity: 1; }
.card-logo-hero.screen img {
  mix-blend-mode: screen;
  max-width: 230px; max-height: 100px;
}

/* CRM — no logo, typographic stand-in */
.card-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  letter-spacing: -.03em; line-height: 1;
  color: var(--c, var(--gold));
  opacity: .22;
  transition: opacity .35s ease;
  flex: 1; display: flex; align-items: center;
  padding: 12px 0 16px;
}
.card:hover .card-logo-text { opacity: .45; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
[data-r] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.76,0,.24,1),
              transform .85s cubic-bezier(.76,0,.24,1);
}
[data-r].in { opacity: 1; transform: none; }
[data-r][data-d="1"] { transition-delay: .1s; }
[data-r][data-d="2"] { transition-delay: .22s; }
[data-r][data-d="3"] { transition-delay: .34s; }

/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.marquee {
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 12px 0; overflow: hidden;
}
.mq-track { display: flex; width: max-content; animation: mq 42s linear infinite; }
@keyframes mq { to { transform: translateX(-50%); } }
.mq-group { display: flex; align-items: center; white-space: nowrap; }
.mq-item {
  font-family: 'Syne', sans-serif; font-size: .63rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink3); padding: 0 26px;
}
.mq-dot { color: var(--gold); font-size: .38rem; padding: 0 3px; }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about {
  padding: 130px 80px;
  border-top: 1px solid var(--bdr);
  display: grid; grid-template-columns: 200px 1fr;
  gap: 80px; align-items: start;
}
.s-tag { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.s-num { font-family: 'Syne', sans-serif; font-size: .63rem; font-weight: 700; letter-spacing: .14em; color: var(--ink3); }
.s-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink2); }
.about-body { display: flex; flex-direction: column; gap: 22px; }
.about-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem,4.5vw,4rem);
  font-weight: 800; letter-spacing: -.045em; line-height: 1.06; color: var(--ink);
}
.about-p { font-size: 1rem; color: var(--ink2); max-width: 680px; line-height: 1.82; }

/* ═══════════════════════════════════════════════
   WORK
═══════════════════════════════════════════════ */
.work {
  padding: 80px 80px 140px;
  border-top: 1px solid var(--bdr);
}
.work-hd { display: flex; align-items: baseline; gap: 18px; margin-bottom: 50px; }
.work-hd h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem,3.5vw,3rem);
  font-weight: 800; letter-spacing: -.04em;
}

/* ═══════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════ */
.cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--bdr);
  border: 1px solid var(--bdr); border-radius: 16px; overflow: hidden;
}
.card {
  background: var(--bg);
  padding: 46px 42px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 300px; position: relative; overflow: hidden;
  transition: background .35s ease;
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--c, var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s cubic-bezier(.76,0,.24,1);
}
.card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--c, var(--gold));
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.card:hover { background: var(--surf); }
.card:hover::before { transform: scaleX(1); }
.card:hover::after  { opacity: .025; }

.card-row { display: flex; align-items: center; justify-content: space-between; }
.card-n { font-size: .63rem; font-weight: 700; letter-spacing: .14em; color: var(--ink3); }
.card-pip { width: 7px; height: 7px; border-radius: 50%; background: var(--c, var(--gold)); }
.card-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem,2.8vw,2.4rem);
  font-weight: 800; letter-spacing: -.035em;
  line-height: 1.08; color: var(--ink); flex: 1;
  transition: transform .38s cubic-bezier(.76,0,.24,1);
}
.card:hover .card-name { transform: translateX(8px); }
.card-desc { font-size: .875rem; color: var(--ink2); line-height: 1.6; max-width: 320px; }
.card-arr {
  margin-top: auto; align-self: flex-end;
  font-size: 1.4rem; color: var(--ink3);
  transition: transform .28s cubic-bezier(.76,0,.24,1), color .25s;
}
.card:hover .card-arr { transform: translate(6px,-6px); color: var(--c, var(--gold)); }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact {
  padding: 130px 80px;
  border-top: 1px solid var(--bdr);
  display: grid; grid-template-columns: 200px 1fr;
  gap: 80px; align-items: start;
}
.contact-body { display: flex; flex-direction: column; gap: 22px; max-width: 640px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.form-row { display: flex; gap: 16px; }
.form-row input { flex: 1; min-width: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--ink);
  font-family: inherit;
  font-size: .92rem;
  cursor: none;
  transition: border-color .2s, background .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink2); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bdrh);
  background: var(--surf2);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { align-self: flex-start; cursor: none; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--bdr);
  padding: 90px 80px;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  align-items: end; gap: 60px;
}
.footer-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem,4vw,3.6rem);
  font-weight: 800; letter-spacing: -.045em;
  line-height: 1.06; margin-bottom: 38px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-lnk {
  display: flex; align-items: center; gap: 20px;
  font-size: .9rem; color: var(--ink2); transition: color .2s;
}
.footer-lnk:hover { color: var(--ink); }
.footer-lbl {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink3); width: 70px; flex-shrink: 0;
}
.footer-r { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.footer-copy { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); }

/* ═══════════════════════════════════════════════
   PROJECT HERO
═══════════════════════════════════════════════ */
.proj-hero {
  min-height: 85vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 90px 80px; padding-top: 150px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--bdr);
}
.proj-glow {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .08;
}
.proj-wm {
  position: absolute; right: -.06em; bottom: -.12em;
  font-family: 'Syne', sans-serif;
  font-size: clamp(20rem, 38vw, 44rem);
  font-weight: 800; letter-spacing: -.06em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.03);
  pointer-events: none; user-select: none; z-index: 0;
}
.proj-hero > *:not(.proj-glow):not(.proj-wm) { position: relative; z-index: 1; }

.proj-back {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink2); margin-bottom: 56px; width: fit-content;
  transition: color .2s, gap .25s cubic-bezier(.34,1.56,.64,1);
}
.proj-back:hover { color: var(--ink); gap: 18px; }
.proj-cat {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--project-color); margin-bottom: 18px;
}
.proj-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem,9vw,9rem);
  font-weight: 800; letter-spacing: -.055em;
  line-height: .88; color: var(--ink);
  max-width: 1000px; margin-bottom: 30px;
}
.proj-sub {
  font-size: 1.05rem; color: var(--ink2);
  max-width: 520px; line-height: 1.76;
}

/* ═══════════════════════════════════════════════
   FEATURE SHOWCASE (screenshots interspersed with copy)
═══════════════════════════════════════════════ */
.feature-eyebrow {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--project-color); margin-bottom: 14px;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.15;
  margin-bottom: 14px;
}
.feature-desc { color: var(--ink2); line-height: 1.78; max-width: 480px; }

/* Two-column paired feature (image + copy side by side, alternating) */
.feature-row {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
  padding: 80px; border-bottom: 1px solid var(--bdr);
}
.feature-row.reverse { grid-template-columns: 0.9fr 1.1fr; }
.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-cap { order: 1; }
.feature-media {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--bdrh);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.feature-media img { width: 100%; height: auto; display: block; }
.media-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surf);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink3);
}

/* ═══════════════════════════════════════════════
   PROJECT BODY
═══════════════════════════════════════════════ */
.proj-body {
  padding: 90px 80px;
  display: grid; grid-template-columns: 1fr 290px;
  gap: 90px; border-bottom: 1px solid var(--bdr);
}
.proj-desc h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem,3vw,2.7rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.08; margin-bottom: 28px;
}
.proj-desc p {
  font-size: 1rem; color: var(--ink2);
  line-height: 1.84; margin-bottom: 20px; max-width: 680px;
}
.proj-desc p:last-child { margin-bottom: 0; }
.proj-sidebar { display: flex; flex-direction: column; gap: 34px; padding-top: 4px; }
.sb-h {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink3); padding-bottom: 11px;
  border-bottom: 1px solid var(--bdr); margin-bottom: 13px;
}
.sb-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sb-list li {
  font-size: .88rem; color: var(--ink2);
  display: flex; align-items: flex-start; gap: 11px; line-height: 1.45;
}
.sb-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--project-color); flex-shrink: 0; margin-top: 6px;
}
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  padding: 4px 11px;
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: 999px; font-family: 'Syne', sans-serif;
  font-size: .7rem; font-weight: 600; letter-spacing: .04em; color: var(--ink2);
}

/* ═══════════════════════════════════════════════
   NEXT PROJECT
═══════════════════════════════════════════════ */
.proj-next {
  display: flex; align-items: center; justify-content: space-between;
  padding: 60px 80px;
  border-top: 1px solid var(--bdr);
  transition: background .3s ease;
}
.proj-next:hover { background: var(--surf); }
.next-lbl { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink3); margin-bottom: 9px; }
.next-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem,3.5vw,2.9rem);
  font-weight: 800; letter-spacing: -.04em;
  color: var(--ink2); transition: color .25s;
}
.proj-next:hover .next-name { color: var(--ink); }
.next-arr {
  font-size: 2.8rem; color: var(--ink3);
  transition: transform .32s cubic-bezier(.76,0,.24,1), color .25s;
}
.proj-next:hover .next-arr { transform: translateX(14px); color: var(--ink); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-content { width: 65%; padding: 0 60px 80px; }
  .hero-photo-panel { left: 48%; }
}
@media (max-width: 900px) {
  /* Stack layout: photo on top, text below */
  .hero { flex-direction: column; min-height: auto; }
  .hero-photo-panel {
    position: relative; inset: auto;
    width: 100%; height: 65vw; flex-shrink: 0;
  }
  .hero-photo-panel::before {
    background: linear-gradient(180deg, transparent 50%, var(--bg) 100%);
  }
  .hero-content { width: 100%; padding: 40px 40px 80px; }
  .hero-badge { bottom: 16px; right: 16px; }
  .hero-scroll { left: 40px; bottom: 28px; }

  .about { grid-template-columns: 1fr; padding: 80px 40px; gap: 16px; }
  .work  { padding: 60px 40px 100px; }
  .cards { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; padding: 80px 40px; gap: 16px; }
  .footer { padding: 70px 40px; grid-template-columns: 1fr; }

  .proj-hero  { padding: 60px 40px; padding-top: 130px; }
  .feature-row { padding: 48px 40px; grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 1; }
  .feature-row.reverse .feature-cap { order: 2; }
  .proj-body  { padding: 60px 40px; grid-template-columns: 1fr; gap: 48px; }
  .proj-next  { padding: 48px 40px; }
  .menu-overlay { padding: 80px 40px 48px; }
  .site-nav { padding: 0 24px; }
}
@media (max-width: 600px) {
  .hero-content { padding: 28px 20px 64px; }
  .hero-badge { display: none; }
  .hero-scroll { left: 20px; }
  .about, .work, .contact, .footer,
  .proj-hero, .feature-row, .proj-body, .proj-next { padding-left: 20px; padding-right: 20px; }
  .form-row { flex-direction: column; }
  .menu-overlay { padding: 72px 20px 40px; }
  .site-nav { padding: 0 16px; }
}
