:root {
  --ink: #142522;
  --mint: #caff62;
  --cream: #f4f1e9;
  --orange: #ff6846;
  --line: #c9cec5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
nav {
  height: 82px;
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font: 800 22px Manrope;
}
.brand span {
  color: #5d6d66;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.nav-cta {
  background: var(--ink);
  color: white;
  padding: 13px 20px;
  border-radius: 4px;
}
.hero {
  max-width: 1240px;
  margin: auto;
  min-height: 650px;
  padding: 75px 28px 62px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 70px;
}
.eyebrow,
.kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
}
.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
}
.eyebrow i {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}
.hero h1 {
  font: 800 clamp(58px, 7.2vw, 104px) / 0.89 Manrope;
  margin: 30px 0 25px;
  letter-spacing: -6px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-copy > p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 520px;
  color: #52615d;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 35px 0;
}
.button {
  display: inline-flex;
  background: var(--ink);
  color: white;
  padding: 18px 23px;
  font-weight: 700;
  border-radius: 4px;
  gap: 30px;
}
.button span {
  color: var(--mint);
}
.text-link {
  font-weight: 700;
  border-bottom: 1px solid;
}
.proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatars {
  display: flex;
}
.avatars b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dde3da;
  border: 2px solid var(--cream);
  font-size: 9px;
  margin-left: -7px;
}
.avatars b:first-child {
  margin: 0;
  background: var(--mint);
}
.proof > div:last-child {
  display: grid;
}
.proof strong {
  font-size: 13px;
}
.proof span {
  font-size: 11px;
  color: #74807c;
}
.hero-art {
  height: 510px;
  background: var(--ink);
  border-radius: 150px 150px 12px 12px;
  position: relative;
  overflow: hidden;
}
.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 78px solid var(--mint);
  border-radius: 50%;
  right: -120px;
  top: 70px;
}
.case-card {
  position: absolute;
  box-shadow: 0 20px 50px #07120f55;
}
.card-one {
  width: 290px;
  height: 330px;
  background: #e4d7cb;
  left: 55px;
  top: 65px;
  padding: 30px;
  transform: rotate(-5deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-one small {
  font-size: 9px;
  letter-spacing: 2px;
}
.case-logo {
  font: 700 43px Manrope;
  letter-spacing: 5px;
}
.case-logo span {
  color: var(--orange);
}
.card-one p {
  font-size: 11px;
}
.card-two {
  background: white;
  width: 270px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  right: 25px;
  bottom: 38px;
  transform: rotate(4deg);
}
.tiny-mark {
  background: var(--orange);
  color: white;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font: 700 25px Manrope;
}
.card-two div:last-child {
  display: grid;
  font-size: 12px;
}
.card-two span {
  font-size: 9px;
  color: #7d8582;
}
.float-tag {
  position: absolute;
  top: 25px;
  right: 22px;
  background: var(--mint);
  padding: 12px 15px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(5deg);
}
.client-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px max(28px, calc((100vw - 1184px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #5e6c68;
}
.client-strip span {
  font-size: 11px;
}
.client-strip b {
  font: 700 13px Manrope;
  letter-spacing: 1px;
}
.work,
.process,
.brief {
  max-width: 1240px;
  margin: auto;
  padding: 110px 28px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-head h2,
.process h2,
.brief h2 {
  font: 700 clamp(40px, 5vw, 66px) / 1.05 Manrope;
  letter-spacing: -3px;
  margin: 18px 0;
}
.section-head p {
  max-width: 420px;
  color: #65716e;
  line-height: 1.7;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 60px;
}
.project {
  height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
}
.project footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.project footer span {
  opacity: 0.65;
}
.project-mark {
  margin: auto;
  font: 700 38px Manrope;
}
.p1 {
  background: #304e46;
  color: white;
}
.p2 {
  background: #ff7654;
}
.p2 .project-mark {
  font-size: 60px;
  font-weight: 600;
}
.p3 {
  background: #d8ee88;
  grid-column: 1/-1;
  height: 250px;
}
.p3 .project-mark span {
  color: #ff6846;
}
.process {
  background: var(--ink);
  max-width: none;
  color: white;
  padding-left: max(28px, calc((100vw - 1184px) / 2));
  padding-right: max(28px, calc((100vw - 1184px) / 2));
}
.process .kicker {
  color: var(--mint);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
}
.steps article {
  padding: 30px 45px 20px 0;
  border-top: 1px solid #52615d;
}
.steps i {
  font-style: normal;
  color: var(--mint);
  font-size: 12px;
}
.steps h3 {
  font: 600 22px Manrope;
  margin-top: 40px;
}
.steps p {
  color: #aeb9b5;
  line-height: 1.7;
  font-size: 14px;
}
.brief {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 80px;
  align-items: center;
}
.brief > div p {
  color: #6c7774;
}
.lead-form {
  background: white;
  padding: 32px;
  box-shadow: 0 25px 70px #1d33291a;
  display: grid;
  gap: 17px;
}
.lead-form label {
  font-size: 11px;
  font-weight: 700;
  display: grid;
  gap: 7px;
}
.lead-form input,
.lead-form textarea {
  border: 1px solid #d8dcd5;
  padding: 13px;
  font: 14px "DM Sans";
  background: #fafaf7;
}
.lead-form textarea {
  resize: vertical;
  min-height: 70px;
}
.lead-form button {
  border: 0;
  background: var(--orange);
  color: white;
  padding: 17px;
  font-weight: 700;
  cursor: pointer;
}
.lead-form button:disabled {
  background: #3d695b;
}
.lead-form small {
  text-align: center;
  color: #7a8581;
  font-size: 10px;
}
.site-footer {
  max-width: 1184px;
  margin: auto;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 800px) {
  .nav-links > a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }
  .hero h1 {
    letter-spacing: -4px;
  }
  .hero-art {
    height: 430px;
  }
  .client-strip {
    overflow: hidden;
  }
  .client-strip b:nth-last-child(-n + 2) {
    display: none;
  }
  .section-head,
  .brief {
    display: block;
  }
  .section-head p {
    margin-top: 25px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .p3 {
    grid-column: auto;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .brief form {
    margin-top: 45px;
  }
  .site-footer {
    margin: 0 28px;
  }
  .site-footer p {
    display: none;
  }
}
@media (max-width: 500px) {
  .hero-art {
    height: 380px;
  }
  .card-one {
    left: 25px;
    top: 55px;
    width: 240px;
    height: 280px;
  }
  .card-two {
    right: -35px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .project footer {
    gap: 10px;
    flex-direction: column;
  }
}
