: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);
  --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;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}

@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 {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--margin);
}

.inline-padding-5 {
  padding-inline: 5px;
}

.inline-padding-10 {
  padding-inline: 10px;
}

.inline-padding-15 {
  padding-inline: 15px;
}

.inline-padding-20 {
  padding-inline: 20px;
}

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

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

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

.header {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  column-gap: var(--gutter);
  align-items: center;
  height: 60px;
  position: relative;
  z-index: 2;
}

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

.header-end {
  grid-column: 4/-1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
}
.header-end > .meta-line {
  grid-column: 1/3;
  grid-row: 1;
  justify-self: start;
}
.header-end > .inline-padding-5 {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}
.header-end > .nav {
  grid-column: 3/-1;
  grid-row: 1;
}

.meta-line {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 5px;
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

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

.clock-sep.is-dim {
  opacity: 0;
}

.nav {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
}

.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 {
  --track: 50px;
  --size: 24px;
  --border: 1.5px;
  --pad: 2px;
  --thumb: calc(var(--size) - var(--border) * 2 - var(--pad) * 2);
  display: inline-grid;
  flex-shrink: 0;
  align-items: center;
  width: var(--track);
  height: var(--size);
  margin-left: 12px;
  padding: var(--pad);
  border: var(--border) solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  color: #8f8f8f;
  cursor: pointer;
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}
.theme-toggle__thumb {
  display: grid;
  place-items: center;
  width: var(--thumb);
  height: var(--thumb);
  border-radius: 50%;
  background: #fff;
  transition: transform 0.28s ease;
}
.theme-toggle svg {
  width: 16px;
  height: 16px;
}

html[data-theme=light] .theme-toggle {
  border-color: rgba(29, 34, 38, 0.28);
}
html[data-theme=light] .theme-toggle__thumb {
  transform: translateX(calc(var(--track) - var(--border) * 2 - var(--pad) * 2 - var(--thumb)));
}

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

@media (prefers-reduced-motion: reduce) {
  .theme-toggle__thumb {
    transition: none;
  }
}
.nav-mobile {
  display: none;
}

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

.menu-btn {
  display: grid;
  place-items: 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: grid;
  align-content: start;
  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;
}

@media (max-width: 960px) {
  .header {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 24px;
  }
  .logo {
    grid-column: 1;
  }
  .header-end {
    grid-column: 2;
    grid-template-columns: max-content max-content max-content;
    justify-content: space-between;
    justify-self: stretch;
    column-gap: 24px;
  }
  .header-end > .meta-line,
  .header-end > .inline-padding-5,
  .header-end > .nav,
  .header-end > .nav-mobile {
    grid-column: auto;
    justify-self: auto;
  }
  .nav {
    gap: 24px;
  }
}
@media (max-width: 720px) {
  .header {
    column-gap: 16px;
  }
  .header-end {
    column-gap: 16px;
    justify-content: end;
  }
  .meta-line span:first-child {
    display: none;
  }
  .nav--desktop {
    display: none;
  }
  .nav-mobile {
    display: grid;
  }
}
.hero {
  position: relative;
  z-index: 31;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  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-hline,
.hero-body {
  grid-column: 1;
  grid-row: 1;
}

.hero-hline {
  height: 0;
  align-self: start;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  column-gap: var(--gutter);
  grid-template-rows: minmax(0, 1fr);
  align-items: start;
  padding-top: 40px;
  padding-bottom: 40px;
  pointer-events: auto;
}

.hero-copy {
  grid-column: 1/6;
  grid-row: 1;
  justify-self: start;
  align-self: start;
  display: grid;
  align-content: start;
  gap: 20px;
  width: 100%;
  max-width: 790px;
  min-width: 0;
}
.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 {
  grid-column: 3/5;
  grid-row: 1;
  align-self: end;
  justify-self: stretch;
  position: relative;
  z-index: 1;
  margin: 0 0 -20px;
  font-size: clamp(60px, 2.8vw, 45px);
  letter-spacing: -0.05em;
  line-height: 1.1;
  white-space: nowrap;
  padding-bottom: 18px;
}

.hero-aside {
  grid-column: 5/-1;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  display: grid;
  align-content: space-between;
  justify-items: end;
  width: max-content;
  max-width: 100%;
  min-height: 50vh;
}

.hero-contacts {
  justify-self: start;
  display: grid;
  justify-items: start;
  width: max-content;
}

.award {
  justify-self: end;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.award-badge {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.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: grid;
  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: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  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 {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-line {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: start;
  align-items: baseline;
  gap: 5px;
  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 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-line--tg a {
  color: var(--muted);
  font-size: clamp(32px, 3.4vw, 55px);
}

@media (max-width: 960px) {
  .hero-body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    row-gap: 48px;
    padding-top: 48px;
  }
  .hero-copy,
  .hero-aside,
  .hero-projects {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: none;
  }
  .hero-copy {
    justify-self: stretch;
  }
  .hero-projects {
    align-self: start;
    justify-self: start;
    width: auto;
    margin: 0;
  }
  .hero-aside {
    justify-self: stretch;
    justify-items: start;
    align-content: start;
    gap: 32px;
    min-height: 0;
  }
  .award {
    justify-self: start;
  }
  .contact-line {
    white-space: normal;
    grid-template-columns: max-content minmax(0, max-content);
    grid-auto-flow: column;
  }
}
@media (max-width: 720px) {
  .hero {
    min-height: 0;
    grid-template-rows: auto;
  }
  .hero-body {
    padding-bottom: 48px;
  }
}
#projects {
  scroll-margin-top: 100px;
}

.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: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--muted);
}
.descriptor img {
  width: 24px;
  height: 24px;
}

.projects-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  column-gap: var(--gutter);
  grid-template-rows: [y0] minmax(0, 273fr) [y273] minmax(0, 120fr) [y393] minmax(0, 217fr) [y610] minmax(0, 186fr) [y796] minmax(0, 1fr) [y797] minmax(0, 142fr) [y939] minmax(0, 231fr) [y1170] minmax(0, 373fr) [y1543] minmax(0, 76fr) [y1619] minmax(0, 100fr) [y1719];
  width: 100%;
  aspect-ratio: 1480/1719;
}
.projects-board > .descriptor {
  grid-column: 1;
  grid-row: y0;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  justify-self: start;
  width: max-content;
  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 {
  z-index: 2;
}
.projects-note--a {
  grid-column: 1;
  grid-row: y273;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
}
.projects-note--b {
  grid-column: 2;
  grid-row: y393;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
}
.projects-note--c, .projects-note--d {
  grid-column: 8;
  grid-row: y797;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
}
.projects-note--d {
  grid-row: y939;
}

.projects-cta {
  grid-column: 1;
  grid-row: y1619;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 20px;
}
.projects-cta .projects-note {
  width: 100%;
}

.card {
  display: grid;
  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 {
  grid-column: 3 / 9;
  grid-row: y0;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  aspect-ratio: 1103/600;
}
.card--pti::after {
  content: none;
}
.card--pti > .card-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-card);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.card--pti > .card-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/card-noise.webp") top left/1600px 900px;
  opacity: 0.25;
  pointer-events: none;
}
.card--pti:hover > .card-fill {
  transform: scale(1.08);
}
.card--pti > .card-title,
.card--pti > .card-index,
.card--pti > .card-meta {
  z-index: 2;
}
.card--pti:hover .card-shot--pti {
  transform: scale(1.12);
}
.card--nick {
  grid-column: 1 / 5;
  grid-row: y610;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  aspect-ratio: 735/550;
}
.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--octava {
  grid-column: 5 / 7;
  grid-row: y796;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  aspect-ratio: 362/364;
}
.card--rwb {
  grid-column: 3 / 5;
  grid-row: y1170;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  aspect-ratio: 362/363;
}
.card--dyson {
  grid-column: 5 / 9;
  grid-row: y1170;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  aspect-ratio: 735/549;
}
.card--circle {
  border-radius: 50%;
  aspect-ratio: 1;
}

.card-slot {
  position: relative;
}
.card-slot--alicana, .card-slot--landing {
  z-index: 2;
}
.card-slot--alicana .card-index, .card-slot--landing .card-index {
  right: 0;
}
.card-slot--alicana .card, .card-slot--landing .card {
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: 1;
}
.card-slot--alicana {
  grid-column: 5;
  grid-row: y610;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
}
.card-slot--landing {
  grid-column: 4;
  grid-row: y1543;
  align-self: start;
  justify-self: stretch;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
}

.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: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px;
}

