* {
  box-sizing: border-box;
}

html {
  background: #090d0a;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(61, 97, 45, 0.2), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(61, 97, 45, 0.16), transparent 22%),
    linear-gradient(180deg, #080d09 0%, #0b110d 45%, #060907 100%);
}

.top-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: max(44px, 4.15vw);
  padding: max(10px, 1.45vw) max(16px, 4.65vw);
  background: linear-gradient(180deg, rgba(7, 9, 8, 0.72), rgba(7, 9, 8, 0));
  pointer-events: none;
}

.nav-logo,
.morph-menu {
  pointer-events: auto;
}

.nav-logo {
  display: block;
  width: max(150px, 17.45vw);
}

.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.morph-menu {
  --closed-width: max(22px, 1.7vw);
  --closed-gap: max(4px, 0.32vw);
  --closed-line-height: max(2px, 0.14vw);
  --open-width: max(105px, 11.05vw);
  --open-row-height: max(26px, 2.47vw);
  --open-gap: max(5px, 0.46vw);
  display: grid;
  gap: var(--closed-gap);
  width: var(--closed-width);
  padding: 0;
  transition: width 320ms ease, gap 320ms ease;
}

.morph-menu:hover,
.morph-menu:focus-within {
  width: var(--open-width);
  gap: var(--open-gap);
}

.morph-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: var(--closed-line-height);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(241, 234, 224, 0.96);
  box-shadow: 0 0 0 1px rgba(241, 234, 224, 0.06), 0 10px 22px rgba(0, 0, 0, 0);
  text-decoration: none;
  transition:
    height 320ms ease,
    border-radius 320ms ease,
    background 220ms ease,
    box-shadow 320ms ease,
    transform 220ms ease;
}

.morph-menu:hover .morph-line,
.morph-menu:focus-within .morph-line {
  height: var(--open-row-height);
  padding: 0 max(12px, 1.19vw);
  border-radius: 999px;
  background: rgba(238, 229, 219, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.morph-line:hover,
.morph-line:focus-visible {
  background: rgba(255, 247, 235, 0.98);
  transform: translateX(-3px);
  outline: none;
}

.morph-line span {
  color: #142016;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: max(0.66rem, 0.82vw);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 180ms ease 110ms, transform 220ms ease 100ms;
  white-space: nowrap;
}

.morph-menu:hover .morph-line span,
.morph-menu:focus-within .morph-line span {
  opacity: 1;
  transform: translateX(0);
}

.stage {
  position: relative;
  z-index: 1;
  container-type: inline-size;
  width: 100vw;
  margin: 0 auto;
  max-height: calc(100vw * 10.7);
  overflow: hidden;
  background: #090d0a;
  box-shadow: 0 0 130px 28px rgba(5, 8, 6, 0.66);
}

.stage-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: 80px;
}

#studio-start {
  top: 12.175%;
}

#services {
  top: 39%;
}

#work {
  top: 72%;
}

#contact {
  top: 82.7%;
}

.stage-base {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  transform: translateY(var(--base-y, 0)) scaleY(1.025);
  transform-origin: top center;
}

a,
button,
input,
label,
.morph-menu,
.nav-logo {
  pointer-events: auto;
}

.about-window-button,
.breakdown-quote-button,
.breakdown-button,
.case-study-copy a,
.bento-services-button,
.cool-copy a {
  min-width: 8.75cqw;
  height: 2.17cqw;
  padding: 0 1.3cqw;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.54rem, 0.8cqw, 1.08rem);
  line-height: 1;
  white-space: nowrap;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.breakdown-quote-button:hover,
.breakdown-quote-button:focus-visible,
.breakdown-button:hover,
.breakdown-button:focus-visible,
.case-study-copy a:hover,
.case-study-copy a:focus-visible,
.bento-services-button:hover,
.bento-services-button:focus-visible,
.cool-copy a:hover,
.cool-copy a:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.stage-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(var(--base-y, 0));
  transform-origin: center center;
}

.stage-sparkles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(clamp(8px, 0.9vw, 18px) * var(--s));
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35) rotate(45deg);
  animation: sparkle-twinkle 9s ease-in-out var(--d) infinite;
}

.stage-sparkles span:nth-child(n + 26) {
  display: none;
}

.stage-sparkles span::before,
.stage-sparkles span::after {
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(241, 234, 224, 0.92);
  border-radius: 999px;
  content: "";
}

.stage-sparkles span::before {
  width: 100%;
  height: 18%;
}

.stage-sparkles span::after {
  width: 18%;
  height: 100%;
}

@keyframes sparkle-twinkle {
  0%,
  52%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35) rotate(45deg);
  }

  59% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1) rotate(45deg);
  }

  66% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.62) rotate(45deg);
  }

  73% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(0.86) rotate(45deg);
  }
}

.stage-layer {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  transform: translate3d(var(--layer-x, 0), var(--layer-y, 0px), 0);
}

.top-mountain {
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translate3d(-50%, var(--layer-y, 0px), 0);
  transform-origin: top center;
}

.top-forest-overlay {
  left: 50%;
  top: 0;
  z-index: 2;
  filter: none;
  transform: translate3d(-50%, var(--layer-y, 0px), 0);
  transform-origin: top center;
}

.hero-title {
  --layer-x: -56.5%;
  top: 2.77%;
  left: 50%;
  z-index: 5;
  width: 41.69%;
}

body:not(.is-hero-ready) .hero-title {
  opacity: 0;
  transform: translate3d(var(--layer-x, -50%), calc(var(--layer-y, 0px) - 72vh), 0)
    scale(0.985);
}

body.is-hero-ready .hero-title {
  animation: hero-logo-arrive 2850ms cubic-bezier(0.16, 0.86, 0.24, 1) both;
}

@keyframes hero-logo-arrive {
  from {
    opacity: 0;
    transform: translate3d(var(--layer-x, -50%), calc(var(--layer-y, 0px) - 72vh), 0)
      scale(0.985);
    filter: blur(8px);
  }

  34% {
    opacity: 1;
  }

  92%,
  to {
    opacity: 1;
    transform: translate3d(var(--layer-x, -50%), var(--layer-y, 0px), 0) scale(1);
    filter: blur(0);
  }
}

.brand-presentation {
  --presentation-accent: #89964f;
  --layer-x: -50%;
  top: 13.85%;
  left: 50%;
  z-index: 6;
  width: 90.72%;
  color: rgba(241, 234, 224, 0.94);
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  pointer-events: auto;
  text-align: center;
}

.presentation-art {
  position: relative;
  width: 100%;
  aspect-ratio: 2171 / 1004;
}

