:root {
  --obsidian: #2e2118;
  --charcoal: #5f4532;
  --sand: #8f6847;
  --construction-yellow: #e7d39a;
  --construction-yellow-hover: #f1dfad;
  --clay: #a9825d;
  --white: #fffdf9;
  --line: rgba(82, 55, 35, 0.22);
  --line-soft: rgba(82, 55, 35, 0.12);
  --panel: linear-gradient(180deg, rgba(255, 248, 236, 0.82), rgba(214, 185, 148, 0.58));
  --shadow: 0 26px 70px rgba(74, 45, 22, 0.22);
  --text-soft: rgba(48, 35, 25, 0.72);
  --text-muted: rgba(48, 35, 25, 0.58);
  --dark-wood: #24140d;
  --dark-wood-mid: #4a2b1c;
  --dark-wood-gold: #c79a61;
  --rich-brown: #27150e;
  --rich-brown-soft: #3a2418;
  --display-font: "Cinzel", serif;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --header-stick-offset: 4.9rem;
}

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

html {
  scroll-behavior: smooth;
  background: var(--dark-wood);
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--dark-wood);
  background-image:
    linear-gradient(115deg, rgba(183, 134, 83, 0.32) 0%, transparent 34%),
    linear-gradient(245deg, rgba(255, 244, 225, 0.58) 0%, transparent 34%),
    linear-gradient(180deg, #eadac4 0%, #caa77d 46%, #a87a52 100%);
  background-repeat: no-repeat;
  background-size: 100% 100vh;
  color: #302319;
  font-family: "Manrope", sans-serif;
}

