:root {
  --paper: #f5f7f8;
  --paper-2: #e8edf1;
  --ink: #101d2e;
  --ink-2: #223248;
  --muted: #35455d;
  --line: rgba(16, 29, 46, 0.14);
  --line-strong: rgba(16, 29, 46, 0.28);
  --navy: #101d2e;
  --steel: #8fa2a8;
  --sage: #c8d3c6;
  --clay: #c86f4a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 29, 46, 0.16);
  --max: 1220px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: rgba(16, 29, 46, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--clay), var(--steel), var(--navy));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 247, 248, 0.88);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.notice-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled .notice-strip {
  border-bottom-color: var(--line);
}

.notice-strip span {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 800;
}

.notice-strip span:first-child {
  border-left: 0;
}

.site-header.is-scrolled .notice-strip span {
  border-left-color: var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 44px), var(--max));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 185ms ease, filter 220ms ease;
  filter: brightness(0) invert(1);
}

.brand:hover .brand__logo {
  transform: scale(1.04);
}

.site-header.is-scrolled .brand__logo {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 800;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 27px,
    rgba(255, 255, 255, 0.32) 28px,
    transparent 29px 56px
  );
  background-size: 80px 80px;
  animation: diagonal-scan 18s linear infinite;
}

.hero__media,
.hero__media::after,
.hero__image {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
}

.hero__media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 29, 46, 0.82), rgba(16, 29, 46, 0.34) 48%, rgba(16, 29, 46, 0.76)),
    linear-gradient(180deg, rgba(16, 29, 46, 0.3), rgba(16, 29, 46, 0.76));
}

.hero__image {
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.hero__image.is-active {
  opacity: 1;
  transform: scale(1);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 210px 0 190px;
}

.diagonal-field {
  position: absolute;
  pointer-events: none;
}

.diagonal-field--hero {
  top: 126px;
  right: max(22px, calc((100vw - var(--max)) / 2));
  z-index: 2;
  width: min(34vw, 420px);
  height: 330px;
  opacity: 0.82;
}

.diagonal-field span {
  position: absolute;
  width: 2px;
  height: 160%;
  transform: rotate(-34deg);
  transform-origin: top center;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.72),
    transparent
  );
  animation: diagonal-drop 5.6s ease-in-out infinite;
}

.diagonal-field span:nth-child(1) {
  top: -52px;
  left: 18%;
}

.diagonal-field span:nth-child(2) {
  top: -86px;
  left: 38%;
  animation-delay: 0.7s;
}

.diagonal-field span:nth-child(3) {
  top: -40px;
  left: 60%;
  animation-delay: 1.4s;
}

.diagonal-field span:nth-child(4) {
  top: -76px;
  left: 82%;
  animation-delay: 2.1s;
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__kicker span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 0.92;
}

.hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-index {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 118px;
  z-index: 3;
  width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(245, 247, 248, 0.12);
  backdrop-filter: blur(18px);
}

.hero-index__count {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "Instrument Serif", serif;
  font-size: 2.7rem;
  line-height: 1;
}

.hero-index__count small {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  opacity: 0.72;
}

.hero-index__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.hero-index__item:first-of-type {
  border-top: 0;
}

.hero-index__item span {
  opacity: 0.66;
  font-weight: 800;
}

.hero-index__item strong {
  font-size: 0.95rem;
}

.hero-index__item.is-active,
.hero-index__item:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 29, 46, 0.45);
  backdrop-filter: blur(12px);
}

.hero-marquee__track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 18px 0;
  font-family: "Instrument Serif", serif;
  font-size: 4.2rem;
  line-height: 0.85;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}

.hero-marquee__track span {
  opacity: 0.88;
}

.section {
  position: relative;
  padding: 112px max(22px, calc((100vw - var(--max)) / 2));
}

.section-label {
  margin-bottom: 26px;
  color: var(--clay);
  font-weight: 800;
}

.intro-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.studio-glow-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 800ms ease;
}

.intro-panel:hover .studio-glow-field {
  opacity: 1;
}

.intro-panel:has(.studio-feature-card:hover) .studio-glow-field {
  opacity: 0;
}

.studio-glow-bubble {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 29, 46, 0.06) 0%, transparent 70%);
  filter: blur(64px);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  transition: 
    left 800ms cubic-bezier(0.16, 1, 0.3, 1),
    top 800ms cubic-bezier(0.16, 1, 0.3, 1),
    background 800ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 800ms ease;
  will-change: left, top, background;
}

.intro-panel__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
}

.intro-panel__lead {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 4.5rem;
  line-height: 0.95;
}

/* Studio Feature Grid Component */
.studio-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.studio-feature-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: 
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 450ms ease,
    box-shadow 450ms ease;
  z-index: 1;
}

.studio-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--ink-2);
  box-shadow: 0 24px 60px rgba(16, 29, 46, 0.06);
}

.studio-feature-card__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(16, 29, 46, 0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: -1;
  left: 0px;
  top: 0px;
}