.presentation-slide {
  --product-active-x: 0;
  --product-enter-x: -14%;
  --product-exit-x: 14%;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.presentation-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.presentation-slide:not(.is-active):not(.is-exiting):not(.is-entering) .presentation-mountain,
.presentation-slide.is-entering .presentation-mountain {
  opacity: 0;
  transform: translateX(9%);
}

.presentation-slide:not(.is-active):not(.is-exiting):not(.is-entering) .presentation-product,
.presentation-slide.is-entering .presentation-product {
  opacity: 0;
  transform: translateX(var(--product-enter-x));
}

.presentation-slide:not(.is-active):not(.is-exiting):not(.is-entering) .presentation-window,
.presentation-slide.is-entering .presentation-window {
  opacity: 0;
  transform: scale(0.998);
}

.presentation-piece {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  user-select: none;
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.presentation-mountain {
  z-index: 1;
  transform: translateX(0);
}

.presentation-window {
  z-index: 2;
  transform: translateX(0);
  transition:
    opacity 180ms ease,
    transform 280ms ease;
}

.presentation-product {
  z-index: 3;
  transform: translateX(var(--product-active-x));
}

.presentation-slide.is-exiting {
  opacity: 1;
}

.presentation-slide.is-entering {
  opacity: 1;
}

.presentation-slide.is-exiting .presentation-mountain {
  opacity: 0;
  transform: translateX(-9%);
}

.presentation-slide.is-exiting .presentation-product {
  opacity: 0;
  transform: translateX(var(--product-exit-x));
}

.presentation-slide.is-exiting .presentation-window {
  opacity: 0;
  transform: scale(0.998);
  transition-delay: 360ms;
}

.presentation-slide.is-entering.is-window-live .presentation-window,
.presentation-slide.is-entering.is-window-live .presentation-mountain,
.presentation-slide.is-entering.is-window-live .presentation-product {
  opacity: 1;
}

.presentation-slide.is-entering.is-window-live .presentation-mountain,
.presentation-slide.is-entering.is-window-live .presentation-window {
  transform: translateX(0);
}

.presentation-slide.is-entering.is-window-live .presentation-product {
  transform: translateX(var(--product-active-x));
}

.presentation-dots {
  position: absolute;
  left: 50%;
  bottom: 5.2%;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: max(4px, 0.37cqw);
  transform: translateX(-50%);
}

.presentation-dot {
  width: max(6px, 0.58cqw);
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(241, 234, 224, 0.82);
  border-radius: 999px;
  background: rgba(241, 234, 224, 0.12);
  cursor: pointer;
  pointer-events: auto;
}

.presentation-dot.is-active,
.presentation-dot:hover,
.presentation-dot:focus-visible {
  background: rgba(241, 234, 224, 0.86);
  outline: none;
}

.presentation-arrow {
  position: absolute;
  top: 34%;
  z-index: 9;
  width: max(17px, 1.85cqw);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  pointer-events: auto;
}

.presentation-arrow::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-right: max(4px, 0.42cqw) solid rgba(241, 234, 224, 0.86);
  border-bottom: max(4px, 0.42cqw) solid rgba(241, 234, 224, 0.86);
  transition:
    border-color 200ms ease,
    transform 220ms ease;
}

.presentation-arrow-prev {
  left: max(10px, 2.6cqw);
}

.presentation-arrow-prev::before {
  transform: rotate(135deg);
}

.presentation-arrow-next {
  right: max(10px, 2.6cqw);
}

.presentation-arrow-next::before {
  transform: rotate(-45deg);
}

.presentation-arrow:hover::before,
.presentation-arrow:focus-visible::before {
  border-color: rgba(255, 247, 235, 0.98);
}

.presentation-arrow-prev:hover::before,
.presentation-arrow-prev:focus-visible::before {
  transform: translateX(-4px) rotate(135deg);
}

.presentation-arrow-next:hover::before,
.presentation-arrow-next:focus-visible::before {
  transform: translateX(4px) rotate(-45deg);
}

.presentation-arrow:focus-visible {
  outline: none;
}

.presentation-copy {
  margin-top: clamp(-16px, -0.9vw, -8px);
}

.presentation-copy h2 {
  margin: 0;
  color: #f1eae0;
  font-size: clamp(1.25rem, 2.18vw, 2.95rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.04;
  text-transform: uppercase;
}

.presentation-copy em {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.presentation-copy span {
  color: var(--presentation-accent);
  transition: color 240ms ease;
}

.presentation-copy strong {
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.presentation-copy p {
  width: min(80%, 960px);
  margin: clamp(12px, 1.12vw, 26px) auto 0;
  color: rgba(241, 234, 224, 0.68);
  font-size: clamp(0.72rem, 1.04vw, 1.32rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.42;
  text-transform: none;
}

.about-window {
  --layer-x: -48.5%;
  top: calc(27.25% - 13.4cqw);
  left: 50%;
  z-index: 6;
  width: 65.38%;
  color: #30372f;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  pointer-events: auto;
}

.about-window-art {
  display: block;
  width: 100%;
  height: auto;
}

.about-window-copy {
  position: absolute;
  top: 18.3%;
  left: 8.6%;
  width: 44.8%;
  text-align: center;
}

.about-window-logo {
  display: block;
  width: 58%;
  height: auto;
  margin: 0 auto;
}

.about-window-regions {
  display: flex;
  justify-content: space-between;
  width: 72%;
  margin: 2.05cqw auto 0;
  color: rgba(64, 88, 67, 0.56);
  font-size: 0.76cqw;
  font-weight: 300;
  letter-spacing: 0;
}

.about-window-regions .is-active {
  color: #dc7b1c;
}

.about-window-copy p {
  margin: 2.4cqw auto 0;
  width: 88%;
  font-size: 0.94cqw;
  font-weight: 400;
  line-height: 1.48;
}

.about-window-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.75cqw;
  height: 2.17cqw;
  margin-top: 4.43cqw;
  border-radius: 999px;
  background: #1e281f;
  color: #f1eae0;
  font-weight: 300;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.about-window-button:hover,
.about-window-button:focus-visible {
  background: #dc7b1c;
  color: #fff8f0;
  transform: translateY(-2px);
  outline: none;
}

.breakdown-section {
  --layer-x: -48.5%;
  top: calc(37.35% - 23.3cqw);
  left: 50%;
  z-index: 6;
  aspect-ratio: 1241 / 655;
  width: 65.38%;
  color: rgba(241, 234, 224, 0.9);
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  pointer-events: auto;
}

.breakdown-art {
  position: absolute;
  inset: 0;
  transform: translateX(1.6%);
}

.breakdown-art img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
}

.breakdown-van {
  opacity: 0;
  transform: translateX(-22%);
  transition:
    opacity 1080ms ease,
    transform 1380ms cubic-bezier(0.2, 0.82, 0.18, 1);
  will-change: transform, opacity;
}

.breakdown-section.is-van-visible .breakdown-van {
  opacity: 1;
  transform: translateX(0);
}

.breakdown-quote-button {
  position: absolute;
  left: 5.1%;
  top: 38.65%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13.2%;
  border-radius: 999px;
  background: #f47b18;
  color: #131811;
  font-weight: 300;
  text-decoration: none;
}

.breakdown-quote-button:hover,
.breakdown-quote-button:focus-visible {
  background: #f1eae0;
  color: #1b211b;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.breakdown-copy {
  --breakdown-text-width: 31.4cqw;
  position: absolute;
  top: 9.2%;
  left: 45%;
  width: var(--breakdown-text-width);
  transform: translateY(-16%);
}

.breakdown-copy h2 {
  width: var(--breakdown-text-width);
  margin: 0;
  color: #3d612d;
  font-size: 5.307cqw;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.breakdown-copy h3 {
  width: var(--breakdown-text-width);
  margin: 0.83cqw 0 0;
  font-size: 2.08cqw;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.02;
  text-transform: uppercase;
  white-space: nowrap;
}

.breakdown-copy h3 strong {
  color: #f47b18;
  font-weight: 800;
}

.breakdown-copy p {
  max-width: var(--breakdown-text-width);
  margin: 1.38cqw 0 0;
  font-size: 0.95cqw;
  font-weight: 300;
  line-height: 1.58;
}

.breakdown-button {
  position: absolute;
  right: 9%;
  bottom: 8%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.55cqw;
  margin: 0;
  border-radius: 999px;
  background: #f1eae0;
  color: #1b211b;
  font-weight: 300;
  text-decoration: none;
}

.breakdown-button:hover,
.breakdown-button:focus-visible {
  background: #f47b18;
  color: #131811;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.case-study-card {
  --layer-x: -50%;
  top: 40.75%;
  left: 50%;
  z-index: 6;
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: 2.1cqw;
  width: 57.35%;
  padding: 1.35cqw;
  border: 1px solid rgba(241, 234, 224, 0.18);
  border-radius: 1.1cqw;
  background:
    linear-gradient(120deg, rgba(6, 18, 13, 0.5), rgba(13, 30, 25, 0.22)),
    rgba(9, 16, 12, 0.2);
  box-shadow:
    0 1.1cqw 2.4cqw rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(241, 234, 224, 0.08);
  color: #f1eae0;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  backdrop-filter: blur(2px);
  pointer-events: auto;
}

.case-study-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0.75cqw;
  background: rgba(241, 234, 224, 0.08);
}

.case-study-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.case-study-copy span {
  display: block;
  color: #f1eae0;
  font-size: 0.76cqw;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.case-study-copy h2 {
  margin: 0.55cqw 0 0;
  color: #f67d10;
  font-size: 2.25cqw;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.case-study-copy p {
  width: 92%;
  margin: 0.9cqw 0 0;
  color: rgba(241, 234, 224, 0.8);
  font-size: 0.92cqw;
  font-weight: 300;
  line-height: 1.42;
}

.case-study-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.15cqw;
  border-radius: 999px;
  background: #f1eae0;
  color: #172015;
  font-weight: 300;
  text-decoration: none;
}

.case-study-copy a:hover,
.case-study-copy a:focus-visible {
  background: #dc7b1c;
  color: #fff8f0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.packages-section {
  --layer-x: -50%;
  top: 47.23%;
  left: 50%;
  z-index: 6;
  width: 57.35%;
  color: #f1eae0;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  pointer-events: auto;
}

.packages-section h2 {
  margin: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.packages-section h2 span {
  display: inline-block;
  font-size: 5.77cqw;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.packages-rule {
  display: block;
  width: 100%;
  height: 0.12cqw;
  margin-top: 1.75cqw;
  background: rgba(241, 234, 224, 0.82);
}

.packages-list {
  display: grid;
  gap: 1.34cqw;
  margin-top: 2.63cqw;
}

.package-window {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: clamp(10px, 1vw, 18px);
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0;
  overflow: hidden;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 1260ms ease,
    transform 1560ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.package-window::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: rgba(239, 234, 226, 0.14);
  -webkit-backdrop-filter: blur(12px) brightness(0.74) saturate(0.72);
  backdrop-filter: blur(12px) brightness(0.74) saturate(0.72);
  opacity: 0;
  content: "";
  transition: opacity 220ms ease;
  pointer-events: none;
}

.packages-section.is-visible .package-window {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.packages-section.is-visible .package-window:hover,
.packages-section.is-visible .package-window:focus-visible {
  transform: translateY(clamp(-5px, -0.45vw, -9px)) scale(1);
  transition:
    opacity 1260ms ease,
    transform 220ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: 0s;
}

.packages-section.is-visible .package-window:nth-child(n):hover,
.packages-section.is-visible .package-window:nth-child(n):focus-visible {
  transition-delay: 0s;
}

.packages-section.is-visible .package-window:nth-child(2) {
  transition-delay: 330ms;
}

.packages-section.is-visible .package-window:nth-child(3) {
  transition-delay: 660ms;
}

.packages-section.is-visible .package-window:nth-child(4) {
  transition-delay: 990ms;
}

.packages-section.is-visible .package-window:nth-child(5) {
  transition-delay: 1320ms;
}

.packages-section.has-revealed .package-window {
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: 0s;
}

.packages-section.is-visible.has-revealed .package-window:nth-child(n) {
  transition-delay: 0s;
}

.package-window img {
  display: block;
  width: 100%;
  height: auto;
}

.package-title,
.package-copy,
.package-detail {
  position: absolute;
  display: block;
}

.package-window img,
.package-window .package-title,
.package-window .package-copy {
  transition: filter 220ms ease, opacity 220ms ease;
}

.package-window:hover::after,
.package-window:focus-visible::after,
.package-window.is-open::after {
  opacity: 1;
  transition: opacity 320ms ease 500ms;
}

.package-window:hover img,
.package-window:hover .package-title,
.package-window:hover .package-copy,
.package-window:focus-visible img,
.package-window:focus-visible .package-title,
.package-window:focus-visible .package-copy,
.package-window.is-open img,
.package-window.is-open .package-title,
.package-window.is-open .package-copy {
  filter: blur(1.5px);
  opacity: 0.58;
  transition: filter 320ms ease 500ms, opacity 320ms ease 500ms;
}

.package-left .package-title {
  top: 18%;
  left: 3.1%;
  text-align: left;
}

.package-left .package-copy {
  left: 3.2%;
  bottom: 13%;
  text-align: left;
}

.package-right .package-title {
  top: 18%;
  right: 4%;
  text-align: right;
}

.package-right .package-copy {
  right: 4.1%;
  bottom: 11%;
  width: 45%;
  text-align: right;
}

.package-title {
  color: #20261f;
  font-size: clamp(1.85rem, 3.66vw, 4.62rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.package-right .package-title {
  color: #f1eae0;
}

.package-copy {
  color: rgba(40, 45, 39, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.62rem, 1.02vw, 1.3rem);
  font-style: italic;
  line-height: 1.15;
}

.package-detail {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(76%, 760px);
  color: #f1eae0;
  font-size: clamp(0.72rem, 1.12vw, 1.4rem);
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -42%);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
}

.package-window:hover .package-detail,
.package-window:focus-visible .package-detail,
.package-window.is-open .package-detail {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition:
    opacity 320ms ease 500ms,
    transform 320ms ease 500ms;
}

.package-right .package-copy {
  color: rgba(241, 234, 224, 0.82);
}

.package-everything .package-title {
  top: 22%;
}

.package-everything .package-copy {
  bottom: 12%;
}

.packages-rule-bottom {
  margin-top: 2.49cqw;
}

.rolling-gallery {
  --layer-x: -50%;
  top: calc(63.35% + 5.23cqw);
  left: 50%;
  z-index: 5;
  display: grid;
  width: 57.35%;
  pointer-events: auto;
}

.rolling-rule {
  display: block;
  width: 100%;
  height: clamp(1px, 0.12vw, 2px);
  background: rgba(241, 234, 224, 0.82);
}

.rolling-blank-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 9.9cqw 3.15cqw;
  gap: 1.05cqw;
  height: 16.8cqw;
  width: 100%;
  margin: 0;
  padding: 1.35cqw;
  border-radius: 1.1cqw;
  background: #f1eae0;
  opacity: 0.96;
}

.bento-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  overflow: hidden;
  padding: 1.15cqw;
  border-radius: 0.75cqw;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(220, 214, 204, 0.34)),
    rgba(40, 51, 34, 0.08);
  color: #1d271b;
  box-shadow: inset 0 0 0 1px rgba(29, 39, 27, 0.08);
  text-decoration: none;
}

.bento-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 12, 0.05),
    rgba(12, 18, 12, 0.58)
  );
  content: "";
  pointer-events: none;
}

.bento-panel-wide {
  grid-column: span 1;
}

.bento-panel-tall {
  grid-row: span 1;
}

.bento-panel-dark {
  background:
    linear-gradient(145deg, rgba(36, 55, 29, 0.88), rgba(22, 30, 20, 0.92)),
    #24371d;
  color: #f1eae0;
}

.bento-panel-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  pointer-events: none;
}

.bento-panel-tall img {
  object-position: 48% 50%;
}

.bento-panel span {
  position: relative;
  z-index: 2;
  color: #f1eae0;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.28cqw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.bento-panel strong {
  position: relative;
  z-index: 2;
  max-width: 78%;
  color: #f1eae0;
  font-size: 1.02cqw;
  font-weight: 300;
  line-height: 1.18;
}

.bento-panel:hover,
.bento-panel:focus-within {
  transform: translateY(-0.25cqw);
}

.bento-powered {
  display: flex;
  grid-column: 1 / 2;
  grid-row: 2;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: fit-content;
  text-decoration: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.bento-powered:hover,
.bento-powered:focus-visible {
  filter: brightness(1.06);
  outline: none;
  transform: translateY(-2px);
}

.bento-powered img {
  display: block;
  width: 8.33cqw;
  height: auto;
}

.bento-services-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 10.5cqw;
  margin-top: 1.45cqw;
  border-radius: 999px;
  background: #f1eae0;
  color: #1b211b;
  font-weight: 300;
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.bento-services-button:hover,
.bento-services-button:focus-visible {
  background: #f67d10;
  color: #f1eae0;
  transform: translateY(-2px);
  outline: none;
}

.hero-copy {
  --entry-width: clamp(105px, 11.05vw, 240px);
  --entry-height: clamp(26px, 2.47vw, 53px);
  --layer-x: -50%;
  top: 7.78%;
  left: 50%;
  z-index: 5;
  width: min(64.6%, 836px);
  color: rgba(241, 234, 224, 0.9);
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  pointer-events: auto;
  text-align: center;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(0.72rem, 1.22vw, 1.65rem);
  font-weight: 300;
  line-height: 1.18;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  opacity: 0;
}

.hero-subtitle-text {
  display: inline-block;
  min-height: 2.36em;
  white-space: normal;
}

body.is-hero-ready .hero-subtitle {
  opacity: 1;
}

.studio-entry {
  position: relative;
  width: var(--entry-width);
  height: calc(var(--entry-height) + clamp(18px, 2.1vw, 46px));
  margin: clamp(15px, 2.5vw, 49px) auto 0;
  cursor: pointer;
}

.studio-entry-button {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--entry-width);
  height: var(--entry-height);
  border-radius: 999px;
  background: rgba(238, 229, 219, 0.92);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.3);
  color: #142016;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.58rem, 0.72vw, 0.88rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0;
  text-decoration: none;
  text-transform: uppercase;
  transform: translate(-50%, 12px) scale(0.98);
  transition:
    opacity 240ms ease,
    transform 320ms ease,
    background 220ms ease,
    box-shadow 260ms ease;
  white-space: nowrap;
}

.studio-entry-button:hover,
.studio-entry-button:focus-visible {
  background: rgba(255, 247, 235, 0.98);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.36);
  outline: none;
}