body:not(.home-page):not(.studio-page) {
  background-color: #171412;
  background-image:
    linear-gradient(90deg, rgba(231, 211, 154, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 10% 6%, rgba(139, 92, 53, 0.28), transparent 26rem),
    radial-gradient(circle at 86% 28%, rgba(74, 43, 28, 0.36), transparent 32rem),
    linear-gradient(180deg, #2b1810 0%, #1d1714 30%, #171412 68%, #24140d 100%);
  background-size: 7rem 100%, auto, auto, auto;
  color: rgba(255, 248, 236, 0.82);
}

body.studio-page {
  height: 100vh;
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.studio-page .page-shell {
  height: 100vh;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.studio-page main {
  flex: 1 1 auto;
  min-height: 0;
}

.studio-page .site-footer {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  --header-scroll-progress: 0;
  --brand-text-shift: 0px;
  --brand-license-shift: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: var(--white);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background:
    linear-gradient(180deg, rgba(10, 4, 2, 0.08), rgba(10, 4, 2, 0.2)),
    url("./assets/materials/dark-wood-soffit.png") center 44% / cover no-repeat,
    #1c0b04;
  border-bottom: 1px solid rgba(126, 79, 39, 0.48);
  box-shadow:
    inset 0 -1px 0 rgba(4, 1, 0, 0.78),
    0 10px 24px rgba(31, 14, 7, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(1rem, calc((100vw - 1200px) / 2));
  padding-right: max(1rem, calc((100vw - 1200px) / 2));
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 234, 190, 0.06), transparent 24%, rgba(5, 2, 1, 0.22));
  opacity: 0.7;
  mix-blend-mode: normal;
}

.site-header::after {
  content: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.brand-logo {
  width: 2.25rem;
  height: 3.35rem;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.98;
  filter: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0;
  transform: translateY(var(--brand-text-shift));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.brand-text strong,
.eyebrow,
.button,
.project-meta span,
.process-card span {
  font-family: "Space Grotesk", sans-serif;
}

.brand-text strong {
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 253, 249, 0.18);
}

.brand-text > small:not(.brand-license) {
  color: rgba(255, 253, 249, 0.78);
  line-height: 1.08;
}

.brand-text small,
.hero-text,
.service-card p,
.process-card p,
.about-copy p,
.about-points span,
.contact-copy p,
.contact-block span,
.form-note,
.form-status {
  color: var(--text-soft);
}

.brand-license {
  position: absolute;
  top: calc(100% + 0.22rem);
  left: 0;
  display: block;
  color: rgba(255, 248, 232, 0.68);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: calc(1 - var(--header-scroll-progress));
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.42);
  transform: translateY(var(--brand-license-shift));
  transition:
    opacity 160ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(231, 211, 154, 0.32);
  background: rgba(80, 45, 25, 0.56);
  color: var(--white);
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 239, 204, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav a {
  position: relative;
  color: var(--construction-yellow);
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.7rem 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 999px;
  background: var(--construction-yellow);
  opacity: 0;
  transform: scaleX(0.36);
  transition: opacity 180ms ease, transform 180ms ease;
  transform-origin: center;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--construction-yellow-hover);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 0.58;
  transform: scaleX(0.72);
}

.site-nav a[aria-current="page"] {
  color: var(--construction-yellow-hover);
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero,
.page-hero {
  display: grid;
  gap: 1.25rem;
  padding: 4rem 0 2.5rem;
}

.hero {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.92fr);
}

.hero-slideshow {
  position: sticky;
  top: var(--header-stick-offset);
  z-index: 1;
  display: block;
  min-height: calc(100vh - var(--header-stick-offset));
  padding: 0;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  perspective: 1200px;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-left: 0;
  border-right: 0;
  border-radius: 0 0 2rem 2rem;
  cursor: grab;
}

.hero-slideshow:active {
  cursor: grabbing;
}

.hero-slideshow::before,
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slideshow::before {
  z-index: 2;
  background:
    radial-gradient(ellipse 18% 16% at 50% 52%, rgba(255, 250, 232, 0.2), transparent 72%),
    radial-gradient(ellipse 54% 42% at 50% 54%, transparent 38%, rgba(255, 253, 249, 0.07) 54%, transparent 72%),
    radial-gradient(ellipse 106% 82% at 50% 55%, transparent 42%, rgba(2, 7, 17, 0.16) 78%, rgba(2, 7, 17, 0.27) 100%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.035), transparent 34%, rgba(2, 7, 17, 0.16));
  opacity: 0.62;
  mix-blend-mode: soft-light;
  animation: heroWalkDepth 12s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.hero-slideshow::after {
  z-index: 2;
  background:
    radial-gradient(ellipse 42% 16% at 18% 96%, rgba(36, 20, 13, 0.54), transparent 76%),
    radial-gradient(ellipse 54% 18% at 58% 100%, rgba(43, 24, 16, 0.52), transparent 78%),
    radial-gradient(ellipse 36% 15% at 92% 95%, rgba(29, 23, 20, 0.42), transparent 74%),
    linear-gradient(180deg, transparent 78%, rgba(36, 20, 13, 0.12) 86%, rgba(36, 20, 13, 0.5) 100%),
    radial-gradient(ellipse 34% 70% at -4% 52%, rgba(2, 7, 17, 0.34), transparent 72%),
    radial-gradient(ellipse 34% 70% at 104% 52%, rgba(2, 7, 17, 0.32), transparent 72%),
    radial-gradient(ellipse 16% 74% at 4% 52%, rgba(255, 253, 249, 0.12), transparent 72%),
    radial-gradient(ellipse 16% 74% at 96% 52%, rgba(255, 253, 249, 0.1), transparent 72%),
    linear-gradient(90deg, rgba(255, 253, 249, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 249, 0.018) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 52%, rgba(2, 7, 17, 0.12) 100%);
  background-size: auto, auto, auto, auto, auto, auto, auto, auto, 3px 3px, 3px 3px, auto;
  opacity: 0.44;
  animation: heroSideCarve 12s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.scroll-overlap {
  position: relative;
  z-index: 4;
  isolation: isolate;
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  padding: clamp(1.5rem, 3vw, 2.5rem) max(1rem, calc((100vw - 1200px) / 2)) 0;
  background:
    linear-gradient(90deg, rgba(115, 76, 43, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 241, 0.76), rgba(222, 194, 156, 0.86) 48%, rgba(180, 126, 82, 0.76)),
    #d7b88f;
  background-size: 5.5rem 100%, auto, auto;
}

.home-page .scroll-overlap {
  background:
    linear-gradient(90deg, rgba(231, 211, 154, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 8% 0%, rgba(139, 92, 53, 0.28), transparent 26rem),
    radial-gradient(circle at 86% 34%, rgba(74, 43, 28, 0.42), transparent 32rem),
    linear-gradient(180deg, #2b1810 0%, #1d1714 24%, #171412 62%, #24140d 100%);
  background-size: 7rem 100%, auto, auto, auto;
  color: rgba(255, 248, 236, 0.82);
}

.scroll-overlap::before {
  content: "";
  position: absolute;
  inset: -5rem 0 auto;
  height: 5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(216, 184, 143, 0), #eadac4);
  z-index: -1;
}

.home-page .scroll-overlap::before {
  inset: -6rem 0 auto;
  height: 6rem;
  background:
    radial-gradient(ellipse 34% 56% at 15% 78%, rgba(43, 24, 16, 0.46), transparent 72%),
    radial-gradient(ellipse 48% 58% at 58% 70%, rgba(36, 20, 13, 0.5), transparent 74%),
    radial-gradient(ellipse 32% 54% at 91% 82%, rgba(43, 24, 16, 0.44), transparent 72%),
    linear-gradient(180deg, rgba(36, 20, 13, 0), rgba(36, 20, 13, 0.16) 48%, #2b1810 100%);
}

.hero-slides,
.hero-overlay,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
  transform: translate3d(calc(var(--hero-shift-x) * -0.3), calc(var(--hero-shift-y) * -0.22), 0) scale(1.025);
  will-change: transform;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide.is-active img {
  animation: heroImagePresence 8s ease-in-out infinite alternate;
}

.hero-slideshow:active .hero-slide.is-active img {
  animation-play-state: paused;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(calc(var(--hero-shift-x) * 0.72), calc(var(--hero-shift-y) * 0.52), 0) scale(1.035);
  will-change: transform;
}

@keyframes heroImagePresence {
  from {
    filter: saturate(1.02) contrast(1.02);
  }

  to {
    filter: saturate(1.06) contrast(1.04);
  }
}

@keyframes heroWalkDepth {
  0% {
    opacity: 0.48;
    transform: scale(1);
  }

  48% {
    opacity: 0.68;
  }

  100% {
    opacity: 0.54;
    transform: scale(1.045);
  }
}

@keyframes heroSideCarve {
  0% {
    opacity: 0.34;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, center;
  }

  100% {
    opacity: 0.5;
    background-position: -0.18rem 0, 0.22rem 0, -0.14rem 0, 0 0, -0.72rem 0, 0.72rem 0, 0.24rem 0, -0.24rem 0, 1px 0, 0 1px, center;
  }
}

.hero-overlay {
  inset: -2rem;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(2, 7, 17, 0.04) 0%, rgba(2, 7, 17, 0.06) 48%, rgba(2, 7, 17, 0.22) 100%),
    linear-gradient(90deg, rgba(2, 7, 17, 0.12) 0%, rgba(2, 7, 17, 0.02) 52%, rgba(2, 7, 17, 0.04) 100%);
  transform: translate3d(calc(var(--hero-shift-x) * -0.35), calc(var(--hero-shift-y) * -0.24), 0) scale(1.02);
  will-change: transform;
}

.hero-slide-controls {
  position: absolute;
  inset: 50% clamp(0.85rem, 2vw, 1.5rem) auto;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
  perspective: 900px;
}

.hero-slide-button {
  --arrow-rest-rotate: 0deg;
  --arrow-look-rotate: 0deg;
  --arrow-press-rotate: 0deg;
  --arrow-span-shift: 0rem;
  --arrow-span-rotate: 45deg;
  width: clamp(2.5rem, 4vw, 3.15rem);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 50%;
  background: rgba(2, 7, 17, 0.24);
  color: var(--white);
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.58;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 249, 0.12),
    0 14px 34px rgba(2, 7, 17, 0.2);
  transform: rotateY(var(--arrow-rest-rotate)) rotateX(0deg) translateZ(0);
  transform-style: preserve-3d;
  transition:
    opacity 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 420ms cubic-bezier(0.2, 1, 0.22, 1);
}

.hero-slide-button::before,
.hero-slide-button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.hero-slide-button::before {
  inset: 0.34rem;
  border: 1px solid rgba(255, 253, 249, 0.16);
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.16), rgba(255, 253, 249, 0));
  transform: translateZ(-0.25rem);
  opacity: 0.58;
}

.hero-slide-button::after {
  inset: 0;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 253, 249, 0.26), transparent 28%),
    linear-gradient(125deg, rgba(255, 253, 249, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.hero-slide-button:first-child {
  --arrow-rest-rotate: 9deg;
  --arrow-look-rotate: -24deg;
  --arrow-press-rotate: -31deg;
  --arrow-span-shift: 0.12rem;
  --arrow-span-rotate: -135deg;
}

.hero-slide-button:last-child {
  --arrow-rest-rotate: -9deg;
  --arrow-look-rotate: 24deg;
  --arrow-press-rotate: 31deg;
  --arrow-span-shift: -0.12rem;
  --arrow-span-rotate: 45deg;
}

.hero-slide-button:hover,
.hero-slide-button:focus-visible {
  opacity: 1;
  background: rgba(2, 7, 17, 0.48);
  border-color: rgba(255, 253, 249, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 249, 0.18),
    0 18px 40px rgba(2, 7, 17, 0.3);
  transform: rotateY(var(--arrow-look-rotate)) rotateX(-7deg) translateZ(0.18rem) scale(1.04);
}

.hero-slide-button:hover::after,
.hero-slide-button:focus-visible::after {
  opacity: 1;
}

.hero-slide-button:active {
  transform: rotateY(var(--arrow-press-rotate)) rotateX(-3deg) translateZ(0.04rem) scale(0.98);
}

.hero-slide-button:focus-visible {
  outline: 2px solid var(--construction-yellow);
  outline-offset: 3px;
}

.hero-slide-button span {
  position: relative;
  z-index: 1;
  width: 0.72rem;
  height: 0.72rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(var(--arrow-span-shift)) translateZ(0.45rem) rotate(var(--arrow-span-rotate));
  transition: transform 420ms cubic-bezier(0.2, 1, 0.22, 1);
}

.hero-slide-button:hover span,
.hero-slide-button:focus-visible span {
  transform: translateX(calc(var(--arrow-span-shift) * 1.9)) translateZ(0.74rem) rotate(var(--arrow-span-rotate));
}

.page-hero {
  max-width: 52rem;
}

.hero-copy,
.hero-panel,
.service-card,
.project-card,
.process-card,
.team-card,
.about-points,
.contact-copy,
.contact-form,
.cta-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: #2f2319;
}

.hero-copy,
.cta-card {
  padding: clamp(1.6rem, 3vw, 3rem);
  border-radius: 2rem;
}

.hero-copy-overlay {
  position: relative;
  z-index: 3;
  max-width: 42rem;
  min-height: 86vh;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding:
    clamp(1.5rem, 4vw, 3.5rem)
    clamp(1.5rem, 4vw, 3.5rem)
    clamp(0.9rem, 2.2vw, 1.65rem);
  gap: 0.35rem;
  transform: translate3d(calc(var(--hero-shift-x) * -0.28), calc(var(--hero-shift-y) * -0.34), 0);
  will-change: transform;
}

.hero-copy-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
  pointer-events: none;
}

.hero-copy-overlay > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sand);
}

