@font-face {
  font-family: "Clash Grotesk";
  src: url("assets/fonts/ClashGrotesk-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/NunitoSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/NunitoSans-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/NunitoSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #070807;
  --ink-soft: #111311;
  --ink-raised: #181a18;
  --cream: #f5f0eb;
  --white: #ffffff;
  --stone: #b0b0a9;
  --stone-dark: #858781;
  --stone-deep: #5f625e;
  --line: #2b2d2b;
  --line-light: #d9d5cf;
  --titanium: #686a66;
  --graphite: #242624;
  --graphite-raised: #1c1e1c;
  --header-height: 88px;
  --page-padding: clamp(24px, 5vw, 80px);
  --display: "Clash Grotesk", Arial, sans-serif;
  --body: "Nunito Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  background: var(--cream);
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 16px var(--page-padding);
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 7, 0.96);
  border-color: var(--line);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  flex: 0 0 42px;
}

.brand__type {
  display: grid;
  gap: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand__type strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand__type small {
  margin-top: 5px;
  color: var(--stone);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  color: var(--stone);
  transition: color 180ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 16px;
  border: 1px solid var(--stone-dark);
  color: var(--cream) !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink) !important;
}

.menu-button {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 80px) var(--page-padding) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: var(--header-height);
  right: var(--page-padding);
  bottom: 0;
  width: min(44vw, 690px);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  content: "";
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 990px;
  padding-bottom: 160px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.portfolio__content h2,
.pitch__intro h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(56px, 7.5vw, 124px);
}

.hero h1 span {
  color: var(--stone-deep);
}

.hero__intro {
  max-width: 620px;
  margin: 40px 0 0;
  color: var(--stone);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button--light {
  background: var(--cream);
  color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--white);
}

.button--ghost {
  border-color: var(--stone-dark);
  background: transparent;
  color: var(--cream);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--cream);
}

.text-link {
  border-bottom: 1px solid var(--stone-dark);
  color: var(--stone);
  font-size: 14px;
  font-weight: 600;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--cream);
  color: var(--cream);
}

