:root {
  --bg: #101010;
  --bg-secondary: #14191E;
  --bg-card: #22292f;
  --text: #ffffff;
  --muted: #878787;
  --line: #282828;
  --line-size: 1px;
  --line-soft: rgba(217, 217, 217, 0.1);
  --stroke: #666e74;
  --gold: #a99160;
  --footer-bg: #f2f2f2;
  --footer-text: #1d2226;
  --header-bg: rgba(16, 16, 16, 0.97);
  --cols: 8;
  --gutter: 10px;
  --margin: clamp(16px, 3.75vw, 60px);
  --page: 1600px;
  --font: 'Onest', system-ui, sans-serif;
  color-scheme: dark;
}

html[data-theme='light'] {
  --bg: #f4f3ef;
  --bg-secondary: #fafafa;
  --bg-card: #d3d3d3;
  --text: #1d2226;
  --muted: #5c6368;
  --line: #d0d0d0;
  --line-soft: rgba(0, 0, 0, 0.08);
  --stroke: #6b7278;
  --header-bg: rgba(250, 250, 250, 0.97);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-secondary);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
p {
  margin: 0;
}

.page {
  overflow-x: clip;
  overflow-y: clip;
  background: var(--bg-secondary);
}

.wrap {
  --content: calc(min(100vw, var(--page)) - var(--margin) * 2);
  --col: calc((var(--content) - var(--gutter) * 7) / 8);
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--margin);
}

.span-2 {
  width: calc(var(--col) * 2 + var(--gutter));
}

.span-4 {
  width: calc(var(--col) * 4 + var(--gutter) * 3);
}

.inline-padding-5 {
  padding-inline: 5px;
}
.inline-padding-10 {
  padding-inline: 10px;
}
.inline-padding-15 {
  padding-inline: 15px;
}
.inline-padding-20 {
  padding-inline: 20px;
}
/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: var(--header-bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: relative;
  z-index: 2;
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.header-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(var(--col) * 5 + var(--gutter) * 3);
}

