/* --- LOCAL FONT FACES (VARIABLE FONTS) --- */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/spacegrotesk.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("fonts/inter.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("fonts/geistmono.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --paper: #ede6d5;
  --ink: #0f1410;
  --muted: rgba(15, 20, 16, 0.55);
  --accent: #1f5e3a;
  --ff-head: "Space Grotesk", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
  --ff-mono: "Geist Mono", monospace;
  --green: #1f5e3a;
  --display: "Space Grotesk", system-ui, sans-serif;
  --mono: "Geist Mono", monospace;
  --status-h: 34px;
}
html,
body {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}
::selection {
  background: var(--ink);
  color: var(--paper);
}
::-moz-selection {
  background: var(--ink);
  color: var(--paper);
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(15, 20, 16, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 20, 16, 0.4);
}
.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;
}
.cursor-sq {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 9999;
  background: var(--ink);
  opacity: 0.6;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition:
    width 0.2s ease,
    height 0.2s ease,
    border-radius 0.2s ease,
    opacity 0.2s ease;
}
body.cursor-hover .cursor-sq {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
body.cursor-view-active .cursor-sq {
  opacity: 0;
}
.cursor-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%) scale(0);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (hover: none) {
  .cursor-view {
    display: none !important;
  }
}
.nav-logo {
  position: fixed;
  top: 28px;
  left: 36px;
  z-index: 201;
  font-family: var(--ff-head);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  mix-blend-mode: difference;
  text-decoration: none;
  white-space: nowrap;
  pointer-events: auto;
  opacity: 0;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: transparent;
  opacity: 0;
  transform: translateY(-12px);
}
.nav-right {
  display: flex;
  align-items: center;
  background: rgba(237, 230, 213, 0.62);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(15, 20, 16, 0.13);
  border-radius: 12px;
  padding: 5px;
  gap: 0;
  margin-left: auto;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  padding: 0 6px;
  position: relative;
}
.nav-links li {
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-links a {
  display: block;
  padding: 10px 20px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.75;
  white-space: nowrap;
  border-radius: 100px;
  transition: opacity 0.2s;
  position: relative;
  z-index: 1;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links li.active a {
  opacity: 1;
}
.nav-indicator {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 8px;
  background: rgba(15, 20, 16, 0.08);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s;
}
.nav-cta {
  display: flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateY(100%);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: inherit;
}
.nav-cta:hover::before {
  transform: translateY(0);
}
.nav-cta span {
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
}
.nav-cta:hover span {
  color: var(--ink);
}
.nav-hamburger {
  display: none;
}
.magnetic {
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  will-change: transform;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  transform: scale(1.1);
  will-change: transform;
  transform-origin: right center;
}
@media (max-width: 768px) {
  .hero-photo img {
    animation: floatSculpture 6s ease-in-out infinite;
  }
}
@keyframes floatSculpture {
  0% {
    transform: translateY(0) scale(1.1);
  }
  50% {
    transform: translateY(-15px) scale(1.1);
  }
  100% {
    transform: translateY(0) scale(1.1);
  }
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--paper) 0%,
    rgba(237, 230, 213, 0.8) 15%,
    rgba(237, 230, 213, 0.4) 35%,
    rgba(237, 230, 213, 0) 55%
  );
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 64px 80px;
  max-width: 48%;
  gap: 30px;
}
.hero-headline {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hl-line {
  display: block;
  overflow: hidden;
  padding: 0 2px 0.05em;
  margin: 0 -2px;
}
.hl-w {
  display: inline-block;
  transform: translateY(108%);
  will-change: transform;
}
.hl-cycle-line {
  display: block;
  padding: 0 2px;
  margin: 0 -2px;
  white-space: nowrap;
}
.hl-prefix {
  display: inline-block;
  transform: translateY(108%);
  will-change: transform;
}
.hl-slot {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.15em;
}
.hl-cw {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
  will-change: transform, opacity;
  transform: translateY(-110%);
  opacity: 0;
}
.hl-underline {
  display: none;
}
.hero-body {
  font-family: var(--ff-body);
  font-size: 1.125rem;
  line-height: 1.68;
  color: var(--muted);
  max-width: 38ch;
  font-weight: 500;
}
.body-line {
  display: block;
  overflow: hidden;
  padding: 0 2px;
  opacity: 0;
  transform: translateY(14px);
}
.body-ch {
  color: var(--muted);
  transition: none;
  will-change: color;
  display: inline;
}
.body-word {
  display: inline-block;
  white-space: nowrap;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(18px);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--ink);
  border-radius: 8px;
  width: auto;
  min-width: 280px;
  padding: 6px 6px 6px 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}
