:root {
  --ink: #17251f;
  --muted: #607068;
  --paper: #f4f2e9;
  --white: #fffdf7;
  --lime: #d9f272;
  --orange: #f09061;
  --line: rgba(23, 37, 31, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .9rem;
  font-weight: 650;
}

nav a:hover {
  opacity: .62;
}

.nav-cta {
  padding: 11px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  padding: 60px 0 110px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  font-weight: 750;
  letter-spacing: -.075em;
  line-height: .92;
}

.lead {
  max-width: 610px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(23, 37, 31, .12);
}

.primary {
  color: var(--white);
  background: var(--ink);
}

.hero-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 48% 48% 12% 48%;
  background: #243a31;
  isolation: isolate;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  top: -14%;
  right: -16%;
  width: 76%;
  aspect-ratio: 1;
  background: var(--lime);
}

.orb-two {
  bottom: -30%;
  left: -20%;
  width: 85%;
  aspect-ratio: 1;
  background: var(--orange);
}

.glass-card {
  position: absolute;
  right: 8%;
  bottom: 10%;
  left: 8%;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 160px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 24px;
  color: var(--white);
  background: rgba(18, 31, 25, .5);
  backdrop-filter: blur(18px);
}

.mini-label {
  grid-column: 1 / -1;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  opacity: .7;
  text-transform: uppercase;
}

.glass-card strong {
  align-self: end;
  font-size: 1.7rem;
  line-height: 1.05;
}

.arrow {
  align-self: end;
  font-size: 2rem;
}

.services {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 40px;
  margin-bottom: 70px;
}

.section-heading h2,
.statement h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.02;
}

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

.service-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 247, .45);
}

.number {
  display: inline-block;
  margin-bottom: 75px;
  color: var(--muted);
  font-size: .78rem;
}

.service-grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.statement {
  margin-bottom: 80px;
  padding: clamp(42px, 8vw, 100px);
  border-radius: 34px;
  color: var(--white);
  background: var(--ink);
}

.statement > p {
  color: var(--lime);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.statement h2 {
  margin: 30px 0 52px;
}

.statement a {
  display: inline-flex;
  gap: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  font-weight: 700;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 820px) {
  nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 50px;
  }

  .hero-art {
    min-height: 440px;
  }

  .section-heading,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .number {
    margin-bottom: 45px;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  footer {
    width: min(100% - 26px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .hero {
    padding: 45px 0 80px;
  }

  .hero-art {
    min-height: 360px;
  }

  .actions,
  .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
}