.studio-feature-card:hover .studio-feature-card__glow {
  opacity: 1;
}

/* Color specific glows */
.studio-feature-card[data-studio-card="vision"] .studio-feature-card__glow {
  background: radial-gradient(circle, rgba(200, 111, 74, 0.14) 0%, transparent 70%);
}

.studio-feature-card[data-studio-card="discipline"] .studio-feature-card__glow {
  background: radial-gradient(circle, rgba(16, 29, 46, 0.09) 0%, transparent 70%);
}

.studio-feature-card[data-studio-card="safety"] .studio-feature-card__glow {
  background: radial-gradient(circle, rgba(63, 110, 82, 0.14) 0%, transparent 70%);
}

.studio-feature-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.studio-feature-card__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tag-dot--clay {
  background: var(--clay);
}

.tag-dot--navy {
  background: var(--navy);
}

.tag-dot--sage {
  background: #3f6e52;
}

.studio-feature-card__title {
  margin: 0 0 16px 0;
  font-family: "Instrument Serif", serif;
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-feature-card:hover .studio-feature-card__title {
  transform: translateX(4px);
}

.studio-feature-card__desc {
  margin: 0 0 32px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  flex-grow: 1;
}

.studio-feature-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: 
    background-color 300ms ease,
    border-color 300ms ease,
    color 300ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-feature-card:hover .studio-feature-card__arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateX(6px) rotate(-45deg);
}

@media (max-width: 960px) {
  .studio-features {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  
  .studio-feature-card {
    padding: 32px;
  }
}

.intro-panel__copy p,
.service-tabs__header p,
.project-directory__intro p,
.process-track p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.metric-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric-rail div {
  min-height: 128px;
  padding: 20px;
  background: var(--white);
}

.metric-rail strong {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: 3.3rem;
  line-height: 0.9;
}

.metric-rail span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.diagonal-component {
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.diagonal-component__head {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.diagonal-component__head h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 0.92;
}

.diagonal-component__head p {
  margin: 0;
  color: var(--muted);
}

.diagonal-component__board {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 29, 46, 0.92), rgba(34, 50, 72, 0.88)),
    var(--navy);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.diagonal-component__board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 29, 46, 0.92), transparent 42%, rgba(16, 29, 46, 0.78)),
    linear-gradient(180deg, transparent, rgba(16, 29, 46, 0.72));
  pointer-events: none;
}

.diagonal-component__board::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: 2;
  transform: rotate(-28deg);
  background: linear-gradient(
    90deg,
    transparent 0 42%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(200, 211, 198, 0.35) 50%,
    transparent 58% 100%
  );
  animation: diagonal-board-sweep 6.4s ease-in-out infinite;
  pointer-events: none;
}

.diagonal-component__rails {
  position: absolute;
  inset: -18% -10%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  transform: rotate(28deg);
  z-index: 0;
}

.diagonal-component__lane {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.diagonal-component__lane span {
  position: absolute;
  top: -42%;
  left: 50%;
  width: 24px;
  height: 280px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--sage), var(--white), transparent);
  box-shadow: 0 0 32px rgba(200, 211, 198, 0.38);
  animation: stripe-rain 5.8s linear infinite;
}

.diagonal-component__lane span:nth-child(2) {
  top: -92%;
  width: 12px;
  animation-delay: 1.45s;
  animation-duration: 6.7s;
  opacity: 0.72;
}

.diagonal-component__lane span:nth-child(3) {
  top: -68%;
  width: 36px;
  animation-delay: 2.55s;
  animation-duration: 7.4s;
  opacity: 0.5;
}

.diagonal-component__lane:nth-child(2) span {
  animation-delay: 0.65s;
}

.diagonal-component__lane:nth-child(3) span {
  animation-delay: 1.1s;
}

.diagonal-component__lane:nth-child(4) span {
  animation-delay: 0.25s;
}

.diagonal-component__lane:nth-child(5) span {
  animation-delay: 1.65s;
}

.diagonal-component__title {
  position: absolute;
  top: 44px;
  left: 44px;
  z-index: 3;
  max-width: 560px;
  color: var(--white);
}

.diagonal-component__title span {
  display: block;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 0.96rem;
  font-weight: 800;
}

.diagonal-component__title strong {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: 5.8rem;
  font-weight: 400;
  line-height: 0.9;
}

.diagonal-component__cards {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  display: grid;
  width: min(420px, calc(100% - 68px));
  gap: 10px;
}

.diagonal-component__cards article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(245, 247, 248, 0.05);
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.diagonal-component__cards article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.diagonal-component__cards article.is-active {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(16, 29, 46, 0.28);
}