.cta-button:hover {
  box-shadow: 0 8px 20px rgba(15, 20, 16, 0.25);
  background-color: var(--accent);
}
.cta-text-container {
  height: 28px;
  overflow: hidden;
}
.cta-text-roller {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-button:hover .cta-text-roller {
  transform: translateY(-28px);
}
.cta-text {
  color: var(--paper);
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 28px;
  height: 28px;
  user-select: none;
  white-space: nowrap;
}
.cta-icon-box {
  background-color: var(--paper);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.cta-button:hover .cta-icon-box {
  background-color: var(--ink);
}
.icon-wrapper {
  position: relative;
  width: 14px;
  height: 14px;
}
.icon-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.icon-svg path {
  fill: var(--ink);
  transition: fill 0.3s ease;
}
.cta-button:hover .icon-svg path {
  fill: var(--paper);
}
.icon-svg.hover-arrow {
  transform: translate(-30px, 30px);
}
.cta-button:hover .icon-svg.main-arrow {
  transform: translate(30px, -30px);
}
.cta-button:hover .icon-svg.hover-arrow {
  transform: translate(0, 0);
}

.clients-trust-bar {
  margin-top: 40px;
  width: 100%;
  max-width: 420px;
  opacity: 0;
  transform: translateY(18px);
}
.clients-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.clients-marquee-mask {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.clients-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 24px;
  animation: client-scroll 25s linear infinite;
  will-change: transform;
  width: max-content;
}
.client-item {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(15, 20, 16, 0.3);
  white-space: nowrap;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 24px;
}
.client-item::after {
  content: "•";
  color: rgba(15, 20, 16, 0.1);
  font-size: 0.8em;
}
@keyframes client-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .clients-trust-bar {
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  .nav {
    padding: 14px 24px;
  }
  .nav-links a {
    padding: 8px 14px;
    font-size: 11.5px;
  }
  .nav-cta {
    padding: 10px 20px;
    font-size: 11.5px;
  }
  .nav-logo {
    top: 24px;
    left: 24px;
    font-size: 1.25rem;
  }
  .hero-content {
    max-width: 56%;
    padding: 100px 44px 80px;
    gap: 24px;
  }
  .hero-photo {
    width: 50%;
  }
  .hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem) !important;
  }
}
@media (max-width: 860px) {
  .hero-photo {
    width: 45%;
  }
  .hero-content {
    max-width: 60%;
    padding: 90px 36px 80px;
    gap: 22px;
  }
  .hero-headline {
    font-size: clamp(2rem, 5.5vw, 3.2rem) !important;
  }
  .hero-body {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .nav {
    top: 0;
    left: 0;
    right: 0;
    transform: none !important;
    width: 100%;
    border-radius: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    padding: 16px 18px;
    justify-content: flex-end;
    box-shadow: none;
    z-index: 1000;
  }
  .nav-logo {
    top: 24px;
    left: 18px;
    font-size: 15px;
  }
  .nav-right,
  .nav-indicator {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--ink);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
    transition: background 0.25s;
  }
  .nav-hamburger.open {
    background: var(--accent);
  }
  .ham-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
  }
  .ham-line {
    display: block;
    height: 2px;
    background: var(--paper);
    border-radius: 2px;
    transform-origin: center;
    transition:
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s ease,
      width 0.3s ease;
  }
  .ham-line:last-child {
    width: 12px;
  }
  .nav-hamburger.open .ham-line:first-child {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-hamburger.open .ham-line:last-child {
    width: 18px;
    transform: translateY(-6px) rotate(-45deg);
  }
  .hero {
    min-height: 100svh;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }
  .hero-photo {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 55vh;
    opacity: 1 !important;
    overflow: hidden;
    background: transparent;
  }
  .hero-photo::before {
    background: linear-gradient(
      to bottom,
      rgba(237, 230, 213, 1) 0%,
      rgba(237, 230, 213, 0.9) 25%,
      rgba(237, 230, 213, 0.4) 50%,
      rgba(237, 230, 213, 0) 100%
    );
  }
  .hero-photo img {
    object-fit: cover;
    object-position: center bottom;
    transform: none !important;
    width: 100%;
    height: 100%;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    min-height: auto;
    padding: 76px 18px calc(55vh + 8px);
    justify-content: flex-start;
    gap: 16px;
  }
  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 5rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.04em;
  }
  .hl-line,
  .hl-cycle-line {
    overflow: visible;
  }
  .hl-slot {
    overflow: visible;
  }
  .hero-body {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 90%;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
  }
  .cta-button {
    width: 100% !important;
    justify-content: space-between;
    box-sizing: border-box;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 36px 48px;
  clip-path: circle(0% at calc(100% - 39px) 39px);
  background: var(--ink);
  transition: clip-path 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("imgs/bg.webp");
  background-repeat: no-repeat;
  background-size: 420%;
  background-position: center center;
  opacity: 0.25;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.mobile-menu > * {
  position: relative;
  z-index: 1;
}
.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 39px) 39px);
  pointer-events: all;
}
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.mobile-menu-links li {
  overflow: hidden;
  padding: 4px 0;
}
.mobile-menu-links a {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(3.2rem, 14vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--paper);
  text-decoration: none;
  line-height: 1.2;
  padding: 12px 0;
  transform: translateY(110%);
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s;
}
.mobile-menu-links a:hover {
  color: var(--accent);
}
.mobile-menu-links li:nth-child(1) a {
  transition-delay: 0.08s;
}
.mobile-menu-links li:nth-child(2) a {
  transition-delay: 0.15s;
}
.mobile-menu-links li:nth-child(3) a {
  transition-delay: 0.22s;
}
.mobile-menu-links li:nth-child(4) a {
  transition-delay: 0.29s;
}
.mobile-menu.open .mobile-menu-links a {
  transform: translateY(0);
}
.mobile-menu-cta {
  margin-top: 52px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 18px 36px;
  background: var(--paper);
  border: none;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease 0.35s,
    transform 0.4s ease 0.35s,
    background 0.2s,
    color 0.2s;
  display: inline-block;
}
.mobile-menu.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-cta:hover {
  background: var(--accent);
  color: var(--paper);
}
.mobile-menu-foot {
  position: absolute;
  bottom: 36px;
  left: 36px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 230, 213, 0.65);
  opacity: 0;
  transition: opacity 0.4s ease 0.4s;
}
.mobile-menu.open .mobile-menu-foot {
  opacity: 1;
}
@media (max-width: 480px) {
  .nav {
    padding: 14px 16px;
  }
  .nav-logo {
    top: 22px;
    left: 16px;
  }
  .hero-content {
    padding: 72px 16px calc(50vh + 8px);
    gap: 14px;
  }
  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.8rem) !important;
  }
  .hero-photo {
    height: 50vh;
  }
  .cta-button {
    width: 100% !important;
  }
}
@media (max-width: 390px) {
  .nav {
    padding: 12px 14px;
  }
  .nav-logo {
    top: 20px;
    left: 14px;
  }
  .hero-content {
    padding: 68px 14px calc(48vh + 8px);
    gap: 13px;
  }
  .hero-headline {
    font-size: clamp(2rem, 9.5vw, 3.2rem) !important;
  }
  .hero-photo {
    height: 48vh;
  }
  .cta-button {
    width: 100% !important;
  }
}
@media (hover: none) {
  .cursor-sq {
    display: none !important;
  }
  .magnetic {
    transform: none !important;
    transition: none !important;
  }
}
@media (pointer: coarse) {
  .cursor-sq {
    display: none !important;
  }
}
.marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid rgba(15, 20, 16, 0.08);
  border-bottom: 1px solid rgba(15, 20, 16, 0.08);
  background: var(--paper);
  cursor: default;
  user-select: none;
}
.marquee {
  display: flex;
  width: max-content;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.mq-content {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
}
.mq-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  padding: 0 0.7em;
  font-family: var(--ff-head);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.mq-we {
  font-weight: 300;
  opacity: 0.25;
  color: var(--ink);
}
.mq-verb {
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.05em;
}
.mq-sep {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6em;
  opacity: 0.5;
}
.mq-sep img {
  width: clamp(22px, 2.6vw, 38px);
  height: clamp(22px, 2.6vw, 38px);
  object-fit: contain;
  display: block;
}
.work-title-card {
  display: flex;
  flex-direction: column;
  padding: 52px 0 0;
}
.work-title-card .wtc-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: var(--pad);
  margin-bottom: 10px;
}
.work-title-card .wtc-line {
  width: 34px;
  height: 1px;
  background: var(--muted);
  opacity: 0.55;
}
.work-title-card .wtc-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.work-title-card .wtc-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.375rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  padding-left: var(--pad);
}
.work {
  position: relative;
  width: 100%;
  z-index: 0;
}
.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
  overflow: hidden;
}
.dot-path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-dasharray: 1.5 8;
  stroke-linecap: round;
  opacity: 0.5;
}
.bird {
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
  margin: -48px 0 0 -48px;
  z-index: 20;
  will-change: transform;
}
.bird img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}
.bird .glyph {
  width: 88px;
  height: 88px;
  color: var(--green);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}