.studio-entry-button span {
  transform: translateY(1px);
}

.studio-entry-arrow {
  position: absolute;
  top: clamp(2px, 0.5vw, 11px);
  left: 50%;
  width: clamp(10px, 1.2vw, 26px);
  aspect-ratio: 1;
  border-right: clamp(3px, 0.34vw, 7px) solid rgba(241, 234, 224, 0.95);
  border-bottom: clamp(3px, 0.34vw, 7px) solid rgba(241, 234, 224, 0.95);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
  transform: translate(-50%, 0) rotate(45deg);
  transition:
    opacity 220ms ease,
    transform 330ms ease,
    top 330ms ease;
}

.studio-entry:hover .studio-entry-button,
.studio-entry:focus-within .studio-entry-button {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.studio-entry:hover .studio-entry-arrow,
.studio-entry:focus-within .studio-entry-arrow {
  opacity: 0.98;
  top: calc(var(--entry-height) + clamp(9px, 1.1vw, 24px));
  transform: translate(-50%, 0) rotate(45deg);
}

.bottom-layer {
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, var(--layer-y, 0px), 0);
  transform-origin: bottom center;
}

.bottom-layer-1 {
  z-index: 2;
}

.cool-section {
  bottom: calc(9.2% + 2.62 * (57.35cqw * 708 / 1528));
  left: 50%;
  z-index: 3;
  width: 57.35%;
  aspect-ratio: 1528 / 708;
  pointer-events: auto;
  --layer-x: -50%;
}