.hero h1,
.page-hero h1,
.section h2,
.cta-card h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.hero-text {
  position: relative;
  display: grid;
  gap: 0.58rem;
  width: fit-content;
  min-width: min(27rem, 100%);
  max-width: 30rem;
  margin: 0.7rem 0 0;
  padding: 0.78rem 0.82rem 0.82rem;
  border: 1px solid rgba(255, 253, 249, 0.08);
  border-left-color: rgba(231, 211, 154, 0.28);
  border-radius: 1.05rem;
  background:
    linear-gradient(135deg, rgba(231, 211, 154, 0.045), transparent 32%),
    linear-gradient(180deg, rgba(11, 22, 42, 0.18) 0%, rgba(3, 10, 22, 0.26) 100%),
    linear-gradient(90deg, rgba(255, 253, 249, 0.028), rgba(255, 253, 249, 0.006));
  backdrop-filter: blur(10px) saturate(116%);
  -webkit-backdrop-filter: blur(10px) saturate(116%);
  line-height: 1.45;
  font-size: 0.98rem;
  color: rgba(255, 253, 249, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 3px 0 0 rgba(231, 211, 154, 0.32),
    0 14px 32px rgba(0, 6, 18, 0.18);
  animation: heroCopyReveal 1100ms ease-out both;
  transition: opacity 220ms ease, transform 220ms ease;
  overflow: hidden;
}

.hero-text::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 253, 249, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 249, 0.018) 1px, transparent 1px);
  background-size: 4.8rem 4.8rem;
  opacity: 0.22;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  -webkit-mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-text::after {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.8rem;
  width: 4.4rem;
  height: 4.4rem;
  border-top: 1px solid rgba(231, 211, 154, 0.2);
  border-right: 1px solid rgba(231, 211, 154, 0.2);
  opacity: 0.48;
  pointer-events: none;
}

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

.hero-text.is-changing {
  opacity: 0.35;
  transform: translateY(4px);
}

.hero-plaque-main {
  display: grid;
  gap: 0.38rem;
}

.hero-detail-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(231, 211, 154, 0.88);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-project-name {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.28rem, 2.35vw, 1.82rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 6, 18, 0.48);
}

.hero-project-specs {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.58rem;
}

.hero-project-specs span {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  padding: 0.5rem 0.58rem;
  border: 1px solid rgba(255, 253, 249, 0.055);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.026), rgba(255, 253, 249, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.hero-project-specs small {
  color: rgba(255, 253, 249, 0.48);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-project-specs b {
  overflow-wrap: anywhere;
  color: rgba(255, 253, 249, 0.94);
  font-size: 0.84rem;
  line-height: 1.25;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin: 1.3rem 0 0;
  animation: heroCopyReveal 1250ms ease-out both;
}

.section-actions {
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.2rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.button-primary {
  background: var(--sand);
  color: #181410;
}

.button-secondary {
  border-color: rgba(82, 55, 35, 0.22);
  background: rgba(255, 250, 241, 0.42);
  color: #35261a;
}

.button-block {
  width: 100%;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 18px, 0) scale(0.985);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  animation: contentReveal 950ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms) both;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 249, 0.14);
  animation: heroCopyReveal 1400ms ease-out both;
}

.hero-facts article {
  padding-top: 0;
  border-top: 0;
}

.hero-facts strong,
.panel-card strong,
.service-card h3,
.project-card h3,
.process-card h3,
.about-points strong,
.contact-block strong {
  display: block;
}

.hero-facts span,
.panel-card p,
.project-card p {
  color: rgba(255, 253, 249, 0.66);
  font-size: 0.95rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 2rem;
}

.hero-current-label {
  color: rgba(255, 253, 249, 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@keyframes heroCopyReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentReveal {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  58% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .hero-text,
  .hero-actions,
  .hero-facts,
  .hero-slide.is-active img,
  .hero-slideshow::before,
  .hero-slideshow::after {
    animation: none;
  }

  .scroll-overlap,
  .hero-slides,
  .hero-slide img,
  .hero-overlay,
  .hero-copy-overlay,
  .hero-slide-button,
  .hero-slide-button span {
    transform: none;
    transition: none;
  }

}

.panel-card {
  padding: 1.25rem;
  border: 1px solid var(--line-soft);
  border-radius: 1.4rem;
  background: rgba(255, 250, 241, 0.5);
}

.panel-feature {
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(176, 125, 75, 0.26), rgba(255, 250, 241, 0.16)),
    rgba(198, 161, 116, 0.46);
}

.panel-image {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 340px;
}

.panel-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.panel-image::after,
.project-card::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 26, 0.08), rgba(2, 9, 20, 0.76));
  pointer-events: none;
}

.panel-image-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.panel-feature span {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.panel-feature h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.section {
  padding-top: 5rem;
}

.scroll-overlap > .section:first-child {
  padding-top: 1rem;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section h2,
.cta-card h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 5vw, 4rem);
}

.service-grid,
.project-grid,
.process-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-card,
.project-card,
.process-card,
.team-card,
.contact-copy,
.contact-form {
  padding: 1.5rem;
  border-radius: 1.6rem;
}