.meta-line {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.muted {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(var(--col) * 3 + var(--gutter) - 44px);
}

.nav-link {
  position: relative;
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  height: 0.5px;
  width: 0;
  background: var(--text);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.theme-toggle {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

html:not([data-theme='light']) .theme-icon--moon,
html[data-theme='light'] .theme-icon--sun {
  display: none;
}

.nav-mobile {
  display: none;
}

.drawer-toggle {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text);
  cursor: pointer;
}

.menu-btn svg {
  width: 32px;
  height: 32px;
}

.drawer-side {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(66.666%, 320px);
  height: 100%;
  padding: 40px 32px;
  overflow-y: auto;
  background: var(--bg);
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.drawer-panel a {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.drawer-toggle:checked ~ .drawer-side {
  pointer-events: auto;
}

.drawer-toggle:checked ~ .drawer-side .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.drawer-toggle:checked ~ .drawer-side .drawer-panel {
  pointer-events: auto;
  transform: translateX(0);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  z-index: 50;
}

/* Hero */
.hero {
  position: relative;
  z-index: 31;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  padding-top: 60px;
  pointer-events: none;
  background: var(--bg);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  container-type: size;
}

.hero-line {
  position: absolute;
  background: var(--line);
}

.hero-line--v1 {
  left: 50%;
  top: 53%;
  width: var(--line-size);
  height: 83%;
  transform: translate(-50%, -45%);
}

.hero-line--h1 {
  left: 50%;
  top: 58%;
  width: 10vw;
  height: var(--line-size);
  transform: translate(-50%, -50%);
}

.hero-line--d1,
.hero-line--d2 {
  left: 50%;
  top: 58%;
  width: 220vmax;
  height: 1px;
  transform-origin: 50% 50%;
}

.hero-line--d1 {
  transform: translate(-50%, -50%) rotate(atan2(40px - 55cqh, -50vw));
}

.hero-line--d2 {
  transform: translate(-50%, -50%) rotate(atan2(40px - 55cqh, 50vw));
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--gutter);
  padding-top: 40px;
  padding-bottom: 40px;
  pointer-events: auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(790px, calc(var(--col) * 5 + var(--gutter) * 4));
}

.hero-copy h1 {
  font-size: clamp(42px, 6.25vw, 100px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-lead {
  max-width: 440px;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--text);
  opacity: 0.5;
}

.hero-projects {
  position: absolute;
  left: calc(var(--margin) + var(--col) * 2 + var(--gutter) * 2);
  bottom: 20px;
  width: calc(var(--col) * 2 + var(--gutter));
  margin: 0;
  font-size: clamp(60px, 2.8vw, 45px);
  letter-spacing: -0.05em;
  line-height: 1.1;
  white-space: nowrap;
  padding-bottom: 18px;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 50vh;
  width: max-content;
  max-width: calc(var(--col) * 4 + var(--gutter) * 3);
}

.hero-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
}

.award {
  display: flex;
  align-items: center;
  gap: 20px;
}

.award-badge {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-badge img {
  position: absolute;
  inset: 0.8%;
  width: auto;
  height: auto;
}

.award-badge span {
  position: relative;
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.award-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.award-name {
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.award-cat {
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-social {
  display: flex;
  gap: 20px;
  opacity: 0.5;
  margin-bottom: 10px;
}

.hero-social a {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.hero-social a:hover,
.contact-line a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-line {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  align-items: baseline;
  font-size: clamp(28px, 2.8vw, 45px);
  letter-spacing: -0.05em;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-line a {
  font-size: clamp(30px, 3.1vw, 50px);
  font-weight: 300;
}

.contact-line--tg a {
  color: var(--muted);
  font-size: clamp(32px, 3.4vw, 55px);
}

/* Sections */
.section {
  padding-top: 0;
  padding-bottom: 80px;
}

#projects {
  position: relative;
  isolation: isolate;
}

#projects::before,
#projects::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

#projects::before {
  top: 0;
  height: 50%;
  background: var(--bg);
}

#projects::after {
  top: 12%;
  bottom: 0;
  background: var(--bg-secondary);
}

.descriptor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--muted);
}

.descriptor img {
  flex-shrink: 0;
}

/* Projects */
.projects-board {
  position: relative;
  width: 100%;
  aspect-ratio: 1480 / 1719;
}

.projects-board > .descriptor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  margin: 0;
}

.projects-note {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--muted);
  text-align: left;
  text-align-last: left;
}

.projects-note--a,
.projects-note--b,
.projects-note--c,
.projects-note--d {
  position: absolute;
  z-index: 2;
}

.projects-note--a {
  left: 0;
  top: calc(273 / 1719 * 100%);
  width: var(--col);
}

.projects-note--b {
  left: calc(var(--col) + var(--gutter));
  top: calc(393 / 1719 * 100%);
  width: var(--col);
}

.projects-note--c {
  left: calc(var(--col) * 7 + var(--gutter) * 7);
  top: calc(797 / 1719 * 100%);
  width: var(--col);
}

.projects-note--d {
  left: calc(var(--col) * 7 + var(--gutter) * 7);
  top: calc(939 / 1719 * 100%);
  width: var(--col);
}

.projects-cta {
  position: absolute;
  left: 0;
  top: calc(1619 / 1719 * 100%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(var(--col));
}

.projects-cta .projects-note {
  width: 100%;
}

.card {
  position: absolute;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--bg-card);
  color: inherit;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/card-noise.webp') top left / 1600px 900px;
  opacity: 0.25;
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card--pti {
  left: calc(var(--col) * 2 + var(--gutter) * 2);
  top: 0;
  width: calc(var(--col) * 6 + var(--gutter) * 5);
  aspect-ratio: 1103 / 600;
}

.card--nick {
  left: 0;
  top: calc(610 / 1719 * 100%);
  width: calc(var(--col) * 4 + var(--gutter) * 3);
  aspect-ratio: 735 / 550;
}

.card--alicana {
  left: calc(var(--col) * 4 + var(--gutter) * 4);
  top: calc(610 / 1719 * 100%);
  width: var(--col);
  z-index: 2;
}

.card--octava {
  left: calc(var(--col) * 4 + var(--gutter) * 4);
  top: calc(796 / 1719 * 100%);
  width: calc(var(--col) * 2 + var(--gutter));
  aspect-ratio: 362 / 364;
}

.card--rwb {
  left: calc(var(--col) * 2 + var(--gutter) * 2);
  top: calc(1170 / 1719 * 100%);
  width: calc(var(--col) * 2 + var(--gutter));
  aspect-ratio: 362 / 363;
}

.card--dyson {
  left: calc(var(--col) * 4 + var(--gutter) * 4);
  top: calc(1170 / 1719 * 100%);
  width: calc(var(--col) * 4 + var(--gutter) * 3);
  aspect-ratio: 735 / 549;
}

.card--landing {
  left: calc(var(--col) * 3 + var(--gutter) * 3);
  top: calc(1543 / 1719 * 100%);
  width: var(--col);
  z-index: 2;
}

.card--circle {
  border-radius: 50%;
  aspect-ratio: 1;
}

.card-title,
.card-index,
.card-year {
  position: absolute;
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.card-title {
  top: 10px;
  left: 10px;
}

.card-index {
  top: 10px;
  right: 10px;
  color: var(--muted);
}

.card-meta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
}

.tag {
  border: 1px solid var(--muted);
  border-radius: 50px;
  padding: 5px 10px;
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--muted);
  white-space: nowrap;
}

.card-year {
  position: static;
  color: var(--muted);
  opacity: 0.5;
  text-transform: none;
}

.card-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  font-size: clamp(120px, 22vw, 360px);
  letter-spacing: 0.02em;
  line-height: 0.8;
  color: #1c1b1b;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
  user-select: none;
}

.card-mark--pti {
  left: 20%;
  font-size: clamp(160px, 45vw, 800px);
  letter-spacing: 0.02em;
  opacity: 0.1;
}

.card-mark--dy {
  left: 53%;
  font-size: clamp(180px, 40vw, 724px);
  letter-spacing: 0.02em;
  color: #000;
  opacity: 0.09;
}

.card--nick::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
  aspect-ratio: 735 / 420;
  background: url('/images/nick-watermark.svg') left bottom / contain no-repeat;
  pointer-events: none;
  z-index: 1;
}