.cool-copy {
  position: absolute;
  top: 15%;
  left: 0.8%;
  z-index: 2;
  width: 86.5%;
  min-height: 45%;
  padding: 3.1% 4% 3.4%;
  border: 1px solid rgba(241, 234, 224, 0.2);
  border-radius: 2.3cqw;
  background:
    linear-gradient(120deg, rgba(6, 18, 13, 0.44), rgba(13, 30, 25, 0.18)),
    rgba(9, 16, 12, 0.2);
  box-shadow:
    0 26px 62px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(241, 234, 224, 0.1);
  backdrop-filter: blur(2px);
  color: #f1eae0;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
}

.cool-copy h2 {
  max-width: 51%;
  margin: 0 0 1.55cqw;
  color: #f1eae0;
  font-size: 3.15cqw;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.cool-copy p {
  margin: 0;
  color: rgba(241, 234, 224, 0.84);
  max-width: 51%;
  font-size: 1.06cqw;
  font-weight: 300;
  line-height: 1.5;
}

.cool-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.78cqw;
  min-height: 0;
  margin-top: 2.53cqw;
  border-radius: 999px;
  background: #f67d10;
  color: #f1eae0;
  font-weight: 300;
  text-decoration: none;
}

.cool-copy a:hover,
.cool-copy a:focus-visible {
  background: #f1eae0;
  color: #1b211b;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.cool-collage {
  position: absolute;
  top: 0;
  left: 36.5%;
  z-index: 4;
  display: block;
  width: 73.5%;
  height: auto;
  transform: translateY(1%);
}

.bottom-layer-2 {
  z-index: 3;
}

.contact-signup {
  bottom: 13.05%;
  left: 50%;
  z-index: 5;
  display: grid;
  justify-items: center;
  width: 57.35%;
  padding: 4.42cqw 3.68cqw;
  border-radius: 2.03cqw;
  background: rgba(18, 23, 17, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(241, 234, 224, 0.06),
    0 26px 70px rgba(0, 0, 0, 0.14);
  color: #f1eae0;
  text-align: center;
  pointer-events: auto;
  --layer-x: -50%;
}

.contact-signup h2 {
  margin: 0;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 4cqw;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.95;
}

.contact-signup h2 em {
  color: #f67d10;
  font-style: italic;
  font-weight: 700;
}

.contact-signup p {
  margin: 1.84cqw 0 0;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.05cqw;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 10.36cqw;
  width: 62%;
  margin-top: 3.04cqw;
  overflow: hidden;
  border-radius: 0.6cqw;
}

.contact-form input {
  min-width: 0;
  border: 0;
  padding: 0.78cqw 1.1cqw;
  background: rgba(205, 202, 186, 0.34);
  color: #f1eae0;
  font: inherit;
  outline: none;
}

.contact-form button {
  border: 0;
  background: #f1eae0;
  color: #1b201a;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 0.86cqw;
  font-weight: 300;
  text-transform: none;
}

.contact-consent {
  display: flex;
  align-items: center;
  gap: 0.83cqw;
  margin-top: 2.67cqw;
  color: rgba(241, 234, 224, 0.58);
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 0.74cqw;
  font-weight: 300;
}

.contact-consent input {
  width: 0.97cqw;
  height: 0.97cqw;
  margin: 0;
  accent-color: #f1eae0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bottom-layer-3 {
  z-index: 4;
  bottom: -5cqw;
}

.footer-nav {
  bottom: 1.1%;
  left: 50%;
  z-index: 7;
  display: grid;
  width: 91%;
  color: rgba(241, 234, 224, 0.9);
  pointer-events: auto;
  --layer-x: -50%;
}

.footer-wordmark {
  display: block;
  justify-self: center;
  width: 30%;
  height: auto;
  margin-bottom: 8.2cqw;
}

.footer-copyright sup {
  position: relative;
  top: -0.45em;
  font-size: 0.34em;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-self: center;
  gap: 3.4cqw;
  width: 60%;
  margin-bottom: 5.9cqw;
}

.footer-links a,
.footer-social a {
  color: rgba(241, 234, 224, 0.88);
  text-decoration: none;
}

.footer-links a {
  justify-self: center;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 0.7cqw;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links span {
  width: 1px;
  height: 0.47cqw;
  background: rgba(241, 234, 224, 0.76);
}

.footer-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3.3cqw;
}

.footer-copyright {
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.12cqw;
  font-weight: 300;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-rule {
  display: block;
  height: 1px;
  background: rgba(241, 234, 224, 0.88);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 2.5cqw;
}

.footer-social a {
  min-width: 1ch;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.24cqw;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.depth-title {
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.18));
}

.depth-soft {
  filter: none;
}

.depth-medium {
  filter: none;
}

.depth-strong {
  filter: none;
}

.subpage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 14%, rgba(61, 97, 45, 0.16), transparent 28%),
    radial-gradient(circle at 82% 88%, rgba(241, 234, 224, 0.055), transparent 30%),
    linear-gradient(135deg, #0b0e0c 0%, #151a15 56%, #0a0d0a 100%);
  color: #f1eae0;
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
}

.subpage-static {
  overflow: hidden;
}

.subpage-scroll {
  overflow-x: hidden;
}

.subpage-main {
  display: grid;
  min-height: 100vh;
  padding: clamp(92px, 9vw, 170px) clamp(24px, 8vw, 150px)
    clamp(150px, 16vw, 260px);
  place-items: center;
}

.subpage-card {
  display: grid;
  width: min(64vw, 980px);
  min-height: min(42vh, 430px);
  place-items: center;
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(18px, 1.9vw, 38px);
  background: rgba(241, 234, 224, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(61, 97, 45, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.22);
}

.subpage-kicker {
  margin: 0;
  color: rgba(241, 234, 224, 0.62);
  font-size: clamp(0.9rem, 1.05vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.about-main {
  display: grid;
  gap: clamp(28px, 4.4vw, 82px);
  width: min(76vw, 1280px);
  margin: 0 auto;
  padding: clamp(126px, 10vw, 190px) 0 clamp(36px, 5vw, 86px);
}

.about-hero,
.about-proof,
.about-origin,
.about-field,
.about-region,
.about-simple-grid article {
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(18px, 1.65vw, 34px);
  background: rgba(241, 234, 224, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(61, 97, 45, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.22);
}

.about-hero {
  position: relative;
  display: grid;
  gap: clamp(16px, 1.5vw, 28px);
  min-height: clamp(440px, 52vh, 690px);
  align-content: center;
  overflow: hidden;
  padding: clamp(38px, 5.4vw, 96px);
}

.about-hero > .subpage-kicker,
.about-hero h1,
.about-hero p {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.about-hero h1,
.about-origin h2 {
  max-width: 12ch;
  margin: 0;
  color: #f1eae0;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.92;
}

.about-hero h1 {
  font-size: clamp(4.2rem, 8.2vw, 10.5rem);
}

.about-hero p:not(.subpage-kicker) {
  max-width: 62ch;
  margin: 0;
  color: rgba(241, 234, 224, 0.74);
  font-size: clamp(1rem, 1.15vw, 1.45rem);
  font-weight: 300;
  line-height: 1.46;
}

.about-hero .about-hero-proof-line {
  width: fit-content;
  max-width: min(52ch, 58%);
  margin-top: clamp(4px, 0.35vw, 8px);
  padding-top: clamp(12px, 1vw, 18px);
  border-top: 1px solid rgba(241, 234, 224, 0.22);
  color: rgba(241, 234, 224, 0.84);
  font-size: clamp(1.05rem, 1.25vw, 1.6rem);
}

.about-hero-flip {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(48%, 620px);
  pointer-events: auto;
  perspective: 1100px;
}

.about-hero-flip::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  z-index: 3;
  width: 46%;
  background: linear-gradient(90deg, rgba(17, 24, 17, 0), rgba(17, 24, 17, 0.16), rgba(17, 24, 17, 0));
  content: "";
  pointer-events: none;
}

.about-hero-flip-card {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  filter: drop-shadow(-22px 26px 46px rgba(0, 0, 0, 0.28));
}

.about-hero-steve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: translateZ(1px) scale(1.04);
  backface-visibility: hidden;
  transition:
    opacity 220ms linear,
    transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero-steve-before {
  z-index: 2;
  opacity: 1;
  transform: rotateY(0deg) scale(1.04);
}

.about-hero-steve-after {
  z-index: 1;
  opacity: 0;
  transform: rotateY(-180deg) scale(1.04);
}

.about-hero-flip.is-branded .about-hero-steve-before {
  z-index: 1;
  opacity: 0;
  transform: rotateY(180deg) scale(1.04);
}

.about-hero-flip.is-branded .about-hero-steve-after {
  z-index: 2;
  opacity: 1;
  transform: rotateY(0deg) scale(1.04);
}

.about-hero-flip.is-branded:hover .about-hero-steve-before {
  z-index: 2;
  opacity: 1;
  transform: rotateY(0deg) scale(1.04);
}

.about-hero-flip.is-branded:hover .about-hero-steve-after {
  z-index: 1;
  opacity: 0;
  transform: rotateY(-180deg) scale(1.04);
}

.about-studio-panel {
  position: relative;
  min-height: clamp(260px, 35vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(18px, 1.65vw, 34px);
  background:
    linear-gradient(120deg, rgba(241, 234, 224, 0.11), rgba(241, 234, 224, 0.018)),
    radial-gradient(circle at 20% 22%, rgba(61, 97, 45, 0.42), transparent 34%),
    radial-gradient(circle at 76% 74%, rgba(241, 234, 224, 0.07), transparent 30%),
    #111811;
}

.about-studio-panel::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 12, 9, 0.22), transparent 18%, transparent 82%, rgba(8, 12, 9, 0.24)),
    linear-gradient(180deg, rgba(8, 12, 9, 0.1), transparent 28%, rgba(8, 12, 9, 0.2));
  content: "";
  pointer-events: none;
}

.about-studio-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) brightness(0.72) saturate(0.95);
  opacity: 1;
  transform: scale(1.045);
}

