/* =========================================================
   RIBŪTO
   Proyectos que laten
   HTML / CSS / JS
   ========================================================= */

:root {
  --black: #090909;
  --black-soft: #111111;
  --black-card: #151515;

  --white: #ffffff;
  --paper: #f2f0ea;

  --text: #f4f4f0;
  --muted: rgba(255,255,255,.55);
  --muted-dark: rgba(0,0,0,.56);

  --red: #ec1c24;
  --red-dark: #a30e14;

  --line: rgba(255,255,255,.12);
  --line-dark: rgba(0,0,0,.12);

  --container: 1380px;

  --ease:
    cubic-bezier(.22,.8,.22,1);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;

  background: var(--black);
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;

  overflow-x: hidden;
}

@supports (overflow: clip) {

  html,
  body {
    overflow-x: clip;
  }

}

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

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

::selection {
  background: var(--red);
  color: white;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
  width: min(
    calc(100% - 50px),
    var(--container)
  );

  margin: auto;
}

.display {
  margin: 0;

  font-size:
    clamp(68px, 11vw, 175px);

  font-weight: 900;

  letter-spacing: -.075em;

  line-height: .82;

  text-transform: uppercase;
}

.display-small {
  font-size:
    clamp(50px, 7vw, 110px);
}

.eyebrow {
  margin: 0;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .24em;

  text-transform: uppercase;

  color: var(--muted);
}

.section-title {
  margin-top: 18px;
}

.eyebrow-dark {
  color: rgba(0,0,0,.45);
}

.eyebrow-dark-muted {
  color: rgba(0,0,0,.4);
}

.eyebrow-light {
  color: rgba(255,255,255,.62);
}

.reveal {
  opacity: 0;

  transform:
    translateY(40px);

  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* =========================================================
   GRAIN
   ========================================================= */

body::before {
  content: "";

  position: fixed;

  inset: 0;

  z-index: 9999;

  pointer-events: none;

  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}


/* =========================================================
   CURSOR
   ========================================================= */

.cursor {
  position: fixed;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  border:
    1px solid rgba(255,255,255,.8);

  z-index: 10000;

  pointer-events: none;

  left: 0;
  top: 0;

  transform:
    translate(-50%,-50%)
    translate3d(
      var(--cx,-100px),
      var(--cy,-100px),
      0
    );

  transition:
    width .25s ease,
    height .25s ease,
    background .25s ease;
}

body.cursor-big .cursor {
  width: 55px;
  height: 55px;

  background:
    rgba(255,255,255,.08);

  backdrop-filter:
    blur(5px);
}


/* =========================================================
   HEADER
   ========================================================= */

header {
  position: fixed;

  left: 0;
  right: 0;
  top: 0;

  z-index: 1000;

  padding:
    24px 0;

  mix-blend-mode:
    difference;
}

.header-inner {
  display: flex;

  justify-content:
    space-between;

  align-items:
    center;

  gap: 30px;
}

.brand img {
  width: 142px;

  height: auto;

  filter:
    brightness(0)
    invert(1);
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 10px;

  letter-spacing: .16em;

  font-weight: 700;

  text-transform: uppercase;

  opacity: .68;

  transition:
    opacity .2s ease;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100svh;

  position: relative;

  display: flex;

  align-items:
    flex-end;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(236,28,36,.20),
      transparent 33%
    ),
    var(--black);
}

.hero-grid {
  position: absolute;

  inset: 0;

  opacity: .15;

  background-image:
    linear-gradient(
      rgba(255,255,255,.1) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.1) 1px,
      transparent 1px
    );

  background-size:
    80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent 5%,
      black 45%,
      transparent 100%
    );
}

.hero-circle {
  position: absolute;

  width:
    min(55vw, 790px);

  aspect-ratio: 1;

  right: -13vw;
  top: -5vw;

  border-radius: 50%;

  border:
    1px solid rgba(255,255,255,.07);
}

.hero-circle::before,
.hero-circle::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  border:
    1px solid rgba(255,255,255,.06);
}

.hero-circle::before {
  inset: 17%;
}

.hero-circle::after {
  inset: 34%;
}

.hero-inner {
  position: relative;

  z-index: 2;

  width: 100%;

  padding:
    160px 0
    52px;
}

.hero-logo {
  margin-bottom: 40px;
}

.hero-logo img {
  width:
    min(230px, 55vw);

  filter:
    brightness(0)
    invert(1);
}

.hero-title {
  max-width:
    1300px;
}