.diagonal-component__cards span {
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.diagonal-component__cards article:hover span,
.diagonal-component__cards article.is-active span {
  color: var(--white);
}

.diagonal-component__cards strong {
  font-size: 1.15rem;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Diagonal Component Visual Overlays --- */
.diagonal-component__visuals {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.diagonal-visual-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 1.2s cubic-bezier(0.25, 1, 0.5, 1),
              visibility 0.8s;
  transform: scale(0.95) rotate(-2deg);
}

.diagonal-visual-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1.03) rotate(0.5deg);
}

.diagonal-visual-overlay svg {
  position: absolute;
  top: 50%;
  left: 32%;
  width: 50%;
  height: 65%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
}

.diagonal-visual-glow {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.38;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: transform 1.2s ease, opacity 1.2s ease;
}

.diagonal-visual-glow--clay {
  background: radial-gradient(circle, rgba(200, 111, 74, 0.48) 0%, rgba(200, 111, 74, 0) 70%);
  left: 10%;
  top: 10%;
}

.diagonal-visual-glow--sage {
  background: radial-gradient(circle, rgba(200, 211, 198, 0.48) 0%, rgba(200, 211, 198, 0) 70%);
  left: 20%;
  top: 25%;
}

.diagonal-visual-glow--navy {
  background: radial-gradient(circle, rgba(143, 162, 168, 0.48) 0%, rgba(143, 162, 168, 0) 70%);
  left: 8%;
  top: 30%;
}


.diagonal-signature {
  overflow: hidden;
  background: var(--white);
}

.scroll-marquee {
  --scroll-shift: 0px;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.scroll-marquee__row {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 10px 0;
  font-family: "Instrument Serif", serif;
  font-size: 6.2rem;
  line-height: 0.85;
  white-space: nowrap;
  transform: translate3d(var(--scroll-shift), 0, 0);
  transition: transform 80ms linear;
  will-change: transform;
}

.scroll-marquee__row span {
  display: block;
}

.scroll-marquee__row--primary {
  color: var(--navy);
}

.scroll-marquee__row--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 29, 46, 0.54);
}

.diagonal-signature__layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 34px;
  align-items: stretch;
}

.diagonal-signature__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.diagonal-signature__copy h2 {
  max-width: 520px;
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.96;
}

.diagonal-signature__copy p {
  max-width: 490px;
  margin: 28px 0 0;
  color: var(--muted);
}

.diagonal-signature__stage {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.diagonal-signature__stage::before,
.diagonal-signature__stage::after,
.diagonal-signature__panel::before,
.diagonal-signature__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 24px,
    rgba(255, 255, 255, 0.18) 25px,
    transparent 26px 52px
  );
  background-size: 74px 74px;
  animation: diagonal-scan 15s linear infinite;
}

.diagonal-signature__stage::after {
  opacity: 0.55;
  transform: translateX(-28%);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 44px,
    rgba(200, 211, 198, 0.45) 45px,
    transparent 46px 88px
  );
  animation-duration: 22s;
  animation-direction: reverse;
}

.diagonal-signature__panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.diagonal-signature__panel::before,
.diagonal-signature__panel::after {
  opacity: 0.92;
}

.diagonal-signature__panel::after {
  transform: translateY(-32%);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 18px,
    rgba(200, 211, 198, 0.5) 19px,
    transparent 20px 38px
  );
  animation: diagonal-fall 7.5s ease-in-out infinite;
}

.diagonal-signature__panel--large {
  top: 46px;
  left: 52px;
  width: 54%;
  height: 58%;
}

.diagonal-signature__panel--small {
  right: 44px;
  bottom: 78px;
  width: 34%;
  height: 38%;
  background: rgba(200, 211, 198, 0.16);
}

.diagonal-signature__marker {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 2;
  min-width: 180px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(245, 247, 248, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.diagonal-signature__marker span {
  display: block;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 800;
}

.diagonal-signature__marker strong {
  display: block;
  margin-top: 8px;
  font-family: "Instrument Serif", serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.diagonal-signature__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(245, 247, 248, 0.1);
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.diagonal-signature__ticker span {
  position: relative;
  padding-left: 28px;
}

.diagonal-signature__ticker span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  transform: translateY(-50%) rotate(-34deg);
  background: var(--sage);
}

.service-tabs {
  background: var(--paper-2);
}

.service-tabs__header {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 36px;
}

.service-tabs__header h2,
.project-directory__intro h2,
.process__quote p,
.contact-lab__poster h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 4.25rem;
  font-weight: 400;
  line-height: 0.96;
}

.service-tabs__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
}

.service-tabs__nav {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-tab {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  min-height: 96px;
  padding: 22px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.service-tab:first-child {
  border-top: 0;
}

.service-tab span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.service-tab strong {
  align-self: center;
  font-size: 1.3rem;
}

.service-tab.is-active,
.service-tab:hover {
  background: var(--navy);
  color: var(--white);
}

.service-tab.is-active span,
.service-tab:hover span {
  color: var(--sage);
}

.service-tabs__stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.service-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.service-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 29, 46, 0.08), rgba(16, 29, 46, 0.78));
}