.about-studio-lockup {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: clamp(14px, 1.45vw, 28px);
  width: min(62%, 900px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.about-studio-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.38));
}

.about-studio-slogan {
  min-height: 1.35em;
  margin: 0;
  color: rgba(241, 234, 224, 0.86);
  font-size: clamp(1.18rem, 1.42vw, 1.82rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.about-studio-slogan::after {
  display: inline-block;
  width: 0.08em;
  height: 1em;
  margin-left: 0.18em;
  background: rgba(241, 234, 224, 0.78);
  content: "";
  transform: translateY(0.16em);
  animation: about-slogan-caret 900ms steps(1) infinite;
}

@keyframes about-slogan-caret {
  50% {
    opacity: 0;
  }
}

.about-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 3.2vw, 62px);
  align-items: center;
  padding: clamp(24px, 3vw, 58px);
}

.about-proof-copy,
.about-region-copy {
  display: grid;
  align-content: center;
  gap: clamp(14px, 1.3vw, 24px);
}

.about-proof h2,
.about-region h2 {
  max-width: 12.5ch;
  margin: 0;
  color: #f1eae0;
  font-size: clamp(2.7rem, 4.9vw, 6.6rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.93;
}

.about-proof p:not(.subpage-kicker),
.about-region p:not(.subpage-kicker) {
  max-width: 58ch;
  margin: 0;
  color: rgba(241, 234, 224, 0.72);
  font-size: clamp(0.94rem, 1vw, 1.22rem);
  font-weight: 300;
  line-height: 1.55;
}

.about-proof h2 {
  max-width: 13.8ch;
  font-size: clamp(2.45rem, 4.35vw, 5.95rem);
}

.about-proof-board {
  display: grid;
  gap: clamp(14px, 1.35vw, 26px);
  min-width: 0;
}

.about-proof-main,
.about-proof-carousel img,
.about-region-grid img {
  display: block;
  width: 100%;
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(14px, 1.15vw, 22px);
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.about-proof-main {
  aspect-ratio: 1.58;
  object-position: 50% 50%;
}

.about-proof-carousel {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.about-proof-track {
  display: flex;
  gap: clamp(12px, 1.2vw, 22px);
  width: max-content;
  animation: about-proof-scroll 28s linear infinite;
}

.about-proof-carousel:hover .about-proof-track {
  animation-play-state: paused;
}

.about-proof-carousel img {
  flex: 0 0 auto;
  width: auto;
  height: clamp(118px, 10.5vw, 190px);
  object-fit: contain;
}

.about-proof-carousel img:nth-child(2),
.about-proof-carousel img:nth-child(6) {
  object-position: 56% 44%;
}

.about-proof-carousel img:nth-child(3),
.about-proof-carousel img:nth-child(7) {
  object-position: 50% 32%;
}

@keyframes about-proof-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(6px, 0.6vw, 11px)));
  }
}

.about-origin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(230px, 21vw, 360px);
  gap: clamp(26px, 4vw, 76px);
  align-items: stretch;
  padding: clamp(28px, 3.2vw, 62px);
}

.about-origin-copy {
  display: grid;
  align-content: center;
  gap: clamp(14px, 1.35vw, 24px);
}

.about-origin h2 {
  font-size: clamp(3rem, 5.5vw, 7.2rem);
}

.about-origin-copy p:not(.subpage-kicker),
.about-simple-grid p {
  margin: 0;
  color: rgba(241, 234, 224, 0.72);
  font-size: clamp(0.94rem, 1vw, 1.22rem);
  font-weight: 300;
  line-height: 1.55;
}

.about-origin-copy p:not(.subpage-kicker) {
  max-width: 74ch;
}

.about-director-card {
  display: grid;
  align-content: end;
  min-height: clamp(420px, 44vw, 660px);
  padding: clamp(18px, 1.6vw, 30px);
  border-radius: clamp(16px, 1.35vw, 28px);
  background:
    radial-gradient(circle at 72% 18%, rgba(98, 151, 135, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(19, 51, 47, 0.96) 0%, rgba(22, 43, 42, 0.98) 47%, rgba(13, 28, 29, 1) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(181, 222, 210, 0.11),
    inset 0 1px 0 rgba(241, 234, 224, 0.07);
}

.about-director-photo {
  align-self: start;
  width: 100%;
  min-height: clamp(260px, 31vw, 470px);
  margin-bottom: clamp(16px, 1.45vw, 28px);
  display: block;
  border-radius: clamp(14px, 1.1vw, 22px);
  object-fit: cover;
  object-position: 50% 30%;
}

.about-director-card h2,
.about-director-card p,
.about-simple-grid h3,
.about-simple-grid p {
  margin: 0;
}

.about-director-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.about-director-card h2 {
  color: #f1eae0;
  font-size: clamp(1.45rem, 1.65vw, 2.25rem);
  font-weight: 300;
  line-height: 1;
}

.about-director-card p {
  margin-top: 0.5em;
  color: rgba(241, 234, 224, 0.62);
  font-size: clamp(0.76rem, 0.82vw, 1rem);
  font-weight: 300;
  text-transform: uppercase;
}

.about-director-linkedin {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 2.4vw, 46px);
  height: clamp(34px, 2.4vw, 46px);
  border: 1px solid rgba(241, 234, 224, 0.18);
  border-radius: 999px;
  background: rgba(241, 234, 224, 0.08);
  color: #f1eae0;
  font-size: clamp(1rem, 1.08vw, 1.28rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.about-director-linkedin:hover,
.about-director-linkedin:focus-visible {
  background: #f1eae0;
  color: #182317;
  outline: none;
  transform: translateY(-2px);
}

.about-field {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.84fr);
  grid-template-areas:
    "photo heading"
    "copy copy";
  gap: clamp(22px, 2.5vw, 48px) clamp(22px, 2.6vw, 50px);
  align-items: stretch;
  padding: clamp(28px, 3.2vw, 64px);
  overflow: hidden;
}

.about-field-photo {
  position: relative;
  grid-area: photo;
  min-height: clamp(170px, 15.5vw, 285px);
  overflow: hidden;
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(14px, 1.15vw, 22px);
  background:
    linear-gradient(180deg, rgba(10, 15, 12, 0.02), rgba(10, 15, 12, 0.18)),
    url("New Components/About Page Pictures/In the field.png") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.about-field-photo::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 10, 0.16), transparent 22%, transparent 78%, rgba(8, 13, 10, 0.18)),
    linear-gradient(180deg, rgba(241, 234, 224, 0.06), transparent 38%, rgba(8, 13, 10, 0.18));
  content: "";
  opacity: 0.78;
}

.about-field-photo::after {
  content: none;
}

.about-field-heading {
  display: grid;
  grid-area: heading;
  align-content: center;
  gap: clamp(14px, 1.25vw, 24px);
}

.about-field-copy {
  display: grid;
  grid-area: copy;
  max-width: 84ch;
  gap: clamp(12px, 1.2vw, 22px);
}