.tags {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 1px;
}

.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-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;
  transform-origin: 62% 36%;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.pti-screen {
  width: 1020px;
  height: 660px;
  overflow: hidden;
  background: #061923;
  transform: matrix3d(0.8762044767, 0.1301307925, 0, 0.0000220206, -0.0384489725, 1, 0, -0.0000558311, 0, 0, 1, 0, 320, 106, 0, 1);
  transform-origin: 0 0;
}

.pti-site {
  width: 100%;
  height: auto;
  max-width: none;
  animation: pti-site-scroll 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes pti-site-scroll {
  0%, 8% {
    transform: translateY(0);
  }
  92%, 100% {
    transform: translateY(calc(-100% + 660px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .card--pti > .card-fill,
  .card-shot--pti {
    transition: none;
  }
  .pti-site {
    animation: none;
  }
}
.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;
}

.phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 29%;
  aspect-ratio: 213/442;
  overflow: hidden;
  border: 4px solid #000000;
  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;
}
.phone--sm {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: 100%;
  aspect-ratio: 145.159/296.63;
  border: 4px solid #000000;
  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%;
}

.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: grid;
  grid-template-columns: repeat(3, 31.2%);
  align-items: center;
  justify-content: center;
  gap: 3.28%;
  width: 63.3%;
}

.btn-pill {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 50px;
  border: 1px solid var(--muted);
  border-radius: 70px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text);
}
.btn-pill:hover {
  background: color-mix(in srgb, var(--text) 8%, transparent);
}
.btn-pill--sm {
  height: 24px;
  width: 100%;
  padding: 0 10px;
  gap: 10px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
}
.btn-pill--sm img {
  width: 40px;
  height: 20px;
}
.btn-pill--about {
  width: 208px;
  height: 30px;
  gap: 10px;
  white-space: nowrap;
}
.btn-pill--about img {
  width: 40px;
  height: 20px;
}

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