.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.service-panel.is-active img {
  animation: image-drift 14s ease-in-out infinite alternate;
}

.service-panel div {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 34px;
  color: var(--white);
}

.service-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--sage);
  font-weight: 800;
}

.service-panel h3 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 0.98;
}

.service-panel p {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.diagonal-reveal {
  background: var(--white);
}

.diagonal-reveal__head,
.horizontal-gallery__head {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.diagonal-reveal__head h2,
.compare-section__copy h2,
.horizontal-gallery__head h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 0.94;
}

.diagonal-reveal__head p,
.compare-section__copy p,
.horizontal-gallery__head p {
  margin: 0;
  color: var(--muted);
}

.diagonal-reveal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.diagonal-reveal-card {
  --reveal: 34%;
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.diagonal-reveal-card > img,
.diagonal-reveal-card__mask img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.diagonal-reveal-card > img {
  filter: grayscale(0.72) contrast(0.95);
}

.diagonal-reveal-card__mask {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, var(--reveal) 0, calc(var(--reveal) - 20%) 100%, 0 100%);
  transition: clip-path 120ms linear;
  will-change: clip-path;
}

.diagonal-reveal-card__mask::after {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: calc(var(--reveal) - 12%);
  width: 3px;
  transform: rotate(12deg);
  background: var(--sage);
  box-shadow: 0 0 24px rgba(200, 211, 198, 0.7);
}

.diagonal-reveal-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(16, 29, 46, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.compare-section {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 34px;
  align-items: stretch;
  background: var(--paper-2);
}

.compare-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.before-after {
  --compare: 52%;
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.before-after__image,
.before-after__after img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.before-after__after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare)) 0 0);
  transition: clip-path 80ms linear;
}

.before-after__after img {
  width: 100%;
  max-width: none;
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare);
  width: 2px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.before-after__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 42%, var(--white) 42% 58%, transparent 58%),
    rgba(16, 29, 46, 0.56);
  backdrop-filter: blur(12px);
}

.before-after__label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(16, 29, 46, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.before-after__label--before {
  right: 18px;
}

.before-after__label--after {
  left: 18px;
}

.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.horizontal-gallery {
  position: relative;
  --gallery-progress: 0;
  min-height: 220vh;
  background: var(--navy);
  color: var(--white);
}

.horizontal-gallery__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  padding: 118px max(22px, calc((100vw - var(--max)) / 2)) 54px;
  isolation: isolate;
}

.horizontal-gallery__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 42px,
    rgba(255, 255, 255, 0.08) 43px,
    transparent 44px 86px
  );
  background-size: 110px 110px;
  transform: translate3d(calc(var(--gallery-progress) * -120px), 0, 0);
}

.horizontal-gallery__speed {
  position: absolute;
  top: 34px;
  right: max(22px, calc((100vw - var(--max)) / 2));
  z-index: 4;
  display: grid;
  min-width: 148px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(245, 247, 248, 0.08);
  backdrop-filter: blur(12px);
}

.horizontal-gallery__speed span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
}

.horizontal-gallery__speed strong {
  margin-top: 4px;
  font-family: "Instrument Serif", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 0.9;
}

.horizontal-gallery__head {
  position: relative;
  z-index: 2;
  margin-bottom: 46px;
}

.horizontal-gallery__head .section-label {
  color: var(--sage);
}

.horizontal-gallery__head p {
  color: rgba(255, 255, 255, 0.68);
}

.horizontal-gallery__progress {
  position: relative;
  z-index: 2;
  height: 2px;
  margin: -18px 0 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.horizontal-gallery__progress span {
  display: block;
  width: calc(var(--gallery-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--white));
  box-shadow: 0 0 20px rgba(200, 211, 198, 0.6);
}

.horizontal-gallery__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.horizontal-gallery__lines span {
  position: absolute;
  width: 32vw;
  height: 2px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(200, 211, 198, 0.5), transparent);
  animation: gallery-streak 3.6s linear infinite;
}

.horizontal-gallery__lines span:nth-child(1) {
  top: 34%;
  left: -20%;
}

.horizontal-gallery__lines span:nth-child(2) {
  top: 48%;
  left: -28%;
  animation-delay: 0.8s;
}

.horizontal-gallery__lines span:nth-child(3) {
  top: 64%;
  left: -18%;
  animation-delay: 1.6s;
}

.horizontal-gallery__lines span:nth-child(4) {
  top: 78%;
  left: -34%;
  animation-delay: 2.4s;
}

.horizontal-gallery__track {
  --gallery-shift: 0px;
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  gap: 18px;
  transform: translate3d(var(--gallery-shift), 0, 0);
  transition: transform 80ms linear;
  will-change: transform;
}

.horizontal-card {
  --card-depth: 0;
  position: relative;
  width: min(72vw, 620px);
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-2);
  transform:
    translateY(calc((1 - var(--card-depth)) * 34px))
    scale(calc(0.9 + var(--card-depth) * 0.1))
    rotate(calc((1 - var(--card-depth)) * -2deg));
  opacity: calc(0.48 + var(--card-depth) * 0.52);
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
  will-change: transform, opacity;
}