.about-field-heading h2 {
  max-width: 8.7ch;
  margin: 0;
  color: #f1eae0;
  font-size: clamp(2.85rem, 5vw, 6.8rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.92;
}

.about-field-copy p {
  max-width: 76ch;
  margin: 0;
  color: rgba(241, 234, 224, 0.72);
  font-size: clamp(0.94rem, 1vw, 1.22rem);
  font-weight: 300;
  line-height: 1.55;
}

.about-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 26px);
}

.about-region {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 3.5vw, 68px);
  align-items: center;
  padding: clamp(24px, 3vw, 58px);
}

.about-region h2 {
  max-width: 12ch;
}

.about-region-grid {
  display: grid;
  gap: clamp(14px, 1.45vw, 28px);
}

.about-region-grid figure {
  position: relative;
  min-height: clamp(185px, 15vw, 270px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(14px, 1.15vw, 22px);
}

.about-region-grid img {
  height: 100%;
  min-height: inherit;
  border: 0;
}

.about-region-grid figcaption {
  position: absolute;
  right: clamp(16px, 1.5vw, 28px);
  bottom: clamp(14px, 1.3vw, 24px);
  color: #f1eae0;
  font-size: clamp(0.78rem, 0.92vw, 1.08rem);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.about-simple-grid article {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.25vw, 24px);
  min-height: clamp(230px, 18vw, 330px);
  padding: clamp(22px, 2vw, 38px);
}

.about-simple-grid h3 {
  color: #f1eae0;
  font-size: clamp(1.45rem, 1.65vw, 2.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.about-simple-grid h3::after {
  display: block;
  width: clamp(42px, 4vw, 78px);
  height: 1px;
  margin-top: clamp(12px, 1vw, 18px);
  background: rgba(241, 234, 224, 0.28);
  content: "";
}

.case-study-shell {
  align-content: start;
  gap: clamp(64px, 10vw, 160px);
}

.case-study-spacer {
  width: min(64vw, 980px);
  min-height: 120vh;
  border: 1px solid rgba(241, 234, 224, 0.06);
  border-radius: clamp(18px, 1.9vw, 38px);
  background: rgba(241, 234, 224, 0.025);
}

.subpage-footer {
  position: fixed;
  right: clamp(24px, 4.65vw, 101px);
  bottom: clamp(22px, 3vw, 58px);
  left: clamp(24px, 4.65vw, 101px);
  z-index: 15;
  display: grid;
  justify-items: center;
  gap: clamp(22px, 2.7vw, 52px);
  pointer-events: none;
}

.subpage-scroll .subpage-footer {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  margin: clamp(30px, 5vw, 90px) 0 0;
  padding: clamp(30px, 4.5vw, 86px) clamp(24px, 4.65vw, 101px)
    clamp(24px, 3.4vw, 66px);
  background: linear-gradient(
    180deg,
    rgba(11, 17, 13, 0) 0%,
    rgba(12, 18, 14, 0.96) 22%,
    #0b110d 100%
  );
}

.subpage-wordmark {
  display: block;
  width: clamp(230px, 28vw, 540px);
  height: auto;
  pointer-events: auto;
}

.subpage-scroll .subpage-wordmark {
  display: none;
}

.subpage-footer-links {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 120px);
  width: 100%;
  pointer-events: auto;
}

.subpage-footer-links a,
.subpage-footer-links span {
  color: rgba(241, 234, 224, 0.72);
  font-size: clamp(0.68rem, 0.95vw, 1.12rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.subpage-footer-links a:hover,
.subpage-footer-links a:focus-visible {
  color: #f1eae0;
  outline: none;
}

.subpage-footer-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 64px);
  width: 100%;
  color: rgba(241, 234, 224, 0.64);
  font-size: clamp(0.72rem, 1vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0;
  pointer-events: auto;
}

.subpage-footer-meta > span:nth-child(2) {
  display: block;
  height: 1px;
  background: rgba(241, 234, 224, 0.64);
}

.subpage-footer-meta sup {
  position: relative;
  top: -0.45em;
  font-size: 0.34em;
}

.subpage-footer-meta div {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 42px);
}

.subpage-footer-meta a {
  color: rgba(241, 234, 224, 0.64);
  font-size: clamp(0.85rem, 1.15vw, 1.4rem);
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.subpage-footer-meta a:hover,
.subpage-footer-meta a:focus-visible {
  color: #f1eae0;
  outline: none;
}

.services-page {
  overflow: auto;
}

.services-main {
  min-height: 100vh;
  padding: clamp(84px, 7.2vw, 138px) clamp(22px, 4.6vw, 90px)
    clamp(52px, 5vw, 96px);
}

.services-board {
  display: block;
  width: min(100%, 1510px);
  min-height: clamp(620px, 70vh, 780px);
  margin: 0 auto;
  padding: clamp(22px, 2.8vw, 52px);
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(18px, 1.9vw, 38px);
  background:
    linear-gradient(145deg, rgba(241, 234, 224, 0.055), rgba(241, 234, 224, 0.024)),
    rgba(12, 17, 13, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(61, 97, 45, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.22);
}

.services-service-index {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 2.5vw, 44px);
  align-items: start;
}

.services-intro {
  position: sticky;
  top: clamp(92px, 8vw, 150px);
  align-self: start;
}

.services-intro h1 {
  max-width: 520px;
  margin: 0;
  color: #f1eae0;
  font-size: clamp(2.45rem, 3.2vw, 4.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.services-intro > p:not(.subpage-kicker) {
  max-width: 470px;
  margin: clamp(18px, 1.9vw, 34px) 0 0;
  color: rgba(241, 234, 224, 0.68);
  font-size: clamp(0.96rem, 1.08vw, 1.18rem);
  font-weight: 300;
  line-height: 1.58;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 2.6vw, 46px);
  aspect-ratio: 1;
  margin-bottom: clamp(14px, 1.1vw, 22px);
  border-radius: 50%;
  background: #f1eae0;
  color: #1b211b;
  font-size: clamp(0.74rem, 0.78vw, 0.92rem);
  font-weight: 500;
  line-height: 1;
}

.service-index-panel {
  padding: clamp(14px, 1.35vw, 24px);
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(16px, 1.2vw, 24px);
  background:
    linear-gradient(145deg, rgba(61, 97, 45, 0.17), rgba(8, 12, 9, 0.55)),
    rgba(8, 12, 9, 0.62);
}

.service-index-panel > .subpage-kicker {
  margin-bottom: clamp(10px, 0.9vw, 16px);
}

.service-row {
  overflow: hidden;
  border-top: 1px solid rgba(241, 234, 224, 0.08);
  transition:
    background 220ms ease,
    border-color 220ms ease;
}

.service-row:first-of-type {
  border-top: 0;
}

.service-row[open] {
  border-color: rgba(220, 123, 28, 0.38);
  background: rgba(241, 234, 224, 0.035);
}

.service-row summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 1.2vw, 22px);
  align-items: center;
  min-height: clamp(78px, 6vw, 112px);
  padding: clamp(12px, 1.15vw, 20px);
  color: #f1eae0;
  cursor: pointer;
  list-style: none;
}

.service-row summary::-webkit-details-marker {
  display: none;
}

.service-row summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(26px, 2vw, 36px);
  aspect-ratio: 1;
  border: 1px solid rgba(241, 234, 224, 0.18);
  border-radius: 50%;
  color: rgba(241, 234, 224, 0.74);
  content: "+";
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 200;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.service-row[open] summary::after {
  background: #dc7b1c;
  color: #fff8f0;
  content: "-";
  transform: rotate(180deg);
}

.service-row strong {
  display: block;
  color: #f1eae0;
  font-size: clamp(1.14rem, 1.6vw, 2.05rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.service-row em {
  display: block;
  max-width: 680px;
  margin-top: clamp(6px, 0.5vw, 9px);
  color: rgba(241, 234, 224, 0.58);
  font-size: clamp(0.8rem, 0.88vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
}

.service-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(7px, 0.58vw, 10px);
  margin: 0;
  padding: 0 clamp(12px, 1.15vw, 20px) clamp(16px, 1.35vw, 24px)
    calc(clamp(12px, 1.15vw, 20px) + clamp(34px, 2.6vw, 46px) + clamp(14px, 1.2vw, 22px));
  list-style: none;
}

.service-row li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.45em 0.72em;
  border-radius: 999px;
  background: rgba(241, 234, 224, 0.08);
  color: rgba(241, 234, 224, 0.76);
  font-size: clamp(0.72rem, 0.78vw, 0.92rem);
  font-weight: 300;
  line-height: 1.1;
}

.services-flow,
.services-packages,
.services-proof-block,
.services-proof {
  grid-column: 1 / -1;
}

.services-section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(18px, 2vw, 34px);
  margin-top: clamp(30px, 3.2vw, 58px);
  padding-top: clamp(18px, 1.8vw, 30px);
  border-top: 1px solid rgba(241, 234, 224, 0.15);
}

.services-section-heading h2 {
  max-width: 780px;
  margin: 0;
  color: #f1eae0;
  font-size: clamp(1.65rem, 2.3vw, 3.18rem);
  font-weight: 320;
  letter-spacing: 0;
  line-height: 1;
}

.services-flow-steps,
.package-match-list,
.services-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.15vw, 20px);
  margin-top: clamp(16px, 1.55vw, 28px);
}