.card-shot--pti {
  position: absolute;
  left: 10.15%;
  top: 10%;
  width: 96.11%;
  height: 109.5%;
  max-width: none;
  object-fit: cover;
  object-position: left top;
}

.card-round-shot {
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.card-product {
  position: absolute;
  width: 64%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.card-product--alicana {
  left: 24%;
  top: 24%;
  width: 64.5%;
  height: 50%;
  transform: none;
  object-fit: contain;
}

.card-product--landing {
  left: 22.3%;
  top: 24%;
  width: 53.7%;
  height: 51%;
  transform: none;
  object-fit: contain;
}

.card-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.card-arc text,
.card-arc tspan {
  fill: var(--text);
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.56px;
  text-transform: uppercase;
}

.card--landing .card-arc text {
  font-size: 12px;
  letter-spacing: -0.48px;
}

.card--alicana .card-index {
  right: -2px;
}

.phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 29%;
  aspect-ratio: 213 / 442;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 34px;
  background: #f3f2ed;
  box-shadow:
    3.5px 3.5px 44px rgba(0, 0, 0, 0.35),
    5.3px 5.3px 13px rgba(0, 0, 0, 0.25);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 29%;
  height: 18px;
  background: #000;
  border-radius: 20px;
}

.tablet {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 68%;
  aspect-ratio: 246 / 178;
  overflow: hidden;
  border: 6px solid #0b0b0b;
  border-radius: 10px;
  box-shadow:
    0 4px 4px rgba(0, 0, 0, 0.25),
    0 4px 24px rgba(0, 0, 0, 0.25);
}

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

.phones {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.28%;
  width: 63.3%;
}

.phone.phone--sm {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: 31.2%;
  aspect-ratio: 145.159 / 296.63;
  border: 0;
  border-radius: 23.67px;
  background: #f3f2ed;
  box-shadow:
    1.4px 1.4px 4.9px rgba(0, 0, 0, 0.25),
    2.8px 2.8px 7px rgba(0, 0, 0, 0.15);
}

.phone--sm .phone-notch {
  top: 8px;
  width: 32%;
  height: 12px;
}

.phone--sm img {
  object-position: center top;
}

.phone--sm .phone-mid {
  object-position: center 18%;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid var(--muted);
  border-radius: 70px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text);
}

