
:root {
  --ink: #18201f;
  --paper: #f2efe7;
  --lime: #ccff5c;
  --violet: #7564ff;
  --orange: #ff6544;
  --line: rgba(24, 32, 31, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

.nav {
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  width: max-content;
}
.mark { width: 25px; height: 25px; display: inline-flex; gap: 2px; transform: rotate(-12deg); }
.mark i { flex: 1; border-radius: 99px; background: var(--ink); }
.mark i:nth-child(1) { height: 55%; margin-top: 45%; }
.mark i:nth-child(2) { height: 100%; }
.mark i:nth-child(3) { height: 72%; margin-top: 28%; }
.nav nav { display: flex; gap: 34px; font-size: 13px; font-weight: 700; }
.nav nav a { transition: opacity .2s; }
.nav nav a:hover { opacity: .55; }
.nav-cta {
  justify-self: end;
  background: var(--ink);
  color: white;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
}
.nav-cta span { color: var(--lime); margin-left: 12px; }

.hero {
  min-height: calc(100vh - 84px);
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 100px) 4vw 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eyebrow, .kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 800;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,101,68,.15); }
.hero h1 {
  font-size: clamp(82px, 15.5vw, 230px);
  line-height: .72;
  letter-spacing: -.09em;
  margin: 4vw 0;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero h1 em { color: var(--violet); margin-left: 18vw; }
.hero-bottom { display: flex; justify-content: space-between; align-items: end; position: relative; z-index: 3; }
.hero-bottom > p { max-width: 430px; margin: 0 0 5px; font-size: clamp(18px, 2vw, 26px); line-height: 1.35; letter-spacing: -.025em; }
.circle-link {
  width: 104px; height: 104px; border-radius: 50%; background: var(--lime);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  transition: transform .3s ease;
}
.circle-link:hover { transform: rotate(8deg) scale(1.05); }
.circle-link b { font-size: 23px; margin-top: 4px; }
.orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 45vw; height: 45vw; right: -12vw; top: 5%; }
.orbit-two { width: 28vw; height: 28vw; right: -2vw; top: 18%; }
.spark { position: absolute; width: 15px; height: 15px; background: var(--orange); border-radius: 50%; }
.spark-one { right: 14vw; top: 21%; }
.spark-two { right: 4vw; top: 58%; background: var(--violet); }

