
:root{
  --bg:#f4f2ed;
  --ink:#0b0b0b;
  --muted:#74716b;
  --panel:#151515;
  --red:#b30f1b;
  --red2:#d21b29;
  --line:rgba(0,0,0,.14);
  --light-line:rgba(255,255,255,.16);
  --radius:28px;
  --container:min(1480px, calc(100vw - 72px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit}
img,video{max-width:100%}
.container{width:var(--container);margin-inline:auto}
.section{padding:140px 0}
.section--dark{background:#0b0b0b;color:white}
.section--red{background:var(--red);color:white}
.noise{
  position:fixed;inset:0;pointer-events:none;z-index:9998;opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.page-loader{
  position:fixed;inset:0;background:#0a0a0a;color:white;z-index:10000;
  display:grid;place-items:center;align-content:center;gap:18px;transition:opacity .7s ease,visibility .7s ease;
}
.page-loader.is-hidden{opacity:0;visibility:hidden}
.page-loader__mark{font-family:"Space Grotesk";font-size:clamp(28px,4vw,60px);font-weight:700;letter-spacing:.12em}
.page-loader__line{width:min(320px,60vw);height:2px;background:rgba(255,255,255,.18);overflow:hidden}
.page-loader__line span{display:block;width:100%;height:100%;background:var(--red2);transform:translateX(-100%);animation:load 1.05s cubic-bezier(.7,0,.2,1) forwards}
@keyframes load{to{transform:translateX(0)}}

.site-header{
  position:fixed;top:0;left:0;right:0;z-index:9000;height:88px;
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;padding:0 36px;
  color:white;border-bottom:1px solid rgba(255,255,255,.14);
  transition:background .35s ease,backdrop-filter .35s ease,height .35s ease;
}
.site-header.is-scrolled{height:72px;background:rgba(7,7,7,.78);backdrop-filter:blur(18px)}
.brand{display:flex;align-items:center;gap:12px;width:max-content;font-weight:800;letter-spacing:.04em}
.brand__symbol{
  width:38px;height:38px;border:1px solid rgba(255,255,255,.55);
  display:grid;place-items:center;border-radius:50%;font-family:"Space Grotesk";font-weight:700
}
.brand__text{font-family:"Space Grotesk";font-size:17px}
.brand__text small{font-size:10px;opacity:.62;margin-left:3px}
.desktop-nav{display:flex;gap:34px;font-size:13px;font-weight:600}
.desktop-nav a,.header-cta,.text-link{position:relative}
.desktop-nav a::after,.text-link::after{
  content:"";position:absolute;left:0;right:0;bottom:-7px;height:1px;background:currentColor;
  transform:scaleX(0);transform-origin:right;transition:transform .35s ease
}
.desktop-nav a:hover::after,.text-link:hover::after{transform:scaleX(1);transform-origin:left}
.header-cta{justify-self:end;font-size:13px;font-weight:700}
.header-cta span,.text-link span,.btn span{margin-left:10px}
.menu-toggle{display:none;background:none;border:0;width:42px;height:42px;padding:10px}
.menu-toggle span{display:block;height:1px;background:white;margin:7px 0}

.mobile-menu{
  position:fixed;inset:0;background:#090909;color:white;z-index:8000;display:none;
  opacity:0;visibility:hidden;transition:.35s ease;
}
.mobile-menu.is-open{opacity:1;visibility:visible}
.mobile-menu__inner{height:100%;display:grid;place-content:center;gap:26px;padding:30px}
.mobile-menu a{font-family:"Space Grotesk";font-size:clamp(34px,9vw,64px)}

.hero{height:100svh;min-height:740px;position:relative;background:#111;color:white;overflow:hidden}
.hero__video,.hero__fallback,.hero__veil{position:absolute;inset:0;width:100%;height:100%}
.hero__video{object-fit:cover;z-index:1}
.hero__fallback{
  z-index:0;
  background:
    radial-gradient(circle at 72% 34%,rgba(179,15,27,.36),transparent 30%),
    linear-gradient(130deg,#1a1a1a,#060606 66%);
}
.hero__veil{
  z-index:2;
  background:linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.3) 55%,rgba(0,0,0,.22)),
             linear-gradient(0deg,rgba(0,0,0,.72),transparent 48%);
}
.hero__content{
  height:100%;position:relative;z-index:3;display:flex;flex-direction:column;justify-content:flex-end;
  padding-bottom:120px
}
.eyebrow,.section-kicker{font-size:11px;letter-spacing:.24em;font-weight:800}
.section-kicker{display:block;margin-bottom:25px;color:#5d5b57}
.section-kicker--light{color:rgba(255,255,255,.5)}
.hero__title{
  margin:20px 0 22px;font-family:"Space Grotesk";font-size:clamp(64px,9.2vw,154px);
  line-height:.82;letter-spacing:-.065em;max-width:1250px
}
.hero-line{display:block;will-change:transform}
.hero-line--accent{color:#fff}
.hero__lead{max-width:650px;font-size:clamp(17px,1.5vw,23px);line-height:1.55;color:rgba(255,255,255,.76)}
.hero__actions{display:flex;align-items:center;gap:30px;margin-top:32px}
.btn{
  min-height:56px;display:inline-flex;align-items:center;justify-content:center;padding:0 24px;
  border-radius:999px;font-weight:800;font-size:13px;transition:transform .25s ease,background .25s ease
}
.btn:hover{transform:translateY(-2px)}
.btn--light{background:white;color:#080808}
.btn--red{background:var(--red2);color:white}
.text-link{font-size:13px;font-weight:700}
.text-link--light{color:white}
.hero__meta{
  position:absolute;z-index:3;bottom:28px;left:36px;right:36px;display:flex;justify-content:space-between;
  font-size:10px;font-weight:700;letter-spacing:.18em;color:rgba(255,255,255,.55)
}

.intro__grid{display:grid;grid-template-columns:1fr 2fr;gap:40px}
.display-copy{
  font-family:"Space Grotesk";font-size:clamp(42px,5.2vw,86px);line-height:1;letter-spacing:-.055em;margin:0
}
.stats{
  margin-top:110px;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.stat-card{padding:35px 24px 34px 0;position:relative}
.stat-card:not(:last-child){border-right:1px solid var(--line)}
.stat-card strong,.stat-card>span{font-family:"Space Grotesk";font-size:clamp(54px,6vw,96px);letter-spacing:-.065em}
.stat-card>span{color:var(--red)}
.stat-card p{margin:14px 0 0;color:var(--muted);font-size:12px;text-transform:uppercase;letter-spacing:.14em}

.technologies{overflow:hidden}
.technologies__heading{display:grid;grid-template-columns:1fr 1.6fr 1fr;gap:40px;align-items:end;margin-bottom:75px}
.technologies__heading h2,.projects__head h2,.global__copy h2,.media-section__head h2,.contact h2{
  margin:0;font-family:"Space Grotesk";font-size:clamp(48px,6vw,94px);line-height:.95;letter-spacing:-.06em
}
.technologies__heading p{color:rgba(255,255,255,.52);max-width:340px;justify-self:end;line-height:1.7}
.tech-track-wrap{overflow:hidden;padding-left:calc((100vw - min(1480px, calc(100vw - 72px)))/2)}
.tech-track{display:flex;gap:22px;width:max-content;padding-right:70px}
.tech-card{
  width:min(70vw,640px);height:720px;position:relative;border-radius:var(--radius);overflow:hidden;background:#1a1a1a;
  flex:none;isolation:isolate
}
.tech-card__media{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.04);transition:transform .9s cubic-bezier(.2,.75,.2,1)}
.tech-card:hover .tech-card__media{transform:scale(1.1)}
.tech-card__shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.82) 82%);z-index:1}
.tech-card__body{position:absolute;z-index:2;inset:auto 36px 36px}
.tech-card__body>span{font-size:11px;letter-spacing:.2em;color:rgba(255,255,255,.52)}
.tech-card h3{font-family:"Space Grotesk";font-size:clamp(44px,4vw,66px);line-height:.9;letter-spacing:-.055em;margin:14px 0 18px}
.tech-card p{max-width:430px;color:rgba(255,255,255,.62);line-height:1.6}
.tech-card a{display:inline-flex;margin-top:14px;font-weight:800;font-size:12px}
.media--gypsum{background-image:linear-gradient(135deg,#4b4b4b,#151515)}
.media--lime{background-image:linear-gradient(135deg,#8b7657,#1b1814)}
.media--dry{background-image:linear-gradient(135deg,#71665e,#171615)}
.media--board{background-image:linear-gradient(135deg,#515e5b,#121515)}
.media--perlite{background-image:linear-gradient(135deg,#6d6c61,#161616)}

.projects__head{display:grid;grid-template-columns:1.7fr 1fr;gap:50px;align-items:end;margin-bottom:70px}
.projects__head p{color:var(--muted);line-height:1.7;max-width:420px;justify-self:end}
.project-list{border-top:1px solid var(--line)}
.project-item{
  position:relative;display:grid;grid-template-columns:280px 1fr auto;align-items:center;gap:50px;
  padding:34px 0;border-bottom:1px solid var(--line);overflow:hidden
}
.project-item__image{
  aspect-ratio:1.55;border-radius:16px;background:#d3d0c8 center/cover no-repeat;
  transition:transform .5s ease
}
.project-item:hover .project-item__image{transform:scale(.98)}
.project-image--1{background-image:linear-gradient(135deg,#d2d0c8,#8c8a83)}
.project-image--2{background-image:linear-gradient(135deg,#c7c1b6,#756d64)}
.project-image--3{background-image:linear-gradient(135deg,#bcbdb8,#737875)}
.project-item__meta>span{font-size:10px;letter-spacing:.18em;color:var(--red);font-weight:800}
.project-item h3{font-family:"Space Grotesk";font-size:clamp(28px,3vw,48px);letter-spacing:-.04em;margin:9px 0}
.project-item p{margin:0;color:var(--muted);max-width:620px}
.project-item__arrow{font-size:32px;transition:transform .3s ease}
.project-item:hover .project-item__arrow{transform:translate(7px,-7px)}

.manifesto{padding:90px 0 120px;overflow:hidden}
.manifesto__marquee{white-space:nowrap;overflow:hidden;margin-bottom:100px;border-block:1px solid rgba(255,255,255,.22)}
.manifesto__marquee>div{display:inline-flex;gap:26px;align-items:center;padding:20px 0;animation:marquee 22s linear infinite}
.manifesto__marquee span{font-family:"Space Grotesk";font-weight:700;font-size:18px;letter-spacing:.08em}
.manifesto__marquee i{font-style:normal;opacity:.4}
@keyframes marquee{to{transform:translateX(-50%)}}
.manifesto__copy p{font-size:16px;opacity:.7}
.manifesto__copy h2{font-family:"Space Grotesk";font-size:clamp(52px,8vw,128px);line-height:.9;letter-spacing:-.07em;max-width:1300px;margin:18px 0 0}

.global__grid{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:80px}
.global__copy p{max-width:520px;color:rgba(255,255,255,.55);line-height:1.75;font-size:18px}
.global__big-number{display:flex;align-items:end;gap:18px;margin-top:60px}
.global__big-number strong{font-family:"Space Grotesk";font-size:clamp(110px,14vw,220px);line-height:.72;letter-spacing:-.09em;color:var(--red2)}
.global__big-number span{font-size:11px;letter-spacing:.16em;font-weight:800;margin-bottom:8px}
.world-visual{height:650px;position:relative;display:grid;place-items:center;overflow:hidden}
.world-visual__orb{
  width:min(520px,72vw);aspect-ratio:1;border-radius:50%;
  background:
    radial-gradient(circle at 42% 38%,rgba(255,255,255,.12),transparent 34%),
    radial-gradient(circle at 65% 64%,rgba(179,15,27,.5),transparent 28%),
    #131313;
  border:1px solid rgba(255,255,255,.17);
  box-shadow:0 0 0 36px rgba(255,255,255,.018),0 0 0 72px rgba(255,255,255,.012)
}
.world-visual__line{position:absolute;width:70%;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transform-origin:center}
.line-1{transform:rotate(25deg)}
.line-2{transform:rotate(-33deg)}
.line-3{transform:rotate(78deg)}
.pin{position:absolute;width:9px;height:9px;border-radius:50%;background:var(--red2);box-shadow:0 0 0 8px rgba(210,27,41,.16)}
.pin-1{top:26%;left:34%}.pin-2{top:40%;right:24%}.pin-3{bottom:28%;left:28%}.pin-4{bottom:21%;right:34%}.pin-5{top:18%;right:39%}

.media-section__head{width:var(--container);margin:0 auto 60px;display:grid;grid-template-columns:1fr 1fr;gap:35px}
.media-section__head .section-kicker{grid-column:1/-1}
.media-section__head p{align-self:end;color:var(--muted);line-height:1.7;max-width:470px;justify-self:end}
.media-swiper{overflow:visible}
.media-slide{
  width:min(76vw,920px)!important;aspect-ratio:16/9;border-radius:26px;background:#d2d0ca center/cover no-repeat;
  display:flex;align-items:flex-end;padding:28px;font-family:"Space Grotesk";font-size:28px;font-weight:700
}
.media-slide--1{background-image:linear-gradient(135deg,#c5c1b7,#7f817c)}
.media-slide--2{background-image:linear-gradient(135deg,#aea99e,#6b6861)}
.media-slide--3{background-image:linear-gradient(135deg,#c2c4c1,#737873)}
.media-slide--4{background-image:linear-gradient(135deg,#beb7ae,#736b65)}
.media-swiper__controls{display:flex;align-items:center;gap:18px;margin-top:28px}
.media-swiper__controls button{width:50px;height:50px;border-radius:50%;border:1px solid var(--line);background:transparent;cursor:pointer}
.swiper-pagination{position:static!important;width:auto!important;color:var(--muted)}

.contact{padding-bottom:90px}
.contact__grid{display:grid;grid-template-columns:1.5fr 1fr;align-items:end;gap:80px}
.contact__actions{display:flex;align-items:center;gap:28px;justify-self:end}
.site-footer{background:#0b0b0b;color:white;border-top:1px solid var(--light-line);padding:26px 0 34px}
.site-footer__grid{display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center}
.brand--footer .brand__symbol{width:32px;height:32px}
.site-footer p{font-size:11px;letter-spacing:.08em;color:rgba(255,255,255,.48);margin:0}
.site-footer p:nth-child(2){text-align:center}
.site-footer p:last-child{text-align:right}

@media (max-width: 1000px){
  :root{--container:calc(100vw - 38px)}
  .section{padding:100px 0}
  .desktop-nav,.header-cta{display:none}
  .site-header{grid-template-columns:1fr auto;padding:0 20px}
  .menu-toggle{display:block;justify-self:end}
  .mobile-menu{display:block}
  .hero__content{padding-bottom:110px}
  .hero__title{font-size:clamp(58px,13vw,110px)}
  .hero__meta{left:20px;right:20px}
  .intro__grid,.global__grid,.contact__grid,.projects__head,.media-section__head{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}
  .stat-card:nth-child(2){border-right:0}
  .technologies__heading{grid-template-columns:1fr}
  .technologies__heading p{justify-self:start}
  .tech-track-wrap{padding-left:19px}
  .tech-card{width:82vw;height:640px}
  .project-item{grid-template-columns:190px 1fr auto;gap:26px}
  .projects__head p,.media-section__head p{justify-self:start}
  .contact__actions{justify-self:start}
}
@media (max-width: 680px){
  .hero{min-height:680px}
  .hero__title{font-size:clamp(50px,16vw,82px)}
  .hero__lead{font-size:16px}
  .hero__actions{align-items:flex-start;flex-direction:column}
  .hero__meta span:last-child{display:none}
  .stats{grid-template-columns:1fr}
  .stat-card:not(:last-child){border-right:0;border-bottom:1px solid var(--line)}
  .tech-card{width:88vw;height:560px}
  .tech-card__body{inset:auto 24px 24px}
  .project-item{grid-template-columns:1fr;gap:18px}
  .project-item__arrow{position:absolute;right:4px;bottom:32px}
  .manifesto__copy h2{font-size:clamp(46px,14vw,80px)}
  .world-visual{height:430px}
  .media-slide{width:88vw!important}
  .contact__actions{align-items:flex-start;flex-direction:column}
  .site-footer__grid{grid-template-columns:1fr;gap:22px}
  .site-footer p:nth-child(2),.site-footer p:last-child{text-align:left}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}