article.project {
  position: relative;
  display: grid;
  align-items: center;
}
.ptext {
  max-width: none;
}
.pmeta {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.pmeta .rule {
  width: 34px;
  height: 1px;
  background: var(--muted);
  opacity: 0.55;
}
.ptitle {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.ptag {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.pdesc {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}
.pcta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  text-transform: uppercase;
}
.pcta .arr {
  width: 40px;
  height: 1px;
  background: var(--ink);
  position: relative;
  transition: width 0.35s ease;
}
.pcta .arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transform: rotate(45deg);
}
.pcta:hover .arr {
  width: 58px;
}
.pimg {
  position: relative;
  width: 100%;
  height: 100%;
}
.pimg-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pimg-mask img {
  width: 100%;
  height: 110%;
  position: absolute;
  top: -5%;
  left: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  clip-path: inset(100% 0 0 0);
  transform: scale(1.08);
  will-change: clip-path, transform;
}
.pimg-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
}
.pad {
  --pad: max(40px, calc((100vw - 1280px) / 2 + 64px));
}
.p1 {
  grid-template-columns: 1fr 1fr;
  padding-top: 110px;
}
.p1 .ptext {
  padding-left: var(--pad);
}
.p1 .pimg {
  aspect-ratio: 4 / 3;
}
.p2 {
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
}
.p2 .pimg {
  aspect-ratio: 4 / 3;
}
.p2 .ptext {
  padding-right: var(--pad);
  padding-left: clamp(20px, 4vw, 60px);
}
.p3 {
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
}
.p3 .ptext {
  padding-left: var(--pad);
}
.p3 .pimg {
  aspect-ratio: 4 / 3;
}
.p4 {
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
}
.p4 .pimg {
  aspect-ratio: 4 / 3;
}
.p4 .ptext {
  padding-right: var(--pad);
  padding-left: clamp(20px, 4vw, 60px);
}
.p5 {
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
}
.p5 .ptext {
  padding-left: var(--pad);
}
.p5 .pimg {
  aspect-ratio: 4 / 3;
}
.p6 {
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
  padding-bottom: 90px;
}
.p6 .pimg {
  aspect-ratio: 4 / 3;
}
.p6 .ptext {
  padding-right: var(--pad);
  padding-left: clamp(20px, 4vw, 60px);
}
@media (max-width: 900px) {
  .p1,
  .p2,
  .p3,
  .p4,
  .p5,
  .p6 {
    grid-template-columns: 1fr;
  }
  .ptext {
    padding: 0 28px !important;
    max-width: none;
    order: 1;
  }
  .pimg {
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    margin: 22px 0 0 !important;
    order: 2;
  }
  .pimg-mask {
    clip-path: none !important;
  }
  .pimg-mask img {
    height: 110% !important;
    top: -5% !important;
    clip-path: none !important;
  }
  .dot-path {
    stroke: transparent;
  }
  .work-title-card .wtc-eyebrow,
  .work-title-card .wtc-heading {
    padding-left: 28px;
  }
}
@media (max-width: 480px) {
  .pimg {
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
  }
}
.work-footer-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 120px;
}
@media (max-width: 900px) {
  .work-footer-cta {
    padding: 60px 28px 100px;
  }
}
.about-marquee-section {
  background: #ece5d7;
  border-top: 1px solid rgba(20, 17, 11, 0.1);
  border-bottom: 1px solid rgba(20, 17, 11, 0.1);
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.amq-track {
  display: flex;
  width: max-content;
  animation: amq-scroll 25s linear infinite;
}
.amq-item {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 17, 11, 0.4);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
}
.amq-bird {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-image: url("imgs/bird.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}
@keyframes amq-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.services-section {
  background: var(--paper);
  color: var(--ink);
  padding: 140px 36px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.services-header {
  max-width: 1280px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  border-bottom: 1px solid rgba(15, 20, 16, 0.15);
  padding-bottom: 40px;
}
.services-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.services-header .sh-desc {
  font-family: var(--ff-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  max-width: 40ch;
  justify-self: start;
  text-align: left;
}
.services-list {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 50px 30px;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    background-color 0.4s ease;
  border-radius: 12px;
  background: transparent;
}
.service-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background-color: rgba(15, 20, 16, 0.15);
}
.services-list:hover .service-item:not(:hover) {
  opacity: 0.35;
}
.service-item:hover {
  background-color: rgba(15, 20, 16, 0.03);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px -10px rgba(15, 20, 16, 0.08);
  z-index: 10;
}
.service-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.service-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.service-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  transition: color 0.3s;
}
.service-title .word {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-item:hover .service-title {
  color: var(--accent);
}
.service-item:hover .service-title .word:nth-child(1) {
  transform: translateX(-8px);
}
.service-item:hover .service-title .word:nth-child(2) {
  transform: translateX(8px);
}
.service-arrow {
  width: 32px;
  height: 32px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}
.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}
.service-right {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.service-desc {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  max-width: 42ch;
  opacity: 1;
  transform: translateX(0);
  transition:
    color 0.3s ease,
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-item:hover .service-desc {
  color: var(--accent);
  transform: translateX(10px);
}
.service-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 320px;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(15, 20, 16, 0.2);
  transform: scale(0);
  transform-origin: center center;
  display: flex;
  flex-direction: column;
}
.sf-inner {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.sf-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .services-section {
    padding: 80px 20px;
  }
  .services-header {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .services-header .sh-desc {
    text-align: left;
    justify-self: start;
  }
  .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .service-item::after {
    left: 0;
    right: 0;
  }
  .service-item:hover {
    transform: none;
    box-shadow: none;
    background-color: transparent;
  }
  .service-item:hover .service-title {
    color: var(--ink);
  }
  .service-item:hover .service-title .word:nth-child(1),
  .service-item:hover .service-title .word:nth-child(2) {
    transform: none;
  }
  .service-right {
    justify-content: flex-start;
  }
  .service-desc {
    opacity: 1;
    transform: none;
  }
  .service-follower {
    display: none;
  }
  .service-arrow {
    opacity: 0 !important;
    transform: translateX(-12px) !important;
  }
}
.about-section {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: #ece5d7;
}
#silk-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.about {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
}
.about .stage {
  position: absolute;
  inset: 0;
}
.about .progress-bar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(20, 17, 11, 0.16);
}
.about .progress-bar__fill {
  height: 100%;
  width: 0%;
  background: #1f5e3a;
  transform-origin: left center;
  will-change: width;
}
.about .index {
  position: absolute;
  z-index: 2;
  top: clamp(64px, 8vh, 96px);
  left: clamp(20px, 5vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 17, 11, 0.16);
  border-radius: 100px;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.14em;
  font-family: "Space Grotesk", sans-serif;
}
.about .index .cur {
  font-weight: 700;
  color: #14110b;
}
.about .index .sep,
.about .index .tot {
  color: rgba(20, 17, 11, 0.16);
}
.about .beat {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 clamp(32px, 6vw, 80px);
  will-change: opacity;
  font-family: "Space Grotesk", sans-serif;
}
.about .beat p {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: none;
}
.about .beat--1 p {
  line-height: 0.96;
}
.about .beat--1 .solid {
  display: block;
  font-size: clamp(52px, 10vw, 160px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  white-space: pre-line;
  color: #14110b;
}
.average-wrap {
  position: relative;
  display: inline-block;
  line-height: 0.96;
  cursor: pointer;
}
.average-outline,
.average-solid {
  display: block;
  font-size: clamp(52px, 10vw, 160px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.average-outline {
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.15vw, 2.5px) #14110b;
  pointer-events: none;
}
.average-solid {
  color: #14110b;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    circle 0px at 50% 50%,
    black 0%,
    black 45%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle 0px at 50% 50%,
    black 0%,
    black 45%,
    transparent 100%
  );
}
.about .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.about .beat--2 p {
  font-size: clamp(28px, 5vw, 80px);
  line-height: 1.08;
}
.about .beat--3 p {
  font-size: clamp(32px, 5.6vw, 90px);
  line-height: 1.06;
}
.about .ch {
  color: rgba(20, 17, 11, 0.16);
  transition: none;
  will-change: color;
}
.about .word {
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .about .beat {
    padding: 0 clamp(24px, 5vw, 48px);
  }
  .about .beat--1 .solid,
  .average-outline,
  .average-solid {
    font-size: clamp(40px, 9vw, 100px);
  }
  .about .beat--2 p {
    font-size: clamp(24px, 5.5vw, 56px);
  }
  .about .beat--3 p {
    font-size: clamp(26px, 6vw, 62px);
  }
}
@media (max-width: 540px) {
  .about .beat {
    padding: 0 24px;
  }
  .about .beat--1 .solid,
  .average-outline,
  .average-solid {
    font-size: clamp(36px, 12vw, 72px);
  }
  .about .beat--2 p {
    font-size: clamp(20px, 7vw, 40px);
  }
  .about .beat--3 p {
    font-size: clamp(22px, 7.5vw, 44px);
  }
  .average-outline {
    -webkit-text-stroke: 1px #14110b;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about .ch {
    color: #14110b !important;
  }
  .about .beat {
    position: relative;
    transform: none;
    top: auto;
    opacity: 1 !important;
    padding: 10vh clamp(20px, 5vw, 48px);
  }
  .about {
    height: auto;
  }
}
::-webkit-scrollbar-track {
  background: transparent;
  margin-bottom: var(--status-h);
}
.footer-scene {
  background: var(--ink);
  color: #efe8d9;
  padding: 100px 28px calc(60px + var(--status-h));
  position: relative;
  overflow: visible;
}
.footer-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("imgs/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.25;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.footer-scene > * {
  position: relative;
  z-index: 1;
}
.footer-cta {
  font-family: var(--ff-head);
  font-size: clamp(4rem, 18vw, 20rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: clamp(-0.05em, -1vw, -0.02em);
  text-transform: uppercase;
  color: #efe8d9;
  display: block;
  position: relative;
  margin-bottom: 80px;
}
.footer-cta em {
  font-style: italic;
  color: var(--accent);
}
.footer-cta .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
  line-height: 1.1;
}
.footer-cta .word > span {
  display: inline-block;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 80px 0 60px;
  position: relative;
}
.contact-cell {
  position: relative;
  padding: clamp(36px, 6vw, 80px) clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #efe8d9;
}
.contact-cell .tick {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #efe8d9;
  pointer-events: none;
}
.contact-cell .tick.tl {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.contact-cell .tick.tr {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.contact-cell .tick.bl {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}
.contact-cell .tick.br {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}
.contact-cell .label-magnetic {
  position: relative;
  display: inline-block;
  will-change: transform;
}
.contact-cell .label-stack {
  display: grid;
  grid-template-areas: "stack";
  overflow: hidden;
  line-height: 1.2;
  padding: 0.05em 0;
}
.contact-cell .label-stack .label,
.contact-cell .label-stack .label-hover {
  grid-area: stack;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  text-transform: none;
  white-space: nowrap;
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.contact-cell .label-stack .label-hover {
  transform: translateY(-110%);
  color: var(--accent);
}
.contact-cell:hover .label-stack .label {
  transform: translateY(110%);
}
.contact-cell:hover .label-stack .label-hover {
  transform: translateY(0);
}
.contact-cell .arr {
  display: inline-block;
  margin-left: 0.4em;
  font-family: var(--ff-body);
  font-size: 0.75em;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-cell:hover .label-hover .arr {
  transform: translate(3px, -3px);
}
.contact-cell.cta .label {
  color: var(--accent);
}
.contact-cell.cta:hover .label-stack .label-hover {
  color: #efe8d9;
}
.footer-utility {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(239, 232, 217, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 232, 217, 0.55);
}
.footer-utility .util-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-utility .util-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.footer-utility .util-links a:hover {
  color: #efe8d9;
}
.footer-utility .util-links a .arr {
  display: inline-block;
  opacity: 0.4;
  transform: translate(-3px, 0);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s;
  font-family: var(--ff-body);
}
.footer-utility .util-links a:hover .arr {
  transform: translate(2px, -2px);
  opacity: 1;
}
.footer-utility .credit {
  white-space: normal;
  line-height: 1.4;
  max-width: 100%;
  cursor: default;
  text-align: left;
}
.credit-ch {
  display: inline-block;
  transition: transform 0.08s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, color;
}
.credit-ch.popped {
  transform: translateY(-8px);
}
.credit-word {
  display: inline-block;
  white-space: nowrap;
}
.contact-statusbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--status-h);
  background: var(--ink);
  color: #efe8d9;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 300;
  gap: 18px;
  overflow: hidden;
}
.contact-statusbar .sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(239, 232, 217, 0.6);
}
.contact-statusbar .sb-item b {
  color: #efe8d9;
  font-weight: 400;
}
.contact-statusbar .sb-item.accent {
  color: var(--accent);
}
.contact-statusbar .sb-item.pulse::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: sb-pulse 1.4s ease-in-out infinite;
}
@keyframes sb-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.contact-statusbar .sep {
  flex: 1;
}
.sb-sound {
  cursor: pointer;
  user-select: none;
  gap: 6px !important;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.sb-sound:hover {
  opacity: 1;
}
.sound-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.sound-wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}
.sw-bar {
  display: block;
  width: 2px;
  background: #efe8d9;
  border-radius: 2px;
  height: 4px;
  transition: height 0.2s;
}
.sb-sound.playing .sw-bar:nth-child(1) {
  animation: sw-pulse 0.8s ease-in-out infinite;
}
.sb-sound.playing .sw-bar:nth-child(2) {
  animation: sw-pulse 0.8s ease-in-out infinite 0.15s;
}
.sb-sound.playing .sw-bar:nth-child(3) {
  animation: sw-pulse 0.8s ease-in-out infinite 0.3s;
}
.sb-sound.playing .sw-bar:nth-child(4) {
  animation: sw-pulse 0.8s ease-in-out infinite 0.45s;
}
@keyframes sw-pulse {
  0%,
  100% {
    height: 3px;
  }
  50% {
    height: 10px;
  }
}
@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
    margin: 60px 0 40px;
  }
  .contact-cell {
    padding: 32px 20px;
  }
  .footer-utility {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .contact-cell .label-stack .label,
  .contact-cell .label-stack .label-hover {
    white-space: normal;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
}
@media (max-width: 860px) {
  .footer-scene {
    padding: 80px 20px calc(70px + var(--status-h));
  }
  .footer-cta {
    font-size: clamp(2.5rem, 14vw, 10rem);
  }
  .contact-statusbar {
    font-size: 9px;
    gap: 10px;
    padding: 0 12px;
  }
  .contact-statusbar .sb-hide-mobile {
    display: none;
  }
}
@media (max-width: 520px) {
  .footer-scene {
    padding: 60px 16px 60px;
  }
}
@media (max-width: 768px) {
  .contact-statusbar {
    display: none;
  }
  .footer-scene {
    padding-bottom: 60px;
  }
}