.intro {
  background: var(--lime);
  padding: clamp(75px, 10vw, 150px) 4vw;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5vw;
}
.statement { font-size: clamp(35px, 5.5vw, 80px); letter-spacing: -.055em; line-height: 1.04; max-width: 1200px; margin: 0; }
.statement em { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 8px; }
.section { padding: clamp(80px, 10vw, 150px) 4vw; }
.section-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; margin-bottom: 70px; }
.section h2 { font-size: clamp(50px, 7vw, 100px); line-height: .93; letter-spacing: -.065em; margin: 0; }
.service-list { border-top: 1px solid var(--line); }
.service-card {
  display: grid; grid-template-columns: 1fr 3fr auto; gap: 5vw;
  padding: 45px 0; border-bottom: 1px solid var(--line);
  transition: padding .25s, background .25s;
}
.service-card:hover { padding-left: 22px; padding-right: 22px; background: rgba(255,255,255,.35); }
.service-number { font-family: Georgia, serif; font-style: italic; color: var(--violet); font-size: 20px; }
.service-card h3 { margin: 0 0 12px; font-size: clamp(28px, 3.5vw, 52px); letter-spacing: -.04em; }
.service-card p { max-width: 560px; font-size: 17px; line-height: 1.55; color: #58605e; }
.service-card ul { display: flex; gap: 8px; padding: 0; margin: 24px 0 0; list-style: none; flex-wrap: wrap; }
.service-card li { border: 1px solid var(--line); border-radius: 99px; padding: 7px 12px; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; font-weight: 800; }
.card-arrow { font-size: 30px; }

.process { background: var(--ink); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.light { color: var(--lime); }
.process-copy h2 { margin: 34px 0; }
.process-copy h2 em { color: var(--lime); }
.process-copy > p:last-child { color: #a7afad; line-height: 1.6; max-width: 430px; font-size: 18px; }
.steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.2); }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.steps li > span { color: var(--lime); font-family: Georgia, serif; font-style: italic; }
.steps h3 { margin: 0 0 9px; font-size: 26px; }
.steps p { margin: 0; color: #a7afad; line-height: 1.5; max-width: 470px; }

.about { display: grid; grid-template-columns: 1fr 1.25fr; gap: 10vw; align-items: center; }
.about-shape {
  aspect-ratio: 1; border-radius: 50%; background: var(--violet);
  display: grid; place-items: center; position: relative;
}
.about-shape:before, .about-shape:after { content:""; position:absolute; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.about-shape:before { inset: 15%; }
.about-shape:after { inset: 30%; }
.about-shape .mark { width: 90px; height: 100px; gap: 8px; }
.about-shape .mark i { background: var(--lime); }
.about-copy h2 { margin: 34px 0; }
.about-copy > p { font-size: 18px; line-height: 1.6; color: #58605e; }
.principles { margin-top: 40px; border-top: 1px solid var(--line); }
.principles span { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.contact { background: var(--orange); padding: clamp(80px, 11vw, 160px) 4vw; position: relative; overflow: hidden; }
.contact h2 { font-size: clamp(78px, 14vw, 200px); line-height: .75; letter-spacing: -.09em; margin: 8vw 0; position: relative; z-index: 2; }
.contact h2 em { color: var(--paper); margin-left: 22vw; }
.contact > a { font-size: clamp(22px, 3vw, 42px); border-bottom: 2px solid currentColor; padding-bottom: 8px; position: relative; z-index: 2; }
.contact > a span { margin-left: 20px; }
.contact-orbit { position: absolute; width: 55vw; height: 55vw; border: 1px solid rgba(24,32,31,.3); border-radius: 50%; right: -14vw; top: -12vw; }
footer {
  background: var(--ink); color: white; padding: 55px 4vw 30px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: 40px; align-items: start;
}
.footer-brand .mark i { background: var(--lime); }
footer p { margin: 0; color: #a7afad; font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.copyright { align-self: end; }

.legal { max-width: 850px; margin: 0 auto; padding: 70px 24px 120px; }
.legal .brand { margin-bottom: 90px; }
.legal h1 { font-size: clamp(54px, 8vw, 100px); letter-spacing: -.07em; line-height: .9; margin-bottom: 60px; }
.legal h2 { margin-top: 44px; font-size: 24px; }
.legal p, .legal li { color: #58605e; line-height: 1.7; }

@media (max-width: 760px) {
  .nav { height: 70px; grid-template-columns: 1fr auto; padding: 0 20px; }
  .nav nav { display: none; }
  .nav-cta { padding: 10px 13px; }
  .nav-cta { font-size: 0; }
  .nav-cta:before { content: "Let’s talk"; font-size: 12px; }
  .hero { min-height: calc(100svh - 70px); padding: 48px 20px 28px; }
  .hero h1 { font-size: 24vw; line-height: .78; margin: auto 0; }
  .hero h1 em { margin-left: 8vw; }
  .hero-bottom > p { max-width: 68%; font-size: 17px; }
  .circle-link { width: 82px; height: 82px; }
  .intro, .section-heading { grid-template-columns: 1fr; }
  .intro { padding-left: 20px; padding-right: 20px; gap: 36px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .section-heading { gap: 35px; }
  .service-card { grid-template-columns: 36px 1fr auto; gap: 12px; padding: 32px 0; }
  .service-card p { font-size: 15px; }
  .process, .about { grid-template-columns: 1fr; gap: 70px; }
  .about-shape { width: 85%; margin: 0 auto; }
  .contact { padding-left: 20px; padding-right: 20px; }
  .contact h2 em { margin-left: 6vw; }
  footer { grid-template-columns: 1fr 1fr; padding-left: 20px; padding-right: 20px; }
  .copyright { align-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
