:root {
  color-scheme: light;
  --orange: #ff9f1c;
  --sand: #ffbf69;
  --white: #ffffff;
  --mint: #cbf3f0;
  --teal: #2ec4b6;
  --paper: var(--mint);
  --surface: var(--white);
  --ink: #123f3a;
  --muted: #4e7772;
  --clock: #163b37;
  --clock-dark: #0b2724;
  --line: rgba(18, 63, 58, .2);
  --display-font: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body-font: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 84px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
}

.wordmark {
  width: fit-content;
  padding: 9px 13px 7px;
  border-radius: 7px;
  color: var(--white);
  background: var(--clock);
  box-shadow: 0 5px 0 var(--orange);
  font-family: var(--display-font);
  font-size: clamp(24px, 2.2vw, 36px);
  letter-spacing: .02em;
  line-height: .9;
}

.wordmark span {
  margin-left: .2em;
  color: var(--sand);
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-header nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-header nav a:hover,
.site-header nav a:focus-visible { border-color: currentColor; }

.header-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--orange) 22%, transparent);
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, .92fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 3; min-width: 0; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  display: grid;
  width: fit-content;
  font-family: var(--display-font);
  font-size: clamp(116px, 17vw, 300px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .67;
  text-transform: uppercase;
}

.hero h1 span:last-child {
  color: var(--orange);
  text-shadow: 6px 7px 0 var(--clock);
}

.hero-intro {
  max-width: 590px;
  margin: clamp(50px, 8vw, 110px) 0 28px;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.35;
}

.primary-link,
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin: 0;
  justify-self: end;
  padding: 16px;
  border-radius: 28px;
  background: var(--clock);
  box-shadow: 18px 18px 0 var(--teal), 30px 30px 0 var(--sand);
  transform: rotate(1.5deg);
}

.portrait img {
  display: block;
  width: 100%;
  max-height: 72svh;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(.88) contrast(1.03);
}

.portrait figcaption {
  padding: 14px 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-orbit {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: rotate 24s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-orbit::before { inset: 54px; }
.hero-orbit::after { inset: 110px; background: var(--teal); }

.hero-orbit span {
  position: relative;
  z-index: 2;
  font-family: var(--display-font);
  font-size: 64px;
  color: var(--clock);
}

.why-section,
.about-section {
  padding: clamp(80px, 11vw, 170px) clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(42px, 9vw, 150px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-heading h2,
.about-copy h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .9;
}

.why-copy {
  padding-top: 34px;
  font-size: clamp(18px, 1.7vw, 25px);
}

.why-copy p { margin: 0 0 1.5em; }

.work-section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 64px);
  color: var(--white);
  background: var(--clock);
}

.work-section .eyebrow { color: var(--mint); }
.section-heading.compact { margin-bottom: 58px; }

.work-section .section-heading h2 {
  max-width: none;
  color: var(--sand);
  font-family: var(--display-font);
  font-size: clamp(58px, 8vw, 138px);
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.work-list { border-top: 1px solid rgba(255,255,255,.2); }

.work-card {
  min-height: 180px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.work-number,
.work-type {
  color: var(--mint);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.work-type { margin: 0 0 8px; }

.work-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(27px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -.04em;
}

.work-card p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--mint);
}

.work-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--orange);
  font-size: 22px;
}

.about-section {
  grid-template-columns: .8fr 1.2fr;
  background: var(--surface);
}

.ask-block {
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: inset 0 0 0 38px var(--mint);
  font-family: var(--display-font);
  font-size: clamp(64px, 10vw, 170px);
  line-height: .72;
  transform: rotate(-5deg);
}

.ask-block span:last-child { color: var(--orange); }

.about-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.55vw, 24px);
}

.credentials {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.credentials span {
  padding: 9px 14px 7px;
  border-radius: 5px;
  color: var(--white);
  background: var(--clock);
  box-shadow: 0 4px 0 var(--orange);
  font-family: var(--display-font);
  font-size: 27px;
  line-height: 1;
}

footer {
  min-height: 310px;
  padding: 64px clamp(20px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  background: var(--clock-dark);
}

footer > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

footer .eyebrow { color: var(--mint); margin-bottom: 5px; }
.footer-meta {
  align-self: flex-end;
  display: grid;
  gap: 4px;
  text-align: right;
  color: var(--mint);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(100px, 20vw, 190px); }
  .hero-intro { margin-top: 70px; }
  .why-section,
  .about-section { grid-template-columns: 1fr; }
  .ask-block { width: min(75vw, 520px); justify-self: center; }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-status { display: none; }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 12px 9px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .site-header nav { display: none; }
  .menu-open .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .menu-open .site-header nav a { padding: 13px 0; }

  .hero {
    min-height: auto;
    padding-top: 44px;
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: clamp(118px, 43vw, 185px); }
  .hero-intro { margin-top: 64px; }
  .portrait { width: calc(100% - 20px); margin: 25px auto 35px; justify-self: center; }
  .portrait img { max-height: none; }
  .hero-orbit { display: none; }

  .work-card {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }
  .work-mark { grid-column: 2; }

  .ask-block { box-shadow: inset 0 0 0 24px var(--mint); }

  footer { flex-direction: column; }
  .footer-meta { align-self: flex-start; 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;
  }
}
