:root {
  --navy: #203542;
  --navy-dark: #142731;
  --cream: #f4efe7;
  --paper: #fbfaf7;
  --white: #ffffff;
  --terracotta: #c86143;
  --gold: #d3a43f;
  --teal: #537b78;
  --blue: #7192a2;
  --ink-muted: rgba(32, 53, 66, 0.7);
  --line: rgba(32, 53, 66, 0.17);
  --radius: 18px;
  --shadow: 12px 12px 0 rgba(20, 39, 49, 0.1);
  --font-sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy-dark);
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-sans);
  margin: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

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

::selection {
  background: #ead2c7;
  color: var(--navy-dark);
}

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

.skip-link {
  background: var(--navy-dark);
  color: var(--white);
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: -100px;
  z-index: 200;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 82px;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 78px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
}

.brand-crop {
  background: var(--white);
  display: block;
  height: 52px;
  overflow: hidden;
  position: relative;
  width: 192px;
}

.brand-crop img {
  left: -4px;
  max-width: none;
  position: absolute;
  top: -27px;
  width: 200px;
}

.primary-navigation {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 34px;
}

.primary-navigation > a:not(.nav-cta) {
  color: var(--ink-muted);
  position: relative;
}

.primary-navigation > a:not(.nav-cta)::after {
  background: var(--terracotta);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.primary-navigation > a:hover::after,
.primary-navigation > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  gap: 18px;
  padding: 13px 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  display: none;
  font-size: 11px;
  font-weight: 750;
  gap: 10px;
  padding: 10px;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  transition: transform 180ms ease;
  width: 20px;
}

.menu-button i {
  position: relative;
}

.menu-button i::before {
  left: 0;
  position: absolute;
  top: -6px;
}

.menu-button i::after {
  left: 0;
  position: absolute;
  top: 6px;
}

.hero {
  background:
    linear-gradient(rgba(32, 53, 66, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 53, 66, 0.055) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px;
  padding: clamp(70px, 9vw, 130px) clamp(22px, 6vw, 96px) clamp(80px, 10vw, 145px);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.72fr);
  margin: 0 auto;
  max-width: 1580px;
}

.eyebrow,
.section-label {
  color: var(--terracotta);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 0 0 38px;
}