.btn-pill--sm {
  height: 24px;
  width: 100%;
  padding: 0 10px;
  gap: 10px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
}

.btn-pill--sm img {
  flex-shrink: 0;
}

.btn-pill:hover {
  background: color-mix(in srgb, var(--text) 8%, transparent);
}

html[data-theme='light'] .btn-pill img {
  filter: brightness(0);
}

html[data-theme='light'] .site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* About + Services */
.about-services {
  position: relative;
  z-index: 1;
  scroll-margin-top: 80px;
}

.about-services-board {
  --board-h: 2480;
  --photo-left: calc(var(--col) * 5 + var(--gutter) * 5);
  --photo-size: calc(var(--col) * 3 + var(--gutter) * 2);
  position: relative;
  width: 100%;
  aspect-ratio: 1480 / 2480;
  min-height: 2480px;
}

.about-services .about,
.about-services .services,
.about-services .reviews {
  display: contents;
}

.about-title,
.descriptor--about,
.descriptor--services,
.descriptor--reviews,
.about-content,
.expertise-title,
.reviews-title,
.services-disclaimer,
.services-col,
.service-card--03,
.service-card--06,
.services-contact,
.reviews-list {
  z-index: 3;
}

.about-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.about-line {
  position: absolute;
  background: var(--line);
}

.about-line--v1 {
  left: calc(var(--col) * 2 + var(--gutter) * 2);
  top: calc(36 / var(--board-h) * 100%);
  width: 1px;
  height: calc(2344 / var(--board-h) * 104%);
}

.about-line--v2 {
  left: 50%;
  top: -3%;
  width: 1px;
  height: calc(2344 / var(--board-h) * 92%);
}

.about-line--h1 {
  left: 0;
  top: calc(722 / var(--board-h) * 100%);
  width: 100%;
  height: 1px;
}

.about-line--h2 {
  left: 0;
  top: calc(1950 / var(--board-h) * 100%);
  width: 100%;
  height: 1px;
}

