
:root{
  --bg:#f5f4f0;
  --paper:#ffffff;
  --ink:#111111;
  --muted:#66625d;
  --line:#d9d7d1;
  --cyan:#00a7d8;
  --magenta:#ec0b7a;
  --yellow:#ffe600;
  --black:#151515;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--ink);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:grid;
  grid-template-columns:260px 1fr auto;
  align-items:center;
  gap:32px;
  min-height:86px;
  padding:16px 4vw;
  background:rgba(245,244,240,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(17,17,17,.08);
}
.brand img{
  width:190px;
  height:auto;
}
.nav{
  display:flex;
  justify-content:center;
  gap:32px;
  font-size:14px;
  font-weight:600;
}
.nav a{
  position:relative;
  padding:10px 0;
}
.nav a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:4px;
  width:0;
  height:2px;
  background:var(--magenta);
  transition:.2s ease;
}
.nav a:hover:after{width:100%}

.header-cta{
  display:inline-flex;
  gap:12px;
  align-items:center;
  background:var(--ink);
  color:#fff;
  padding:14px 18px;
  font-size:14px;
  font-weight:700;
}

.hero{
  min-height:690px;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr) 110px;
  border-bottom:1px solid var(--line);
  background:var(--paper);
}
.hero-copy{
  padding:9vw 5vw 7vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  margin-bottom:24px;
}
.eyebrow.light{color:rgba(255,255,255,.72)}
h1,h2,h3,p{margin-top:0}
h1{
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(54px,6vw,100px);
  line-height:.94;
  letter-spacing:-.055em;
  margin-bottom:34px;
}
h1 span{
  font-weight:500;
}
.hero-copy p{
  max-width:650px;
  font-size:18px;
  line-height:1.6;
  color:var(--muted);
  margin-bottom:34px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  min-height:50px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid var(--ink);
  font-weight:700;
  font-size:14px;
  transition:.18s ease;
}
.btn-primary{
  background:var(--magenta);
  color:#fff;
  border-color:var(--magenta);
}
.btn-primary:hover{
  transform:translateY(-2px);
}
.btn-outline{
  background:transparent;
}
.btn-outline:hover{
  background:var(--ink);
  color:#fff;
}

.hero-art{
  position:relative;
  overflow:hidden;
  background:#d7d7d7;
  min-height:690px;
}
.hero-panel{
  position:absolute;
  inset:12% 10%;
  background:var(--black);
  color:#fff;
  padding:48px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  z-index:3;
}
.panel-kicker{
  font-size:12px;
  letter-spacing:.16em;
  opacity:.62;
}
.panel-title{
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(44px,4vw,72px);
  line-height:.98;
  letter-spacing:-.045em;
}
.panel-note{
  max-width:260px;
  font-size:14px;
  line-height:1.5;
}
.stripe{
  position:absolute;
  transform:skewX(-12deg);
  z-index:2;
}
.s-c{
  width:20%;
  height:100%;
  left:0;
  top:0;
  background:var(--cyan);
}
.s-m{
  width:18%;
  height:100%;
  left:14%;
  top:0;
  background:var(--magenta);
}
.s-y{
  width:18%;
  height:100%;
  left:28%;
  top:0;
  background:var(--yellow);
}
.s-k{
  width:22%;
  height:100%;
  left:42%;
  top:0;
  background:#202020;
}
.hero-side{
  background:var(--yellow);
  padding:44px 24px;
  display:flex;
  flex-direction:column;
  gap:24px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
}
.hero-side-line{
  width:1px;
  height:80px;
  background:var(--ink);
}