.service-card h3,
.project-card h3,
.process-card h3,
.team-card h2 {
  margin: 0 0 0.8rem;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-page .section {
  padding-top: clamp(5.5rem, 9vw, 8rem);
  border-top: 1px solid rgba(231, 211, 154, 0.12);
}

.home-page .scroll-overlap > .section:first-child {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  border-top: 0;
}

.home-page .section-heading {
  max-width: 54rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.home-page .section-heading .eyebrow,
.home-page .studio-preview .eyebrow,
.home-page .cta-card .eyebrow {
  margin-bottom: 0.35rem;
  color: rgba(231, 211, 154, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.home-page .section-heading h2,
.home-page .studio-preview-copy h2,
.home-page .cta-card h2 {
  max-width: 17ch;
  color: #fff7e8;
  font-weight: 500;
  line-height: 1.08;
  text-shadow: none;
}

.home-page .process-section .section-heading h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.home-page .pipeline-kicker {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 248, 236, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.home-page .service-grid,
.home-page .process-grid {
  gap: 0;
  border-top: 1px solid rgba(231, 211, 154, 0.18);
  border-bottom: 1px solid rgba(231, 211, 154, 0.12);
}

.home-page .service-card,
.home-page .process-card {
  position: relative;
  overflow: visible;
  min-height: 17rem;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 0;
  border-right: 1px solid rgba(231, 211, 154, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.home-page .service-card:last-child,
.home-page .process-card:last-child {
  border-right: 0;
}

.home-page .service-card::before,
.home-page .process-card::before {
  content: "";
  display: block;
  width: 2.7rem;
  height: 1px;
  margin-bottom: 1.25rem;
  background: rgba(231, 211, 154, 0.52);
}

.home-page .service-card h3,
.home-page .process-card h3 {
  color: #fff7e8;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.home-page .service-card p,
.home-page .process-card p {
  color: rgba(255, 248, 236, 0.64);
  line-height: 1.68;
}

.home-page .process-card span {
  margin-bottom: 2.7rem;
  color: rgba(231, 211, 154, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.home-page .pipeline-projects {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 1.05rem;
}

.home-page .pipeline-projects a {
  display: flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(231, 211, 154, 0.16);
  background:
    linear-gradient(90deg, rgba(231, 211, 154, 0.075), rgba(231, 211, 154, 0.018)),
    rgba(18, 11, 7, 0.38);
  color: rgba(255, 248, 236, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.home-page .pipeline-projects a:hover,
.home-page .pipeline-projects a:focus-visible {
  border-color: rgba(231, 211, 154, 0.46);
  background: rgba(231, 211, 154, 0.08);
  transform: translateX(0.2rem);
}

.home-page .pipeline-projects a:focus-visible {
  outline: 2px solid var(--construction-yellow);
  outline-offset: 3px;
}

.home-page .section-actions .button-secondary,
.home-page .cta-card .button-secondary {
  min-height: 3rem;
  border-color: rgba(231, 211, 154, 0.36);
  border-radius: 0;
  background: transparent;
  color: #fff7e8;
  box-shadow: none;
}

.home-page .section-actions .button-secondary:hover,
.home-page .section-actions .button-secondary:focus-visible,
.home-page .cta-card .button-secondary:hover,
.home-page .cta-card .button-secondary:focus-visible {
  border-color: rgba(231, 211, 154, 0.72);
  background: rgba(231, 211, 154, 0.08);
}

.home-page .project-card::after {
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.08) 0%, rgba(14, 11, 9, 0.18) 36%, rgba(14, 11, 9, 0.92) 100%),
    linear-gradient(45deg, rgba(39, 21, 14, 0.3), rgba(231, 211, 154, 0.04));
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .project-grid {
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
}

.project-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(155, 108, 64, 0.18), rgba(86, 55, 31, 0.2) 58%);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.project-card:focus-visible {
  outline: 2px solid var(--construction-yellow);
  outline-offset: 4px;
}

.home-page .project-card {
  min-height: clamp(20rem, 34vw, 28rem);
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(231, 211, 154, 0.12);
  border-radius: 0.35rem;
  background: #171412;
  box-shadow: none;
}

.project-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image,
.project-card:focus-visible .project-image {
  transform: scale(1.045);
}

.project-card-tall {
  grid-column: span 2;
  min-height: 310px;
}

.home-page .project-card-tall {
  min-height: clamp(25rem, 45vw, 38rem);
}

.project-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.6rem;
  margin-bottom: auto;
}

.home-page .project-meta {
  gap: 0.85rem;
  margin-bottom: auto;
}

.project-card h3,
.project-card p {
  position: relative;
  z-index: 1;
}

.project-meta span {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(50, 34, 23, 0.58);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.home-page .project-meta span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(231, 211, 154, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.home-page .project-card h3 {
  max-width: 18ch;
  margin-bottom: 0.45rem;
  color: #fff7e8;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

.home-page .project-card p {
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.92rem;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.development-showcase {
  display: grid;
  gap: 1.25rem;
}

.development-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.development-copy,
.development-visual,
.plan-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.development-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 1.6rem;
}

.development-copy h3 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.development-copy p:not(.eyebrow) {
  color: var(--text-soft);
  line-height: 1.65;
}

.development-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.development-stats span {
  display: grid;
  gap: 0.2rem;
  min-height: 5.75rem;
  padding: 0.85rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 250, 241, 0.44);
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.25;
}

.development-stats strong {
  color: #302319;
  font-family: var(--display-font);
  font-size: 1.8rem;
  line-height: 1;
}

.development-visual,
.plan-card {
  overflow: hidden;
  border-radius: 1.6rem;
}

.development-visual {
  min-height: 380px;
}

.development-visual img,
.plan-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  display: grid;
  grid-template-rows: 13rem auto auto;
  color: #302319;
}

.plan-card img {
  border-bottom: 1px solid var(--line-soft);
  object-position: center;
}

.plan-card h3,
.plan-card p {
  margin: 0;
  padding: 0 1rem;
}

.plan-card h3 {
  padding-top: 1rem;
  font-size: 1.02rem;
}

.plan-card p {
  padding-top: 0.45rem;
  padding-bottom: 1.15rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(143, 104, 71, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.16), rgba(143, 104, 71, 0.08));
}

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

.team-card-lead {
  grid-column: span 2;
  min-height: 22rem;
}

.team-role {
  margin-bottom: 1.65rem;
  color: var(--sand);
  font-family: var(--display-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  white-space: nowrap;
}

.team-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.team-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.15rem;
  color: var(--sand);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card:hover,
.team-card:focus-visible {
  transform: translateY(-3px);
}

.team-card:focus-visible {
  outline: 2px solid rgba(231, 211, 154, 0.86);
  outline-offset: 4px;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.35rem;
  color: rgba(231, 211, 154, 0.78);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}

.member-summary,
.member-details {
  border-top: 1px solid rgba(231, 211, 154, 0.18);
  border-bottom: 1px solid rgba(231, 211, 154, 0.12);
  padding: clamp(1.35rem, 2.8vw, 2.2rem) 0;
}

.member-summary h2 {
  max-width: 14ch;
  margin: 0;
  color: #fff7e8;
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.06;
}

.member-summary p {
  max-width: 44rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 248, 236, 0.66);
  font-size: 1rem;
  line-height: 1.75;
}

.member-details {
  display: flex;
  flex-direction: column;
}

.member-detail {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(231, 211, 154, 0.12);
}

.member-detail:first-child {
  padding-top: 0;
}

.member-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.member-detail strong {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(231, 211, 154, 0.78);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.member-detail span {
  color: rgba(255, 248, 236, 0.7);
  line-height: 1.65;
}

.process-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--sand);
  font-size: 0.9rem;
}

.about-grid,
.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.about-grid .about-copy,
.about-grid .about-points {
  position: relative;
  z-index: 1;
}

.studio-preview {
  align-items: stretch;
}

.home-page .studio-preview {
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.studio-preview .media-card {
  min-height: 360px;
}

.home-page .studio-preview .media-card {
  min-height: clamp(26rem, 52vw, 42rem);
  border-color: rgba(231, 211, 154, 0.16);
  border-radius: 0.35rem;
  box-shadow: none;
}

.home-page .studio-preview .media-card::after {
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.04), rgba(14, 11, 9, 0.5)),
    linear-gradient(90deg, rgba(39, 21, 14, 0.32), transparent 56%);
}

.studio-preview-copy {
  align-self: center;
}

.home-page .studio-preview-copy {
  color: #fff7e8;
}

.home-page .studio-preview-copy .hero-text {
  width: auto;
  min-width: 0;
  max-width: 36rem;
  margin-top: 1.3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 248, 236, 0.68);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: none;
}

.home-page .studio-preview-copy .hero-text::before,
.home-page .studio-preview-copy .hero-text::after {
  content: none;
}

.studio-preview-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.studio-preview-points span {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(82, 55, 35, 0.12);
  border-left-color: rgba(143, 104, 71, 0.42);
  background: rgba(255, 250, 241, 0.48);
  color: rgba(48, 35, 25, 0.78);
  font-size: 0.92rem;
  line-height: 1.3;
}

.home-page .studio-preview-points span {
  padding: 0.85rem 0;
  border: 0;
  border-top: 1px solid rgba(231, 211, 154, 0.16);
  background: transparent;
  color: rgba(255, 248, 236, 0.74);
  box-shadow: none;
}

.media-card {
  position: relative;
  min-height: 420px;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border: 0;
  border-top: 1px solid rgba(231, 211, 154, 0.18);
  border-bottom: 1px solid rgba(231, 211, 154, 0.12);
  border-radius: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(143, 104, 71, 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(255, 248, 236, 0.025), rgba(255, 248, 236, 0));
  box-shadow: none;
}

.home-page .cta-card .hero-text {
  width: auto;
  min-width: 0;
  max-width: 42rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 248, 236, 0.7);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: none;
}

.home-page .cta-card .hero-text::before,
.home-page .cta-card .hero-text::after {
  content: none;
}

.home-page .cta-card .button-primary {
  min-height: 3rem;
  border-radius: 0;
  background: rgba(231, 211, 154, 0.92);
  color: #1f120b;
  box-shadow: none;
}

.home-page .cta-card .button-primary:hover,
.home-page .cta-card .button-primary:focus-visible {
  background: var(--construction-yellow-hover);
}

.about-points {
  padding: 1.5rem;
  border-radius: 1.6rem;
  grid-column: span 2;
}

.about-points article + article {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.studio-experience {
  position: relative;
  min-height: calc(100vh - var(--header-stick-offset));
  --studio-pointer-x: 0px;
  --studio-pointer-y: 0px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(199, 154, 97, 0.16);
  background: #090604;
  color: #fff7e8;
}

.studio-page .studio-experience {
  height: calc(100vh - var(--header-stick-offset));
  min-height: 0;
}

.studio-backdrops,
.studio-backdrop,
.studio-backdrop img,
.studio-wash,
.studio-grain {
  position: absolute;
  inset: 0;
}

.studio-entry {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(8rem, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 6vw, 6rem);
  padding: clamp(1.5rem, 6vw, 6rem) max(1rem, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.98), rgba(15, 8, 4, 0.74) 58%, rgba(14, 7, 3, 0.28)),
    radial-gradient(circle at 72% 40%, rgba(199, 154, 97, 0.16), transparent 30rem);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 700ms ease;
}

.studio-experience.has-entered .studio-entry {
  opacity: 0;
  transform: translate3d(0, -1.5rem, 0) scale(1.03);
  visibility: hidden;
  pointer-events: none;
}

.studio-entry-mark {
  display: grid;
  gap: 0;
  color: rgba(231, 211, 154, 0.78);
  font-family: var(--display-font);
  font-size: clamp(3.4rem, 13vw, 11rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 24px 80px rgba(0, 6, 18, 0.62);
}

.studio-entry-copy h1 {
  max-width: 10ch;
  margin: 0 0 1.3rem;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: clamp(3.4rem, 10vw, 8.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.studio-enter {
  min-height: 3.4rem;
  border: 1px solid rgba(231, 211, 154, 0.44);
  border-radius: 999px;
  background: rgba(231, 211, 154, 0.92);
  color: #181410;
  padding: 0 1.35rem;
  font-family: var(--display-font);
  font-weight: 700;
  cursor: pointer;
}

.studio-backdrop {
  margin: 0;
  opacity: 0;
  transform: scale(1.12) translate3d(3rem, 0, 0);
  transition:
    opacity 780ms ease,
    transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-backdrop.is-active {
  opacity: 1;
  transform:
    scale(1.04)
    translate3d(calc(var(--studio-pointer-x) * -0.55), calc(var(--studio-pointer-y) * -0.55), 0);
}

.studio-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.12) brightness(0.58);
}

.studio-wash {
  z-index: 1;
  background:
    radial-gradient(circle at 75% 18%, rgba(199, 154, 97, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(5, 3, 2, 0.98) 0%, rgba(13, 7, 4, 0.76) 38%, rgba(11, 7, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(4, 2, 1, 0.92));
  pointer-events: none;
}

.studio-grain {
  z-index: 2;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.studio-shell {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - var(--header-stick-offset));
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.8vw, 3rem);
  align-items: stretch;
  padding: clamp(1.2rem, 3vw, 2.8rem) 0;
}

.studio-page .studio-shell {
  height: 100%;
  min-height: 0;
}

.studio-index {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(0.75rem, 1.8vw, 1.5rem);
  border-right: 1px solid rgba(199, 154, 97, 0.24);
}

.studio-index h1 {
  max-width: 11ch;
  margin: 0 0 clamp(1.4rem, 4vh, 3rem);
  font-family: var(--display-font);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #fff7e8;
}

.studio-world {
  grid-column: 2;
  position: relative;
  min-height: 0;
  overflow: hidden;
  cursor: default;
  border-left: 1px solid rgba(231, 211, 154, 0.1);
}

.studio-page .studio-world {
  min-height: 0;
}

.studio-world.is-dragging {
  cursor: grabbing;
}

.studio-world-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(231, 211, 154, 0.28);
  border-radius: 50%;
  background: rgba(13, 8, 5, 0.48);
  color: rgba(231, 211, 154, 0.82);
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.studio-world-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.studio-world-arrow-left {
  left: clamp(0.25rem, 1vw, 0.9rem);
  transform: translateY(-50%);
}

.studio-world-arrow-left::before {
  transform: translate(-36%, -50%) rotate(-135deg);
}

.studio-world-arrow-right {
  right: clamp(0.25rem, 1vw, 0.9rem);
  transform: translateY(-50%);
}

.studio-world-arrow-right::before {
  transform: translate(-64%, -50%) rotate(45deg);
}

.studio-world-arrow:hover,
.studio-world-arrow:focus-visible {
  border-color: rgba(231, 211, 154, 0.56);
  background: rgba(31, 18, 10, 0.72);
  color: var(--construction-yellow-hover);
  transform: translateY(-50%) scale(1.04);
}

.studio-step-list {
  display: grid;
  gap: 0;
  max-width: 23rem;
  max-height: min(58vh, 43rem);
  overflow-y: auto;
  padding-right: 0.2rem;
  border-top: 1px solid rgba(231, 211, 154, 0.18);
  scrollbar-width: thin;
  scrollbar-color: rgba(231, 211, 154, 0.42) rgba(255, 253, 249, 0.04);
}

.studio-page .studio-step-list {
  gap: 0;
}

.studio-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 0.95rem;
  align-items: center;
  width: 100%;
  min-height: 4.55rem;
  border: 0;
  border-bottom: 1px solid rgba(231, 211, 154, 0.18);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 253, 249, 0.76);
  padding: 0.95rem 0;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.studio-page .studio-step {
  min-height: 4.2rem;
  padding: 0.85rem 0;
}

.studio-step span,
.studio-control {
  font-family: "Space Grotesk", sans-serif;
}

.studio-step span {
  grid-row: span 2;
  color: rgba(231, 211, 154, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.studio-step strong,
.studio-step em {
  display: block;
  font-style: normal;
}

.studio-step strong {
  color: rgba(255, 253, 249, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-step em {
  margin-top: -0.22rem;
  color: rgba(255, 247, 232, 0.82);
  font-family: var(--display-font);
  font-size: 1rem;
}

.studio-step:hover,
.studio-step:focus-visible,
.studio-step.is-active {
  background: linear-gradient(90deg, rgba(231, 211, 154, 0.08), transparent);
  color: var(--white);
  transform: translateX(0.45rem);
}

.studio-step:focus-visible,
.studio-control:focus-visible {
  outline: 2px solid var(--construction-yellow);
  outline-offset: 3px;
}

.studio-deck {
  position: absolute;
  inset: 0;
  display: grid;
}

.studio-page .studio-deck {
  min-height: 0;
}

.studio-card {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(18rem, 1.1fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 4rem);
  min-height: 100%;
  padding: clamp(2.25rem, 5vw, 5rem) clamp(3.5rem, 7vw, 6rem);
  opacity: 0;
  transform: translate3d(4rem, 0, 0) scale(0.98);
  pointer-events: none;
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  animation: studioRoomIn 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.studio-room-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 35rem;
  padding: clamp(1.05rem, 2vw, 1.45rem);
  border-left: 1px solid rgba(231, 211, 154, 0.5);
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.78), rgba(8, 5, 3, 0.42) 70%, transparent);
  box-shadow: -22px 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.studio-card h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: clamp(2.15rem, 3.8vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: #fff7e8;
}

.studio-card > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.95rem;
  line-height: 1.48;
}

.studio-room-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0.9rem 0 0;
  color: rgba(255, 247, 232, 0.72);
  font-size: clamp(0.84rem, 1vw, 0.96rem);
  line-height: 1.48;
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0.95rem;
  border-top: 1px solid rgba(231, 211, 154, 0.22);
  border-bottom: 1px solid rgba(231, 211, 154, 0.14);
}

.studio-page .studio-facts {
  margin-top: 0.95rem;
  gap: 0;
}

.studio-page .studio-facts span {
  min-height: 3.15rem;
  padding: 0.62rem 0.7rem;
  font-size: 0.82rem;
}

.studio-page .studio-facts b {
  font-size: 0.62rem;
}

.studio-page .studio-controls {
  margin-top: 0;
}

.studio-page .studio-control {
  min-height: 2.5rem;
  padding: 0 0.85rem;
}

.studio-facts span {
  display: grid;
  gap: 0.22rem;
  min-height: 3.4rem;
  padding: 0.62rem;
  border: 0;
  border-right: 1px solid rgba(231, 211, 154, 0.14);
  background: rgba(255, 253, 249, 0.025);
  color: rgba(255, 253, 249, 0.9);
  font-weight: 700;
}

.studio-facts span:last-child {
  border-right: 0;
}

.studio-facts b {
  color: rgba(231, 211, 154, 0.76);
  font-family: var(--display-font);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.studio-room-media {
  position: relative;
  min-height: clamp(22rem, 61vh, 43rem);
  perspective: 1200px;
  transform: translate3d(calc(var(--studio-pointer-x) * 0.8), calc(var(--studio-pointer-y) * 0.8), 0);
  transition: transform 400ms ease-out;
}

.studio-image-wheel {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.studio-image-wheel::before {
  content: "";
  position: absolute;
  left: 19%;
  right: 8%;
  bottom: 4%;
  height: 3.5rem;
  border: 1px solid rgba(231, 211, 154, 0.16);
  border-top: 0;
  border-radius: 50%;
  opacity: 0.58;
  transform: rotateX(68deg);
}

.studio-gallery-image {
  --gallery-offset: 0;
  --gallery-abs-offset: 0;
  position: absolute;
  inset: 7% 0 0 12%;
  width: 78%;
  height: 78%;
  object-fit: cover;
  border: 1px solid rgba(231, 211, 154, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  opacity: calc(1 - (var(--gallery-abs-offset) * 0.22));
  filter: saturate(0.9) contrast(1.06) brightness(calc(1 - (var(--gallery-abs-offset) * 0.13)));
  z-index: var(--gallery-depth, 1);
  transform:
    translate3d(
      calc(var(--gallery-offset) * 5rem + var(--studio-pointer-x) * -0.18),
      calc(var(--gallery-abs-offset) * 1.15rem + var(--studio-pointer-y) * -0.18),
      calc(var(--gallery-abs-offset) * -8rem)
    )
    rotateY(calc(var(--gallery-offset) * -18deg))
    scale(calc(1 - (var(--gallery-abs-offset) * 0.08)));
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 500ms ease, filter 500ms ease;
}

.studio-gallery-image.is-active {
  z-index: 2;
  opacity: 1;
}

.studio-gallery-controls {
  position: absolute;
  left: 18%;
  bottom: clamp(0.6rem, 4vw, 2.4rem);
  z-index: 5;
  display: inline-grid;
  grid-template-columns: 2.35rem auto 2.35rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem;
  border: 1px solid rgba(231, 211, 154, 0.18);
  background: rgba(10, 6, 4, 0.62);
  box-shadow: inset 0 0 0 1px rgba(143, 92, 49, 0.12);
  backdrop-filter: blur(14px);
}

.studio-gallery-controls button {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(231, 211, 154, 0.26);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(231, 211, 154, 0.18), rgba(44, 27, 15, 0.54) 62%);
  cursor: pointer;
}

.studio-gallery-controls button::before {
  content: "";
  position: absolute;
  inset: 0.76rem 0.84rem;
  border-top: 2px solid rgba(255, 239, 195, 0.9);
  border-left: 2px solid rgba(255, 239, 195, 0.9);
  transform: rotate(-45deg);
}

.studio-gallery-controls [data-gallery-next]::before {
  transform: rotate(135deg);
}

.studio-gallery-controls button:focus-visible {
  outline: 2px solid var(--construction-yellow);
  outline-offset: 3px;
}

.studio-gallery-controls span {
  min-width: 4.2rem;
  color: rgba(231, 211, 154, 0.86);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
}

.studio-room-media.is-single-gallery .studio-gallery-controls {
  display: none;
}

.studio-room-count {
  position: absolute;
  top: clamp(1rem, 3vw, 2.6rem);
  right: clamp(3.5rem, 7vw, 5.6rem);
  z-index: 4;
  color: rgba(231, 211, 154, 0.86);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}

.studio-controls {
  position: absolute;
  right: clamp(3.5rem, 7vw, 5.8rem);
  bottom: clamp(1.2rem, 3.5vw, 3rem);
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(7rem, 14rem) auto;
  gap: 0.8rem;
  align-items: center;
  min-width: min(24rem, 52vw);
}

.studio-control {
  min-height: 2.65rem;
  border: 1px solid rgba(231, 211, 154, 0.22);
  border-radius: 0;
  background: rgba(13, 8, 5, 0.42);
  color: var(--white);
  padding: 0 1rem;
  cursor: pointer;
}

.studio-meter {
  height: 2px;
  background: rgba(255, 253, 249, 0.14);
  overflow: hidden;
}

.studio-meter span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--construction-yellow);
  transform: translateX(0);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes studioRoomIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(4rem, 0, 0) scale(0.98);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-backdrop,
  .studio-card,
  .studio-card.is-active,
  .studio-step,
  .studio-meter span {
    animation: none;
    transition: none;
  }

  .studio-backdrop,
  .studio-backdrop.is-active,
  .studio-card,
  .studio-card.is-active,
  .studio-step:hover,
  .studio-step:focus-visible,
  .studio-step.is-active {
    transform: none;
  }
}

.cta-section {
  padding-bottom: 1rem;
}

.contact-block + .contact-block {
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 1rem;
  background: rgba(255, 250, 241, 0.64);
  color: #302319;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form option {
  color: #061426;
}

body:not(.home-page):not(.studio-page) .page-hero {
  max-width: 64rem;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(231, 211, 154, 0.14);
}

body:not(.home-page):not(.studio-page) .page-hero .eyebrow,
body:not(.home-page):not(.studio-page) .section-heading .eyebrow,
body:not(.home-page):not(.studio-page) .development-copy .eyebrow {
  color: rgba(231, 211, 154, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

body:not(.home-page):not(.studio-page) .page-hero h1,
body:not(.home-page):not(.studio-page) .section-heading h2 {
  max-width: 15ch;
  color: #fff7e8;
  font-weight: 500;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1.06;
  text-shadow: none;
}

body:not(.home-page):not(.studio-page) .page-hero .hero-text {
  width: auto;
  min-width: 0;
  max-width: 39rem;
  margin-top: 1.3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 248, 236, 0.68);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: none;
}

body:not(.home-page):not(.studio-page) .page-hero .hero-text::before,
body:not(.home-page):not(.studio-page) .page-hero .hero-text::after {
  content: none;
}

body:not(.home-page):not(.studio-page) .section {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  border-top: 1px solid rgba(231, 211, 154, 0.12);
}

body:not(.home-page):not(.studio-page) .page-hero + .section {
  border-top: 0;
}

body:not(.home-page):not(.studio-page) .section-heading {
  max-width: 54rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

body:not(.home-page):not(.studio-page) .service-grid,
body:not(.home-page):not(.studio-page) .process-grid,
body:not(.home-page):not(.studio-page) .team-grid,
body:not(.home-page):not(.studio-page) .contact-grid {
  gap: 0;
  border-top: 1px solid rgba(231, 211, 154, 0.18);
  border-bottom: 1px solid rgba(231, 211, 154, 0.12);
}

body:not(.home-page):not(.studio-page) .service-card,
body:not(.home-page):not(.studio-page) .process-card,
body:not(.home-page):not(.studio-page) .team-card,
body:not(.home-page):not(.studio-page) .contact-copy,
body:not(.home-page):not(.studio-page) .contact-form {
  min-height: 16rem;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 0;
  border-right: 1px solid rgba(231, 211, 154, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

body:not(.home-page):not(.studio-page) .service-card:nth-child(3n),
body:not(.home-page):not(.studio-page) .process-card:last-child,
body:not(.home-page):not(.studio-page) .team-card:last-child,
body:not(.home-page):not(.studio-page) .contact-form {
  border-right: 0;
}

body:not(.home-page):not(.studio-page) .service-card::before,
body:not(.home-page):not(.studio-page) .process-card::before,
body:not(.home-page):not(.studio-page) .team-card::before {
  content: "";
  position: static;
  display: block;
  width: 2.7rem;
  height: 1px;
  margin-bottom: 1.25rem;
  background: rgba(231, 211, 154, 0.52);
}

body:not(.home-page):not(.studio-page) .service-card h3,
body:not(.home-page):not(.studio-page) .process-card h3,
body:not(.home-page):not(.studio-page) .team-card h2 {
  color: #fff7e8;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

body:not(.home-page):not(.studio-page) .service-card p,
body:not(.home-page):not(.studio-page) .process-card p,
body:not(.home-page):not(.studio-page) .team-card p,
body:not(.home-page):not(.studio-page) .contact-copy p,
body:not(.home-page):not(.studio-page) .contact-block span {
  color: rgba(255, 248, 236, 0.64);
  line-height: 1.68;
}

body:not(.home-page):not(.studio-page) .process-card span,
body:not(.home-page):not(.studio-page) .team-role,
body:not(.home-page):not(.studio-page) .contact-block strong {
  color: rgba(231, 211, 154, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

body:not(.home-page):not(.studio-page) .project-grid,
body:not(.home-page):not(.studio-page) .plan-grid {
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
}

body:not(.home-page):not(.studio-page) .project-card,
body:not(.home-page):not(.studio-page) .plan-card,
body:not(.home-page):not(.studio-page) .development-visual {
  border: 1px solid rgba(231, 211, 154, 0.12);
  border-radius: 0.35rem;
  background: #171412;
  box-shadow: none;
}

body:not(.home-page):not(.studio-page) .project-card {
  min-height: clamp(20rem, 34vw, 28rem);
  padding: clamp(1.1rem, 2vw, 1.6rem);
}

body:not(.home-page):not(.studio-page) .project-card-tall {
  min-height: clamp(25rem, 45vw, 38rem);
}

body:not(.home-page):not(.studio-page) .project-card::after,
body:not(.home-page):not(.studio-page) .media-card::after {
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.08) 0%, rgba(14, 11, 9, 0.18) 36%, rgba(14, 11, 9, 0.92) 100%),
    linear-gradient(45deg, rgba(39, 21, 14, 0.3), rgba(231, 211, 154, 0.04));
}

body:not(.home-page):not(.studio-page) .project-meta {
  gap: 0.85rem;
  margin-bottom: auto;
}

body:not(.home-page):not(.studio-page) .project-meta span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(231, 211, 154, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

body:not(.home-page):not(.studio-page) .project-card h3 {
  max-width: 18ch;
  margin-bottom: 0.45rem;
  color: #fff7e8;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

body:not(.home-page):not(.studio-page) .project-card p {
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.92rem;
}

body:not(.home-page):not(.studio-page) .development-overview {
  gap: clamp(1rem, 2vw, 1.5rem);
}

body:not(.home-page):not(.studio-page) .development-copy {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(231, 211, 154, 0.12);
  border-radius: 0.35rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.035), rgba(255, 248, 236, 0.01));
  box-shadow: none;
  color: #fff7e8;
}

body:not(.home-page):not(.studio-page) .development-copy h3 {
  color: #fff7e8;
  font-weight: 500;
}

body:not(.home-page):not(.studio-page) .development-copy p:not(.eyebrow),
body:not(.home-page):not(.studio-page) .plan-card p {
  color: rgba(255, 248, 236, 0.64);
}

body:not(.home-page):not(.studio-page) .development-stats span {
  border: 0;
  border-top: 1px solid rgba(231, 211, 154, 0.16);
  background: transparent;
  color: rgba(255, 248, 236, 0.64);
}

body:not(.home-page):not(.studio-page) .development-stats strong {
  color: #fff7e8;
  font-weight: 500;
}

body:not(.home-page):not(.studio-page) .plan-card {
  color: #fff7e8;
}

body:not(.home-page):not(.studio-page) .plan-card img {
  border-bottom-color: rgba(231, 211, 154, 0.12);
  filter: saturate(0.9) contrast(1.04);
}

body:not(.home-page):not(.studio-page) .contact-form input,
body:not(.home-page):not(.studio-page) .contact-form select,
body:not(.home-page):not(.studio-page) .contact-form textarea {
  border-color: rgba(231, 211, 154, 0.18);
  border-radius: 0;
  background: rgba(255, 248, 236, 0.045);
  color: #fff7e8;
}

body:not(.home-page):not(.studio-page) .contact-form input::placeholder,
body:not(.home-page):not(.studio-page) .contact-form textarea::placeholder {
  color: rgba(255, 248, 236, 0.38);
}

body:not(.home-page):not(.studio-page) .button-primary {
  border-radius: 0;
  background: rgba(231, 211, 154, 0.92);
  color: #1f120b;
}

body:not(.home-page):not(.studio-page) .button-primary:hover,
body:not(.home-page):not(.studio-page) .button-primary:focus-visible {
  background: var(--construction-yellow-hover);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
}

.form-status.is-error {
  color: #ff9a9a;
}

.form-status.is-success {
  color: var(--sand);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 4rem;
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.95rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .hero,
  .service-grid,
  .service-grid-dense,
  .project-grid,
  .process-grid,
  .development-overview,
  .plan-grid,
  .team-grid,
  .about-grid,
  .contact-grid,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .project-card-tall {
    grid-column: span 1;
    min-height: 220px;
  }

  .team-card-lead {
    grid-column: span 1;
  }

  .member-profile {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .development-stats {
    grid-template-columns: 1fr;
  }

  .development-visual {
    min-height: 260px;
  }

  .site-header {
    position: sticky;
    flex-wrap: wrap;
    --header-scroll-progress: 0;
    --brand-text-shift: 0px;
    --brand-license-shift: 0px;
  }

  .brand-text {
    transform: none;
  }

  .brand-license {
    opacity: calc(1 - var(--header-scroll-progress));
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    border: 1px solid rgba(199, 154, 97, 0.26);
    border-radius: 0.75rem;
    padding: 0.45rem 0.75rem;
    background:
      linear-gradient(90deg, rgba(255, 224, 173, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(72, 41, 24, 0.96), rgba(30, 17, 10, 0.98));
    background-size: 3rem 100%, auto;
    box-shadow: 0 16px 34px rgba(61, 35, 18, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.72rem 0;
  }

  .site-nav a::after {
    right: auto;
    width: 2rem;
    transform-origin: left;
  }

  .hero h1,
  .page-hero h1,
  .section h2,
  .cta-card h2 {
    max-width: none;
  }

  .hero-copy-overlay {
    min-height: 72vh;
  }

  .hero-slideshow {
    min-height: calc(100vh - var(--header-stick-offset));
  }

  .studio-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem 0 2.5rem;
  }

  .studio-index {
    align-self: start;
  }

  .studio-index h1 {
    max-width: 13ch;
    font-size: clamp(2.35rem, 10vw, 4rem);
  }

  .studio-step-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .studio-step {
    min-width: 8.5rem;
  }

  .studio-world,
  .studio-deck,
  .studio-controls {
    grid-column: 1;
  }

  .studio-world {
    min-height: 42vh;
  }

  .studio-track {
    grid-template-columns: repeat(4, minmax(18rem, 66vw));
  }

  .studio-step:hover,
  .studio-step:focus-visible,
  .studio-step.is-active {
    transform: translateY(-0.16rem);
  }

  .studio-deck {
    min-height: 27rem;
  }

  .home-page .service-card,
  .home-page .process-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(231, 211, 154, 0.12);
  }

  .home-page .service-card:last-child,
  .home-page .process-card:last-child {
    border-bottom: 0;
  }

  .home-page .studio-preview {
    grid-template-columns: 1fr;
  }

  .home-page .studio-preview .media-card {
    min-height: 28rem;
  }

  body:not(.home-page):not(.studio-page) .service-card,
  body:not(.home-page):not(.studio-page) .process-card,
  body:not(.home-page):not(.studio-page) .team-card,
  body:not(.home-page):not(.studio-page) .contact-copy,
  body:not(.home-page):not(.studio-page) .contact-form {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(231, 211, 154, 0.12);
  }

  body:not(.home-page):not(.studio-page) .service-card:last-child,
  body:not(.home-page):not(.studio-page) .process-card:last-child,
  body:not(.home-page):not(.studio-page) .team-card:last-child,
  body:not(.home-page):not(.studio-page) .contact-form {
    border-bottom: 0;
  }

}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 1200px);
  }

  .hero,
  .page-hero {
    padding-top: 2rem;
  }

  .hero-copy,
  .hero-panel,
  .service-card,
  .project-card,
  .process-card,
  .team-card,
  .about-points,
  .contact-copy,
  .contact-form,
  .cta-card {
    border-radius: 1.3rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .hero-copy-overlay {
    min-height: 78vh;
  }

  .hero-slideshow {
    min-height: calc(100vh - var(--header-stick-offset));
  }

  .hero-text {
    max-width: 20rem;
    font-size: 0.92rem;
  }

  .hero-detail-label {
    font-size: 0.68rem;
  }

  .hero-copy-overlay {
    display: none;
  }

  .hero-slide-controls {
    inset: 50% clamp(0.85rem, 2vw, 1.5rem) auto;
  }

  .home-page .scroll-overlap {
    padding-left: max(0.85rem, calc((100vw - 1200px) / 2));
    padding-right: max(0.85rem, calc((100vw - 1200px) / 2));
  }

  .home-page .section {
    padding-top: 4.25rem;
  }

  .home-page .section-heading h2,
  .home-page .studio-preview-copy h2,
  .home-page .cta-card h2,
  .home-page .process-section .section-heading h2 {
    font-size: clamp(2.15rem, 12vw, 3.6rem);
  }

  .home-page .project-card,
  .home-page .project-card-tall,
  .home-page .studio-preview .media-card {
    min-height: 22rem;
  }

  .home-page .project-meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  body:not(.home-page):not(.studio-page) .page-hero {
    padding-top: 3.25rem;
    padding-bottom: 2.75rem;
  }

  body:not(.home-page):not(.studio-page) .section {
    padding-top: 4.25rem;
  }

  body:not(.home-page):not(.studio-page) .page-hero h1,
  body:not(.home-page):not(.studio-page) .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  body:not(.home-page):not(.studio-page) .team-card h2 {
    font-size: clamp(1.1rem, 6vw, 1.65rem);
  }

  body:not(.home-page):not(.studio-page) .project-card,
  body:not(.home-page):not(.studio-page) .project-card-tall {
    min-height: 22rem;
  }

  body:not(.home-page):not(.studio-page) .project-meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  .studio-experience,
  .studio-shell {
    min-height: auto;
  }

  .studio-wash {
    background:
      linear-gradient(180deg, rgba(2, 7, 17, 0.84), rgba(2, 7, 17, 0.68) 42%, rgba(2, 7, 17, 0.9)),
      linear-gradient(90deg, rgba(2, 7, 17, 0.72), rgba(2, 7, 17, 0.28));
  }

  .studio-shell {
    width: min(100% - 1rem, 1200px);
    padding: 1.25rem 0 1.8rem;
  }

  .studio-entry {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .studio-entry-mark {
    grid-template-columns: repeat(5, auto);
    justify-content: start;
    font-size: clamp(3.5rem, 18vw, 7rem);
    line-height: 0.8;
  }

  .studio-entry-copy h1 {
    max-width: 8ch;
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .studio-step-list {
    grid-template-columns: 1fr 1fr;
  }

  .studio-step {
    min-width: 0;
  }

  .studio-deck {
    min-height: 39rem;
  }

  .studio-world {
    min-height: 21rem;
  }

  .studio-track {
    grid-template-columns: repeat(4, minmax(15rem, 78vw));
    gap: 0.85rem;
    padding: 0.85rem;
  }

  .studio-node {
    min-height: 18rem;
  }

  .studio-card {
    padding: 1.1rem;
  }

  .studio-card h2 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .studio-facts,
  .studio-controls {
    grid-template-columns: 1fr;
  }

  .studio-meter {
    order: -1;
  }
}

@media (max-width: 980px) {
  .studio-page .studio-experience {
    height: calc(100vh - var(--header-stick-offset));
    min-height: 0;
  }

  .studio-page .studio-shell {
    height: 100%;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.8rem 0;
  }

  .studio-page .studio-index h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.85rem, 6vw, 3rem);
  }

  .studio-page .studio-world {
    min-height: 0;
  }

  .studio-page .studio-node {
    min-height: clamp(13rem, 35vh, 24rem);
  }

  .studio-page .studio-deck {
    min-height: 11.5rem;
  }
}

@media (max-width: 720px) {
  .studio-page .studio-shell {
    width: min(100% - 1rem, 1200px);
    gap: 0.55rem;
    padding: 0.6rem 0;
  }

  .studio-page .studio-index h1 {
    display: none;
  }

  .studio-page .studio-step-list {
    grid-template-columns: repeat(4, minmax(6.8rem, 1fr));
    overflow-x: auto;
  }

  .studio-page .studio-step {
    min-height: 2.45rem;
    padding: 0.42rem 0.58rem;
    font-size: 0.82rem;
  }

  .studio-page .studio-world {
    min-height: 0;
  }

  .studio-page .studio-node {
    min-height: clamp(10rem, 32vh, 16rem);
  }

  .studio-page .studio-deck {
    min-height: 16rem;
  }

  .studio-page .studio-card {
    padding: 0.8rem;
  }

  .studio-page .studio-card h2 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .studio-page .studio-card > p:not(.eyebrow) {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .studio-page .studio-facts {
    gap: 0.4rem;
  }

  .studio-page .studio-facts span {
    min-height: 2.7rem;
    padding: 0.45rem;
  }

  .studio-page .studio-controls {
    grid-template-columns: auto minmax(4rem, 1fr) auto;
    gap: 0.5rem;
    margin-top: 0.55rem;
  }
}

@media (max-width: 980px) {
  .studio-page {
    height: auto;
    min-height: 100vh;
    overflow: auto;
  }

  .studio-page .page-shell {
    height: auto;
    min-height: 100vh;
  }

  .studio-page .studio-experience {
    height: auto;
    min-height: calc(100vh - var(--header-stick-offset));
    overflow: visible;
  }

  .studio-page .studio-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    height: auto;
    min-height: calc(100vh - var(--header-stick-offset));
    padding: 1rem 0 1.4rem;
  }

  .studio-index {
    padding-right: 0;
    border-right: 0;
    justify-content: start;
  }

  .studio-page .studio-index h1 {
    display: block;
    max-width: 16ch;
    margin-bottom: 0.9rem;
    font-size: clamp(2.1rem, 8vw, 4rem);
  }

  .studio-page .studio-step-list {
    grid-template-columns: repeat(4, minmax(9rem, 1fr));
    overflow-x: auto;
    max-width: none;
    border-bottom: 1px solid rgba(231, 211, 154, 0.18);
  }

  .studio-page .studio-step {
    min-height: 3.7rem;
    padding: 0.65rem 0.7rem;
    border-right: 1px solid rgba(231, 211, 154, 0.12);
    border-bottom: 0;
  }

  .studio-step:hover,
  .studio-step:focus-visible,
  .studio-step.is-active {
    transform: translateY(-0.12rem);
  }

  .studio-world {
    grid-column: 1;
    min-height: auto;
    border-left: 0;
    overflow: visible;
  }

  .studio-page .studio-world {
    min-height: auto;
  }

  .studio-deck {
    position: relative;
    min-height: 42rem;
  }

  .studio-card {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 1rem;
    padding: 4.1rem 0.4rem 5.5rem;
  }

  .studio-room-copy {
    order: 2;
    max-width: none;
    padding: 1rem;
  }

  .studio-room-media {
    order: 1;
    min-height: clamp(18rem, 48vw, 28rem);
  }

  .studio-gallery-image {
    inset: 8% 3% 0 13%;
    width: 78%;
    height: 76%;
  }

  .studio-gallery-controls {
    left: 13%;
    bottom: 0.55rem;
  }

  .studio-room-count {
    top: 1.1rem;
    right: 1rem;
  }

  .studio-controls {
    right: 0.4rem;
    left: 0.4rem;
    bottom: 1rem;
    min-width: 0;
    grid-template-columns: auto minmax(5rem, 1fr) auto;
  }
}

@media (max-width: 720px) {
  .studio-entry {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .studio-entry-mark {
    grid-template-columns: repeat(5, auto);
    justify-content: start;
    font-size: clamp(3.5rem, 18vw, 7rem);
    line-height: 0.8;
  }

  .studio-entry-copy h1 {
    max-width: 8ch;
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .studio-page .studio-shell {
    width: min(100% - 1rem, 1200px);
    gap: 0.8rem;
    padding: 0.85rem 0 1rem;
  }

  .studio-page .studio-index h1 {
    display: block;
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .studio-page .studio-step-list {
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }

  .studio-step em {
    font-size: 0.92rem;
  }

  .studio-deck {
    min-height: 45rem;
  }

  .studio-card {
    padding: 3.6rem 0 5.2rem;
  }

  .studio-card h2 {
    max-width: none;
    font-size: clamp(2.15rem, 12vw, 3.6rem);
  }

  .studio-room-copy > p:not(.eyebrow) {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .studio-room-media {
    min-height: 18rem;
    transform: none;
  }

  .studio-gallery-image {
    inset: 10% 0 0 8%;
    width: 86%;
    height: 74%;
  }

  .studio-gallery-controls {
    left: 8%;
    bottom: 0.35rem;
    grid-template-columns: 2rem auto 2rem;
  }

  .studio-gallery-controls button {
    width: 2rem;
    height: 2rem;
  }

  .studio-facts {
    grid-template-columns: 1fr;
  }

  .studio-facts span,
  .studio-page .studio-facts span {
    border-right: 0;
    border-bottom: 1px solid rgba(231, 211, 154, 0.12);
  }

  .studio-facts span:last-child {
    border-bottom: 0;
  }

  .studio-world-arrow {
    top: 14rem;
    width: 2.65rem;
    height: 2.65rem;
  }

  .studio-world-arrow-left,
  .studio-world-arrow-right,
  .studio-world-arrow:hover,
  .studio-world-arrow:focus-visible {
    transform: translateY(-50%);
  }
}