.about-line--h3 {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.about-x {
  position: absolute;
  left: calc(var(--photo-left) - 12%);
  top: calc(722 / var(--board-h) * 100%);
  width: 0;
  height: 0;
}

.about-x span {
  position: absolute;
  left: 0;
  top: 0;
  width: 220vmax;
  height: 1px;
  background: var(--line);
  transform-origin: left center;
}

.about-x span:first-child {
  transform: translateY(-40%) rotate(45deg);
}

.about-x span:last-child {
  transform: translateY(-40%) rotate(-45deg);
}

.about-title {
  position: absolute;
  left: calc(var(--col) + var(--gutter));
  top: calc(95 / var(--board-h) * 100%);
  width: calc(var(--col) * 6 + var(--gutter) * 5);
  font-size: clamp(32px, 3.75vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: justify;
  text-indent: calc(var(--col) + var(--gutter));
  scroll-margin-top: 80px;
}

.descriptor--about,
.descriptor--services,
.descriptor--reviews {
  position: absolute;
  left: 0;
  margin: 0;
}

.descriptor--about {
  top: calc(371 / var(--board-h) * 100%);
}

.about-content {
  position: absolute;
  left: calc(var(--col) * 2 + var(--gutter) * 2);
  top: calc(371 / var(--board-h) * 100%);
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: calc(var(--col) * 2 + var(--gutter));
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-copy p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--muted);
}

.btn-pill--about {
  width: 208px;
  height: 30px;
  padding: 10px;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-pill--about img {
  width: 40px;
  height: 20px;
  flex-shrink: 0;
}

.about-photo {
  position: absolute;
  left: var(--photo-left);
  top: calc(722 / var(--board-h) * 100% - var(--photo-size) / 2);
  z-index: 20;
  width: var(--photo-size);
  height: var(--photo-size);
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.expertise-title {
  position: absolute;
  left: calc(var(--col) * 2 + var(--gutter) * 2);
  top: calc(821 / var(--board-h) * 100%);
  width: calc(var(--col) * 2 + var(--gutter));
  font-size: clamp(32px, 3.75vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: justify;
  scroll-margin-top: 80px;
}

.descriptor--services {
  top: calc(989 / var(--board-h) * 100%);
}

.services-disclaimer {
  position: absolute;
  left: 0;
  top: calc(1053 / var(--board-h) * 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: var(--col);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--muted);
  opacity: 0.5;
}

.services-col {
  position: absolute;
  left: calc(var(--col) * 2 + var(--gutter) * 2);
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: calc(var(--col) * 2 + var(--gutter));
}

.services-col--a {
  top: calc(989 / var(--board-h) * 100%);
}

.services-col--b {
  top: calc(1541 / var(--board-h) * 100%);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
}

.service-card--03,
.service-card--06 {
  position: absolute;
  left: calc(var(--col) * 5 + var(--gutter) * 5);
  width: calc(var(--col) * 2 + var(--gutter));
}

.service-card--03 {
  top: calc(1357 / var(--board-h) * 100%);
}

.service-card--06 {
  top: calc(1645 / var(--board-h) * 100%);
}

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.service-card-head h3 {
  margin: 0;
  font-size: inherit;
  font-weight: 400;
  text-align: right;
  text-transform: uppercase;
}

.service-card p {
  width: min(300px, 100%);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: right;
  color: var(--muted);
  opacity: 0.5;
}

.services-contact {
  position: absolute;
  left: 0;
  top: calc(1541 / var(--board-h) * 100%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: var(--col);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--muted);
  opacity: 0.5;
}

.services-contact-links {
  display: flex;
  flex-direction: column;
}

.services-contact-links span {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 20px;
}

.services-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-title {
  position: absolute;
  left: calc(var(--col) * 2 + var(--gutter) * 2);
  top: calc(2049 / var(--board-h) * 100%);
  width: calc(var(--col) * 2 + var(--gutter));
  font-size: clamp(32px, 3.75vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  scroll-margin-top: 80px;
}

.descriptor--reviews {
  top: calc(2232 / var(--board-h) * 100%);
}

.reviews-list {
  position: absolute;
  left: calc(var(--col) * 2 + var(--gutter) * 2);
  top: calc(2217 / var(--board-h) * 100%);
  width: calc(var(--col) * 6 + var(--gutter) * 5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-row {
  display: grid;
  grid-template-columns:
    calc(var(--col) * 2 + var(--gutter) * 1.5)
    calc(var(--col) + var(--gutter))
    1fr;
  gap: var(--gutter);
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.review-client {
  color: var(--text);
}

.review-type,
.review-work {
  font-weight: 300;
  color: var(--muted);
}

.review-client,
.review-type,
.review-work {
  min-width: 0;
  white-space: nowrap;
}

/* Footer */
.footer {
  position: relative;
  background: var(--footer-bg);
  color: var(--footer-text);
  color-scheme: light;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding-top: 34px;
  padding-bottom: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-lead {
  width: calc(var(--col) * 2 + var(--gutter));
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  opacity: 0.5;
}

.footer-meow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.footer-contacts {
  margin-top: 166px;
  font-size: clamp(36px, 5vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.footer-contacts a {
  text-transform: lowercase;
}

.footer-contacts a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.footer-mid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 40px;
}

.footer-policies {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  letter-spacing: -0.04em;
  opacity: 0.5;
}

.footer-btns {
  display: flex;
  width: calc(var(--col) * 2 + var(--gutter));
}

.btn-ghost,
.btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.btn-ghost {
  border: 1px solid var(--stroke);
  color: var(--stroke);
}

.btn-ghost:first-child {
  flex: 0 0 60px;
  padding: 0;
}

.btn-ghost:nth-child(2),
.btn-dark {
  flex: 1;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d9d9d9;
  opacity: 0.5;
  font-size: 16px;
  letter-spacing: -0.04em;
}

.logo-foot {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive: 4 columns */
@media (max-width: 960px) {
  .header-end {
    width: auto;
    flex: 1;
    margin-left: 24px;
    gap: 24px;
  }

  .nav {
    width: auto;
    gap: 24px;
  }

  .hero-body {
    flex-direction: column;
    gap: 48px;
    padding-top: 48px;
  }

  .hero-projects {
    position: static;
    left: auto;
    bottom: auto;
    width: auto;
  }

  .hero-copy,
  .hero-aside {
    width: 100%;
  }

  .hero-aside {
    align-items: flex-start;
    gap: 32px;
    min-height: 0;
    max-width: none;
  }

  .contact-line {
    white-space: normal;
    flex-wrap: wrap;
  }

  .projects-board {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
  }

  .projects-board > .descriptor,
  .projects-note--a,
  .projects-note--b,
  .projects-note--c,
  .projects-note--d,
  .projects-cta,
  .card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    z-index: auto;
  }

  .projects-note--b,
  .projects-note--c,
  .projects-note--d {
    display: none;
  }

  .projects-note--a {
    width: min(280px, 100%);
    margin-bottom: 8px;
  }

  .card--circle {
    width: min(220px, 46%);
    align-self: center;
  }

  .projects-cta {
    width: min(280px, 100%);
  }

  .span-4,
  .span-2 {
    width: 100%;
  }

  .about-services-board {
    aspect-ratio: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 0 80px;
  }

  .about-lines,
  .about-x {
    display: none;
  }

  .about-services .about,
  .about-services .services,
  .about-services .reviews {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .about-title,
  .descriptor--about,
  .descriptor--services,
  .descriptor--reviews,
  .about-content,
  .about-photo,
  .expertise-title,
  .reviews-title,
  .services-disclaimer,
  .services-col,
  .service-card--03,
  .service-card--06,
  .services-contact,
  .reviews-list {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .about-title {
    text-indent: 0;
    text-align: left;
  }

  .expertise-title,
  .reviews-title {
    text-align: left;
  }

  .review-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .review-client,
  .review-type,
  .review-work {
    white-space: normal;
  }

  .about-content {
    gap: 24px;
  }

  .about-photo {
    width: min(360px, 70%);
    height: auto;
    aspect-ratio: 1;
    align-self: center;
  }

  .service-card-head {
    white-space: normal;
    font-size: 20px;
  }

  .footer-contacts {
    margin-top: 48px;
  }

  .footer-btns {
    width: min(100%, 361px);
  }
}

/* Responsive: 2 columns */
@media (max-width: 720px) {
  .header-end {
    width: auto;
    margin-left: 16px;
    flex: 1;
    justify-content: flex-end;
    gap: 16px;
  }

  .meta-line span:first-child {
    display: none;
  }

  .nav--desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }

  .hero {
    min-height: 0;
  }

  .hero-body {
    padding-bottom: 48px;
  }

  .card--circle {
    width: min(176px, 70%);
  }

  .about-copy p,
  .service-card p {
    font-size: 16px;
  }

  .card--pti {
    aspect-ratio: 4 / 3;
  }

  .card-shot--pti {
    width: 90%;
    top: 18%;
  }

  .tag {
    padding: 4px 8px;
  }

  .footer-top,
  .footer-mid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-lead,
  .footer-btns {
    width: 100%;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .footer-year {
    align-self: center;
  }
}
