:root {
  --bg: #111213;
  --panel: #1b1d1e;
  --ink: #f0f0ec;
  --gray: #a7aaad;
  --line: #ffffff20;
  --ease: cubic-bezier(0.2, 0.7, 0.15, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 6px;
}
::selection {
  background: #babdc0;
  color: #111;
}
p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h2 {
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.055em;
}
h3 {
  font-weight: 500;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: #eee;
  color: #111;
  padding: 15px;
}
.skip:focus {
  top: 10px;
}
.progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 100%;
  background: #ddd;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 99;
}
header {
  height: 100px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 36px;
  font-weight: 650;
  letter-spacing: -2.3px;
  display: inline-flex;
  align-items: flex-start;
}
.brand span {
  font-size: 12px;
  letter-spacing: 0;
  margin: 5px 0 0 5px;
}
header nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
header nav a {
  padding: 16px 0;
  color: #c4c5c7;
  transition: color 0.25s;
}
header nav a:hover {
  color: #fff;
}
.nav-cta {
  border: 1px solid #ffffff40;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
}
.nav-cta span {
  padding-left: 25px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  max-height: 1200px;
  padding: 140px 5% 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 75% 42%, #292c2f 0, #161819 35%, #111213 68%);
}
.hero-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font: 12px/1.5 monospace;
  letter-spacing: 1.5px;
}
.sculpture {
  position: absolute;
  left: 30%;
  top: 4%;
  width: 80%;
  height: 88%;
  pointer-events: none;
  opacity: 0;
  animation: appear 1.4s 0.1s forwards;
}
.sculpture canvas {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.canvas-fallback {
  position: absolute;
  inset: 10% 10% 10% 10%;
  font-size: clamp(300px, 45vw, 760px);
  line-height: 1;
  text-align: center;
  color: #8f9295;
  font-weight: 700;
  text-shadow:
    8px 8px #555,
    16px 16px #333;
  transform: rotate(-15deg);
  display: none;
}
.no-webgl .canvas-fallback {
  display: block;
}
.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: 8vh;
  pointer-events: none;
}
h1 {
  font-size: clamp(90px, 13.7vw, 220px);
  line-height: 0.91;
  font-weight: 500;
  letter-spacing: -0.085em;
}
h1 > span {
  display: block;
  animation: enter 1.4s var(--ease) both;
}
h1 .soft {
  color: #a7aaad;
  animation-delay: 0.15s;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 45px;
}
.hero-bottom p {
  color: #bbbfc1;
  font-size: 16px;
  animation: enter 1.4s 0.3s var(--ease) both;
}
.round-link {
  display: flex;
  align-items: center;
  gap: 25px;
  pointer-events: auto;
  font-size: 14px;
}
.round {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #ffffff60;
  font-size: 23px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.round-link:hover .round {
  background: #ddd;
  color: #111;
  transform: translateY(5px);
}
.hero-foot {
  position: absolute;
  bottom: 25px;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 10px monospace;
  letter-spacing: 1px;
  color: #92989c;
  z-index: 3;
}
.hero-foot button {
  background: #161819bb;
  border: 1px solid #ffffff25;
  border-radius: 30px;
  padding: 10px 13px;
  font-size: 12px;
  letter-spacing: 0;
}
.hero-foot button span {
  margin-left: 10px;
}
.section {
  padding: 140px 5%;
  max-width: 1800px;
  margin: auto;
}
.intro {
  padding-top: 160px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--line);
}
.statement {
  margin-top: 40px;
  max-width: 1200px;
  font-size: clamp(38px, 5.8vw, 94px);
}
.statement span {
  color: #73787c;
}
.intro-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  align-items: center;
}
.intro-bottom p {
  max-width: 440px;
}
.mini-brand {
  font-size: 80px;
  line-height: 1;
  font-weight: bold;
  letter-spacing: -10px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}