.services{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.service{
  min-height:240px;
  padding:32px 24px;
  border-right:1px solid var(--line);
}
.service:last-child{border-right:none}
.service-no{
  font-family:"Space Grotesk",sans-serif;
  font-size:13px;
  font-weight:700;
  margin-bottom:52px;
  color:var(--muted);
}
.service h3{
  font-family:"Space Grotesk",sans-serif;
  font-size:24px;
  line-height:1.05;
  margin-bottom:14px;
}
.service p{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.work{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr 1fr;
  min-height:480px;
}
.work-intro{
  padding:54px 4vw;
}
.dark{
  background:#171717;
  color:#fff;
}
.work-intro h2{
  font-family:"Space Grotesk",sans-serif;
  font-size:56px;
  line-height:.95;
  letter-spacing:-.04em;
  margin-bottom:26px;
}
.work-intro p{
  max-width:360px;
  color:rgba(255,255,255,.66);
  line-height:1.6;
}
.text-link{
  display:inline-block;
  margin-top:14px;
  font-weight:700;
  font-size:14px;
}
.light-link{color:#fff}

.work-tile{
  min-height:480px;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-left:1px solid rgba(17,17,17,.15);
}
.work-tile span{
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
}
.work-tile strong{
  font-family:"Space Grotesk",sans-serif;
  font-size:36px;
  line-height:1;
  letter-spacing:-.035em;
}
.tile-c{background:var(--cyan)}
.tile-m{background:var(--magenta);color:#fff}
.tile-y{background:var(--yellow)}

.about{
  background:var(--paper);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:8vw;
  padding:8vw 5vw;
  border-bottom:1px solid var(--line);
}
.about h2{
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(42px,5vw,74px);
  line-height:.98;
  letter-spacing:-.045em;
}
.about h2 span{
  font-weight:500;
}
.about-copy{
  align-self:end;
}
.about-copy > p{
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  max-width:720px;
}
.about-points{
  margin-top:44px;
  border-top:1px solid var(--line);
}
.about-points > div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:20px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.about-points strong{
  font-family:"Space Grotesk",sans-serif;
}
.about-points span{
  font-weight:600;
}

.statement{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:420px;
}
.statement-black{
  background:#151515;
  color:#fff;
  padding:50px 5vw;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.statement-black span{
  font-size:12px;
  letter-spacing:.16em;
  font-weight:800;
}
.statement-black strong{
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(48px,5vw,82px);
  line-height:.92;
  letter-spacing:-.05em;
}
.statement-white{
  background:var(--paper);
  padding:50px 5vw;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
}
.big-mark{
  font-family:"Space Grotesk",sans-serif;
  font-size:210px;
  line-height:.7;
  font-weight:700;
  color:var(--magenta);
}
.statement-white p{
  max-width:340px;
  font-size:18px;
  line-height:1.5;
  margin-bottom:0;
}

.contact{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  background:#eceae5;
  border-top:1px solid var(--line);
}
.contact-lead{
  padding:65px 5vw;
  border-right:1px solid var(--line);
}
.contact-lead h2{
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(42px,4vw,66px);
  line-height:.96;
  letter-spacing:-.04em;
  margin-bottom:0;
}
.contact-info{
  padding:65px 5vw;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:40px;
}
.contact-block small{
  display:block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  margin-bottom:14px;
}
.contact-block strong{
  font-family:"Space Grotesk",sans-serif;
  font-size:32px;
  line-height:1.15;
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.footer{
  background:#111;
  color:#fff;
  min-height:150px;
  padding:36px 4vw;
  display:grid;
  grid-template-columns:260px 1fr auto;
  gap:40px;
  align-items:center;
}
.footer img{
  width:180px;
  filter:brightness(0) invert(1);
  opacity:.92;
}
.footer-nav{
  display:flex;
  gap:28px;
  justify-content:center;
  font-size:13px;
}
.footer-copy{
  font-size:12px;
  opacity:.6;
}

@media (max-width:1100px){
  .site-header{
    grid-template-columns:200px 1fr auto;
  }
  .nav{gap:18px}
  .services{
    grid-template-columns:repeat(3,1fr);
  }
  .service:nth-child(3){border-right:none}
  .work{
    grid-template-columns:1fr 1fr;
  }
  .work-intro,
  .work-tile{min-height:420px}
}

@media (max-width:800px){
  .site-header{
    position:relative;
    grid-template-columns:1fr auto;
    padding:14px 20px;
  }
  .brand img{width:150px}
  .nav{display:none}
  .header-cta{padding:12px 14px;font-size:12px}

  .hero{
    grid-template-columns:1fr;
  }
  .hero-copy{
    padding:70px 24px;
  }
  .hero-art{
    min-height:440px;
  }
  .hero-panel{
    inset:10%;
    padding:30px;
  }
  .hero-side{display:none}

  .services{
    grid-template-columns:1fr 1fr;
  }
  .service{
    border-bottom:1px solid var(--line);
  }
  .service:nth-child(3){border-right:1px solid var(--line)}
  .service:nth-child(even){border-right:none}

  .work{
    grid-template-columns:1fr;
  }
  .about{
    grid-template-columns:1fr;
    gap:40px;
    padding:70px 24px;
  }
  .statement{
    grid-template-columns:1fr;
  }
  .statement-white{
    min-height:360px;
  }
  .contact{
    grid-template-columns:1fr;
  }
  .contact-lead{
    border-right:none;
    border-bottom:1px solid var(--line);
    padding:50px 24px;
  }
  .contact-info{
    padding:50px 24px;
  }
  .footer{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer img{margin:0 auto}
  .footer-nav{flex-wrap:wrap}
}

@media (max-width:540px){
  h1{font-size:50px}
  .services{grid-template-columns:1fr}
  .service{
    border-right:none!important;
    min-height:auto;
    padding:26px 24px;
  }
  .service-no{margin-bottom:22px}
  .statement-white{
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;
  }
  .big-mark{font-size:150px}
  .contact-actions{
    flex-direction:column;
  }
  .contact-actions .btn{
    width:100%;
  }
}
