:root {
  --ink: #211d1f;
  --ink-soft: #2d282a;
  --ink-muted: #6c6563;
  --orange: #c05b1f;
  --orange-dark: #a94210;
  --orange-button: #b54e16;
  --cream: #f7f3ee;
  --sand: #ece4dc;
  --sand-light: #f2ece6;
  --white: #ffffff;
  --line: rgba(33, 29, 31, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 70px rgba(25, 18, 17, 0.18);
  --container: 1280px;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

img {
  height: auto;
}

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

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

button {
  border: 0;
}

::selection {
  color: var(--white);
  background: var(--orange-dark);
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow--light {
  color: #f5b38d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 690;
  line-height: 1.06;
}

h1,
h2 {
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.9rem, 6.1vw, 6.6rem);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 4.25vw, 4.85rem);
}

h3 {
  letter-spacing: -0.025em;
}

em {
  color: var(--orange);
  font-style: normal;
}

.section {
  padding: 120px 0;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p,
.section-heading > div:last-child > p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.79rem;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--orange-dark);
}

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

.button--orange:hover {
  background: var(--orange-dark);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 15px;
  color: var(--orange-dark);
}

.text-link--light {
  color: var(--white);
}

.text-link--light:hover {
  color: #f5b38d;
}

.topbar {
  position: relative;
  z-index: 100;
  color: rgba(255, 255, 255, 0.78);
  background: #171416;
  font-size: 0.74rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 160ms ease;
}

.topbar__links a:hover {
  color: var(--white);
}

.topbar svg,
.mobile-actions svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 174px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-cta {
  flex: 0 0 auto;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 26%, rgba(192, 91, 31, 0.22), transparent 27%),
    linear-gradient(135deg, #181517 0%, var(--ink) 58%, #2d201a 100%);
}

.hero::before {
  position: absolute;
  top: -250px;
  right: -200px;
  width: 610px;
  height: 610px;
  border: 112px solid rgba(192, 91, 31, 0.16);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  bottom: -190px;
  left: -260px;
  width: 600px;
  height: 340px;
  background: var(--orange-dark);
  content: "";
  opacity: 0.18;
  transform: rotate(12deg);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 62%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 70px;
  align-items: center;
  padding: 92px 0 106px;
}

.hero__copy {
  max-width: 710px;
}

.hero h1 {
  color: var(--white);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.11rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 46px;
}

.hero__tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.hero__visual {
  position: relative;
  min-height: 600px;
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #151214;
  box-shadow: var(--shadow);
}

.hero-card img,
.hero-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  z-index: 2;
  top: 54px;
  right: 0;
  width: 80%;
  height: 465px;
  border: 7px solid rgba(255, 255, 255, 0.96);
}

.hero-card--main::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(17, 13, 13, 0.82));
  content: "";
}

.hero-card--main figcaption,
.hero-card--small figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  line-height: 1.35;
}

.hero-card figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-card--small {
  z-index: 4;
  bottom: 4px;
  left: 0;
  width: 43%;
  height: 250px;
  border: 7px solid var(--orange);
}

.hero-card--small::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(17, 13, 13, 0.78));
  content: "";
}