.hero-title .outline {
  display: block;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,.75);

  margin-left:
    14vw;
}

.hero-bottom {
  margin-top: 55px;

  padding-top: 28px;

  border-top:
    1px solid var(--line);

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 40px;

  align-items: end;
}

.hero-bottom > *,
.services-header > *,
.approach-grid > *,
.case-bottom > *,
.portfolio-preview-head > *,
.portfolio-preview-grid > *,
.method-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 520px;

  margin: 0;

  font-size:
    clamp(17px,1.7vw,23px);

  line-height: 1.5;

  color:
    rgba(255,255,255,.65);
}

.hero-copy strong {
  color: white;
}

.scroll-down {
  justify-self: end;

  display: flex;

  align-items: center;

  gap: 16px;

  font-size: 9px;

  letter-spacing: .2em;

  text-transform: uppercase;

  color: var(--muted);
}

.scroll-line {
  width: 70px;
  height: 1px;

  background:
    rgba(255,255,255,.3);

  position: relative;

  overflow: hidden;
}

.scroll-line::after {
  content: "";

  position: absolute;

  width: 100%;
  height: 1px;

  left: -100%;

  background: white;

  animation:
    line 2s infinite;
}

@keyframes line {
  to {
    left: 100%;
  }
}


/* =========================================================
   MANIFESTO / SCROLLORAMA
   ========================================================= */

.manifesto {
  min-height: 190vh;

  background:
    var(--paper);

  color:
    #0b0b0b;

  position: relative;
}

.manifesto-sticky {
  position: sticky;

  top: 0;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;
}

.manifesto-index {
  position: absolute;

  top: 40px;
  right: 40px;

  font-size: 9px;

  letter-spacing: .22em;

  text-transform: uppercase;

  color:
    rgba(0,0,0,.4);
}

.manifesto-copy {
  width:
    min(1250px,90vw);

  margin: auto;
}

.manifesto-line {
  margin: 0;

  font-size:
    clamp(51px,8.5vw,135px);

  font-weight: 900;

  line-height: .88;

  letter-spacing: -.07em;

  text-transform: uppercase;

  will-change:
    transform,
    opacity;
}

.manifesto-line.muted {
  color:
    rgba(0,0,0,.15);
}

.manifesto-line.red {
  color:
    var(--red);
}


/* =========================================================
   MARQUEE
   ========================================================= */

.marquee {
  background:
    var(--red);

  color: white;

  overflow: hidden;

  padding:
    13px 0;
}

.marquee-track {
  display: flex;

  width:
    max-content;

  animation:
    marquee 21s
    linear infinite;
}

.marquee span {
  white-space:
    nowrap;

  padding-right:
    40px;

  font-weight: 800;

  font-size: 14px;

  letter-spacing: .09em;

  text-transform: uppercase;
}

@keyframes marquee {
  to {
    transform:
      translateX(-50%);
  }
}


/* =========================================================
   WHAT WE DO
   ========================================================= */

.services {
  padding:
    160px 0;

  background:
    var(--black);
}

.services-header {
  display: grid;

  grid-template-columns:
    minmax(0,1.35fr) minmax(0,.65fr);

  gap: 80px;

  align-items: end;

  margin-bottom:
    90px;
}

.services-desc {
  max-width: 430px;

  margin: 0;

  font-size: 15px;

  line-height: 1.8;

  color: var(--muted);
}

.service {
  display: grid;

  grid-template-columns:
    70px 1fr auto;

  gap: 30px;

  align-items: center;

  min-height: 128px;

  border-top:
    1px solid var(--line);

  position: relative;

  overflow: hidden;

  cursor: default;

  transition:
    color .4s ease;
}

.service:last-child {
  border-bottom:
    1px solid var(--line);
}

.service::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    var(--paper);

  transform:
    translateY(101%);

  transition:
    transform .5s
    var(--ease);
}

.service > * {
  position: relative;
  z-index: 2;
}

.service-num {
  font-size: 10px;

  opacity: .45;
}

.service-name {
  margin: 0;

  font-size:
    clamp(35px,5vw,72px);

  line-height: 1;

  letter-spacing: -.055em;

  font-weight: 800;

  text-transform: uppercase;
}

.service-arrow {
  font-size: 35px;

  transform:
    rotate(-45deg);

  transition:
    transform .4s ease;
}


/* =========================================================
   APPROACH
   ========================================================= */

.approach {
  background:
    var(--paper);

  color:
    #0b0b0b;

  padding:
    170px 0;
}