.services-flow-steps article,
.package-match-list article {
  min-height: 0;
  padding: clamp(18px, 1.45vw, 26px);
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(14px, 1.1vw, 22px);
  background:
    linear-gradient(145deg, rgba(241, 234, 224, 0.05), rgba(241, 234, 224, 0.018)),
    rgba(8, 12, 9, 0.52);
}

.services-flow-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 2.25vw, 42px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(220, 123, 28, 0.96);
  color: #fff8f0;
  font-size: clamp(0.7rem, 0.76vw, 0.88rem);
  font-weight: 450;
  animation: services-step-pulse 4.8s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(220, 123, 28, 0);
}

.services-flow-steps article:nth-child(2) span {
  animation-delay: 0.85s;
}

.services-flow-steps article:nth-child(3) span {
  animation-delay: 1.7s;
}

@keyframes services-step-pulse {
  0%,
  18%,
  100% {
    background: rgba(220, 123, 28, 0.74);
    box-shadow: 0 0 0 rgba(220, 123, 28, 0);
    transform: scale(1);
  }

  7% {
    background: #ff8419;
    box-shadow:
      0 0 18px rgba(220, 123, 28, 0.62),
      0 0 42px rgba(220, 123, 28, 0.24);
    transform: scale(1.08);
  }
}

.services-flow-steps h3,
.package-match-list strong {
  display: block;
  margin: clamp(12px, 1vw, 18px) 0 0;
  color: #f1eae0;
  font-size: clamp(1rem, 1.08vw, 1.28rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.12;
}

.services-flow-steps p,
.package-match-list span {
  display: block;
  margin: clamp(9px, 0.75vw, 14px) 0 0;
  color: rgba(241, 234, 224, 0.62);
  font-size: clamp(0.78rem, 0.82vw, 0.94rem);
  font-weight: 300;
  line-height: 1.45;
}

.package-match-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.package-match-list article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: clamp(132px, 10.5vw, 190px);
  padding: clamp(16px, 1.25vw, 22px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(61, 97, 45, 0.24), rgba(8, 12, 9, 0.48)),
    rgba(8, 12, 9, 0.54);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.package-match-list strong {
  margin-top: 0;
  color: #dc7b1c;
  font-size: clamp(0.98rem, 1.02vw, 1.18rem);
}

.package-match-list b {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: clamp(12px, 1vw, 18px);
  color: #f1eae0;
  font-size: clamp(1.32rem, 1.85vw, 2.42rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.96;
  white-space: nowrap;
  transition:
    opacity 220ms ease,
    filter 220ms ease,
    transform 220ms ease;
}

.package-match-list span {
  position: absolute;
  z-index: 2;
  inset: clamp(14px, 1.2vw, 22px);
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(12px, 1vw, 18px);
  border: 1px solid rgba(241, 234, 224, 0.14);
  border-radius: clamp(12px, 0.9vw, 18px);
  background: rgba(241, 234, 224, 0.08);
  color: rgba(241, 234, 224, 0.86);
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  backdrop-filter: blur(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.package-match-list article:hover,
.package-match-list article:focus-within {
  border-color: rgba(220, 123, 28, 0.4);
  transform: translateY(-2px);
}

.package-match-list article:hover b,
.package-match-list article:focus-within b {
  opacity: 0.22;
  filter: blur(8px);
  transform: scale(1.04);
}

.package-match-list article:hover span,
.package-match-list article:focus-within span {
  opacity: 1;
  transform: translateY(0);
}

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

.service-proof-card {
  position: relative;
  display: flex;
  min-height: clamp(190px, 18vw, 295px);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(18px, 1.55vw, 28px);
  border: 1px solid rgba(241, 234, 224, 0.12);
  border-radius: clamp(16px, 1.2vw, 24px);
  color: #f1eae0;
  text-decoration: none;
  background: rgba(8, 12, 9, 0.62);
  isolation: isolate;
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.service-proof-card::before,
.service-proof-card::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -2;
}

.service-proof-card::before {
  background-position: center;
  background-size: cover;
  opacity: 0.46;
  filter: saturate(0.92) contrast(1.04);
  transition:
    opacity 220ms ease,
    transform 380ms ease;
}

.service-proof-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 10, 7, 0.08), rgba(7, 10, 7, 0.82)),
    linear-gradient(120deg, rgba(61, 97, 45, 0.42), rgba(7, 10, 7, 0.2));
}

.proof-social::before {
  background-image: url("New Components/bento box photos/Social Media.png");
}

.proof-print::before {
  background-image: url("New Components/bento box photos/A bunch of flyers.png");
}

.proof-web::before {
  background-image: url("New Components/bento box photos/Web Development.png");
}

.service-proof-card span {
  color: rgba(241, 234, 224, 0.66);
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 350;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.service-proof-card strong {
  max-width: 360px;
  margin-top: 10px;
  color: #f1eae0;
  font-size: clamp(1.08rem, 1.3vw, 1.55rem);
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1.08;
}

.service-proof-card:hover,
.service-proof-card:focus-visible {
  border-color: rgba(220, 123, 28, 0.56);
  outline: none;
  transform: translateY(-3px);
}

.service-proof-card:hover::before,
.service-proof-card:focus-visible::before {
  opacity: 0.62;
  transform: scale(1.035);
}

.services-asset-strip {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(14px, 1.35vw, 24px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.services-asset-track {
  display: flex;
  gap: clamp(12px, 1.2vw, 22px);
  width: max-content;
  animation: services-asset-scroll 38s linear infinite;
}

.services-asset-strip:hover .services-asset-track {
  animation-play-state: paused;
}

.services-asset-track img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: clamp(118px, 10.5vw, 190px);
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(14px, 1.15vw, 22px);
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

@keyframes services-asset-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(6px, 0.6vw, 11px)));
  }
}

.services-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(8px, 1vw, 18px);
  padding-top: clamp(16px, 1.5vw, 28px);
  border-top: 1px solid rgba(241, 234, 224, 0.18);
}

.services-cta p {
  margin: 0;
  color: rgba(241, 234, 224, 0.68);
  font-size: clamp(0.9rem, 1vw, 1.12rem);
  font-weight: 300;
}

.services-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: #f1eae0;
  color: #1b211b;
  font-size: clamp(0.8rem, 0.85vw, 0.98rem);
  font-weight: 400;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.services-cta a:hover,
.services-cta a:focus-visible {
  background: #dc7b1c;
  color: #fff8f0;
  outline: none;
  transform: translateY(-2px);
}

@media (min-width: 1100px) and (max-height: 860px) {
  .services-main {
    padding-top: 74px;
    padding-bottom: 120px;
  }

  .services-board {
    padding: 28px;
  }

  .services-intro h1 {
    font-size: clamp(2.25rem, 3.55vw, 4.7rem);
  }

  .service-row summary {
    min-height: 76px;
    padding: 12px;
  }

  .service-row strong {
    font-size: clamp(1rem, 1.25vw, 1.6rem);
  }

  .service-row em {
    font-size: 0.78rem;
  }

  .service-row li {
    min-height: 24px;
    font-size: 0.72rem;
  }

  .services-section-heading {
    margin-top: 28px;
  }

  .services-flow-steps,
  .package-match-list,
  .services-proof {
    gap: 12px;
  }

  .services-flow-steps article,
  .package-match-list article {
    padding: 16px;
  }

  .package-match-list article {
    min-height: 122px;
  }

  .package-match-list b {
    font-size: clamp(1.35rem, 2vw, 2.35rem);
  }

  .service-proof-card {
    min-height: 188px;
  }
}