.horizontal-card.is-active {
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.horizontal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background:
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.28) 45%, transparent 68%),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(255, 255, 255, 0.14) 25px, transparent 26px 52px);
  transform: translateX(-60%);
  pointer-events: none;
  transition: opacity 220ms ease;
}

.horizontal-card.is-active::before {
  opacity: 0.78;
  animation: card-shine 2.8s ease-in-out infinite;
}

.horizontal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 29, 46, 0.05), rgba(16, 29, 46, 0.72));
}

.horizontal-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transform: scale(calc(1.08 - var(--card-depth) * 0.04));
  transition: transform 420ms ease, filter 420ms ease;
}

.horizontal-card.is-active img {
  filter: saturate(1.08) contrast(1.04);
}

.horizontal-card span,
.horizontal-card h3 {
  position: absolute;
  z-index: 1;
  left: 24px;
  color: var(--white);
}

.horizontal-card span {
  top: 24px;
  color: var(--sage);
  font-weight: 800;
}

.horizontal-card h3 {
  right: 24px;
  bottom: 22px;
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}

.horizontal-card__burst {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.horizontal-card__burst i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--sage), var(--white), transparent);
  transform: translate(-50%, -50%) rotate(var(--burst-rotate, 0deg)) scaleX(0);
}

.horizontal-card__burst i:nth-child(1) {
  --burst-rotate: -36deg;
}

.horizontal-card__burst i:nth-child(2) {
  --burst-rotate: -12deg;
}

.horizontal-card__burst i:nth-child(3) {
  --burst-rotate: 18deg;
}

.horizontal-card__burst i:nth-child(4) {
  --burst-rotate: 44deg;
}

.horizontal-card__burst i:nth-child(5) {
  --burst-rotate: 72deg;
}

.horizontal-card.is-bursting .horizontal-card__burst i {
  animation: card-burst 620ms ease-out forwards;
}

.horizontal-card.is-bursting .horizontal-card__burst i:nth-child(2) {
  animation-delay: 35ms;
}

.horizontal-card.is-bursting .horizontal-card__burst i:nth-child(3) {
  animation-delay: 70ms;
}

.horizontal-card.is-bursting .horizontal-card__burst i:nth-child(4) {
  animation-delay: 105ms;
}

.horizontal-card.is-bursting .horizontal-card__burst i:nth-child(5) {
  animation-delay: 140ms;
}

.project-directory {
  background: var(--paper);
}

.project-directory__layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.project-directory__intro {
  position: sticky;
  top: 138px;
}

.project-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.project-link {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.project-link span {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.project-link strong,
.project-link small {
  grid-column: 2;
}

.project-link strong {
  font-family: "Instrument Serif", serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.project-link small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.project-link.is-active span,
.project-link:hover span {
  color: var(--clay);
}

.project-link.is-active strong,
.project-link:hover strong {
  transform: translateX(10px);
}

.project-stage {
  position: sticky;
  top: 138px;
  min-height: 620px;
  border-radius: var(--radius);
}

.project-stage__counter {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  font-family: "Instrument Serif", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.project-stage__counter small {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
}

.project-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--navy);
  opacity: 0;
  transform: translate3d(28px, 28px, 0) rotate(2deg) scale(0.96);
  transition: opacity 420ms ease, transform 520ms ease;
  box-shadow: var(--shadow);
}

.project-frame:nth-of-type(2) {
  transform: translate3d(18px, -18px, 0) rotate(-2deg) scale(0.96);
}

.project-frame:nth-of-type(3) {
  transform: translate3d(-18px, 22px, 0) rotate(1deg) scale(0.96);
}

.project-frame.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.project-frame img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.project-frame.is-active img {
  animation: image-drift 16s ease-in-out infinite alternate;
}

.project-frame figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(16, 29, 46, 0.76);
  color: var(--white);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.image-ribbon {
  overflow: hidden;
  padding: 22px 0;
  background: var(--navy);
}

.image-ribbon__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: ribbon-scroll 34s linear infinite;
}

.image-ribbon img {
  width: 340px;
  height: 220px;
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.92);
}

.process {
  background: var(--white);
}

.process__quote {
  max-width: 980px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-track article {
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
  transition: background-color 220ms ease, transform 220ms ease;
}

.process-track article:hover {
  background: var(--sage);
  transform: translateY(-4px);
}

.process-track span {
  color: var(--clay);
  font-weight: 800;
}

.process-track h3 {
  margin: 52px 0 12px;
  font-family: "Instrument Serif", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.contact-lab {
  background: var(--paper-2);
}

.contact-lab__layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 22px;
}

.contact-lab__poster {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.contact-lab__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 29, 46, 0.08), rgba(16, 29, 46, 0.74));
}

