:root {
  --ink:#17243C;
  --ink-soft:#3A4659;
  --rasp:#D6336C;
  --rasp-deep:#A82252;
  --rasp-tint:#FBE7EF;
  --paper:#FFFFFF;
  --blush:#FDF3F7;
  --mist:#F4F1EE;
  --mut:#6B6B73;
  --line:#E9E3E6;
  --disp:'Space Grotesk',sans-serif;
  --body:'Inter',sans-serif;
  --wrap:1080px;
}

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

html {
  scroll-behavior:smooth;
}

body {
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

a {
  color:inherit;
  text-decoration:none;
}

img {
  display:block;
  max-width:100%;
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

.wrap {
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow {
  font-family:var(--disp);
  font-size:12px;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--rasp);
}

h1,h2,h3 {
  font-family:var(--disp);
  font-weight:600;
  line-height:1.1;
  letter-spacing:-.01em;
}

.btn {
  font-family:var(--disp);
  font-weight:600;
  font-size:14px;
  border-radius:12px;
  padding:13px 20px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:transform .15s,background .15s,border-color .15s;
}

.btn:hover {
  transform:translateY(-2px);
}

.btn-primary {
  background:var(--rasp);
  color:#fff;
}

.btn-primary:hover {
  background:var(--rasp-deep);
}

.btn-ghost {
  background:#fff;
  color:var(--ink);
  border:1px solid var(--line);
}

.btn-ghost:hover {
  border-color:var(--rasp);
}

.nav {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav .wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:62px;
}

.brand {
  font-family:var(--disp);
  font-weight:600;
  font-size:16px;
}

.brand span {
  color:var(--rasp);
}

.nav-links {
  display:flex;
  gap:26px;
  font-size:14px;
  color:var(--mut);
}

.nav-links a:hover {
  color:var(--ink);
}

.hero {
  padding:84px 0 58px;
  background:linear-gradient(180deg,var(--blush),var(--paper));
}

.hero h1 {
  font-size:clamp(40px,7vw,78px);
  margin:14px 0 14px;
}

.hero .lead {
  font-size:19px;
  color:var(--ink-soft);
  max-width:54ch;
  margin-bottom:24px;
}

.meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.chip {
  font-size:13px;
  color:var(--ink);
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:7px 14px;
}

.chip b {
  color:var(--rasp-deep);
  font-weight:600;
}

.sitelink {
  font-size:14px;
  color:var(--mut);
  margin-bottom:24px;
}

.sitelink a {
  color:var(--rasp-deep);
  border-bottom:1px solid var(--rasp-tint);
}

.cta-row {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.stats {
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--ink);
}

.stats .wrap {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.stat {
  padding:28px 18px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.1);
}

.stat:last-child {
  border-right:0;
}

.stat .n {
  font-family:var(--disp);
  font-weight:600;
  font-size:20px;
  color:#fff;
}

.stat .l {
  font-size:12.5px;
  color:#AEB6C4;
  margin-top:4px;
}

.section {
  padding:74px 0;
}

.section.alt {
  background:var(--mist);
}

.khead {
  max-width:64ch;
  margin-bottom:34px;
}

.khead h2 {
  font-size:clamp(26px,3.4vw,38px);
  margin:12px 0 14px;
}

.khead p {
  color:var(--ink-soft);
  font-size:17px;
}

.role {
  background:var(--ink);
  color:#fff;
  border-radius:24px;
  padding:46px 44px;
}

.role .eyebrow {
  color:#F3A9C4;
}

.role h2 {
  color:#fff;
  font-size:clamp(24px,3vw,32px);
  margin:12px 0 16px;
  max-width:26ch;
}

.role p {
  color:#C9D0DC;
  font-size:17px;
  max-width:64ch;
  margin-bottom:14px;
}

.role .hl {
  color:#fff;
  font-weight:600;
  border-bottom:2px solid var(--rasp);
}

.role .btn {
  margin-top:12px;
}

.projects {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.proj {
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.slot {
  aspect-ratio:4/3;
  background:var(--blush);
  border-bottom:1px dashed var(--line);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:var(--rasp);
}

.slot span {
  font-size:12.5px;
  color:var(--mut);
}

.proj-body {
  padding:20px 22px 24px;
}

.proj .tagk {
  font-family:var(--disp);
  font-size:11.5px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--rasp);
}

.proj h3 {
  font-size:19px;
  margin:8px 0 8px;
}

.proj p {
  font-size:14.5px;
  color:var(--ink-soft);
  margin-bottom:12px;
}

.proj .lk {
  font-size:13px;
  color:var(--mut);
}

.proj .lk a {
  color:var(--rasp-deep);
  border-bottom:1px solid var(--rasp-tint);
}

.proj .own {
  display:inline-block;
  font-size:11.5px;
  font-weight:600;
  color:var(--rasp-deep);
  background:var(--rasp-tint);
  border-radius:999px;
  padding:3px 10px;
  margin-bottom:10px;
}

.note {
  display:flex;
  gap:12px;
  align-items:flex-start;
  max-width:72ch;
  margin:0 auto;
  color:var(--mut);
  font-size:14px;
}

.note .dot {
  flex:none;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--rasp-tint);
  color:var(--rasp-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-family:var(--disp);
}

.foot {
  background:var(--ink);
  color:#fff;
  padding:64px 0;
}

.foot .eyebrow {
  color:#F3A9C4;
  margin-bottom:12px;
}

.foot h2 {
  color:#fff;
  font-size:clamp(26px,3.4vw,40px);
  margin-bottom:14px;
  max-width:18ch;
}

.foot p {
  color:#C9D0DC;
  margin-bottom:24px;
  font-size:17px;
}

.foot a.mail {
  color:#fff;
  border-bottom:2px solid var(--rasp);
}

.foot .cta-row {
  margin-bottom:28px;
}

.foot .btn-ghost {
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.3);
}

.foot .btn-ghost:hover {
  border-color:#fff;
}

.foot small {
  color:#8C96A6;
  font-size:13px;
}

.rev {
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease,transform .6s ease;
}

.rev.in {
  opacity:1;
  transform:none;
}

@media(max-width:860px) {
  .stats .wrap {
    grid-template-columns:1fr 1fr;
  }
  .stat:nth-child(2) {
    border-right:0;
  }
  .projects {
    grid-template-columns:1fr;
  }
  .role {
    padding:34px 24px;
  }
  .nav-links {
    display:none;
  }
}

@media(prefers-reduced-motion:reduce) {
  .rev {
    opacity:1;
    transform:none;
    transition:none;
  }
  html {
    scroll-behavior:auto;
  }
  .btn:hover {
    transform:none;
  }
}
