:root {
  --forest: #173f35;
  --forest-deep: #0e2b25;
  --leaf: #2f6b4f;
  --mint: #cde5d2;
  --citrus: #f2c94c;
  --paper: #f7f5ed;
  --white: #fffefa;
  --ink: #1a241f;
  --line: rgba(23, 63, 53, 0.18);
  --display: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page: min(1320px, calc(100vw - 64px));
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--citrus);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  transform: translateX(-50%);
  transition: height 250ms ease, color 250ms ease, background-color 250ms ease,
    border-color 250ms ease, width 250ms ease, padding 250ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  width: min(1260px, calc(100vw - 32px));
  height: 68px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(247, 245, 237, 0.92);
  box-shadow: 0 10px 40px rgba(14, 43, 37, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.site-header > .brand {
  position: relative;
  z-index: 103;
  visibility: visible;
  color: var(--white);
  opacity: 1;
}

.site-header.is-scrolled > .brand {
  color: var(--ink);
}

.brand-mark {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: var(--citrus);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.site-header.is-scrolled .brand-mark {
  stroke: var(--forest);
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
}

.brand small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  height: 44px;
  align-items: center;
  gap: 22px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--forest-deep);
  background: var(--citrus);
}

.nav-cta span {
  font-size: 18px;
  transition: transform 200ms ease;
}

.nav-cta:hover span {
  transform: translate(2px, -2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 100svh);
  grid-template-columns: minmax(480px, 1fr) minmax(360px, 430px);
  align-items: center;
  gap: clamp(42px, 6vw, 100px);
  overflow: hidden;
  padding: 132px max(32px, calc((100vw - 1320px) / 2)) 68px;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 30%, rgba(205, 229, 210, 0.11), transparent 31%),
    var(--forest);
}

.hero::before {
  position: absolute;
  top: -20vw;
  right: -13vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  right: clamp(20px, 4vw, 68px);
  bottom: 32px;
  color: rgba(255, 255, 255, 0.42);
  content: "DESIGN  •  DIGITAL  •  EXPERIENCES";
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  visibility: visible;
  opacity: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero .eyebrow,
.eyebrow-light {
  color: var(--mint);
}

.hero h1,
.section-heading h2,
.approach h2,
.studio h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(60px, 6.4vw, 102px);
}

h1 em,
h2 em {
  color: var(--citrus);
  font-weight: inherit;
}

.hero-intro {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 200ms ease, background-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--forest-deep);
  background: var(--citrus);
}

.button-primary:hover {
  background: #ffda60;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.text-link span {
  font-size: 17px;
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-art {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  aspect-ratio: 0.86;
  justify-self: center;
  transform: translateX(-72px);
}

.creative-compass {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 23px 25px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 130px 130px 22px 22px;
  color: var(--forest-deep);
  background: var(--mint);
  box-shadow: 18px 22px 0 rgba(7, 31, 26, 0.25);
}

.creative-compass::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(23, 63, 53, 0.13);
  border-radius: 50%;
  content: "";
}