.contact-lab__poster img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.contact-lab__poster h2 {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  z-index: 1;
  font-size: 5.2rem;
}

.project-starter,
.contact-links {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.project-starter {
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.project-starter__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.project-starter__top span {
  font-family: "Instrument Serif", serif;
  font-size: 3rem;
  line-height: 1;
}

.project-starter__top strong {
  font-size: 1.1rem;
}

.project-starter__body {
  flex: 1;
  padding: 34px 24px;
}

.project-starter__body p {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 3rem;
  line-height: 1;
}

.budget-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.budget-chip {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.budget-chip.is-active {
  background: var(--navy);
  color: var(--white);
}

.project-starter__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.circle-action {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.circle-action--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.contact-links {
  grid-column: 2;
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: -200px;
  background: var(--line);
}

.contact-links a,
.contact-links span {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 22px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.js .reveal-in {
  opacity: 0;
  transform: translateY(20px);
}

.js .reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes diagonal-scan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 160px 160px;
  }
}

@keyframes diagonal-drop {
  0%,
  100% {
    opacity: 0.18;
    transform: translate3d(0, -18px, 0) rotate(-34deg);
  }
  45% {
    opacity: 0.92;
  }
  50% {
    transform: translate3d(48px, 74px, 0) rotate(-34deg);
  }
}

@keyframes diagonal-fall {
  0%,
  100% {
    transform: translate3d(-18%, -40%, 0);
  }
  50% {
    transform: translate3d(18%, 28%, 0);
  }
}

@keyframes stripe-rain {
  from {
    transform: translate3d(-50%, -30%, 0);
  }
  to {
    transform: translate3d(-50%, 260%, 0);
  }
}

@keyframes diagonal-board-sweep {
  0%,
  100% {
    transform: translateX(-38%) rotate(-28deg);
    opacity: 0;
  }
  25% {
    opacity: 0.82;
  }
  55% {
    transform: translateX(34%) rotate(-28deg);
    opacity: 0.58;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes image-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-14px, -10px, 0);
  }
}

@keyframes ribbon-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes gallery-streak {
  from {
    transform: translate3d(-10vw, 0, 0) rotate(-18deg);
    opacity: 0;
  }
  25% {
    opacity: 0.8;
  }
  to {
    transform: translate3d(140vw, -26vh, 0) rotate(-18deg);
    opacity: 0;
  }
}

@keyframes card-shine {
  0%,
  100% {
    transform: translateX(-62%);
  }
  50% {
    transform: translateX(58%);
  }
}

@keyframes card-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--burst-rotate, 0deg)) scaleX(0);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + 130px), calc(-50% - 34px))
      rotate(var(--burst-rotate, 0deg))
      scaleX(1.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 5.4rem;
  }

  .hero-index {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 44px), var(--max));
    margin: -150px auto 112px;
  }

  .intro-panel__grid,
  .diagonal-component__head,
  .diagonal-signature__layout,
  .diagonal-reveal__head,
  .compare-section,
  .horizontal-gallery__head,
  .service-tabs__header,
  .service-tabs__layout,
  .project-directory__layout,
  .contact-lab__layout {
    grid-template-columns: 1fr;
  }

  .project-directory__intro,
  .project-stage {
    position: relative;
    top: auto;
  }

  .project-stage {
    min-height: 560px;
  }

  .diagonal-component__head {
    gap: 22px;
  }

  .diagonal-signature__copy {
    min-height: auto;
  }

  .diagonal-reveal__grid {
    grid-template-columns: 1fr;
  }

  .compare-section__copy {
    min-height: auto;
  }

  .contact-links {
    grid-column: auto;
    margin-top: 0;
  }

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