@media (max-width: 960px) {
  .projects-board {
    aspect-ratio: auto;
    height: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    row-gap: var(--gutter);
  }
  .projects-board > .descriptor,
  .projects-note--a,
  .projects-note--b,
  .projects-note--c,
  .projects-note--d,
  .projects-cta,
  .card-slot,
  .card {
    position: relative;
    inset: auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: auto;
    z-index: auto;
    align-self: stretch;
  }
  .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%);
    justify-self: center;
  }
  .projects-cta {
    width: min(280px, 100%);
  }
}
@media (max-width: 720px) {
  .card--circle {
    width: min(176px, 70%);
  }
  .card--pti {
    aspect-ratio: 4/3;
  }
  .card-shot--pti {
    width: 90%;
    top: 18%;
  }
  .tag {
    padding: 4px 8px;
  }
}
.about-services {
  position: relative;
  z-index: 1;
  scroll-margin-top: 80px;
}

.about-services-board {
  position: relative;
  display: grid;
  gap: clamp(48px, 6vw, 96px);
  padding-block: clamp(48px, 6vw, 96px);
}

.about,
.about-bridge,
.services,
.reviews {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  column-gap: var(--gutter);
  align-items: start;
}

.about-title,
.descriptor--about,
.descriptor--services,
.descriptor--reviews,
.about-content,
.expertise-title,
.reviews-title,
.services-disclaimer,
.service-card,
.services-contact,
.reviews-list {
  position: relative;
  z-index: 1;
  min-width: 0;
}

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

.about-line {
  position: absolute;
  background: var(--line);
}
.about-line--v1, .about-line--v2 {
  top: 0;
  bottom: 0;
  width: 1px;
}
.about-line--v1 {
  left: calc(2 * (100% - 7 * var(--gutter)) / 8 + 2 * var(--gutter));
}
.about-line--v2 {
  left: 50%;
}
.about-line--h {
  position: relative;
  grid-column: 1/-1;
  grid-row: 1/span 2;
  align-self: center;
  height: 1px;
  z-index: 0;
}

.about-x {
  position: relative;
  z-index: 2;
  grid-column: 5;
  grid-row: 1/span 2;
  justify-self: start;
  align-self: center;
  width: 0;
  height: 0;
  pointer-events: none;
}
.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 {
  row-gap: clamp(40px, 5vw, 80px);
}

.about-title {
  grid-column: 2/8;
  font-size: clamp(32px, 3.75vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: justify;
  text-indent: calc((100% - 5 * var(--gutter)) / 6 + var(--gutter));
  scroll-margin-top: 80px;
}

.descriptor--about,
.descriptor--services,
.descriptor--reviews {
  grid-column: 1;
  justify-self: start;
  width: max-content;
  margin: 0;
}

.about-content {
  grid-column: 3/5;
  grid-row: 2;
  display: grid;
  align-content: start;
  gap: 60px;
}

.descriptor--about {
  grid-row: 2;
}

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

.about-bridge {
  align-items: stretch;
}

.about-photo {
  grid-column: 6/9;
  grid-row: 1/span 2;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.expertise-title,
.reviews-title {
  font-size: clamp(32px, 3.75vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  scroll-margin-top: 80px;
}

.expertise-title {
  grid-column: 3/5;
  grid-row: 1/span 2;
  align-self: end;
  margin-bottom: clamp(24px, 3vw, 48px);
}

.services {
  row-gap: clamp(32px, 4vw, 60px);
}

.descriptor--services {
  grid-row: 1;
}

.services-disclaimer {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--muted);
  opacity: 0.5;
}

.service-card {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 40px;
  width: 100%;
}
.service-card--01, .service-card--02, .service-card--04, .service-card--05 {
  grid-column: 3/5;
}
.service-card--01 {
  grid-row: 1;
}
.service-card--02 {
  grid-row: 2;
}
.service-card--03, .service-card--06 {
  grid-column: 6/8;
  align-self: end;
}
.service-card--03 {
  grid-row: 2;
}
.service-card--04 {
  grid-row: 3;
}
.service-card--05 {
  grid-row: 4;
}
.service-card--06 {
  grid-row: 4;
}
.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;
}

.service-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  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;
}