.approach-grid {
  display: grid;

  grid-template-columns:
    minmax(0,.8fr) minmax(0,1.2fr);

  gap: 10vw;
}

.approach-copy {
  padding-top: 30px;
}

.approach-copy p {
  max-width: 520px;

  font-size: 17px;

  line-height: 1.85;

  color:
    var(--muted-dark);
}

.approach-lead {
  margin:
    0 0 45px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-style: italic;

  font-size:
    clamp(27px,3vw,46px) !important;

  line-height: 1.25 !important;

  color:
    #111 !important;
}


/* =========================================================
   CASES / PROJECTS
   ========================================================= */

.work {
  background:
    #050505;
}

.work-header {
  padding:
    150px 0
    70px;
}

.case {
  min-height:
    92svh;

  position: relative;

  display: flex;

  align-items:
    flex-end;

  overflow: hidden;

  border-top:
    1px solid var(--line);
}

.case-bg {
  position: absolute;

  inset: -10%;

  background:
    radial-gradient(
      circle at 65% 40%,
      rgba(236,28,36,.23),
      transparent 32%
    ),
    linear-gradient(
      120deg,
      #121212 0%,
      #050505 65%
    );

  will-change:
    transform;
}

.case:nth-child(even)
.case-bg {
  background:
    radial-gradient(
      circle at 25% 25%,
      rgba(255,255,255,.07),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #1b1b1b,
      #050505 70%
    );
}

.case-number-bg {
  position: absolute;

  right: 2vw;

  top: 50%;

  transform:
    translateY(-50%);

  font-size:
    clamp(200px,34vw,580px);

  font-weight: 900;

  letter-spacing: -.1em;

  line-height: 1;

  color:
    rgba(255,255,255,.025);
}

.case-content {
  width: 100%;

  position: relative;

  z-index: 2;

  padding:
    100px 0
    55px;
}

.case-meta {
  display: flex;

  justify-content:
    space-between;

  gap: 25px;

  margin-bottom:
    25px;

  font-size: 9px;

  letter-spacing: .18em;

  text-transform: uppercase;

  color: var(--muted);
}

.case-title {
  font-size:
    clamp(60px,11vw,165px);

  max-width:
    1100px;
}

.case-bottom {
  display: grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap: 50px;

  margin-top:
    55px;

  padding-top:
    26px;

  border-top:
    1px solid var(--line);
}

.case-bottom p {
  margin: 0;

  max-width:
    500px;

  line-height: 1.75;

  font-size: 14px;

  color: var(--muted);
}

.case-tags {
  display: flex;

  flex-wrap: wrap;

  justify-content:
    flex-end;

  align-content:
    flex-start;

  gap: 7px;
}

.tag {
  border:
    1px solid rgba(255,255,255,.2);

  border-radius:
    99px;

  padding:
    8px 13px;

  font-size: 9px;

  letter-spacing: .1em;

  text-transform:
    uppercase;

  color:
    rgba(255,255,255,.65);
}



/* =========================================================
   PORTFOLIO PREVIEW
   ========================================================= */

.portfolio-preview {
  background: #050505;
  padding: 150px 0 165px;
  border-top: 1px solid var(--line);
}

.portfolio-preview-head {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 70px;
}

.portfolio-preview-copy {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.portfolio-preview-card {
  min-height: 430px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
  container-type: inline-size;
}

.portfolio-preview-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -160px;
  top: -170px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .55s var(--ease);
}

.portfolio-preview-card > * {
  position: relative;
  z-index: 2;
}