@media (max-width: 760px) {
  .hide-on-mobile {
    display: none !important;
  }

  .process-track {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    margin-top: 34px !important;
  }

  .process-track article {
    min-height: auto !important;
    padding: 18px 22px !important;
    background: var(--white) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    transition: transform 180ms ease !important;
  }
  
  .process-track article:hover {
    transform: translateY(-2px) !important;
    background: var(--white) !important;
  }

  .process-track span {
    font-family: "Instrument Serif", serif !important;
    font-size: 1.8rem !important;
    line-height: 1 !important;
    margin: 0 !important;
  }

  .process-track h3 {
    margin: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    font-family: "Manrope", sans-serif !important;
  }

  .brand__logo {
    height: 38px;
  }

  .about-title {
    font-size: 2.8rem;
  }
  
  .about-value-card {
    padding: 24px;
  }
  
  .about-grid {
    gap: 32px;
  }

  .studio-feature-card {
    padding: 24px;
  }
  
  .studio-feature-card__title {
    font-size: 1.8rem;
  }

  .wizard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }
  
  .wizard-chip {
    width: 100%;
    text-align: center;
  }

  .project-stage {
    min-height: 320px;
  }

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

  .notice-strip span:nth-child(n + 3) {
    display: none;
  }

  .nav-action {
    display: none;
  }

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

  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  body.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 92svh;
  }

  .hero__content {
    padding: 160px 0 190px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .hero-marquee__track {
    font-size: 2.8rem;
  }

  .scroll-marquee {
    padding: 20px 0;
  }

  .scroll-marquee__row {
    gap: 22px;
    font-size: 3.45rem;
  }

  .diagonal-field--hero {
    top: 160px;
    right: -40px;
    width: 260px;
    height: 260px;
    opacity: 0.56;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .intro-panel__lead,
  .diagonal-component__head h2,
  .diagonal-signature__copy h2,
  .diagonal-reveal__head h2,
  .compare-section__copy h2,
  .horizontal-gallery__head h2,
  .service-tabs__header h2,
  .project-directory__intro h2,
  .process__quote p,
  .contact-lab__poster h2 {
    font-size: 3.25rem;
  }

  .diagonal-component__board {
    min-height: 620px;
  }

  .diagonal-component__rails {
    inset: -22% -48%;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .diagonal-component__lane:nth-child(5) {
    display: none;
  }

  .diagonal-component__title {
    top: 28px;
    left: 24px;
    right: 24px;
  }

  .diagonal-component__title strong {
    font-size: 4.05rem;
  }

  .diagonal-component__cards {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .diagonal-component__cards article {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 78px;
  }

  .diagonal-visual-overlay svg {
    left: 50%;
    top: 32%;
    width: 65%;
    height: 42%;
    opacity: 0.55;
  }

  .diagonal-visual-glow {
    width: 380px;
    height: 380px;
    filter: blur(100px);
  }


  .diagonal-reveal-card,
  .diagonal-reveal-card > img,
  .diagonal-reveal-card__mask img {
    min-height: 390px;
  }

  .before-after,
  .before-after__image,
  .before-after__after img {
    min-height: 430px;
  }

  .before-after__handle::after {
    width: 58px;
    height: 58px;
  }

  .horizontal-gallery {
    min-height: auto;
  }

  .horizontal-gallery__sticky {
    position: relative;
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .horizontal-gallery__speed,
  .horizontal-gallery__lines {
    display: none;
  }

  .horizontal-gallery__track {
    overflow-x: auto;
    width: auto;
    padding-bottom: 10px;
    transform: none !important;
    scroll-snap-type: x mandatory;
  }

  .horizontal-card {
    --card-depth: 1 !important;
    flex: 0 0 82vw;
    min-height: 420px;
    scroll-snap-align: start;
    opacity: 1;
    transform: none;
  }

  .horizontal-card img {
    min-height: 420px;
  }

  .horizontal-card h3 {
    font-size: 2.45rem;
  }

  .metric-rail,
  .process-track {
    grid-template-columns: 1fr;
  }

  .diagonal-signature__stage {
    min-height: 430px;
  }

  .diagonal-signature__panel--large {
    top: 34px;
    left: 28px;
    width: 62%;
    height: 50%;
  }

  .diagonal-signature__panel--small {
    right: 28px;
    bottom: 84px;
    width: 48%;
    height: 34%;
  }

  .diagonal-signature__marker {
    top: auto;
    right: 22px;
    bottom: 144px;
  }

  .service-tabs__stage,
  .project-stage,
  .project-frame img {
    min-height: 460px;
  }

  .service-panel div {
    padding: 24px;
  }

  .service-panel h3,
  .project-starter__body p {
    font-size: 2.55rem;
  }

  .project-link {
    grid-template-columns: 38px 1fr;
    padding: 22px 0;
  }

  .project-link strong {
    font-size: 1.75rem;
  }

  .image-ribbon img {
    width: 260px;
    height: 170px;
  }

  .contact-lab__poster,
  .contact-lab__poster img {
    min-height: 470px;
  }

  .project-starter__actions {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Antigravity Premium Aesthetic Enhancements
   ========================================================================== */

/* 1. Custom Cursor Follower */
.custom-cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

@media (hover: hover) and (pointer: fine) {
  html, body, a, button, input, select, textarea, [role="button"], .budget-chip, .hero-index__item, .service-tab {
    cursor: none !important;
  }
  .custom-cursor {
    display: block;
  }
}

.custom-cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--clay);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  pointer-events: none;
  transition: transform 0.12s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, opacity 0.2s ease;
  will-change: transform;
}

.custom-cursor__ring {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid var(--clay);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, width, height;
}

/* Hovering links & buttons state */
.custom-cursor.is-hovering .custom-cursor__ring {
  width: 58px;
  height: 58px;
  background-color: rgba(200, 211, 198, 0.16);
  border-color: var(--sage);
}

.custom-cursor.is-hovering .custom-cursor__dot {
  transform: translate(-50%, -50%) scale(1.4);
  background-color: var(--navy);
}

/* Custom Text State (e.g. over galleries/before-after) */
.custom-cursor.is-text .custom-cursor__ring {
  width: 84px;
  height: 84px;
  background-color: rgba(16, 29, 46, 0.94);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.custom-cursor.is-text .custom-cursor__dot {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.custom-cursor__label {
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

.custom-cursor.is-text .custom-cursor__label {
  opacity: 1;
  transform: scale(1);
}

/* Magnetic snap framing state */
.custom-cursor.is-magnetic .custom-cursor__ring {
  border-radius: var(--radius);
  border-color: var(--clay);
  background-color: rgba(200, 211, 198, 0.08);
}

.custom-cursor.is-magnetic .custom-cursor__dot {
  opacity: 0;
}


/* 2. Project List Hover Preview */
.project-hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 200px;
  pointer-events: none;
  z-index: 90;
  opacity: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 32px 85px rgba(16, 29, 46, 0.32);
  transform: translate3d(var(--x, 0px), var(--y, 0px), 0px) scale(0.68) rotate(-7deg);
  transition: 
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.project-hover-preview.is-active {
  opacity: 1;
  transform: translate3d(var(--x, 0px), var(--y, 0px), 0px) scale(1) rotate(0deg);
}

.project-hover-preview__wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-hover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-hover-preview.is-active img {
  transform: scale(1);
}


/* 3. Text Reveal Masking */
.reveal-title-clip {
  display: block;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: translateY(44px);
  transition: 
    clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
  will-change: clip-path, transform;
}

.is-visible .reveal-title-clip,
.reveal-title-clip.is-visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateY(0);
}

.hero.is-loaded .reveal-title-clip {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateY(0);
}


/* 4. 3D Tilt and Card Styling */
.diagonal-reveal-card {
  perspective: 1200px;
  transition: box-shadow 0.35s ease;
}

.diagonal-reveal-card:hover {
  box-shadow: 0 30px 80px rgba(16, 29, 46, 0.24);
}

.diagonal-reveal-card > img,
.diagonal-reveal-card__mask {
  transition: transform 0.15s ease-out;
}

/* About Us Section Styles */
.about-section {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.about-title {
  margin: 0 0 24px 0;
  font-family: "Instrument Serif", serif;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 0.92;
  color: var(--ink);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-cards {
  display: grid;
  gap: 16px;
}

.about-value-card {
  position: relative;
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), border-color 450ms ease, box-shadow 450ms ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-2);
  box-shadow: 0 20px 45px rgba(16, 29, 46, 0.05);
}

.about-value-card__num {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: 2.2rem;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 14px;
}

.about-value-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.about-value-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Wizard Panels & WhatsApp Integration */
.wizard-panel {
  display: none;
}

.wizard-panel.is-active {
  display: block;
  animation: wizardFadeIn 350ms ease-out forwards;
}

.wizard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.wizard-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.wizard-chip:hover {
  transform: translateY(-2px);
  border-color: var(--ink-2);
}

.wizard-chip.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.wizard-confirm {
  margin-top: 34px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  background: #25D366; /* WhatsApp Green */
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.22);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  background: #20ba5a;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.32);
}

.whatsapp-btn svg {
  stroke: currentColor;
  transition: transform 220ms ease;
}

.whatsapp-btn:hover svg {
  transform: scale(1.1) rotate(5deg);
}

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

/* Responsiveness for About Us */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-title {
    font-size: 3.8rem;
  }
}

/* Studio Showcase Split Banner */
.studio-showcase {
  position: relative;
  width: 100%;
  height: 480px;
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.studio-showcase__track {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--navy);
  overflow: hidden;
}

.studio-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-showcase__img--base {
  z-index: 1;
}

.studio-showcase__img--reveal {
  z-index: 2;
  clip-path: polygon(0 0, var(--reveal-x, 50%) 0, calc(var(--reveal-x, 50%) - 8%) 100%, 0 100%);
  transition: clip-path 150ms ease-out, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-showcase:hover .studio-showcase__img {
  transform: scale(1.03);
}

.studio-showcase__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal-x, 50%);
  width: 2px;
  background: var(--white);
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%) skewX(-4.5deg);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  transition: left 150ms ease-out;
}

.studio-showcase__label {
  position: absolute;
  bottom: 30px;
  z-index: 4;
  padding: 10px 20px;
  background: rgba(16, 29, 46, 0.85);
  color: var(--white);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.studio-showcase__label--left {
  left: 30px;
}

.studio-showcase__label--right {
  right: 30px;
}

@media (max-width: 760px) {
  .studio-showcase {
    height: 320px;
    margin-top: 40px;
  }
  
  .studio-showcase__label {
    bottom: 20px;
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  
  .studio-showcase__label--left {
    left: 20px;
  }
  
  .studio-showcase__label--right {
    right: 20px;
  }

  .diagonal-visual-overlay svg {
    left: 50%;
    top: 28%;
    width: 75%;
    height: 36%;
    opacity: 0.45;
  }

  .diagonal-visual-glow {
    width: 280px;
    height: 280px;
    filter: blur(80px);
  }
}