.hero-card--video {
  z-index: 3;
  top: 0;
  left: 4%;
  width: 43%;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__stamp {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 20px;
  width: 144px;
  height: 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.hero__stamp::before,
.hero__stamp::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero__stamp::before {
  top: 10px;
}

.hero__stamp::after {
  bottom: 10px;
}

.hero__stamp strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.capabilities {
  position: relative;
  z-index: 8;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capabilities article {
  min-height: 138px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 28px;
  border-left: 1px solid var(--line);
}

.capabilities article:last-child {
  border-right: 1px solid var(--line);
}

.capabilities__number {
  align-self: start;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.capabilities h2 {
  margin-bottom: 6px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.capabilities p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.services {
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 390px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  box-shadow: 0 22px 55px rgba(33, 29, 31, 0.12);
  transform: translateY(-4px);
}

.service-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--sand);
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 55%, rgba(20, 15, 15, 0.52));
  content: "";
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.service-card:hover .service-card__media img {
  transform: scale(1.045);
}

.service-card__media > span {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 750;
  letter-spacing: -0.06em;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 36px;
}

.service-card__kicker {
  margin-bottom: 20px;
  color: var(--orange-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 2vw, 2.05rem);
}

.service-card__body > p:not(.service-card__kicker) {
  margin-bottom: 26px;
  color: var(--ink-muted);
  font-size: 0.91rem;
}

.service-card .text-link {
  margin-top: auto;
}

.project {
  overflow: hidden;
  background: var(--cream);
}

.project__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 95px;
  align-items: center;
}

.project__media {
  position: relative;
  min-height: 650px;
}

.project__media::before {
  position: absolute;
  top: 34px;
  left: -50vw;
  width: calc(50vw + 26%);
  height: 77%;
  background: var(--orange);
  content: "";
}

.project__board {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 90%;
  height: 410px;
  overflow: hidden;
  border: 10px solid var(--white);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.project__detail {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 0;
  width: 39%;
  height: 360px;
  overflow: hidden;
  border: 8px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.project__caption {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 2%;
  max-width: 230px;
  margin: 0;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.project__caption strong {
  color: var(--white);
  font-size: 0.84rem;
}

.project__copy h2 {
  max-width: 600px;
}

.project__lead {
  margin-bottom: 36px;
  color: var(--ink-muted);
  font-size: 1.04rem;
}

.feature-list {
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list article > span {
  padding-top: 3px;
  color: var(--orange-dark);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.feature-list h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.feature-list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.audiences {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--white);
  background: var(--orange-dark);
}

.audiences::before {
  position: absolute;
  top: -46%;
  left: -10%;
  width: 650px;
  height: 650px;
  border: 110px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.audiences::after {
  position: absolute;
  right: -110px;
  bottom: -100px;
  width: 430px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  transform: rotate(-20deg);
}

.audiences__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  align-items: start;
}

.audiences h2 {
  margin-bottom: 0;
}

.audiences h2 em {
  color: #f6bf9f;
}

.audiences__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.audiences__cards article {
  min-height: 310px;
  padding: 34px 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
  transition: background-color 180ms ease, transform 180ms ease;
}

.audiences__cards article:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.audiences__cards svg {
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  fill: #f6bf9f;
}

.audiences__cards h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.audiences__cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.65;
}

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  gap: 105px;
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: 690px;
}

.about__main-photo {
  position: absolute;
  inset: 0 18% 0 0;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.about__main-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 15, 15, 0.35));
  content: "";
}

.about__main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__detail-photo {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 36px;
  width: 45%;
  height: 325px;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

.about__detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__mark {
  position: absolute;
  z-index: 3;
  top: 36px;
  right: 3%;
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-dark);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1;
}

.about__copy h2 {
  max-width: 760px;
}

.about__lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.75;
}

.about__copy > p:not(.eyebrow):not(.about__lead) {
  color: var(--ink-muted);
}

.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.values article {
  min-height: 175px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.values h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.values p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.portfolio {
  background: var(--cream);
}

.portfolio__heading > div:last-child {
  align-self: end;
}

.portfolio__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.portfolio__tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.045em;
}

.portfolio__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 280px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.portfolio-item--wide {
  grid-column: span 8;
}

.portfolio-item--tall {
  grid-row: span 2;
}

.portfolio-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 12, 13, 0.86));
  content: "";
  transition: opacity 220ms ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.25, 1), filter 300ms ease;
}

.portfolio-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.portfolio-item__index {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
}

.portfolio-item__caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.25;
}

.portfolio-item__caption small {
  display: block;
  margin-bottom: 7px;
  color: #f5b38d;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.process__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process__list li {
  position: relative;
  min-height: 330px;
  padding: 26px 24px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.process__list li:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-5px);
}

.process__list li > span {
  display: block;
  margin-bottom: 42px;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.process__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  background: var(--sand-light);
  transition: background-color 180ms ease;
}