.eyebrow span {
  background: var(--gold);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.hero h1 {
  color: var(--navy-dark);
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 760;
  letter-spacing: -0.072em;
  line-height: 0.88;
  margin: 0;
  max-width: 900px;
}

.hero h1 em {
  color: var(--terracotta);
  display: block;
  font-style: normal;
  position: relative;
  width: fit-content;
}

.hero h1 em::after {
  background: var(--gold);
  bottom: -5px;
  content: "";
  height: 5px;
  left: 3px;
  position: absolute;
  transform: rotate(-1.5deg);
  width: calc(100% - 4px);
}

.hero-intro {
  color: var(--ink-muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
  margin: 40px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  align-items: center;
  border: 1px solid var(--navy);
  border-radius: 6px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 760;
  gap: 25px;
  justify-content: center;
  padding: 15px 18px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.button-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.hero-disciplines {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 750;
  gap: 24px;
  letter-spacing: 0.09em;
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  text-transform: uppercase;
}

.hero-disciplines li {
  align-items: center;
  display: flex;
  gap: 24px;
}

.hero-disciplines li:not(:last-child)::after {
  color: var(--gold);
  content: "✦";
}

.hero-visual {
  background: var(--paper);
  border: 1px solid rgba(32, 53, 66, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  background: var(--terracotta);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 52% 71%, 28% 100%, 0 65%);
  content: "";
  height: 155px;
  position: absolute;
  right: 0;
  top: 0;
  width: 155px;
}

.hero-visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 63% center;
  position: absolute;
  width: 100%;
}

.visual-label {
  background: var(--paper);
  border: 1px solid var(--navy);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 9px 11px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.visual-label-top {
  right: 24px;
  top: 24px;
}

.visual-label-bottom {
  bottom: 25px;
  left: 24px;
}

.visual-code {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  bottom: 22px;
  color: var(--navy-dark);
  display: flex;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  position: absolute;
  right: 22px;
  width: 58px;
  z-index: 2;
}

.discipline-band {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 17px 0;
}

.discipline-band div {
  align-items: center;
  display: flex;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 750;
  gap: 34px;
  justify-content: center;
  letter-spacing: 0.1em;
  min-width: max-content;
  text-transform: uppercase;
}

.discipline-band b {
  color: var(--gold);
}

.section {
  margin: 0 auto;
  max-width: 1720px;
  padding: clamp(90px, 11vw, 170px) clamp(22px, 6vw, 96px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.3fr 1fr 0.62fr;
  margin-bottom: clamp(55px, 7vw, 100px);
}

.section-heading h2,
.approach-heading h2 {
  color: var(--navy-dark);
  font-size: clamp(46px, 5.5vw, 84px);
  font-weight: 730;
  letter-spacing: -0.063em;
  line-height: 0.96;
  margin: 0;
}

.section-heading h2 span {
  color: var(--terracotta);
}

.section-heading > p:last-child {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 45px);
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  box-shadow: 8px 8px 0 rgba(32, 53, 66, 0.11);
  transform: translateY(-6px);
}

.service-learning {
  background: #edf2ef;
}

.service-games {
  background: #f3e7de;
}

.service-software {
  background: #e5ecef;
}

.service-number {
  color: rgba(32, 53, 66, 0.47);
  font-family: var(--font-mono);
  font-size: 10px;
  position: absolute;
  right: 28px;
  top: 26px;
}

.service-symbol {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(32, 53, 66, 0.2);
  border-radius: 50%;
  color: var(--navy-dark);
  display: flex;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 850;
  height: 90px;
  justify-content: center;
  margin-bottom: 75px;
  width: 90px;
}

.service-games .service-symbol {
  background: var(--terracotta);
  color: var(--white);
}

.service-software .service-symbol {
  background: var(--navy);
  color: var(--white);
}

.service-tag {
  color: var(--terracotta);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--navy-dark);
  font-size: clamp(27px, 2.5vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 22px;
  max-width: 380px;
}

.service-card > p:not(.service-tag) {
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.service-card ul {
  border-top: 1px solid rgba(32, 53, 66, 0.17);
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 22px 0 0;
}

.service-card li {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 680;
  gap: 10px;
}

.service-card li::before {
  color: var(--terracotta);
  content: "↗";
}

.studio-statement {
  background: var(--navy-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

.statement-copy {
  padding: clamp(80px, 10vw, 150px) clamp(25px, 7vw, 120px);
}

.section-label-light {
  color: #ddb864;
}

.statement-copy h2 {
  font-size: clamp(52px, 6.3vw, 98px);
  letter-spacing: -0.068em;
  line-height: 0.92;
  margin: 40px 0 35px;
  max-width: 1000px;
}

.statement-copy > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
  max-width: 700px;
}

.principles {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-top: 55px;
}

.principles span {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  font-size: 11px;
  padding: 17px;
}

.principles span::before {
  color: var(--gold);
  content: "✦";
  margin-right: 10px;
}

.statement-image {
  align-items: center;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 640px;
  overflow: hidden;
  padding: 40px;
  position: relative;
}

.statement-image img {
  height: 75%;
  left: 50%;
  max-width: none;
  object-fit: cover;
  object-position: 61% center;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 165%;
}

.statement-image p {
  background: var(--paper);
  border: 1px solid var(--navy-dark);
  color: var(--navy-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 10px 13px;
  position: relative;
  text-transform: uppercase;
}

.approach {
  display: grid;
  gap: clamp(60px, 8vw, 130px);
  grid-template-columns: 0.72fr 1fr;
}

.approach-heading {
  position: sticky;
  top: 130px;
}

.approach-heading h2 {
  margin-top: 38px;
}

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

.process-list li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 50px 1fr 30px;
  padding: 34px 0;
  transition: padding 180ms ease;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li:hover {
  padding-left: 15px;
  padding-right: 15px;
}

.process-list li > span {
  color: var(--terracotta);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  padding-top: 5px;
}

.process-list h3 {
  color: var(--navy-dark);
  font-size: clamp(23px, 2.5vw, 34px);
  letter-spacing: -0.04em;
  margin: 0;
}

.process-list p {
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 11px 0 0;
}

.process-list b {
  font-size: 22px;
  font-weight: 400;
}

.project-fit {
  align-items: center;
  background: var(--teal);
  color: var(--white);
  display: grid;
  gap: clamp(55px, 8vw, 130px);
  grid-template-columns: 1fr 0.68fr;
  padding: clamp(75px, 9vw, 135px) clamp(22px, 6vw, 96px);
}

.project-fit h2 {
  font-size: clamp(48px, 5.5vw, 86px);
  letter-spacing: -0.062em;
  line-height: 0.96;
  margin: 35px 0 0;
  max-width: 900px;
}

.project-fit ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-fit li {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  font-size: 12px;
  padding: 18px;
}

.project-fit li::before {
  color: #f0cb72;
  content: "✓";
  font-weight: 900;
  margin-right: 11px;
}

.contact-section {
  align-items: start;
  background: #e8dfd3;
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  padding: clamp(85px, 10vw, 150px) clamp(22px, 6vw, 96px);
}

.contact-intro {
  max-width: 650px;
  position: sticky;
  top: 130px;
}

.contact-intro h2 {
  color: var(--navy-dark);
  font-size: clamp(52px, 5.7vw, 86px);
  letter-spacing: -0.067em;
  line-height: 0.95;
  margin: 38px 0 30px;
}

.contact-intro > p:not(.section-label) {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 570px;
}

.email-link {
  border-bottom: 1px solid var(--terracotta);
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  gap: 20px;
  margin-top: 15px;
  padding-bottom: 6px;
}

.privacy-note {
  align-items: flex-start;
  border-top: 1px solid rgba(32, 53, 66, 0.2);
  display: flex;
  gap: 12px;
  margin-top: 42px;
  max-width: 540px;
  padding-top: 22px;
}

.privacy-note > span {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  font-size: 11px;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.privacy-note p {
  color: rgba(32, 53, 66, 0.65);
  font-size: 11px;
  line-height: 1.65;
  margin: 1px 0 0;
}

.form-panel {
  min-width: 0;
}

.contact-form,
.form-success {
  background: var(--paper);
  border: 1px solid rgba(32, 53, 66, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 52px);
}

.contact-form {
  display: grid;
  gap: 25px 20px;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.field-wide,
.consent,
.form-alert {
  grid-column: 1 / -1;
}

.field label,
.consent label {
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 750;
}

.field label span {
  color: var(--terracotta);
}

.field input,
.field select,
.field textarea {
  appearance: none;
  background: var(--white);
  border: 1px solid rgba(32, 53, 66, 0.27);
  border-radius: 6px;
  color: var(--navy-dark);
  font-size: 14px;
  outline: none;
  padding: 14px 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 13px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 40px;
}

.field textarea {
  line-height: 1.55;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(83, 123, 120, 0.14);
}

.field [aria-invalid="true"] {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200, 97, 67, 0.11);
}

.field small,
.consent small {
  color: #a8422f;
  font-size: 10px;
  line-height: 1.4;
  min-height: 14px;
}

.field-help {
  color: rgba(32, 53, 66, 0.55);
  font-size: 10px;
  line-height: 1.4;
  margin: 0;
}

.consent label {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 11px;
  line-height: 1.5;
}

.consent input {
  accent-color: var(--teal);
  flex: 0 0 auto;
  height: 17px;
  margin: 1px 0 0;
  width: 17px;
}

.consent small {
  display: block;
  margin: 7px 0 0 28px;
}

.form-alert {
  background: #f7e6df;
  border-left: 3px solid var(--terracotta);
  color: #963d2b;
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
  padding: 12px 14px;
}

.form-footer {
  align-items: center;
  border-top: 1px solid rgba(32, 53, 66, 0.14);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding-top: 25px;
}

.form-footer p {
  color: rgba(32, 53, 66, 0.52);
  font-size: 9px;
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
}

.form-footer button,
.form-success a {
  background: var(--navy);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 750;
  gap: 18px;
  padding: 15px 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.form-footer button:hover,
.form-success a:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.form-success {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 20px;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.form-success h3 {
  color: var(--navy-dark);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 38px 0 16px;
}

.form-success p {
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0 0 35px;
}

.site-footer {
  align-items: center;
  background: var(--navy-dark);
  color: var(--white);
  display: grid;
  font-family: var(--font-mono);
  font-size: 9px;
  gap: 25px;
  grid-template-columns: 1fr auto auto auto;
  letter-spacing: 0.04em;
  padding: 34px clamp(22px, 5vw, 78px);
}

.site-footer .brand-crop {
  border-radius: 4px;
  height: 45px;
  width: 170px;
}

.site-footer .brand-crop img {
  left: -3px;
  top: -24px;
  width: 177px;
}

.site-footer p,
.site-footer small {
  margin: 0;
  opacity: 0.56;
}

.site-footer > a:not(.footer-brand) {
  opacity: 0.75;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 690px;
  }

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

  .section-heading > p:last-child {
    grid-column: 2;
  }

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

  .service-card {
    min-height: 420px;
  }

  .service-symbol {
    margin-bottom: 55px;
  }

  .studio-statement {
    grid-template-columns: 1fr;
  }

  .statement-image {
    min-height: 520px;
  }

  .statement-image img {
    height: 110%;
    width: 100%;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: 760px;
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 72px;
  }

  .brand-crop {
    height: 45px;
    width: 165px;
  }

  .brand-crop img {
    left: -3px;
    top: -23px;
    width: 172px;
  }

  .menu-button {
    display: flex;
    z-index: 102;
  }

  .primary-navigation {
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 72px 0 auto;
    padding: 18px 22px 28px;
    position: fixed;
    z-index: 101;
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation > a {
    border-bottom: 1px solid var(--line);
    padding: 18px 4px;
  }

  .primary-navigation > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    border: 0;
    border-radius: 6px;
    justify-content: space-between;
    margin-top: 16px;
    padding: 15px 17px;
  }

  .menu-button[aria-expanded="true"] i {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero-visual {
    min-height: 560px;
  }

  .section-heading,
  .approach,
  .project-fit {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

  .approach-heading {
    position: static;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .consent,
  .form-alert {
    grid-column: 1;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 16px;
  }

  .brand-crop {
    width: 144px;
  }

  .brand-crop img {
    left: -2px;
    top: -19px;
    width: 149px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    box-shadow: 8px 8px 0 rgba(20, 39, 49, 0.1);
    min-height: 470px;
  }

  .hero-visual img {
    object-position: 67% center;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading {
    gap: 25px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .statement-copy {
    padding-left: 22px;
    padding-right: 22px;
  }

  .statement-image {
    min-height: 430px;
  }

  .process-list li {
    gap: 15px;
    grid-template-columns: 36px 1fr 22px;
  }

  .project-fit,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-form,
  .form-success {
    box-shadow: 7px 7px 0 rgba(20, 39, 49, 0.1);
    padding: 26px 20px;
  }

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

  .form-footer button {
    justify-content: space-between;
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