.services-contact {
  grid-column: 1;
  grid-row: 3/span 2;
  display: grid;
  align-content: start;
  gap: 40px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--muted);
  opacity: 0.5;
}
.services-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-contact-links {
  display: grid;
}
.services-contact-links span {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 5px;
  min-height: 20px;
}

.reviews {
  row-gap: clamp(24px, 3vw, 48px);
  padding-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--line);
}

.reviews-title {
  grid-column: 3/5;
}

.descriptor--reviews {
  grid-row: 2;
}

.reviews-list {
  grid-column: 3/-1;
  grid-row: 2;
  display: grid;
  grid-template-columns: subgrid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.review-client {
  grid-column: 1/3;
  color: var(--text);
}

.review-type {
  grid-column: 3;
}

.review-work {
  grid-column: 4/-1;
}

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

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

@media (max-width: 960px) {
  .about-services-board {
    gap: 32px;
    padding: 48px 0 80px;
  }
  .about-lines,
  .about-x,
  .about-line--h {
    display: none;
  }
  .about,
  .about-bridge,
  .services,
  .reviews {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
    align-content: start;
  }
  .reviews {
    padding-top: 0;
    border-top: 0;
  }
  .about-title,
  .descriptor--about,
  .descriptor--services,
  .descriptor--reviews,
  .about-content,
  .about-photo,
  .expertise-title,
  .reviews-title,
  .services-disclaimer,
  .service-card,
  .services-contact,
  .reviews-list {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .about-title,
  .expertise-title,
  .reviews-title {
    text-indent: 0;
    text-align: left;
  }
  .reviews-list {
    grid-template-columns: none;
  }
  .review-row {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }
  .review-client,
  .review-type,
  .review-work {
    grid-column: auto;
    white-space: normal;
  }
  .about-content {
    gap: 24px;
  }
  .about-photo {
    width: min(360px, 70%);
    height: auto;
    aspect-ratio: 1;
    justify-self: center;
  }
  .service-card {
    justify-items: start;
  }
  .service-card p,
  .service-card h3 {
    text-align: left;
  }
  .service-card-head {
    white-space: normal;
    font-size: 20px;
  }
}
@media (max-width: 720px) {
  .about-copy p,
  .service-card p {
    font-size: 16px;
  }
}
.footer {
  position: relative;
  background: var(--footer-bg);
  color: var(--footer-text);
  color-scheme: light;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  column-gap: var(--gutter);
  align-content: start;
  padding-top: 34px;
  padding-bottom: 24px;
}

.footer-top,
.footer-contacts,
.footer-mid,
.footer-bottom {
  grid-column: 1/-1;
}

.footer-top {
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
}

.footer-lead {
  grid-column: 1/3;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  opacity: 0.5;
}

.footer-meow {
  grid-column: 8;
  justify-self: end;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  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: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  margin-top: 40px;
}

.footer-policies {
  display: grid;
  justify-items: start;
  gap: 10px;
  font-size: 16px;
  letter-spacing: -0.04em;
  opacity: 0.5;
}

.footer-btns {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) minmax(0, 1fr);
  gap: 1px;
  width: min(100%, 361px);
  justify-self: end;
}

.btn-ghost,
.btn-dark {
  display: grid;
  place-items: 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 {
  padding: 0;
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  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: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 30px;
}
.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 960px) {
  .footer-contacts {
    margin-top: 48px;
  }
  .footer-btns {
    width: min(100%, 361px);
  }
}
@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-top,
  .footer-mid,
  .footer-bottom {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    row-gap: 24px;
  }
  .footer-lead,
  .footer-meow,
  .footer-policies,
  .footer-btns,
  .logo-foot,
  .footer-nav,
  .footer-year {
    grid-column: 1;
  }
  .footer-lead,
  .footer-btns {
    width: 100%;
  }
  .footer-meow {
    justify-self: start;
    width: max-content;
  }
  .footer-bottom {
    justify-items: center;
    text-align: center;
  }
  .footer-nav {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(4.5rem, max-content));
    justify-self: stretch;
    justify-content: center;
    width: 100%;
    gap: 12px 20px;
  }
  .footer-year {
    justify-self: center;
  }
}