.process__icon svg {
  width: 31px;
  height: 31px;
  fill: var(--ink);
  transition: fill 180ms ease;
}

.process__list li:hover .process__icon {
  background: var(--orange-dark);
}

.process__list li:hover .process__icon svg {
  fill: var(--white);
}

.process__list h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.process__list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  transition: color 180ms ease;
}

.process__list li:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 124px 0;
  color: var(--white);
  background: var(--ink);
}

.contact::before {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 660px;
  height: 660px;
  border: 120px solid rgba(192, 91, 31, 0.13);
  border-radius: 50%;
  content: "";
}

.contact__noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
  gap: 90px;
  align-items: start;
}

.contact__copy h2 {
  color: var(--white);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.contact__links {
  border-top: 1px solid var(--line-light);
}

.contact__links > a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 160ms ease, padding-left 160ms ease;
}

.contact__links > a:hover {
  padding-left: 8px;
  color: #f5b38d;
}

.contact__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact__links small,
.contact__links strong {
  display: block;
}

.contact__links small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact__links strong {
  font-size: 1rem;
  font-weight: 680;
}

.contact-form {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-form__heading span {
  color: var(--orange-dark);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form__heading strong {
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

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

.form-grid label {
  display: block;
}

.form-grid label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.055em;
}

.form-grid__full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 142px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange-dark);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 91, 31, 0.12);
}

textarea::placeholder {
  color: #9b9491;
}

.contact-form .button {
  margin-top: 24px;
  cursor: pointer;
}

.contact-form__note {
  margin: 13px 0 0;
  color: var(--ink-muted);
  font-size: 0.71rem;
  line-height: 1.55;
  text-align: center;
}

.footer {
  color: rgba(255, 255, 255, 0.7);
  background: #141113;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 80px;
  padding: 70px 0 52px;
}

.footer__brand img {
  width: 180px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.footer__nav,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 0.8rem;
}

.footer__nav a,
.footer__contact a,
.footer__bottom a {
  transition: color 160ms ease;
}

.footer__nav a:hover,
.footer__contact a:hover,
.footer__bottom a:hover {
  color: var(--white);
}

.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.71rem;
}

.footer__bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.72rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
    gap: 42px;
  }

  .hero__visual {
    min-height: 550px;
  }

  .hero-card--main {
    height: 420px;
  }

  .hero-card--small {
    height: 220px;
  }

  .hero__stamp {
    width: 125px;
    height: 125px;
  }

  .service-card {
    grid-template-columns: 0.83fr 1.17fr;
  }

  .service-card__body {
    padding: 32px 28px;
  }

  .project__grid,
  .about__grid {
    gap: 65px;
  }

  .audiences__inner {
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    gap: 50px;
  }

  .audiences__cards article {
    padding: 30px 22px;
  }

  .contact__grid {
    grid-template-columns: minmax(320px, 0.75fr) minmax(500px, 1.25fr);
    gap: 55px;
  }
}

