:root {
  --font-display: "Fira Sans Condensed", "Noto Sans", sans-serif;
  --font-body: "Noto Sans", sans-serif;
  --ink-rgb: 9 11 10;
  --charcoal-rgb: 20 23 21;
  --porcelain-rgb: 247 246 240;
  --chalk-rgb: 255 252 246;
  --mist-rgb: 225 226 218;
  --steel-rgb: 75 88 86;
  --copper-rgb: 176 100 72;
  --acid-rgb: 214 255 94;
  --ink: rgb(var(--ink-rgb));
  --charcoal: rgb(var(--charcoal-rgb));
  --porcelain: rgb(var(--porcelain-rgb));
  --chalk: rgb(var(--chalk-rgb));
  --mist: rgb(var(--mist-rgb));
  --steel: rgb(var(--steel-rgb));
  --copper: rgb(var(--copper-rgb));
  --acid: rgb(var(--acid-rgb));
  --line: rgb(var(--ink-rgb) / 0.12);
  --line-strong: rgb(var(--ink-rgb) / 0.22);
  --line-light: rgb(var(--chalk-rgb) / 0.18);
  --shadow: 0 28px 80px rgb(0 0 0 / 0.14);
  --shadow-soft: 0 18px 55px rgb(0 0 0 / 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --site-pad: 1rem;
  --max: 1240px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgb(var(--acid-rgb) / 0.16), rgb(var(--acid-rgb) / 0) 28rem),
    linear-gradient(180deg, var(--chalk), var(--porcelain) 28rem, #eeece4 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgb(var(--ink-rgb) / 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--ink-rgb) / 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 70%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: rgb(var(--acid-rgb) / 0.18);
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.78rem 1rem;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0.8rem;
  left: var(--site-pad);
  right: var(--site-pad);
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 66px;
  padding: 0.58rem;
  color: var(--chalk);
  background: rgb(var(--ink-rgb) / 0.42);
  border: 1px solid rgb(var(--chalk-rgb) / 0.17);
  border-radius: 999px;
  box-shadow: 0 20px 62px rgb(0 0 0 / 0.22);
  backdrop-filter: blur(22px) saturate(1.2);
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.site-header[data-condensed] {
  color: var(--ink);
  background: rgb(var(--chalk-rgb) / 0.88);
  border-color: rgb(var(--ink-rgb) / 0.1);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: inset 0 -9px 18px rgb(var(--ink-rgb) / 0.08);
}

.brand-copy {
  display: none;
  line-height: 1;
}

.brand-copy span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-copy span:last-child {
  display: block;
  margin-top: 0.16rem;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  opacity: 0.66;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links a {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  transition:
    transform 170ms var(--ease-out),
    background-color 170ms var(--ease-out),
    color 170ms var(--ease-out);
}

.nav-links a:hover {
  background: rgb(var(--acid-rgb) / 0.16);
  transform: translateY(-1px);
}

.header-cta,
.button,
.mobile-callbar a {
  transition:
    transform 150ms var(--ease-out),
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    filter 180ms var(--ease-out);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 44px;
  padding: 0.72rem 1rem;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid rgb(var(--ink-rgb) / 0.12);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.header-cta:hover,
.button:hover,
.mobile-callbar a:hover {
  transform: translateY(-2px);
}

.header-cta:active,
.button:active,
.mobile-callbar a:active {
  transform: scale(0.97);
  filter: blur(0.15px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--chalk);
  background: var(--ink);
}

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

.hero-media {
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(var(--ink-rgb) / 0.94), rgb(var(--ink-rgb) / 0.62) 44%, rgb(var(--ink-rgb) / 0.1) 100%),
    linear-gradient(0deg, rgb(var(--ink-rgb) / 0.8), transparent 55%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgb(var(--chalk-rgb) / 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--chalk-rgb) / 0.09) 1px, transparent 1px);
  background-size: 7rem 7rem;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-self: end;
  width: min(var(--max), calc(100% - (var(--site-pad) * 2)));
  margin: 0 auto;
  padding: 8.8rem 0 4.4rem;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-label {
  margin: 0 0 0.9rem;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1,
.section-intro h2,
.process-copy h2,
.finish-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 10ch;
  font-size: 4.2rem;
}

.hero-lede {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: rgb(var(--chalk-rgb) / 0.82);
  font-size: 1.05rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.92rem 1.12rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 950;
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  border-color: rgb(var(--acid-rgb) / 0.7);
  box-shadow: 0 20px 54px rgb(var(--acid-rgb) / 0.2);
}

.button-glass {
  color: var(--chalk);
  background: rgb(var(--chalk-rgb) / 0.1);
  border-color: rgb(var(--chalk-rgb) / 0.26);
  backdrop-filter: blur(16px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  align-self: end;
  max-width: 720px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.62rem 0.82rem;
  color: rgb(var(--chalk-rgb) / 0.88);
  background: rgb(var(--chalk-rgb) / 0.1);
  border: 1px solid rgb(var(--chalk-rgb) / 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgb(0 0 0 / 0.16);
  backdrop-filter: blur(18px);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.statement,
.showcase,
.services,
.process,
.finish,
.contact {
  width: min(var(--max), calc(100% - (var(--site-pad) * 2)));
  margin: 0 auto;
}

.statement {
  padding: 3.2rem 0 2.4rem;
}

.statement p {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.showcase,
.services,
.process,
.finish,
.contact {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.section-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-intro h2,
.process-copy h2,
.finish-copy h2,
.contact-copy h2 {
  font-size: 2.55rem;
}

.section-intro p,
.process-copy p,
.finish-copy p,
.contact-copy p {
  max-width: 700px;
  margin: 0;
  color: rgb(var(--ink-rgb) / 0.68);
  font-weight: 650;
}

.showcase-grid {
  display: grid;
  gap: 1rem;
}

.project-card,
.service-card,
.finish-media,
.contact-panel {
  position: relative;
  overflow: hidden;
  background: rgb(var(--chalk-rgb) / 0.72);
  border: 1px solid rgb(var(--ink-rgb) / 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.project-card,
.finish-media {
  min-height: 360px;
}

.project-card > img,
.finish-media > img {
  position: absolute;
  inset: 0;
}

.project-card img,
.service-card img,
.finish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms var(--ease-out), filter 280ms var(--ease-out);
}

.project-card:hover img,
.service-card:hover img,
.finish-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.project-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  color: var(--chalk);
  background: rgb(var(--ink-rgb) / 0.58);
  border: 1px solid rgb(var(--chalk-rgb) / 0.14);
  border-radius: calc(var(--radius) - 4px);
  backdrop-filter: blur(18px);
}

.project-meta span {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-mosaic {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
}

.service-card figure {
  margin: 0;
}

.service-card img {
  aspect-ratio: 4 / 3;
  display: block;
}

.service-card figcaption {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding: 0.82rem 1rem 0;
  color: rgb(var(--ink-rgb) / 0.76);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.24;
}

.service-card figcaption::before {
  content: "";
  flex: 0 0 auto;
  width: 0.54rem;
  height: 0.54rem;
  margin-top: 0.28rem;
  background: var(--acid);
  border-radius: 999px;
}

.service-card div {
  padding: 0.85rem 1rem 1rem;
}

.service-card span,
.timeline span {
  display: inline-grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
}

.service-card h3,
.timeline strong {
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.service-card p,
.timeline p {
  margin: 0.5rem 0 0;
  color: rgb(var(--ink-rgb) / 0.66);
  font-size: 0.94rem;
  font-weight: 650;
}

.process {
  display: grid;
  gap: 2rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 1.1rem;
  background: rgb(var(--chalk-rgb) / 0.68);
  border: 1px solid rgb(var(--ink-rgb) / 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.finish {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.finish-media {
  min-height: 420px;
}

.contact {
  display: grid;
  gap: 2rem;
  padding-bottom: 6rem;
}

.contact-panel {
  display: grid;
  color: var(--chalk);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.contact-panel a {
  display: grid;
  gap: 0.28rem;
  padding: 1.15rem;
  border-bottom: 1px solid rgb(var(--chalk-rgb) / 0.12);
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.contact-panel a:hover {
  background: rgb(var(--chalk-rgb) / 0.06);
  transform: translateX(4px);
}

.contact-panel a:active {
  transform: scale(0.97);
}

.contact-panel span {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-size: 1.3rem;
  line-height: 1.1;
}

.contact-panel p {
  margin: 0;
  padding: 1.15rem;
  color: rgb(var(--chalk-rgb) / 0.7);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 2.2rem var(--site-pad) 6.4rem;
  color: rgb(var(--chalk-rgb) / 0.7);
  background: var(--ink);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--chalk);
  font-weight: 800;
}

.mobile-callbar {
  position: fixed;
  left: var(--site-pad);
  right: var(--site-pad);
  bottom: calc(0.8rem + env(safe-area-inset-bottom));
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: rgb(var(--chalk-rgb) / 0.92);
  border: 1px solid rgb(var(--ink-rgb) / 0.12);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.22);
  backdrop-filter: blur(18px);
}

.mobile-callbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  color: var(--ink);
  font-weight: 950;
}

.mobile-callbar a:first-child {
  background: var(--acid);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  clip-path: inset(0 0 12% 0);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out),
    clip-path 720ms var(--ease-out);
  transition-delay: calc(var(--reveal-index, 0) * 56ms);
  will-change: opacity, transform, clip-path;
}

.js [data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

@media (hover: hover) and (pointer: fine) {
  .project-card,
  .service-card,
  .timeline li,
  .contact-panel {
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
  }

  .project-card:hover,
  .service-card:hover,
  .timeline li:hover,
  .contact-panel:hover {
    transform: translateY(-4px);
    border-color: rgb(var(--ink-rgb) / 0.18);
    box-shadow: var(--shadow);
  }
}

@media (min-width: 640px) {
  :root {
    --site-pad: 1.5rem;
  }

  .brand-copy {
    display: block;
  }

  .hero h1 {
    font-size: 6.8rem;
  }

  .hero-proof {
    max-width: none;
  }

  .statement p {
    font-size: 4.25rem;
  }

  .section-intro h2,
  .process-copy h2,
  .finish-copy h2,
  .contact-copy h2 {
    font-size: 3.7rem;
  }

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

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

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    padding: 9rem 0 5.2rem;
  }

  .hero h1 {
    font-size: 8.7rem;
  }

  .section-intro.split,
  .process,
  .finish,
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .section-intro h2,
  .process-copy h2,
  .finish-copy h2,
  .contact-copy h2 {
    font-size: 4.8rem;
  }

  .showcase-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .project-card-large {
    grid-row: span 2;
  }

  .project-card-large,
  .project-card-large img {
    min-height: 760px;
  }

  .service-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card:nth-child(2),
  .service-card:nth-child(5) {
    transform: translateY(2rem);
  }

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

  .finish-media {
    min-height: 620px;
  }

  .mobile-callbar {
    display: none;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2.2rem;
  }
}

@media (min-width: 1180px) {
  :root {
    --site-pad: 2rem;
  }

  .hero h1 {
    font-size: 10.2rem;
  }
}

@media (max-width: 440px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-cta {
    justify-self: end;
    padding: 0.72rem;
  }

  .header-cta span {
    display: none;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .statement p,
  .section-intro h2,
  .process-copy h2,
  .finish-copy h2,
  .contact-copy h2 {
    font-size: 2.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .page-progress {
    display: none;
  }

  .site-header,
  .nav-links a,
  .header-cta,
  .button,
  .project-card,
  .service-card,
  .service-card img,
  .project-card img,
  .finish-media img,
  .contact-panel,
  .contact-panel a,
  .mobile-callbar a {
    transition-duration: 120ms;
  }

  .js [data-reveal] {
    transform: none;
    clip-path: inset(0 0 0 0);
    transition:
      opacity 180ms var(--ease-out),
      transform 180ms var(--ease-out),
      clip-path 180ms var(--ease-out);
  }

  .project-card:hover img,
  .service-card:hover img,
  .finish-media:hover img,
  .service-card:nth-child(2),
  .service-card:nth-child(5) {
    transform: none;
  }
}
