/* ============ Tokens ============ */
:root {
  --ink: #111216;
  --grey: #7b7d85;
  --light: #f4f4f5;
  --line: #e6e6e8;
  --white: #fff;
  --accent: #111216;
  --font: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: clamp(24px, 5vw, 80px);
  --ease: cubic-bezier(.19, 1, .22, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading, body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

.wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ Type ============ */
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 22px;
}
.display {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.display--m { font-size: clamp(36px, 4vw, 56px); }
.display--xl { font-size: clamp(52px, 9vw, 150px); }
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--grey);
  font-weight: 400;
}
.small { font-size: 13px; color: var(--grey); }
.heart { color: #e0245e; }
.nowrap { white-space: nowrap; }

.link-u {
  font-weight: 600;
  font-size: 17px;
  position: relative;
  padding-bottom: 4px;
}
.link-u::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.link-u:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============ Loader ============ */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--white);
  display: grid; place-items: center;
  transition: transform .9s var(--ease) .1s;
}
.loader__inner { text-align: center; }
.loader__inner .eyebrow { margin-bottom: 10px; }
.loader__text {
  font-size: 34px; font-weight: 800; letter-spacing: -.03em;
  animation: pulse 1.2s ease-in-out infinite;
}
body:not(.is-loading) .loader { transform: translateY(-100%); }
@keyframes pulse { 50% { opacity: .35; } }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px var(--gutter);
  transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