.section-heading .eyebrow {
  display: block;
  margin-bottom: 25px;
}
.section-heading > p {
  max-width: 340px;
  font-size: 16px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.project:nth-child(2) {
  margin-top: 120px;
}
.project-visual {
  height: 460px;
  background: #343638;
  border-radius: 4px;
  padding: 65px 32px;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  transition: transform 0.5s var(--ease);
}
.project-screen {
  height: 100%;
  background: #d2d0c7;
  color: #30322c;
  box-shadow: 0 25px 50px #0005;
  transform: rotateY(-10deg) rotateX(8deg) rotateZ(-5deg);
  transition: transform 0.7s var(--ease);
  overflow: hidden;
}
.project:hover .project-screen {
  transform: rotateY(0) rotateX(0) rotateZ(0) scale(1.04);
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
  font-size: 9px;
  align-items: center;
  border-bottom: 1px solid #3332;
}
.mock-nav > b {
  font-size: 15px;
}
.mock-nav > span {
  font-size: 7px;
}
.restaurant {
  background: linear-gradient(135deg, #464743, #242621);
}
.restaurant-content {
  padding: 37px 28px 25px;
  background: radial-gradient(ellipse at 110% 80%, #87907a, transparent 60%);
}
.restaurant-content small,
.plumbing-content small {
  font-size: 7px;
  letter-spacing: 1.4px;
}
.restaurant-content strong {
  font-family: Georgia, serif;
  display: block;
  font-weight: normal;
  font-size: clamp(30px, 3.5vw, 60px);
  line-height: 1.05;
  margin: 13px 0 20px;
}
.mock-pill {
  font-size: 8px;
  border: 1px solid #4448;
  padding: 8px 14px;
  border-radius: 20px;
  display: inline-block;
}
.restaurant-detail {
  font-size: 6px;
  letter-spacing: 1.4px;
  padding: 15px 28px;
  border-top: 1px solid #3332;
}
.plumbing {
  background: linear-gradient(140deg, #747d82, #30383e);
}
.plumbing .project-screen {
  background: #dde5e6;
  color: #19313d;
  transform: rotateY(12deg) rotateX(8deg) rotateZ(5deg);
}
.plumbing-content {
  padding: 30px 25px 20px;
}
.plumbing-content strong {
  font-size: clamp(26px, 3vw, 50px);
  letter-spacing: -2px;
  line-height: 1.07;
  display: block;
  margin: 15px 0 20px;
}
.plumbing-content .mock-pill {
  background: #1e3845;
  color: #fff;
  border: none;
}
.plumb-line {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  line-height: 1.8;
  padding: 15px 25px;
  border-top: 1px solid #3332;
}
.project-open {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1115;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
}
.project-meta h3 {
  font-size: 20px;
}
.project-meta > span {
  font: 10px monospace;
  letter-spacing: 1px;
  color: #a0a5a8;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  font-size: 15px;
  border-bottom: 1px solid #fff6;
  padding: 18px 0;
  margin-top: 40px;
}
.text-link span {
  transition: transform 0.3s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.services {
  padding-top: 30px;
}
.service-list details {
  border-top: 1px solid var(--line);
}
.service-list details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 34px 0;
}
summary::-webkit-details-marker {
  display: none;
}
.service-no {
  font: 12px monospace;
  color: #989da1;
  min-width: 40px;
}
summary h3 {
  font-size: clamp(26px, 3.1vw, 48px);
  letter-spacing: -0.04em;
}
.detail-plus {
  margin-left: auto;
  font-weight: 200;
  font-size: 32px;
}
.service-list details[open] .detail-plus {
  transform: rotate(45deg);
}
.service-detail {
  padding: 0 0 35px 80px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
.service-detail p {
  max-width: 520px;
}
.tags {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 280px;
}
.tags span {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 12px;
  color: #bbb;
  font-size: 12px;
}
.studio {
  background: #a6aaad;
  color: #191c1e;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  padding-top: 120px;
  padding-bottom: 120px;
}
.studio h2 {
  margin: 38px 0;
  font-size: clamp(65px, 7.5vw, 120px);
}
.studio h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.studio p {
  color: #3d4246;
  font-size: 16px;
}
.studio-copy {
  position: sticky;
  top: 50px;
  align-self: start;
}
.studio .text-link {
  border-color: #2226;
}
.process article {
  border-top: 1px solid #2224;
  padding: 35px 0 70px;
}
.process article > span {
  font: 11px monospace;
  letter-spacing: 1px;
}
.process h3 {
  font-size: 32px;
  letter-spacing: -1px;
  margin: 27px 0 14px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.price-card {
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.price-card:hover {
  background: #ffffff04;
}
.plan-label {
  font: 10px monospace;
  letter-spacing: 1px;
  color: #999ea2;
}
.price-card h3 {
  font-size: 24px;
  margin: 26px 0 14px;
}
.price {
  font-size: 43px;
  letter-spacing: -2px;
}
.price-card p {
  font-size: 14px;
  margin: 20px 0;
}
.price-card ul {
  padding: 20px 0 25px;
  list-style: none;
  font-size: 13px;
  line-height: 2.4;
  border-top: 1px solid var(--line);
  margin: 0 0 auto;
}
.price-card li:before {
  content: '✓';
  padding-right: 9px;
  color: #999;
}
.plan-button {
  display: flex;
  justify-content: space-between;
  padding: 15px 16px;
  border: 1px solid #fff4;
  border-radius: 30px;
  font-size: 13px;
  transition:
    background 0.3s,
    color 0.3s;
}
.plan-button:hover {
  background: #eee;
  color: #111;
}
.featured {
  background: #a7aaad;
  color: #121516;
  border-color: #a7aaad;
}
.featured:hover {
  background: #b9bcbf;
}
.featured p,
.featured .plan-label,
.featured li:before {
  color: #42464a;
}
.featured ul {
  border-color: #1113;
}
.featured .plan-button {
  background: #1a1d1f;
  color: #fff;
  border-color: #1a1d1f;
}
.pricing-note {
  font-size: 14px;
  margin-top: 30px;
}
.pricing-note a {
  color: #e2e3e4;
  margin-left: 6px;
}
.all-details {
  float: right;
}
.contact {
  padding-top: 75px;
  border-top: 1px solid var(--line);
  padding-bottom: 70px;
}
.contact-title {
  font-size: clamp(80px, 13.5vw, 215px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 1;
  display: block;
  position: relative;
  margin: 45px 0;
}
.contact-title > span:not(.contact-arrow) {
  color: #7c8185;
}
.contact-arrow {
  position: absolute;
  right: 2%;
  top: 0;
  font-size: 0.8em;
  transition: transform 0.6s var(--ease);
}
.contact-title:hover .contact-arrow {
  transform: translate(10px, -10px);
}
.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.button {
  padding: 19px 25px;
  border-radius: 40px;
  background: #e4e5e3;
  color: #17191a;
  display: inline-flex;
  gap: 35px;
  font-size: 14px;
  transition: transform 0.3s;
}
.button:hover {
  transform: translateY(-4px);
}
footer {
  margin: 0 5%;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
footer > span,
footer small {
  font-size: 12px;
  color: #959b9f;
}
footer > div {
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.js .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes appear {
  to {
    opacity: 1;
  }
}
body.paused * {
  animation-play-state: paused !important;
}
body.paused .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
#mobile-nav {
  display: none;
}
@media (min-width: 1800px) {
  header {
    padding-left: calc((100% - 1620px) / 2);
    padding-right: calc((100% - 1620px) / 2);
  }
  .hero {
    padding-left: calc((100% - 1620px) / 2);
    padding-right: calc((100% - 1620px) / 2);
  }
}
@media (max-width: 1100px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-visual {
    height: 370px;
    padding: 50px 22px;
  }
  .project-meta {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .service-detail {
    flex-direction: column;
  }
  .tags {
    max-width: none;
  }
  .hero {
    min-height: 800px;
  }
  .hero-copy {
    margin-top: 15vh;
  }
  .location {
    font-size: 10px;
  }
  .hero-foot > span:first-child {
    display: none;
  }
  footer {
    flex-wrap: wrap;
  }
  .studio {
    gap: 8%;
  }
}
@media (max-width: 700px) {
  header {
    height: 80px;
    padding: 0 6%;
  }
  .brand {
    font-size: 32px;
  }
  header nav,
  header .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 1px solid #fff3;
    border-radius: 50%;
    background: #2226;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
  }
  .menu-toggle > span {
    height: 1px;
    width: 16px;
    background: #eee;
    transition: transform 0.3s;
  }
  .menu-toggle[aria-expanded='true'] > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] > span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  #mobile-nav:not([hidden]) {
    display: flex;
    position: absolute;
    z-index: 19;
    top: 79px;
    left: 0;
    right: 0;
    background: #191b1ef5;
    backdrop-filter: blur(20px);
    padding: 24px 6%;
    flex-direction: column;
    border-bottom: 1px solid #fff3;
    gap: 5px;
  }
  #mobile-nav a {
    font-size: 24px;
    padding: 13px 0;
  }
  .hero {
    height: 100svh;
    min-height: 760px;
    max-height: 980px;
    padding: 110px 6% 0;
  }
  .hero-top .eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
  .location {
    display: none;
  }
  .hero-copy {
    margin-top: 115px;
  }
  h1 {
    font-size: clamp(74px, 18vw, 126px);
    letter-spacing: -0.075em;
    line-height: 0.98;
  }
  .sculpture {
    left: 11%;
    top: 6%;
    width: 110%;
    height: 65%;
    opacity: 0.9;
  }
  .hero-bottom {
    margin-top: 80px;
    align-items: end;
  }
  .hero-bottom p {
    font-size: 14px;
    line-height: 1.7;
  }
  .round-link {
    gap: 12px;
    flex-direction: column;
    font-size: 11px;
    align-items: center;
  }
  .round {
    height: 48px;
    width: 48px;
  }
  .hero-foot {
    left: 6%;
    right: 6%;
    bottom: 25px;
  }
  .hero-foot .scroll-hint {
    font-size: 9px;
  }
  .section {
    padding: 90px 6%;
  }
  .intro {
    padding-top: 100px;
  }
  .statement {
    font-size: clamp(33px, 7.6vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.05em;
    margin-top: 30px;
  }
  .intro-bottom {
    margin-top: 40px;
    gap: 45px;
    align-items: start;
  }
  .intro-bottom p {
    font-size: 14px;
  }
  .mini-brand {
    font-size: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p {
    margin-top: 25px;
    font-size: 15px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
    margin-bottom: 22px;
  }
  h2 {
    font-size: 45px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .project:nth-child(2) {
    margin-top: 0;
  }
  .project-visual {
    height: 360px;
    padding: 50px 28px;
  }
  .restaurant-content strong {
    font-size: 39px;
  }
  .plumbing-content strong {
    font-size: 33px;
  }
  .project-meta {
    flex-direction: row;
    align-items: center;
  }
  .project-meta h3 {
    font-size: 18px;
  }
  .project-meta > span {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
  .services {
    padding-top: 10px;
  }
  summary {
    gap: 14px;
    padding: 27px 0;
  }
  summary h3 {
    font-size: 25px;
  }
  .service-no {
    min-width: 25px;
    font-size: 11px;
  }
  .service-detail {
    padding-left: 39px;
    gap: 20px;
  }
  .service-detail p {
    font-size: 15px;
  }
  .tags span {
    font-size: 11px;
  }
  .studio {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .studio-copy {
    position: static;
  }
  .studio h2 {
    font-size: 75px;
  }
  .studio p {
    font-size: 16px;
  }
  .process article {
    padding: 25px 0 40px;
  }
  .process h3 {
    margin-top: 20px;
    font-size: 29px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price-card {
    padding: 30px;
  }
  .price-card h3 {
    margin-top: 18px;
  }
  .price {
    font-size: 46px;
  }
  .price-card ul {
    font-size: 14px;
  }
  .price-card p {
    font-size: 15px;
  }
  .plan-button {
    font-size: 14px;
  }
  .pricing-note {
    font-size: 13px;
    line-height: 1.8;
  }
  .all-details {
    float: none;
    display: block;
    margin-top: 10px;
  }
  .contact {
    padding-top: 55px;
    padding-bottom: 60px;
  }
  .contact .eyebrow {
    font-size: 10px;
  }
  .contact-title {
    font-size: clamp(70px, 16vw, 108px);
    margin: 35px 0;
  }
  .contact-arrow {
    font-size: 0.55em;
    right: 0;
    top: 5px;
  }
  .contact-bottom {
    flex-direction: column;
    align-items: start;
  }
  .contact-bottom p {
    font-size: 15px;
  }
  footer {
    margin: 0 6%;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  footer > div {
    grid-column: 1/-1;
    justify-content: space-between;
  }
  footer small {
    grid-column: 1/-1;
  }
  footer > span {
    text-align: right;
  }
  .text-link {
    font-size: 14px;
  }
  .hero-copy {
    pointer-events: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .sculpture {
    opacity: 1;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .project-screen {
    transform: none !important;
  }
  .scroll-hint {
    display: none;
  }
}