.hero__index {
  position: absolute;
  top: 50%;
  right: 17px;
  z-index: 2;
  color: var(--stone-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-object {
  position: absolute;
  z-index: 1;
  right: clamp(40px, 7vw, 120px);
  bottom: 160px;
  width: clamp(280px, 31vw, 520px);
  height: clamp(220px, 28vw, 440px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-object__frame {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  transform: rotate(-5deg);
}

.brick {
  position: absolute;
  display: block;
  width: 30%;
  aspect-ratio: 1;
  border: 1px solid #313431;
  background: var(--ink-soft);
  box-shadow:
    20px 28px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.brick::after {
  position: absolute;
  top: 13%;
  right: 13%;
  width: 14%;
  height: 14%;
  border: 1px solid #2d302d;
  content: "";
}

.brick--1 {
  top: 42%;
  left: 5%;
}

.brick--2 {
  top: 42%;
  left: 35%;
}

.brick--3 {
  top: 42%;
  left: 65%;
}

.brick--4 {
  top: 12%;
  left: 35%;
}

.brick--5 {
  top: 12%;
  left: 65%;
}

.brick--6 {
  top: -18%;
  left: 65%;
}

.brick--accent {
  top: 66%;
  left: 26%;
  width: 9%;
  background: var(--titanium);
  border-color: #7a7d77;
  box-shadow: 12px 18px 30px rgba(0, 0, 0, 0.5);
}

.hero-object > p {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  color: var(--stone-dark);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  min-height: 112px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.hero__meta div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 20px var(--page-padding);
  border-right: 1px solid var(--line);
}

.hero__meta div:last-child {
  border-right: 0;
}

.hero__meta span,
.portfolio__facts dt,
.portfolio__caption {
  color: var(--stone-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio__facts dt,
.portfolio__caption {
  color: #545750;
}

.hero__meta strong {
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: clamp(104px, 12vw, 184px) var(--page-padding);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(64px, 8vw, 112px);
  color: var(--stone-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--cream);
}

.section-label::after {
  width: 88px;
  height: 1px;
  background: var(--line);
  content: "";
}

.section-label p {
  margin: 0;
}

.statement {
  background: var(--ink-soft);
}

.statement__body {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(64px, 9vw, 144px);
  align-items: end;
}

.statement__lead {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 92px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.statement__copy {
  padding-left: 24px;
  border-left: 1px solid var(--line);
  color: var(--stone);
  font-size: 16px;
  line-height: 1.7;
}

.statement__copy p {
  margin: 0;
}

.statement__copy p + p {
  margin-top: 24px;
}

.focus {
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: end;
  margin-bottom: 80px;
}

.section-heading h2,
.portfolio__content h2,
.pitch__intro h2 {
  font-size: clamp(48px, 6vw, 88px);
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--stone);
  font-size: 18px;
  line-height: 1.7;
}

.focus-list {
  border-top: 1px solid var(--line);
}

.focus-item {
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.55fr) minmax(280px, 1fr) 48px;
  gap: 32px;
  align-items: center;
  min-height: 160px;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 220ms ease,
    padding 220ms ease;
}

.focus-item:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: var(--ink-soft);
}

.focus-item__number {
  color: var(--stone-dark);
  font-family: var(--display);
  font-size: 12px;
}

.focus-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
}

.focus-item p {
  max-width: 680px;
  margin: 0;
  color: var(--stone);
}

.focus-item__symbol {
  color: var(--stone-dark);
  font-size: 28px;
  font-weight: 300;
  text-align: right;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.focus-item:hover .focus-item__symbol {
  color: var(--cream);
  transform: rotate(45deg);
}

.portfolio {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 860px;
  background: var(--cream);
  color: var(--ink);
}

.portfolio__visual {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  padding: clamp(40px, 6vw, 96px);
  border-right: 1px solid var(--line-light);
}

.portfolio__visual img {
  align-self: center;
  width: 100%;
  mix-blend-mode: multiply;
}

.portfolio__caption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.portfolio__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 128px);
}

.portfolio__content .eyebrow {
  color: var(--stone-dark);
}

.portfolio__content h2 {
  max-width: 720px;
  margin-bottom: 40px;
}

.portfolio__content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: #4f524e;
  font-size: 18px;
  line-height: 1.75;
}

.portfolio__facts {
  display: grid;
  gap: 0;
  margin: 64px 0 0;
  border-top: 1px solid var(--line-light);
}

.portfolio__facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.portfolio__facts dt,
.portfolio__facts dd {
  margin: 0;
}

.portfolio__facts dd {
  font-weight: 700;
}

.pitch {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(64px, 8vw, 144px);
  align-items: start;
  background: var(--graphite);
}

.pitch__intro {
  position: sticky;
  top: 144px;
}

.pitch__intro .eyebrow,
.pitch__intro > p:not(.eyebrow),
.pitch__note {
  color: rgba(245, 240, 235, 0.68);
}

.pitch__intro h2 {
  max-width: 650px;
  margin-bottom: 40px;
}

.pitch__intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.pitch__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pitch__note span {
  width: 8px;
  height: 8px;
  background: var(--cream);
}

.pitch__note p {
  margin: 0;
}

.pitch-form {
  min-height: 620px;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(245, 240, 235, 0.24);
  background: var(--graphite-raised);
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(245, 240, 235, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-head p {
  margin: 0;
}

.form-head [data-current-step] {
  color: var(--cream);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0 48px;
}

.form-progress span {
  height: 2px;
  background: rgba(245, 240, 235, 0.16);
  transition: background-color 240ms ease;
}

.form-progress span.is-active {
  background: var(--cream);
}

.form-message {
  display: none;
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 240, 235, 0.24);
  color: var(--cream);
  font-size: 14px;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  border-color: var(--cream);
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.form-step legend {
  width: 100%;
  margin-bottom: 40px;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 24px;
}

.field-grid--step-two {
  margin-top: 40px;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field + .field {
  margin-top: 28px;
}

.field-grid .field + .field {
  margin-top: 0;
}

.field > span,
.choice-group > p {
  margin: 0;
  color: rgba(245, 240, 235, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(245, 240, 235, 0.25);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  transition: border-color 180ms ease;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  min-height: 140px;
  padding: 14px 0;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 240, 235, 0.32);
}

.field select option {
  background: var(--ink);
  color: var(--cream);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cream);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--cream);
}

.field-error {
  min-height: 16px;
  color: var(--cream);
  font-size: 12px;
}

.field-meta {
  color: rgba(245, 240, 235, 0.45);
  font-size: 11px;
  text-align: right;
}

.choice-group {
  margin-bottom: 8px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(245, 240, 235, 0.22);
  color: rgba(245, 240, 235, 0.65);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.choice input:checked + span,
.choice input:focus-visible + span {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--graphite);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 28px;
  color: rgba(245, 240, 235, 0.62);
  font-size: 13px;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--cream);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 48px;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto auto;
  gap: 40px;
  align-items: end;
  padding: 56px var(--page-padding);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--stone-dark);
  font-size: 12px;
}

.site-footer > p {
  margin: 0;
}

.site-footer__links {
  display: flex;
  gap: 24px;
}

.site-footer__links a {
  transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__content .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.hero__content .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.hero__content .reveal:nth-child(4) {
  transition-delay: 240ms;
}

@media (max-width: 1100px) {
  .hero-object {
    right: 24px;
    width: 360px;
    opacity: 0.34;
  }

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

  .statement__copy,
  .section-heading > p {
    max-width: 680px;
  }

  .statement__copy {
    margin-left: 12%;
  }

  .focus-item {
    grid-template-columns: 48px minmax(160px, 0.5fr) minmax(280px, 1fr) 32px;
  }

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

  .portfolio__visual {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .pitch__intro {
    position: static;
  }

  .pitch-form {
    max-width: 860px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 96px var(--page-padding);
    background: var(--ink);
    font-family: var(--display);
    font-size: 34px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    padding: 0 0 8px;
    border-width: 0 0 1px;
  }

  .hero {
    min-height: 820px;
    padding-top: calc(var(--header-height) + 80px);
  }

  .hero::before {
    right: 24px;
    width: 44%;
  }

  .hero__content {
    align-self: start;
    padding-bottom: 250px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
    line-height: 0.98;
  }

  .hero__intro {
    max-width: 92%;
    margin-top: 28px;
    font-size: 17px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .hero-object {
    right: -48px;
    bottom: 110px;
    width: 280px;
    height: 210px;
    opacity: 0.32;
  }

  .hero-object > p {
    display: none;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__meta div {
    display: none;
  }

  .hero__meta div:first-child {
    display: grid;
    min-height: 84px;
    border-right: 0;
  }

  .hero__index {
    display: none;
  }

  .section-label {
    margin-bottom: 48px;
  }

  .statement__body {
    gap: 48px;
  }

  .statement__lead,
  .section-heading h2,
  .portfolio__content h2,
  .pitch__intro h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .statement__copy {
    margin-left: 0;
  }

  .section-heading {
    gap: 32px;
    margin-bottom: 56px;
  }

  .focus-item {
    grid-template-columns: 40px 1fr 24px;
    gap: 16px;
    padding: 28px 0;
  }

  .focus-item h3 {
    font-size: 30px;
  }

  .focus-item p {
    grid-column: 2 / 4;
  }

  .focus-item__symbol {
    grid-column: 3;
    grid-row: 1;
  }

  .focus-item:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .portfolio__visual {
    min-height: 430px;
    padding: 24px;
  }

  .portfolio__caption {
    flex-direction: column;
    gap: 8px;
  }

  .portfolio__content {
    padding: 80px var(--page-padding);
  }

  .portfolio__facts div {
    grid-template-columns: 96px 1fr;
  }

  .pitch {
    gap: 56px;
  }

  .pitch-form {
    min-height: 0;
    padding: 24px;
  }

  .form-progress {
    margin-bottom: 36px;
  }

  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions .button {
    flex: 1;
    gap: 16px;
  }

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

@media (max-width: 420px) {
  .brand__type strong {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .button {
    width: 100%;
  }

  .hero__actions .text-link {
    width: auto;
  }

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

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

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

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