.portfolio-preview-index {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.portfolio-preview-card h3 {
  margin: auto 0 0;
  max-width: 100%;
  font-size: clamp(30px, 13.2cqi, 60px);
  font-weight: 850;
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.portfolio-preview-card p {
  margin: 22px 0 0;
  max-width: 340px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.portfolio-preview-arrow {
  margin-top: 32px;
  font-size: 28px;
  transform: rotate(-45deg);
  transform-origin: left center;
  transition: transform .35s var(--ease);
}

.portfolio-preview-cta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portfolio-link-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.portfolio-preview-note {
  margin: 0;
  max-width: 440px;
  text-align: right;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-preview-card:hover {
    background: var(--red);
  }

  .portfolio-preview-card:hover::before {
    transform: scale(1.2);
  }

  .portfolio-preview-card:hover .portfolio-preview-index,
  .portfolio-preview-card:hover p {
    color: rgba(255,255,255,.78);
  }

  .portfolio-preview-card:hover .portfolio-preview-arrow {
    transform: rotate(0);
  }

  .portfolio-link:hover .portfolio-link-icon {
    background: white;
    color: var(--red);
    transform: rotate(45deg);
  }
}

@media (min-width:768px) and (max-width:1023px) {
  .portfolio-preview {
    padding: 110px 0;
  }

  .portfolio-preview-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-preview-card {
    min-height: 280px;
  }
}

@media (max-width:767px) {
  .portfolio-preview {
    padding: 90px 0;
  }

  .portfolio-preview-head {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 50px;
  }

  .portfolio-preview-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-preview-card {
    min-height: 260px;
    padding: 24px;
  }

  .portfolio-preview-card h3 {
    font-size: clamp(28px, 8.5vw, 42px);
  }

  .portfolio-preview-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-preview-note {
    text-align: left;
  }
}


/* =========================================================
   METHOD
   ========================================================= */

.method {
  padding:
    170px 0;

  background:
    var(--black);
}

.method-header {
  max-width:
    1000px;

  margin-bottom:
    90px;
}

.method-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  border-top:
    1px solid var(--line);

  border-left:
    1px solid var(--line);
}

.step {
  min-height:
    280px;

  padding:
    30px;

  border-right:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  display: flex;

  flex-direction:
    column;

  justify-content:
    space-between;

  transition:
    background .3s ease;
}

.step-number {
  font-size: 10px;

  opacity: .5;
}

.step-name {
  margin: 0;

  font-size:
    clamp(30px,3vw,48px);

  font-weight: 800;

  letter-spacing: -.05em;

  text-transform:
    uppercase;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.statement {
  min-height:
    100svh;

  position: relative;

  display: flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    var(--paper);

  color:
    #0a0a0a;

  overflow: hidden;
}

.statement-circle {
  position: absolute;

  width:
    min(75vw,950px);

  aspect-ratio: 1;

  border-radius: 50%;

  border:
    1px solid rgba(0,0,0,.1);
}

.statement-circle::before,
.statement-circle::after {
  content:"";

  position:absolute;

  border:
    1px solid rgba(0,0,0,.07);

  border-radius:50%;
}

.statement-circle::before {
  inset:18%;
}

.statement-circle::after {
  inset:36%;
}

.statement-inner {
  position: relative;

  z-index: 2;

  width:
    min(1100px,90vw);

  text-align:
    center;
}

.statement h2 {
  margin:
    25px 0 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;

  font-style: italic;

  font-size:
    clamp(42px,7vw,102px);

  line-height: 1.04;

  letter-spacing:
    -.045em;
}

.statement strong {
  color:
    var(--red);

  font-weight:
    inherit;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  min-height:
    100svh;

  display: flex;

  align-items:
    center;

  background:
    var(--red);

  color:
    white;

  overflow:
    hidden;
}

.cta-inner {
  width: 100%;

  padding:
    140px 0 70px;
}

.cta-logo img {
  width:
    min(170px,45vw);

  margin-bottom:
    45px;

  filter:
    brightness(0)
    invert(1);
}

.cta-title {
  font-size:
    clamp(65px,12.5vw,190px);
}

.cta-title span {
  display: block;
}

.cta-title .outline {
  color: transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,.75);

  margin-left:
    11vw;
}

.cta-bottom {
  display: flex;

  justify-content:
    space-between;

  align-items:
    center;

  gap: 30px;

  margin-top:
    60px;

  padding-top:
    30px;

  border-top:
    1px solid rgba(255,255,255,.35);
}

.cta-button {
  display: inline-flex;

  align-items:
    center;

  gap: 15px;

  font-weight:
    700;

  font-size:
    14px;

  text-transform:
    uppercase;

  letter-spacing:
    .07em;
}

.cta-icon {
  width: 52px;
  height: 52px;

  border-radius:
    50%;

  border:
    1px solid rgba(255,255,255,.7);

  display:
    grid;

  place-items:
    center;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

.cta-copy {
  max-width:
    400px;

  margin: 0;

  font-size: 13px;

  line-height: 1.6;

  color:
    rgba(255,255,255,.7);

  text-align:
    right;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding:
    40px 0;

  background:
    #050505;

  color:
    rgba(255,255,255,.45);
}

.footer-inner {
  display: flex;

  justify-content:
    space-between;

  gap: 20px;

  font-size: 9px;

  letter-spacing: .14em;

  text-transform:
    uppercase;
}


/* =========================================================
   INTERACTION CAPABILITIES
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

  nav a:hover {
    opacity: 1;
  }

  .service:hover::before {
    transform: none;
  }

  .service:hover {
    color: #0a0a0a;
  }

  .service:hover .service-arrow {
    transform: rotate(0);
  }

  .step:hover {
    background: var(--red);
  }

  .cta-button:hover .cta-icon {
    background: white;
    color: var(--red);
    transform: rotate(45deg);
  }

}

@media (hover: none), (pointer: coarse) {

  .cursor {
    display: none;
  }

  .service::before {
    display: none;
  }

}


/* =========================================================
   LARGE DESKTOP / LAPTOP
   ========================================================= */

@media (min-width:1440px) {

  .container {
    width: min(calc(100% - 80px), var(--container));
  }

}

@media (min-width:1024px) and (max-width:1439px) {

  .services,
  .method {
    padding: 135px 0;
  }

  .approach {
    padding: 145px 0;
  }

  .services-header {
    gap: 55px;
  }

  .approach-grid {
    gap: 7vw;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width:768px) and (max-width:1023px) {

  .container {
    width: calc(100% - 48px);
  }

  header {
    padding: 20px 0;
  }

  .brand img {
    width: 122px;
  }

  nav {
    gap: 17px;
  }

  nav a {
    font-size: 8px;
    letter-spacing: .12em;
  }

  .hero-inner {
    padding: 130px 0 42px;
  }

  .hero-title {
    font-size: clamp(68px, 13vw, 100px);
  }

  .hero-title .outline {
    margin-left: 7vw;
  }

  .hero-bottom {
    margin-top: 42px;
  }

  .manifesto {
    min-height: 165vh;
  }

  .manifesto-copy {
    width: calc(100% - 70px);
  }

  .manifesto-line {
    font-size: clamp(52px, 10.4vw, 86px);
  }

  .services,
  .approach,
  .method {
    padding: 110px 0;
  }

  .services-header {
    grid-template-columns: 1.15fr .85fr;
    gap: 45px;
    margin-bottom: 60px;
  }

  .service {
    grid-template-columns: 48px minmax(0,1fr) 34px;
    gap: 18px;
    min-height: 108px;
  }

  .service-name {
    font-size: clamp(32px, 5.6vw, 54px);
  }

  .approach-grid {
    gap: 7vw;
  }

  .work-header {
    padding: 115px 0 60px;
  }

  .case {
    min-height: 82svh;
  }

  .case-title {
    font-size: clamp(62px, 10.5vw, 92px);
  }

  .case-content {
    padding: 90px 0 45px;
  }

  .method-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .step {
    min-height: 220px;
    padding: 25px;
  }

  .statement-inner {
    width: calc(100% - 70px);
  }

  .cta-title {
    font-size: clamp(78px, 13vw, 118px);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:767px) {

  :root {
    --mobile-header-height: 72px;
  }

  .container {
    width: calc(100% - 30px);
  }

  header {
    height: var(--mobile-header-height);
    padding: 0;
    display: flex;
    align-items: center;
    mix-blend-mode: normal;
    background: var(--black);
  }

  main section {
    scroll-margin-top: var(--mobile-header-height);
  }

  .brand img {
    width: 115px;
  }

  nav {
    display: none;
  }

  .hero-inner {
    padding: 105px 0 30px;
  }

  .hero-logo img {
    width: 160px;
  }

  .display {
    font-size: clamp(45px, 15vw, 88px);
    line-height: .86;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(44px, 15.5vw, 96px);
    overflow-wrap: anywhere;
  }

  .hero-title span {
    width: 100%;
  }

  .hero-title .outline {
    margin-left: 0;
  }

  .hero-bottom {
    grid-template-columns: 1fr;

    gap: 28px;

    margin-top: 35px;
  }

  .hero-copy {
    font-size: clamp(15px, 4.3vw, 19px);
    line-height: 1.55;
  }

  .scroll-down {
    justify-self:
      start;
  }

  .manifesto {
    min-height: 125svh;
  }

  .manifesto-sticky {
    position: sticky;
    top: 0;
    min-height: calc(100svh - var(--mobile-header-height));
    padding: var(--mobile-header-height) 0 24px;
  }

  .manifesto-copy {
    width: calc(100% - 30px);
  }

  .manifesto-line {
    max-width: 100%;
    font-size: clamp(36px, 11.5vw, 70px);
    line-height: .94;
    letter-spacing: -.055em;
    overflow-wrap: anywhere;
  }

  .manifesto-index {
    top: calc(var(--mobile-header-height) + 14px);
    right: 15px;
  }

  .services {
    padding: 90px 0;
  }

  .services-header {
    grid-template-columns: 1fr;

    gap: 35px;

    margin-bottom: 55px;
  }

  .service {
    grid-template-columns: 27px minmax(0,1fr) 24px;

    gap: 10px;

    min-height: 95px;
  }

  .service-name {
    min-width: 0;
    font-size: clamp(23px, 7.2vw, 42px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .service-arrow {
    font-size: 27px;
  }

  .approach {
    padding: 90px 0;
  }

  .approach-grid {
    grid-template-columns:
      1fr;

    gap: 50px;
  }

  .case {
    min-height: auto;
  }

  .case-content {
    padding: 90px 0 38px;
  }

  .case-meta {
    flex-direction:
      column;

    gap: 8px;
  }

  .case-title {
    max-width: 100%;
    font-size: clamp(43px, 13.5vw, 82px);
    line-height: .88;
    overflow-wrap: anywhere;
  }

  .case-title br {
    display: none;
  }

  .case-bottom {
    grid-template-columns:
      1fr;

    gap: 30px;
  }

  .case-tags {
    justify-content:
      flex-start;
  }

  .case-number-bg {
    right: -2vw;
    font-size: clamp(150px, 58vw, 330px);
  }

  .work-header .display {
    max-width: 100%;
    font-size: clamp(38px, 12.5vw, 58px);
    line-height: .9;
    letter-spacing: -.065em;
    white-space: normal;
  }

  .method {
    padding: 90px 0;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 145px;

    padding: 22px;
  }

  .statement {
    min-height: auto;
    padding: 115px 0;
  }

  .statement-circle {
    width: min(105vw, 680px);
  }

  .statement-inner {
    width: calc(100% - 30px);
  }

  .statement h2 {
    font-size: clamp(35px, 10.5vw, 64px);
  }

  .cta-inner {
    padding:
      100px 0
      45px;
  }

  .cta-title {
    max-width: 100%;
    font-size: clamp(48px, 15.5vw, 92px);
    line-height: .86;
  }

  .cta-title .outline {
    margin-left: 0;
  }

  .cta-bottom {
    flex-direction:
      column;

    align-items:
      flex-start;

    margin-top: 45px;
  }

  .cta-copy {
    text-align:
      left;
  }

  .footer-inner {
    flex-direction:
      column;
  }

}

@media (min-width:481px) and (max-width:767px) {

  .container {
    width: calc(100% - 40px);
  }

  .manifesto-copy,
  .statement-inner {
    width: calc(100% - 40px);
  }

  .hero-title {
    font-size: clamp(60px, 15.5vw, 96px);
  }

  .service-name {
    font-size: clamp(29px, 7vw, 42px);
  }

}

@media (max-width:480px) {

  .hero-logo img {
    width: 140px;
  }

  .hero-circle {
    width: 78vw;
    right: -28vw;
    top: 8vh;
  }

  .hero-grid {
    background-size: 52px 52px;
  }

  .scroll-line {
    width: 52px;
  }

  .marquee {
    padding: 10px 0;
  }

  .marquee span {
    padding-right: 28px;
    font-size: 11px;
  }

  .approach-lead {
    margin-bottom: 32px;
    font-size: clamp(25px, 8.5vw, 38px) !important;
  }

  .work-header {
    padding: calc(var(--mobile-header-height) + 28px) 0 45px;
  }

  .case-bottom {
    margin-top: 38px;
  }

  .cta-inner {
    padding-top: 90px;
  }

  .cta-logo img {
    margin-bottom: 34px;
  }

  .cta-button {
    font-size: 12px;
  }

  .cta-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .footer-inner {
    line-height: 1.6;
  }


}

.back-to-top {
  position: fixed;
  right: clamp(15px, 2vw, 32px);
  bottom: clamp(15px, 2vw, 32px);
  width: 52px;
  height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(9,9,9,.78);
  color: white;
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease,
    background .3s ease,
    border-color .3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  background: var(--red);
  border-color: var(--red);
}

.back-to-top:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}

@media (max-width:767px) {
  .back-to-top {
    width: 46px;
    height: 46px;
  }
}

@media(prefers-reduced-motion:reduce) {

  * {
    scroll-behavior:
      auto !important;

    animation-duration:
      .01ms !important;

    transition-duration:
      .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}