@media (max-width: 920px) {
  .services-page {
    overflow-x: hidden;
  }

  .services-board {
    grid-template-columns: 1fr;
  }

  .services-service-index {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .service-row summary {
    min-height: 74px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .service-row ul {
    padding-left: clamp(12px, 1.15vw, 20px);
  }

  .services-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .services-section-heading,
  .services-flow-steps,
  .package-match-list,
  .services-proof {
    grid-template-columns: 1fr;
  }

  .services-section-heading h2 {
    max-width: none;
  }

  .package-match-list article {
    min-height: 118px;
  }
}

.case-study-page {
  --case-cream: #f1eae0;
  --case-orange: #f16a2d;
  --case-green: #24371d;
  --case-panel: rgba(241, 234, 224, 0.055);
  background:
    radial-gradient(circle at 18% 12%, rgba(241, 106, 45, 0.16), transparent 24%),
    radial-gradient(circle at 86% 30%, rgba(61, 97, 45, 0.18), transparent 30%),
    linear-gradient(135deg, #080a08 0%, #151a15 46%, #0b0e0b 100%);
}

.case-study-main {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: clamp(108px, 9vw, 170px) clamp(22px, 5.6vw, 108px)
    clamp(80px, 8vw, 150px);
  color: var(--case-cream);
  font-family: Inter, Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
}

.case-hero,
.case-split,
.case-final {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 86px);
}

.case-hero {
  min-height: calc(100vh - 160px);
}

.case-eyebrow {
  margin: 0 0 clamp(14px, 1.4vw, 24px);
  color: var(--case-orange);
  font-size: clamp(0.72rem, 0.78vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.case-client-logo {
  display: block;
  width: min(72%, 430px);
  height: auto;
  margin-bottom: clamp(28px, 3.2vw, 54px);
}

.case-hero h1,
.case-section h2,
.case-final h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 7.2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.case-hero h1 span {
  color: var(--case-orange);
}

.case-hero-copy > p:not(.case-eyebrow),
.case-copy p,
.case-final-copy p {
  max-width: 720px;
  margin: clamp(22px, 2vw, 34px) 0 0;
  color: rgba(241, 234, 224, 0.72);
  font-size: clamp(1.05rem, 1.25vw, 1.38rem);
  font-weight: 300;
  line-height: 1.7;
}

.case-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 50px);
}

.case-hero-actions a,
.case-final-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--case-orange);
  color: #101410;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.case-hero-actions a:nth-child(2) {
  background: var(--case-cream);
}

.case-hero-actions a:hover,
.case-hero-actions a:focus-visible,
.case-final-copy a:hover,
.case-final-copy a:focus-visible {
  background: #fff8f0;
  color: #101410;
  outline: none;
  transform: translateY(-2px);
}

.case-hero-media,
.case-showcase,
.case-browser-frame,
.case-dark-panel,
.case-final {
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: clamp(18px, 1.7vw, 32px);
  background: var(--case-panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.case-hero-media {
  aspect-ratio: 0.9;
}

.case-hero-media img,
.case-showcase img,
.case-browser-frame > img,
.case-image-grid img,
.case-deliverable-grid img,
.case-final-stack img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-hero-media img {
  object-position: 50% 22%;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
  margin: clamp(42px, 6vw, 100px) 0;
}

.case-stats article {
  min-height: 150px;
  padding: clamp(18px, 2vw, 32px);
  border: 1px solid rgba(241, 234, 224, 0.08);
  border-radius: 18px;
  background: rgba(241, 234, 224, 0.045);
}

.case-stats span {
  display: block;
  color: var(--case-orange);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 850;
  line-height: 0.9;
  text-transform: uppercase;
}

.case-stats p {
  margin: 18px 0 0;
  color: rgba(241, 234, 224, 0.68);
  font-size: clamp(0.9rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.45;
}

.case-section {
  margin: clamp(70px, 9vw, 150px) 0;
}

.case-section h2,
.case-final h2 {
  font-size: clamp(2.4rem, 4.7vw, 6rem);
}

.case-copy p:first-child {
  margin-top: 0;
}

.case-showcase {
  aspect-ratio: 1432 / 690;
  margin: clamp(36px, 5vw, 86px) 0;
}

.case-dark-panel {
  padding: clamp(30px, 5vw, 84px);
}

.case-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(30px, 3.8vw, 62px);
}

.case-card-grid article {
  padding: clamp(22px, 2.4vw, 40px);
  border-radius: 16px;
  background: rgba(8, 10, 8, 0.56);
}

.case-card-grid h3 {
  margin: 0;
  color: var(--case-orange);
  font-size: clamp(1rem, 1.2vw, 1.42rem);
  font-weight: 700;
  text-transform: uppercase;
}

.case-card-grid p {
  margin: 18px 0 0;
  color: rgba(241, 234, 224, 0.68);
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.55;
}

.case-image-grid,
.case-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
  margin: clamp(44px, 6vw, 100px) 0;
}

.case-image-grid figure,
.case-deliverable-grid figure {
  margin: 0;
}

.case-image-grid img,
.case-deliverable-grid img {
  aspect-ratio: 1432 / 690;
  border: 1px solid rgba(241, 234, 224, 0.1);
  border-radius: 16px;
  background: rgba(241, 234, 224, 0.04);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.case-lightbox-image {
  cursor: zoom-in;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.case-lightbox-image:hover {
  filter: brightness(1.08);
}

.case-image-grid figcaption,
.case-deliverable-grid figcaption {
  margin-top: 12px;
  color: rgba(241, 234, 224, 0.58);
  font-size: clamp(0.8rem, 0.88vw, 1rem);
  font-weight: 300;
  text-transform: uppercase;
}

.case-browser-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: clamp(36px, 5vw, 90px) 0;
  background: #101010;
}

.case-browser-bar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 42px;
  padding: 0 20px;
  background: rgba(8, 10, 8, 0.86);
}

.case-browser-bar span {
  display: block;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(241, 234, 224, 0.42);
}

.case-browser-frame > img {
  opacity: 0.74;
}

.case-browser-overlay {
  position: absolute;
  inset: auto auto clamp(28px, 4vw, 68px) clamp(28px, 4vw, 68px);
  width: min(54%, 760px);
}

.case-browser-overlay img {
  display: block;
  width: min(74%, 440px);
  height: auto;
}

.case-browser-overlay p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(241, 234, 224, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.5rem);
  font-weight: 300;
  line-height: 1.55;
}

.case-deliverables h2 {
  max-width: 940px;
}

.case-final {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  margin-top: clamp(80px, 10vw, 160px);
  padding: clamp(30px, 5vw, 84px);
}

.case-final-copy p {
  max-width: 640px;
}

.case-final-copy a {
  margin-top: clamp(28px, 3vw, 50px);
}

.case-final-stack {
  position: relative;
  min-height: clamp(360px, 44vw, 680px);
}

.case-final-stack img {
  position: absolute;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.case-final-stack img:first-child {
  right: -4%;
  top: 5%;
  width: 92%;
}

.case-final-stack img:last-child {
  left: 0;
  bottom: 4%;
  width: 46%;
}

.case-study-footer {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 54px);
  background: rgba(3, 5, 4, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.case-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.has-case-lightbox {
  overflow: hidden;
}

.case-lightbox img {
  display: block;
  max-width: min(94vw, 1800px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border: 1px solid rgba(241, 234, 224, 0.16);
  border-radius: clamp(12px, 1vw, 22px);
  background: rgba(241, 234, 224, 0.06);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.52);
  object-fit: contain;
  transform: scale(0.985);
  transition: transform 220ms ease;
}

.case-lightbox.is-open img {
  transform: scale(1);
}

.case-lightbox-close {
  position: absolute;
  top: clamp(18px, 2.2vw, 36px);
  right: clamp(18px, 2.2vw, 36px);
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(241, 234, 224, 0.18);
  border-radius: 999px;
  background: rgba(241, 234, 224, 0.08);
  cursor: pointer;
}

.case-lightbox-close::before,
.case-lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f1eae0;
}

.case-lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.case-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.case-lightbox-close:hover,
.case-lightbox-close:focus-visible {
  background: var(--case-orange);
  outline: none;
}

@media (max-width: 920px) {
  .about-main {
    width: min(88vw, 1280px);
  }

  .about-proof,
  .about-origin,
  .about-field,
  .about-region {
    grid-template-columns: 1fr;
  }

  .about-field {
    grid-template-areas:
      "photo"
      "heading"
      "copy";
  }

  .about-field-copy {
    grid-template-columns: 1fr;
  }

  .about-simple-grid {
    grid-template-columns: 1fr;
  }

  .about-proof h2,
  .about-origin h2,
  .about-field-heading h2,
  .about-region h2 {
    max-width: 14ch;
  }

  .about-hero-flip {
    width: 62%;
    opacity: 0.34;
  }

  .case-hero,
  .case-split,
  .case-final {
    grid-template-columns: 1fr;
  }

  .case-hero {
    min-height: auto;
  }

  .case-stats,
  .case-card-grid,
  .case-image-grid,
  .case-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .case-browser-overlay {
    width: calc(100% - 48px);
  }

  .case-final-stack {
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .case-study-main {
    padding-right: 22px;
    padding-left: 22px;
  }

  .case-hero h1 {
    font-size: clamp(3.35rem, 13vw, 4.6rem);
    line-height: 0.92;
  }

  .case-section h2,
  .case-final h2 {
    font-size: clamp(2.55rem, 11vw, 3.8rem);
  }

  .case-hero-actions a,
  .case-final-copy a {
    min-width: 0;
    flex: 1;
  }
}
