:root {
  --ink: #101010;
  --ink-soft: #2b2b2b;
  --paper: #f7f4ed;
  --paper-bright: #ffffff;
  --line: rgba(16, 16, 16, 0.16);
  --orange: #f36f21;
  --green: #6f8a52;
  --steel: #d6dce0;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 16, 16, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 180px;
  min-width: 150px;
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 12px 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.3) 52%, rgba(0, 0, 0, 0.04));
}

.hero-content {
  position: relative;
  width: min(900px, calc(100% - 36px));
  padding: 168px 0 118px;
  margin-left: clamp(18px, 7vw, 92px);
}

.eyebrow,
.card-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split h2,
.quote h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 9vw, 132px);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.28;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  color: #111;
  background: #fff;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--ink);
}

.button:hover,
.site-nav a:hover,
.text-link:hover,
.design-card a:hover {
  color: var(--orange);
}

.hero-status {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-status span {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.section-heading.center {
  display: block;
  max-width: 860px;
  text-align: center;
}

.section h2,
.split h2,
.quote h2 {
  font-size: clamp(38px, 5.8vw, 78px);
}

.intro-copy {
  max-width: 700px;
  margin-left: auto;
  font-size: 18px;
  line-height: 1.6;
}

.intro {
  background: var(--paper);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--line);
}

.stat-grid div {
  min-height: 132px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

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

.stat-grid strong {
  display: block;
  margin-bottom: 36px;
  color: var(--orange);
  font-size: 14px;
}

.stat-grid span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.media-band {
  height: clamp(360px, 64vw, 760px);
  overflow: hidden;
  background: var(--ink);
}

.media-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designs {
  background: #fff;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: 56px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.design-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 560px;
  background: #fff;
}

.design-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-card div {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.design-card h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.design-card p:not(.card-kicker) {
  margin: 18px 0 30px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.design-card a,
.text-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item {
  min-height: 158px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item:nth-child(2n) {
  border-right: 0;
}

.proof-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.proof-item strong {
  display: block;
  color: var(--orange);
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
}

.proof-item span {
  display: block;
  max-width: 230px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
}

.split-copy {
  max-width: 560px;
}

.split-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
}

.work {
  background: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  max-width: 1240px;
  margin: 56px auto 0;
}

.work-grid figure {
  margin: 0;
  background: var(--paper);
}

.work-grid img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
}

.work-grid figcaption {
  padding: 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1240px;
  padding: 0;
  margin: 56px auto 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 288px;
  padding: 26px;
  background: var(--paper);
}

.process-list span {
  display: block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.process-list h3 {
  margin: 72px 0 18px;
  font-size: 24px;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.quote {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  background: #fff;
}

.quote-copy {
  position: sticky;
  top: 110px;
}

.quote-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.quote-form {
  min-height: 460px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.quote-form iframe,
.quote-form form {
  max-width: 100%;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border-radius: 0 !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: end;
  padding: 44px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer div {
  max-width: 390px;
}

.site-footer img {
  width: 180px;
}

.site-footer p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  color: #fff;
}

.copyright {
  font-size: 12px;
}

@media (max-width: 1040px) {
  .section-heading,
  .proof,
  .split,
  .quote {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    margin-left: 0;
  }

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

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

  .quote-copy {
    position: static;
  }
}

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

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    width: 154px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    display: none;
    width: 100%;
    padding: 20px 18px 28px;
    background: rgba(16, 16, 16, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.is-open {
    display: grid;
    gap: 18px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.8));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 128px 0 72px;
    margin: 0 auto;
  }

  .hero-copy {
    font-size: 18px;
  }

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

  .hero-status span {
    min-height: 54px;
  }

  .stat-grid,
  .design-grid,
  .proof-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .stat-grid div,
  .proof-item,
  .proof-item:nth-child(2n),
  .proof-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .stat-grid div:last-child,
  .proof-item:last-child {
    border-bottom: 0;
  }

  .design-card {
    grid-template-rows: 230px auto;
    min-height: 0;
  }

  .process-list li {
    min-height: 230px;
  }

  .process-list h3 {
    margin-top: 48px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .button {
    width: 100%;
  }

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

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