.compass-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compass-top {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.compass-top i {
  margin: 0 10px;
  color: var(--leaf);
  font-style: normal;
}

.growth-mark {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 88%;
  height: auto;
  transform: translateX(-50%);
}

.growth-stem {
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-width: 3;
}

.growth-mark circle {
  fill: var(--citrus);
  stroke: var(--forest);
  stroke-width: 3;
}

.growth-leaf {
  fill: var(--forest);
  stroke: var(--forest);
  stroke-linejoin: round;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: bottom center;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.leaf-two {
  fill: var(--citrus);
}

.leaf-three {
  fill: var(--white);
}

.hero-art:hover .leaf-one {
  transform: rotate(-4deg);
}

.hero-art:hover .leaf-two {
  transform: rotate(5deg);
}

.hero-art:hover .leaf-three {
  transform: translateY(-4px);
}

.compass-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 0 34px;
}

.compass-copy span {
  position: relative;
  z-index: 2;
  display: block;
  width: max-content;
  margin-bottom: 11px;
  padding-right: 14px;
  background: var(--mint);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.compass-copy strong {
  font-family: var(--display);
  font-size: clamp(30px, 2.65vw, 41px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.compass-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(23, 63, 53, 0.22);
}

.compass-footer i {
  height: 1px;
  flex: 1;
  margin: 0 14px;
  background: rgba(23, 63, 53, 0.22);
}

.ticker {
  overflow: hidden;
  padding: 19px 0;
  color: var(--forest-deep);
  background: var(--citrus);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 44px;
  animation: marquee 20s linear infinite;
  font-family: var(--display);
  font-size: 24px;
  white-space: nowrap;
}

.ticker-track span {
  font-style: italic;
}

.ticker-track i {
  font-size: 13px;
  font-style: normal;
}

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

.section {
  padding: 128px max(32px, calc((100vw - 1320px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  column-gap: 8vw;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.studio h2 {
  color: var(--forest);
  font-size: clamp(44px, 5.3vw, 76px);
}

.section-heading h2 em,
.studio h2 em {
  color: var(--leaf);
}

.section-heading > p:last-child {
  align-self: end;
  margin: 0 0 4px;
  color: #53615b;
  font-size: 17px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 82px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 34px 30px;
  background: var(--paper);
  transition: color 250ms ease, background-color 250ms ease;
}

.service-card-wide {
  grid-column: span 2;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(205, 229, 210, 0.32);
  border-radius: 70% 0 70% 0;
  content: "";
  opacity: 0;
  transform: rotate(-25deg) scale(0.7);
  transition: opacity 250ms ease, transform 450ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--forest);
}

.service-card:hover::after {
  opacity: 1;
  transform: rotate(-25deg) scale(1);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--leaf);
}

.service-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card:hover .service-icon {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--citrus);
}

.service-card h3 {
  max-width: 290px;
  margin: 88px 0 12px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.08;
}

.service-card p {
  max-width: 470px;
  margin: 0;
  color: #66726d;
  font-size: 14px;
  line-height: 1.6;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.approach {
  padding-top: 0;
}

.approach-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  padding: 100px 7vw;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.approach h2 {
  font-size: clamp(42px, 4.3vw, 66px);
}

.approach-intro > p:last-child {
  max-width: 500px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.process {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  padding: 25px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.process li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.process li > span {
  color: var(--citrus);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.process h3 {
  margin: -5px 0 5px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
}

.process p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.clientele {
  padding-top: 26px;
}

.clientele-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  column-gap: 8vw;
}

.clientele-heading .eyebrow {
  grid-column: 1 / -1;
}

.clientele-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 70px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.clientele-heading h2 em {
  color: var(--leaf);
  font-weight: inherit;
}

.clientele-heading > p:last-child {
  align-self: end;
  margin: 0 0 4px;
  color: #53615b;
  font-size: 17px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--line);
  background: var(--line);
}

.client-grid figure {
  display: grid;
  aspect-ratio: 1.35;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: #eeece4;
}

.client-grid figure:nth-child(1),
.client-grid figure:nth-child(4),
.client-grid figure:nth-child(5),
.client-grid figure:nth-child(8) {
  background: #171b19;
}

.client-grid figure:nth-child(1),
.client-grid figure:nth-child(2),
.client-grid figure:nth-child(3) {
  grid-column: span 2;
}

.client-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 280ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.client-grid figure:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.studio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 9vw;
  padding-top: 30px;
}

.studio-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 32px 0;
  color: #53615b;
  font-size: 17px;
}

.text-link-dark {
  border-bottom-color: var(--line);
  color: var(--forest);
}

.text-link-dark:hover span {
  transform: translate(2px, -2px);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.principle {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border-radius: 18px;
  background: var(--mint);
}

.principle-large {
  grid-row: span 2;
  color: var(--white);
  background: var(--leaf);
}

.principle-citrus {
  background: var(--citrus);
}

.principle-pale {
  background: #e5e9d8;
}

.principle span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.principle strong {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.08;
}

.principle svg {
  width: 76%;
  align-self: center;
  fill: rgba(255, 255, 255, 0.16);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact h2 {
  max-width: 580px;
  font-size: clamp(48px, 5.4vw, 78px);
}

.contact-copy > p:last-child {
  max-width: 470px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.direct-contact {
  display: grid;
  max-width: 480px;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.direct-contact a {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.direct-contact span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.direct-contact strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 500;
}

.contact-leaf {
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 380px;
  color: var(--mint);
  opacity: 0.07;
  transform: rotate(-12deg);
}

.contact-leaf svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-form {
  display: grid;
  gap: 26px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--citrus) 50%),
    linear-gradient(135deg, var(--citrus) 50%, transparent 50%);
  background-position: calc(100% - 6px) 50%, 100% 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.37);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--citrus);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button-citrus {
  color: var(--forest-deep);
  background: var(--citrus);
}

.form-status {
  margin: 0;
  color: var(--mint);
  font-size: 13px;
}

.form-privacy {
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  overflow: hidden;
  padding: 76px max(32px, calc((100vw - 1320px) / 2)) 34px;
  color: var(--white);
  background: var(--forest-deep);
}

.site-footer::after {
  position: absolute;
  top: -180px;
  right: -90px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(205, 229, 210, 0.1);
  border-radius: 50%;
  content: "";
}

.footer-lead {
  align-self: start;
}

.brand-footer .brand-mark {
  stroke: var(--citrus);
}

.footer-lead > p {
  max-width: 330px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.footer-cta {
  position: relative;
  z-index: 2;
}

.footer-cta p {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-cta > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.footer-cta > a span {
  color: var(--citrus);
  font-family: var(--sans);
  font-size: 30px;
  transition: transform 200ms ease;
}

.footer-cta > a:hover span {
  transform: translate(3px, -3px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 500;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 1050px) {
  :root {
    --page: calc(100vw - 40px);
  }

  .hero {
    grid-template-columns: minmax(420px, 1fr) minmax(320px, 380px);
    min-height: 720px;
  }

  .hero-art {
    transform: translateX(-48px);
  }

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

  .service-card-wide {
    grid-column: span 1;
  }

  .approach-panel,
  .contact {
    gap: 6vw;
  }

  .studio {
    gap: 5vw;
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-grid figure:nth-child(1),
  .client-grid figure:nth-child(2),
  .client-grid figure:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  :root {
    --page: calc(100vw - 32px);
  }

  .site-header {
    left: 16px;
    width: calc(100vw - 32px);
    height: 74px;
    transform: none;
  }

  .site-header.is-scrolled {
    top: 8px;
    left: 8px;
    width: calc(100vw - 16px);
  }

  .menu-toggle {
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
  }

  .menu-lines {
    display: grid;
    gap: 5px;
  }

  .menu-lines i {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 120px 28px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    visibility: hidden;
    color: var(--white);
    background: var(--forest-deep);
    opacity: 0;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--display);
    font-size: 34px;
  }

  .site-nav .nav-cta {
    height: auto;
    margin-top: 24px;
    padding: 17px 20px;
    border: 0;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .site-header.is-scrolled:has(.site-nav.is-open) {
    color: var(--white);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .site-header:has(.site-nav.is-open) .brand-mark {
    stroke: var(--citrus);
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 132px 20px 48px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .hero-art {
    width: min(94vw, 480px);
    margin: 54px auto 8px;
    transform: none;
  }

  .creative-compass {
    min-height: 520px;
    border-radius: 120px 120px 22px 22px;
    box-shadow: 12px 14px 0 rgba(7, 31, 26, 0.28);
  }

  .ticker-track {
    gap: 30px;
    font-size: 20px;
  }

  .section {
    padding: 84px 20px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .studio h2 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .section-heading > p:last-child {
    margin-top: 25px;
    font-size: 15px;
  }

  .service-list {
    display: block;
    margin-top: 52px;
    border: 0;
    background: transparent;
  }

  .service-card {
    min-height: 0;
    padding: 26px 4px 30px;
    border-top: 1px solid var(--line);
  }

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

  .service-card:hover {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-card h3 {
    margin: 30px 0 10px;
    font-size: 26px;
  }

  .approach {
    padding-top: 0;
  }

  .approach-panel {
    display: block;
    padding: 60px 24px;
    border-radius: 20px;
  }

  .approach h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .process {
    margin-top: 55px;
  }

  .studio {
    display: block;
    padding-top: 10px;
  }

  .clientele {
    padding-top: 4px;
  }

  .clientele-heading {
    display: block;
  }

  .clientele-heading h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .clientele-heading > p:last-child {
    margin-top: 24px;
    font-size: 15px;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 46px;
  }

  .client-grid figure {
    aspect-ratio: 1.18;
  }

  .studio-grid {
    grid-template-rows: 180px 180px;
    margin-top: 52px;
  }

  .principle {
    padding: 18px;
  }

  .principle strong {
    font-size: 21px;
  }

  .contact {
    display: block;
  }

  .contact h2 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .contact-form {
    margin-top: 58px;
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 62px 20px 28px;
  }

  .footer-bottom {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 4px;
  }
}

@media (max-width: 460px) {
  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero .button {
    width: 100%;
    gap: 14px;
  }

  .studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 145px;
  }

  .principle-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .principle-large svg {
    position: absolute;
    right: 8px;
    bottom: -42px;
    width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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