@media (max-width: 1020px) {
  html {
    scroll-padding-top: 128px;
  }

  .topbar {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
    justify-content: space-between;
  }

  .brand {
    width: 154px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav__scroll {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .mobile-nav__scroll::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 0.67rem;
    font-weight: 760;
    white-space: nowrap;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 78px 0 88px;
  }

  .hero__copy {
    max-width: 780px;
  }

  .hero__visual {
    width: min(100%, 760px);
    min-height: 560px;
    margin-inline: auto;
  }

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

  .capabilities article:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .capabilities article:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

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

  .service-card {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    min-height: 350px;
  }

  .project__grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .project__media {
    width: min(100%, 760px);
  }

  .project__copy {
    max-width: 790px;
  }

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

  .audiences__heading {
    max-width: 680px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .about__visual {
    width: min(100%, 720px);
    min-height: 650px;
  }

  .portfolio__grid {
    grid-auto-rows: 250px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-item,
  .portfolio-item--wide {
    grid-column: span 1;
  }

  .portfolio-item--tall {
    grid-row: span 2;
  }

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

  .process__list li:last-child {
    grid-column: 1 / -1;
    min-height: 270px;
  }

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

  .contact__copy {
    max-width: 780px;
  }

  .contact-form {
    max-width: 800px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.65rem);
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 0.7rem;
  }

  .hero__inner {
    padding-top: 62px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    gap: 22px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .hero-card--main {
    top: 40px;
    width: 84%;
    height: 390px;
  }

  .hero-card--small {
    width: 46%;
    height: 210px;
  }

  .hero-card--video {
    left: 0;
    width: 45%;
    height: 145px;
  }

  .hero__stamp {
    right: 2%;
    bottom: 5px;
    width: 110px;
    height: 110px;
    font-size: 0.53rem;
  }

  .hero__stamp strong {
    font-size: 0.86rem;
  }

  .capabilities article {
    min-height: 130px;
    padding: 22px 18px;
  }

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

  .service-card__media {
    min-height: 300px;
  }

  .project__media {
    min-height: 560px;
  }

  .project__board {
    width: 92%;
    height: 340px;
  }

  .project__detail {
    width: 42%;
    height: 300px;
  }

  .audiences {
    padding: 88px 0;
  }

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

  .audiences__cards article {
    min-height: 235px;
  }

  .audiences__cards svg {
    margin-bottom: 30px;
  }

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

  .portfolio__grid {
    grid-auto-rows: 280px;
    grid-template-columns: 1fr;
  }

  .portfolio-item,
  .portfolio-item--wide,
  .portfolio-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .process__list li,
  .process__list li:last-child {
    grid-column: auto;
    min-height: 270px;
  }

  .process__list li > span {
    margin-bottom: 28px;
  }

  .process__icon {
    margin-bottom: 28px;
  }

  .contact {
    padding: 88px 0;
  }

  .contact-form {
    padding: 30px 24px;
  }

  .contact-form__heading {
    display: block;
  }

  .contact-form__heading strong {
    display: block;
    margin-top: 9px;
  }

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

  .form-grid__full {
    grid-column: auto;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -8px 24px rgba(20, 16, 16, 0.19);
  }

  .mobile-actions a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.77rem;
    font-weight: 820;
  }

  .mobile-actions a:last-child {
    background: var(--orange-button);
  }

  .mobile-actions svg {
    width: 18px;
    height: 18px;
  }

  .footer {
    padding-bottom: 58px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 134px;
  }

  .header-cta {
    padding-inline: 11px;
  }

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

  .hero__tags {
    margin-top: 36px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero-card--main {
    top: 0;
    width: 100%;
    height: 315px;
    border-width: 5px;
  }

  .hero-card--video {
    display: none;
  }

  .hero-card--small {
    bottom: 0;
    width: 56%;
    height: 190px;
    border-width: 5px;
  }

  .hero__stamp {
    right: 0;
    bottom: 8px;
  }

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

  .capabilities article,
  .capabilities article:nth-child(2),
  .capabilities article:nth-child(3),
  .capabilities article:last-child {
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-card__media {
    min-height: 250px;
  }

  .service-card__body {
    padding: 30px 24px 34px;
  }

  .project__media {
    min-height: 470px;
  }

  .project__board {
    width: 100%;
    height: 285px;
    border-width: 6px;
  }

  .project__detail {
    right: 0;
    width: 46%;
    height: 260px;
    border-width: 6px;
  }

  .project__caption {
    bottom: 26px;
    left: 0;
    max-width: 205px;
  }

  .about__visual {
    min-height: 520px;
  }

  .about__main-photo {
    right: 12%;
  }

  .about__detail-photo {
    width: 49%;
    height: 245px;
    border-width: 5px;
  }

  .about__mark {
    top: 25px;
    width: 84px;
    height: 84px;
    font-size: 2.8rem;
  }

  .contact__links strong {
    font-size: 0.9rem;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}

@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;
  }

  .hero-card--video video {
    display: none;
  }

  .hero-card--video {
    background: #171214 url("assets/gareda-logo-animation-poster.webp") center / cover no-repeat;
  }
}