.site-header.is-scrolled {
  padding-top: 16px; padding-bottom: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo__mark {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-weight: 800; font-size: 20px;
  transition: background .3s, color .3s;
}
.logo:hover .logo__mark { background: var(--ink); color: var(--white); }
.logo__text strong { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.logo__text small {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .38em; text-transform: uppercase; margin-top: 3px;
}

.menu-toggle {
  display: flex; align-items: center; gap: 14px;
  background: none; border: 0; cursor: pointer; padding: 8px 0;
  font: inherit; color: var(--ink);
}
.menu-toggle__label { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.menu-toggle__bars { width: 22px; display: grid; gap: 4px; }
.menu-toggle__bars i {
  display: block; height: 3px; background: currentColor;
  transition: transform .4s var(--ease), opacity .3s, width .3s;
}
.menu-toggle:hover .menu-toggle__bars i:nth-child(2) { width: 70%; justify-self: end; }
.menu-open .menu-toggle { color: var(--white); }
.menu-open .menu-toggle__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle__bars i:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-open .site-header { background: transparent; box-shadow: none; }
.menu-open .logo { color: var(--white); }
.menu-open .logo__mark { border-color: var(--white); }

/* ============ Menu overlay ============ */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--gutter) 40px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease);
}
.menu-open .menu { clip-path: inset(0 0 0 0); }
.menu__list li { overflow: hidden; }
.menu__list a {
  display: inline-flex; align-items: baseline; gap: 20px;
  font-size: clamp(40px, 7vw, 96px); font-weight: 800; letter-spacing: -.035em; line-height: 1.12;
  transform: translateY(110%);
  transition: transform .8s var(--ease), color .3s;
}
.menu__list a span { font-size: 14px; font-weight: 500; letter-spacing: .2em; color: var(--grey); }
.menu__list a:hover { color: var(--grey); }
.menu-open .menu__list a { transform: none; }
.menu-open .menu__list li:nth-child(2) a { transition-delay: .05s; }
.menu-open .menu__list li:nth-child(3) a { transition-delay: .1s; }
.menu-open .menu__list li:nth-child(4) a { transition-delay: .15s; }
.menu-open .menu__list li:nth-child(5) a { transition-delay: .2s; }
.menu__foot { margin-top: auto; padding-top: 40px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero__bg-word {
  position: absolute; top: 90px; left: -1vw;
  font-size: 22vw; font-weight: 800; letter-spacing: -.06em; line-height: 1;
  color: #f3f3f4;
  white-space: nowrap; pointer-events: none; user-select: none;
  z-index: 0;
}
.hero__portrait {
  position: absolute; right: 0; bottom: 0; top: 0;
  width: 52%;
  z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__portrait img {
  height: 100%; width: 100%; object-fit: cover; object-position: center 12%;
  filter: grayscale(1) brightness(1.12) contrast(1.08);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 22%);
          mask-image: linear-gradient(to right, transparent 0, #000 22%);
}
.hero__copy { position: relative; z-index: 2; }
.hero__copy .display { max-width: 10.5em; margin-bottom: 30px; }
.hero__copy .lead { max-width: 30em; margin-bottom: 36px; }
.hero__links { display: flex; align-items: center; gap: 18px; }
.hero__links span { color: var(--grey); font-size: 14px; }

.scroll-mouse {
  position: absolute; left: 50%; bottom: 36px; z-index: 3;
  width: 22px; height: 34px; margin-left: -11px;
  border: 2px solid var(--ink); border-radius: 12px;
}
.scroll-mouse span {
  position: absolute; left: 50%; top: 6px;
  width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px;
  background: var(--ink);
  animation: wheel 1.6s var(--ease) infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

/* ============ Projects ============ */
.projects { padding: clamp(80px, 12vw, 180px) 0 40px; }
.section-head { margin-bottom: clamp(48px, 7vw, 100px); }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, 5vw, 80px);
  row-gap: clamp(40px, 6vw, 90px);
}
/* Staggered columns */
.grid > .tile:nth-child(even) { transform: translateY(clamp(60px, 12vw, 200px)); }
.grid > .tile.reveal:nth-child(even):not(.is-in) { transform: translateY(calc(clamp(60px, 12vw, 200px) + 60px)); }
.projects .grid { padding-bottom: clamp(60px, 12vw, 200px); }

.tile {
  position: relative; display: block; overflow: hidden;
  background: var(--bg);
  color: var(--white);
  aspect-ratio: 4 / 5;
}
.tile--wide { aspect-ratio: 5 / 4; }
.tile[data-theme="light"] { color: var(--ink); }

.tile__art {
  position: absolute; inset: 0;
  transition: transform 1.2s var(--ease);
}
.tile:hover .tile__art { transform: scale(1.05); }

.tile__copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 4vw, 56px);
  z-index: 2;
}
.tile[data-theme="dark"] .tile__copy { background: linear-gradient(to top, rgba(0,0,0,.92) 35%, transparent); padding-top: 120px; }
.tile[data-theme="light"] .tile__copy { background: linear-gradient(to top, rgba(255,255,255,.7), transparent); }
.tile__copy .eyebrow { color: inherit; opacity: .75; margin-bottom: 14px; }
.tile__copy h3 {
  font-size: clamp(24px, 2.6vw, 40px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
  max-width: 13em; margin-bottom: 22px;
}
.more { display: inline-flex; gap: 10px; font-weight: 600; font-size: 15px; }
.more b { transition: transform .5s var(--ease); }
.tile:hover .more b { transform: translateX(8px); }

.badge {
  position: absolute; top: 28px; right: 28px; z-index: 3;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  background: var(--white); color: var(--ink);
}

/* Screenshot tiles */
.tile__art--phones {
  display: flex; justify-content: center; align-items: flex-start; gap: 5%;
  padding-top: 12%;
  background: radial-gradient(circle at 50% 30%, rgba(201,166,107,.22), transparent 60%);
}
.tile__art--phones img {
  width: 38%; border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 6px #1d1d1f;
}
.tile__art--phones img:nth-child(2) { margin-top: 14%; }
.tile--navy .tile__art--phones { background: radial-gradient(circle at 50% 30%, rgba(255,178,36,.25), transparent 60%); }
.tile--navy .tile__art--phones img { box-shadow: 0 30px 60px rgba(0,0,0,.45), 0 0 0 6px #0b1a45; }
.tile--navy[data-theme="dark"] .tile__copy { background: linear-gradient(to top, rgba(9,20,56,.95) 35%, transparent); }
.tile--indigo .tile__art--phones { background: radial-gradient(circle at 50% 30%, rgba(91,99,211,.28), transparent 60%); }
.tile--indigo .tile__art--phones img { box-shadow: 0 30px 60px rgba(40,44,110,.28), 0 0 0 6px #fff; }
.tile--indigo[data-theme="light"] .tile__copy { background: linear-gradient(to top, rgba(232,234,251,.97) 40%, transparent); padding-top: 120px; }
.tile--next { outline: 1px dashed #cfcfd3; outline-offset: -1px; }
.tile__copy--center { top: 0; display: flex; flex-direction: column; justify-content: center; background: none !important; }
.tile--next h3 { color: var(--ink); }

/* Placeholder artwork (replace with your own images: .tile__art { background: url(...) center/cover }) */
.art-devices {
  background:
    radial-gradient(circle at 70% 35%, rgba(255,55,105,.35), transparent 40%),
    linear-gradient(135deg, transparent 38%, #26262b 38%, #26262b 62%, transparent 62%) 50% 30% / 70% 40% no-repeat,
    linear-gradient(#1b1b1f, #1b1b1f) 25% 25% / 40% 26% no-repeat,
    linear-gradient(#ff3769, #ff3769) 62% 20% / 14% 4% no-repeat,
    linear-gradient(#2e2e34, #2e2e34) 75% 38% / 18% 30% no-repeat;
}
.art-shop {
  background:
    linear-gradient(#fff, #fff) 50% 22% / 62% 5% no-repeat,
    linear-gradient(#e9d7b9, #e9d7b9) 30% 36% / 28% 26% no-repeat,
    linear-gradient(#9fb0d6, #9fb0d6) 70% 36% / 28% 26% no-repeat,
    linear-gradient(#2b3858, #2b3858) 50% 30% / 72% 50% no-repeat;
}
.art-landing {
  background:
    linear-gradient(#111, #111) 30% 20% / 44% 6% no-repeat,
    linear-gradient(#bdbdbd, #bdbdbd) 26% 30% / 36% 2% no-repeat,
    linear-gradient(#bdbdbd, #bdbdbd) 24% 34% / 32% 2% no-repeat,
    linear-gradient(#c7c7c7, #9c9c9c) 78% 26% / 32% 30% no-repeat,
    linear-gradient(#fff, #fff) 50% 26% / 80% 42% no-repeat;
}
.art-dashboard {
  background:
    linear-gradient(to top, #fff 60%, transparent 60%) 30% 34% / 5% 20% no-repeat,
    linear-gradient(to top, #fff 80%, transparent 80%) 38% 34% / 5% 20% no-repeat,
    linear-gradient(to top, #fff 45%, transparent 45%) 46% 34% / 5% 20% no-repeat,
    linear-gradient(to top, #fff 95%, transparent 95%) 54% 34% / 5% 20% no-repeat,
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)) 75% 30% / 22% 34% no-repeat,
    linear-gradient(#006d6b, #006d6b) 50% 28% / 76% 44% no-repeat;
}
.art-mobile {
  background:
    linear-gradient(#fff, #fff) 38% 30% / 22% 44% no-repeat,
    linear-gradient(#1b1b1b, #1b1b1b) 64% 24% / 22% 44% no-repeat,
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), transparent 55%);
}
.art-brand {
  background:
    radial-gradient(circle, #1c1c1c 0 60%, transparent 61%) 50% 30% / 32% 26% no-repeat,
    linear-gradient(#d8c7ad, #d8c7ad) 22% 60% / 16% 10% no-repeat,
    linear-gradient(#b5543a, #b5543a) 42% 60% / 16% 10% no-repeat,
    linear-gradient(#2f3a2c, #2f3a2c) 62% 60% / 16% 10% no-repeat;
}
.art-photo {
  background:
    linear-gradient(170deg, transparent 55%, #6f7a80 55.2%, #4e585d 70%, transparent 70.2%),
    linear-gradient(150deg, transparent 45%, #9aa5ab 45.2%, #7d888d 75%, transparent 75.2%),
    linear-gradient(#cfd8dc, #eef1f2 60%);
}
.art-photo--alt {
  background:
    radial-gradient(circle at 70% 30%, #f6d7a7 0 8%, transparent 8.5%),
    linear-gradient(160deg, transparent 50%, #2f3437 50.2%),
    linear-gradient(#e8c9a1, #d59e7a 60%, #b27560);
}

/* ============ About ============ */
.about { padding: clamp(80px, 10vw, 160px) 0; background: var(--light); }
.about__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 120px); align-items: end; }
.about__text .lead { margin-bottom: 36px; }
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.services li {
  padding: 14px 0; border-top: 1px solid #d9d9dc;
  font-weight: 600; font-size: 16px;
}

/* ============ Latest ============ */
.latest { padding: clamp(80px, 10vw, 160px) 0; }
.latest__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); }
.post__img { aspect-ratio: 1; background: var(--bg); margin-bottom: 22px; transition: transform .8s var(--ease); }
.post:hover .post__img { transform: translateY(-6px); }
.post p { font-size: 16px; line-height: 1.6; color: var(--grey); margin-bottom: 14px; }
.post__meta { font-size: 13px; font-weight: 700; }

/* ============ CTA ============ */
.cta { padding: clamp(80px, 12vw, 200px) 0; border-top: 1px solid var(--line); }
.cta__link { display: inline-block; }
.cta__link .arrow {
  display: inline-block; margin-left: .2em;
  transition: transform .6s var(--ease);
}
.cta__link:hover .arrow { transform: translateX(.2em); }
.cta__link:hover { color: #3a3b42; }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: var(--white); padding: clamp(70px, 8vw, 120px) 0 40px; }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.site-footer h4 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 26px; }
.site-footer p, .site-footer li { font-size: 15px; line-height: 1.7; color: #a3a5ad; }
.site-footer p + p { margin-top: 14px; }
.site-footer a { color: var(--white); transition: color .3s; }
.site-footer a:hover, .site-footer a.muted { color: #a3a5ad; }
.status { display: flex; align-items: center; gap: 10px; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 4px rgba(61,220,132,.2); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 80px; padding-top: 28px; border-top: 1px solid #2a2b31;
}

/* ============ Reveal animations ============ */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 1s var(--ease), transform 1.2s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .grid > .tile:nth-child(even) { transition: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero__portrait { width: 60%; opacity: .35; }
  .about__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .logo__text small { letter-spacing: .25em; }
  .menu-toggle__label { display: none; }
  .hero { align-items: flex-end; }
  .hero__portrait { width: 100%; height: 50%; top: 84px; bottom: auto; opacity: 1; }
  .hero__portrait img {
    -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
  }
  .hero { padding-top: 45vh; }
  .scroll-mouse { display: none; }
  .grid { grid-template-columns: 1fr; }
  .grid > .tile:nth-child(even),
  .grid > .tile.reveal:nth-child(even).is-in { transform: none; }
  .projects .grid { padding-bottom: 0; }
  .latest__grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}

/* ============ Case study page ============ */
.cs-hero { padding: 180px 0 clamp(60px, 8vw, 110px); }
.cs-hero .display { max-width: 14em; margin-bottom: 32px; }
.cs-hero .lead { max-width: 36em; }
.cs-back { display: inline-block; margin-bottom: 40px; font-weight: 600; font-size: 15px; color: var(--grey); transition: color .3s; }
.cs-back:hover { color: var(--ink); }

.cs-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: clamp(48px, 6vw, 80px); padding-top: 32px; border-top: 1px solid var(--line);
}
.cs-meta .eyebrow { font-size: 11px; margin-bottom: 10px; }
.cs-meta p { font-size: 16px; font-weight: 600; line-height: 1.5; }
.cs-meta a { border-bottom: 2px solid currentColor; }

.cs-shot {
  background: var(--ink);
  padding: clamp(32px, 6vw, 100px) var(--gutter);
}
.cs-shot img, .cs-frame img {
  width: 100%; max-width: 1280px; margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
}
.cs-frame { position: relative; max-width: 1280px; margin: 0 auto; }
.cs-frame::before {
  content: ""; display: block; height: 28px; border-radius: 8px 8px 0 0;
  background: #1e1f23 radial-gradient(circle, #ff5f57 0 4px, transparent 4.5px) 14px 50% / 12px 12px no-repeat;
  box-shadow: inset 0 -1px 0 #2b2c31;
}
.cs-frame::after {
  content: ""; position: absolute; top: 10px; left: 32px; width: 32px; height: 8px;
  background: radial-gradient(circle, #febc2e 0 4px, transparent 4.5px) 0 50% / 12px 8px no-repeat,
              radial-gradient(circle, #28c840 0 4px, transparent 4.5px) 18px 50% / 12px 8px no-repeat;
}
.cs-frame img { box-shadow: none; }

.cs-section { padding: clamp(80px, 10vw, 150px) 0; }
.cs-section + .cs-section { padding-top: 0; }
.cs-row { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px, 6vw, 120px); }
.cs-row h2 { font-size: clamp(30px, 3vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.cs-row p { font-size: 18px; line-height: 1.7; color: #4a4c55; }
.cs-row p + p { margin-top: 18px; }

.cs-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; margin-top: 10px; }
.cs-list li { padding: 22px 0; border-top: 1px solid var(--line); }
.cs-list strong { display: block; font-size: 17px; margin-bottom: 6px; letter-spacing: -.01em; }
.cs-list span { font-size: 15px; line-height: 1.6; color: var(--grey); }

.cs-gallery { background: var(--light); padding: clamp(60px, 8vw, 120px) 0; }
.cs-gallery .wrapper > * + * { margin-top: clamp(40px, 5vw, 80px); }
.cs-caption { margin-top: 18px; font-size: 14px; color: var(--grey); text-align: center; }

.cs-phones {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 2vw, 28px);
  align-items: start;
}
.cs-phones img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18), 0 0 0 5px #111216;
}
.cs-phones img:nth-child(even) { margin-top: 40px; }

.cs-stack { display: flex; flex-wrap: wrap; gap: 10px; }
.cs-stack li { padding: 10px 18px; border: 1px solid var(--line); border-radius: 40px; font-size: 14px; font-weight: 600; }

.cs-next { padding: clamp(80px, 12vw, 180px) 0; border-top: 1px solid var(--line); }

.site-header--solid { background: rgba(255,255,255,.92); }

@media (max-width: 1024px) {
  .cs-meta { grid-template-columns: 1fr 1fr; }
  .cs-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .cs-hero { padding-top: 140px; }
  .cs-list { grid-template-columns: 1fr; }
  .cs-phones { grid-template-columns: repeat(2, 1fr); }
  .cs-phones img:nth-child(n+5) { display: none; }
}

.cs-nextproj { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 40px 0; border-top: 1px solid var(--line); }
.cs-nextproj a { font-size: clamp(28px, 3.5vw, 52px); font-weight: 800; letter-spacing: -.03em; }
.cs-nextproj a b { display: inline-block; transition: transform .6s var(--ease); }
.cs-nextproj a:hover b { transform: translateX(10px); }

.cs-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
@media (max-width: 720px) { .cs-duo { grid-template-columns: 1fr; } }

.footer__bottom p + p { margin-top: 0; }
