:root {
  --progress-height: 3px;
  --light-bg: #e7e7e5;
  --light-bg-soft: #dddddb;
  --dark-bg: #1f1f1f;
  --dark-panel: #181a1f;
  --text-dark: #18191d;
  --text-light: #aeaeae;
  --muted-dark: #4b4d54;
  --muted-light: #bebebe;
  --accent-yellow: #f1e63c;
}

.language-toggle {
  border: 1px solid rgba(25, 26, 31, 0.34);
  background: transparent;
  color: rgba(25, 26, 31, 0.86);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.3rem 0.44rem;
  cursor: pointer;
  transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease;
  flex-shrink: 0;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(250, 42, 85, 0.82);
  color: #fa2a55;
  outline: none;
}

.scroll-nav-right .language-toggle {
  align-self: flex-start;
  margin-top: 0.02rem;
}

.mini-menu-wrap .language-toggle {
  border-color: rgba(233, 238, 248, 0.36);
  color: rgba(241, 244, 251, 0.92);
}

.mini-menu-wrap .language-toggle:hover,
.mini-menu-wrap .language-toggle:focus-visible {
  border-color: rgba(250, 42, 85, 0.88);
  color: rgba(255, 255, 255, 0.98);
}

.language-toggle-floating {
  position: fixed;
  top: calc(0.72rem + env(safe-area-inset-top, 0px));
  right: calc(0.72rem + env(safe-area-inset-right, 0px));
  z-index: 260;
  background: rgba(236, 236, 233, 0.92);
  backdrop-filter: blur(5px);
}

.language-prompt {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: end center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
}

.language-prompt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.18) 0%, rgba(8, 9, 12, 0.46) 100%);
  backdrop-filter: blur(2.4px);
}

.language-prompt-inner {
  position: relative;
  width: min(42rem, 100%);
  border: 1px solid rgba(250, 42, 85, 0.54);
  background:
    linear-gradient(128deg, rgba(38, 40, 47, 0.97) 0%, rgba(24, 26, 31, 0.97) 62%, rgba(18, 19, 24, 0.97) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
  padding: 0.95rem 1rem 0.95rem;
  display: grid;
  gap: 0.58rem;
  animation: language-prompt-enter 300ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.language-prompt-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252, 252, 252, 0.64);
}

.language-prompt-title,
.language-prompt-subtitle {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 247, 251, 0.94);
  line-height: 1.34;
}

.language-prompt-options {
  margin-top: 0.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.language-prompt-option {
  border: 1px solid rgba(241, 244, 251, 0.36);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(244, 246, 251, 0.95);
  font-family: "IBM Plex Mono", monospace;
  padding: 0.55rem 0.62rem;
  display: grid;
  gap: 0.2rem;
  text-align: left;
  cursor: pointer;
  transition: color 140ms ease, border-color 140ms ease, background-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.language-prompt-option-title {
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.2;
}

.language-prompt-option-subtitle {
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(235, 238, 244, 0.72);
  line-height: 1.3;
}

.language-prompt-option:hover,
.language-prompt-option:focus-visible {
  border-color: rgba(250, 42, 85, 0.88);
  background: rgba(250, 42, 85, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  outline: none;
}

.language-prompt-option.is-selected {
  border-color: rgba(250, 42, 85, 0.96);
  background: rgba(250, 42, 85, 0.2);
}

.language-prompt-preview {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(240, 243, 249, 0.82);
  margin-top: 0.1rem;
}

.language-prompt-confirm {
  border: 1px solid rgba(250, 42, 85, 0.95);
  background: rgba(250, 42, 85, 0.9);
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.48rem 0.74rem;
  justify-self: start;
  cursor: pointer;
  transition: transform 140ms ease, filter 140ms ease, opacity 140ms ease;
}

.language-prompt-confirm:hover,
.language-prompt-confirm:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  outline: none;
}

.language-prompt-confirm:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
  filter: none;
}

@keyframes language-prompt-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .language-toggle {
    font-size: 0.58rem;
    letter-spacing: 0.11em;
    padding: 0.28rem 0.4rem;
  }

  .scroll-nav-right .language-toggle {
    margin-top: 0;
  }

  .language-prompt-inner {
    width: 100%;
    padding: 0.76rem 0.8rem 0.8rem;
    gap: 0.42rem;
  }

  .language-prompt-title,
  .language-prompt-subtitle {
    font-size: 0.63rem;
    letter-spacing: 0.07em;
  }

  .language-prompt-options {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .language-prompt-option-title {
    font-size: 0.58rem;
  }

  .language-prompt-option-subtitle {
    font-size: 0.5rem;
  }

  .language-prompt-preview {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .language-prompt-confirm {
    font-size: 0.56rem;
    letter-spacing: 0.11em;
    padding: 0.42rem 0.62rem;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Archivo", sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

p,
h1,
h2 {
  margin: 0;
}

.site-main {
  width: 100%;
}

.skip-loader .loader {
  display: none !important;
}

.loader {
  --loader-progress: 0;
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 80% 78%, rgba(218, 221, 228, 0.42) 0%, rgba(218, 221, 228, 0) 42%),
    #efefec;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  width: min(62rem, 86vw);
}

.loader-brand {
  font-size: clamp(1rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(25, 26, 31, 0.86);
  margin-bottom: 1.6rem;
  animation: loader-brand-pulse 2.4s ease-in-out infinite;
}

.loader-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

.loader-track {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(29, 31, 36, 0.18);
  overflow: hidden;
  border-radius: 999px;
}

.loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--loader-progress) * 1%);
  height: 100%;
  background: linear-gradient(90deg, rgba(31, 33, 39, 0.86) 0%, rgba(31, 33, 39, 0.98) 100%);
  transition: width 140ms linear;
}

.loader-notch {
  position: absolute;
  top: 50%;
  left: calc(var(--loader-progress) * 1%);
  width: 0.7rem;
  height: 0.7rem;
  transform: translate(-50%, -50%);
  background: #efefec;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(29, 31, 36, 0.28);
  animation: loader-gap-breathe 1.3s ease-in-out infinite;
}

.loader-percent {
  min-width: 2.8rem;
  text-align: right;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 36, 43, 0.72);
}

html.has-page-start body {
  animation: page-nav-enter 360ms cubic-bezier(0.34, 0.72, 0.2, 1) both;
  will-change: opacity, transform, filter;
}

html.has-nav-reveal body {
  animation: page-nav-enter 360ms cubic-bezier(0.34, 0.72, 0.2, 1) both;
  will-change: opacity, transform, filter;
}

html.is-page-leaving body {
  animation: page-nav-leave 360ms cubic-bezier(0.34, 0.72, 0.2, 1) forwards;
  will-change: opacity, transform, filter;
  pointer-events: none;
}

@keyframes page-nav-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(1.01);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes page-nav-leave {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(1.01);
    filter: blur(8px);
  }
}

@keyframes loader-brand-pulse {
  0% { opacity: 0.72; }
  50% { opacity: 1; }
  100% { opacity: 0.72; }
}

@keyframes loader-gap-breathe {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--progress-height);
  z-index: 130;
  background: #ffffff;
  pointer-events: none;
}

.scroll-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: #fa2a55;
  transition: width 120ms linear;
}

.scroll-nav {
  position: sticky;
  top: var(--progress-height);
  z-index: 90;
  margin: 0 -2.1vw 0;
  min-height: 1.25rem;
  width: calc(100% + 4.2vw);
  display: flex;
  align-items: center;
  padding: 0.17rem 2.1vw 0.15rem;
  border-bottom: 1px solid rgba(24, 25, 29, 0.16);
  background: rgba(232, 232, 230, 0.96);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.scroll-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-nav.is-fixed {
  position: fixed;
  top: var(--progress-height);
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 100;
}

.scroll-nav.global-scroll-nav {
  margin: 0;
  width: 100%;
  padding-left: 2.1vw;
  padding-right: 2.1vw;
}

.scroll-nav-placeholder {
  height: 0;
}

.scroll-nav-content {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.2fr);
  align-items: flex-start;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
}

.scroll-nav.is-visible .scroll-nav-content {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.scroll-nav-brand {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(24, 25, 29, 0.86);
  padding-left: calc(6% + 18px);
  line-height: 1.2;
  justify-self: start;
}

.scroll-nav-brand-btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.scroll-nav-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  gap: 0.8rem;
  padding-right: calc(20% + 1px);
}

.scroll-nav-percent {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 30, 36, 0.8);
  line-height: 1.2;
  margin-left: -0.35rem;
}

.scroll-nav-btn {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fa2a55;
  cursor: pointer;
  line-height: 1.2;
}

.scroll-nav-actions {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.scroll-nav-dropdown {
  position: absolute;
  top: calc(100% + 0.18rem);
  right: 0;
  min-width: 7.4rem;
  padding: 0.34rem;
  border: 1px solid rgba(25, 26, 31, 0.22);
  border-top-color: rgba(250, 42, 85, 0.62);
  background: rgba(232, 232, 230, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 0.12rem;
  text-align: right;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 120;
}

.scroll-nav-dropdown a {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  color: #1a1b20;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.18rem 0.34rem;
  text-align: right;
  transition: color 170ms ease;
}

.scroll-nav-dropdown a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fa2a55;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 190ms cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: -1;
}

.scroll-nav-dropdown a:hover,
.scroll-nav-dropdown a:focus-visible {
  color: #f4f5f7;
  text-decoration: none;
}

.scroll-nav-dropdown a:hover::before,
.scroll-nav-dropdown a:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.scroll-nav-actions.is-open .scroll-nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.panel {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 2rem 2.1vw 2rem;
}

.panel-light {
  background: var(--light-bg);
}

.panel-dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.topbar {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand,
.coords {
  color: rgba(24, 25, 29, 0.82);
}

.topbar-dark .brand,
.topbar-dark .coords {
  color: rgba(245, 246, 248, 0.9);
}

.menu-btn {
  border: 1px solid rgba(28, 29, 34, 0.4);
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.72rem;
  cursor: pointer;
}

.menu-btn-dark {
  border-color: rgba(242, 242, 243, 0.4);
  color: var(--text-light);
}

.mega-title {
  font-size: clamp(3.2rem, 12vw, 12.8rem);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.panel-hero {
  background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg) 65%, #dfdfcf 100%);
  position: relative;
}

.panel-hero .hero-layout {
  grid-template-columns: 1fr;
  min-height: calc(82vh - 4rem);
  margin-top: 0.25rem;
}

.panel-hero .hero-right {
  display: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  margin-top: 0.6rem;
  min-height: calc(100vh - 5rem);
}

.hero-left {
  min-height: inherit;
  display: flex;
  flex-direction: column;
}

.hero-bottom {
  margin-top: auto;
}

.hero-reachout {
  margin: 0 0 0.36rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 31, 38, 0.64);
}

.hero-mail-title {
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(0.3rem, 0.9vw, 0.7rem);
  max-width: 100%;
  margin-left: -0.02em;
  font-size: clamp(2.85rem, 10.4vw, 11.2rem);
  line-height: 0.88;
}

.hero-mail-text {
  display: block;
  line-height: inherit;
  overflow-wrap: anywhere;
}

.hero-mail-cta {
  display: inline-block;
  align-self: flex-end;
  margin-bottom: 0.08em;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.34em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #18191d;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 180ms ease;
  will-change: transform, opacity;
}

.hero-mail-cta:hover,
.hero-mail-cta:focus-visible {
  transform: translate(3px, -3px);
  opacity: 0.72;
}

.hero-subtitle {
  margin-top: 0.95rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
  width: 100%;
  margin-top: 0.35rem;
  max-width: none;
  font-size: 0.8rem;
  line-height: 1.62;
  color: #2f3138;
}

.hero-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.18rem;
}

.hero-links a {
  text-decoration: none;
  color: #2f3138;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.hero-links a:hover,
.hero-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hero-mantra {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.48;
}

.label {
  margin-bottom: 0.55rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-right::after {
  content: "";
  position: absolute;
  bottom: -9%;
  left: 5%;
  width: 92%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(241, 230, 60, 0.95) 0%, rgba(241, 230, 60, 0.7) 34%, rgba(241, 230, 60, 0) 76%);
  filter: blur(24px);
}

.hero-figure {
  position: relative;
  z-index: 2;
  width: min(34vw, 34rem);
  height: min(77vh, 45rem);
  border-radius: 48% 45% 41% 45% / 40% 42% 55% 58%;
  background:
    radial-gradient(circle at 52% 19%, rgba(252, 252, 252, 0.9) 0%, rgba(239, 239, 239, 0.78) 22%, rgba(216, 216, 216, 0.2) 48%, rgba(200, 200, 200, 0.02) 72%),
    linear-gradient(180deg, rgba(242, 242, 242, 0.7) 0%, rgba(198, 198, 198, 0.15) 62%, rgba(198, 198, 198, 0) 100%);
  opacity: 0.9;
  mask-image: linear-gradient(180deg, #000 60%, transparent 98%);
}

.artist-tag {
  position: absolute;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
  z-index: 3;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artist-arrow {
  display: inline-block;
  margin-top: 0.3rem;
}

.panel-culture {
  background: var(--light-bg-soft);
  position: relative;
  overflow: visible;
  padding-top: 0;
}

.culture-layout {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(1.6rem, 2.2vw, 2.45rem);
  align-items: stretch;
  min-height: calc(100vh - 7rem);
}

.culture-copy {
  max-width: 51rem;
  position: relative;
  z-index: 2;
}

.culture-copy .mega-title {
  max-width: 100%;
  font-size: clamp(2.6rem, 6.8vw, 7.2rem);
  line-height: 0.9;
}

.culture-story {
  margin-top: 2.25rem;
  margin-left: clamp(0.15rem, 0.7vw, 0.6rem);
  max-width: 54rem;
  border-top: 1px solid rgba(32, 34, 41, 0.2);
  border-bottom: 1px solid rgba(32, 34, 41, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.culture-story p {
  margin: 0;
  padding: 1.28rem 0;
  color: #30343c;
  font-size: clamp(1.08rem, 1.24vw, 1.32rem);
  line-height: 1.68;
}

.culture-story p + p {
  border-top: 1px solid rgba(32, 34, 41, 0.15);
}

.inline-link {
  display: inline-block;
  margin-top: 1.7rem;
  color: var(--text-dark);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.culture-media {
  position: relative;
  width: 100%;
  border: 1px solid rgba(15, 15, 15, 0.32);
  background: #fa2a55;
  height: 100%;
  min-height: clamp(32rem, 46vw, 48rem);
  aspect-ratio: auto;
  margin-bottom: 0;
  z-index: 1;
  overflow: hidden;
  display: flex;
  transition:
    transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 220ms ease;
}

.culture-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.2) 52%, rgba(255, 255, 255, 0) 82%);
  transform: translateX(-120%);
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  z-index: 2;
}

.culture-media:hover,
.culture-media:focus-within {
  transform: translateY(-4px);
  border-color: rgba(15, 15, 15, 0.48);
  box-shadow: 0 16px 30px rgba(9, 10, 13, 0.2);
}

.culture-media:hover::before,
.culture-media:focus-within::before {
  transform: translateX(120%);
}

.work-box {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(0.7rem, 1.15vw, 0.95rem);
}

.work-box-title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.8rem, 7.1vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.8;
  text-transform: uppercase;
  color: #111111;
  transition: transform 220ms ease, opacity 220ms ease;
}

.work-list {
  list-style: none;
  margin: clamp(0.3rem, 0.65vw, 0.55rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.2rem;
  min-height: 0;
}

.work-link {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 0.24rem 0.32rem 0.16rem;
  border-top: 1px solid rgba(17, 17, 17, 0.36);
  text-decoration: none;
  color: #111111;
  overflow: hidden;
  transition: opacity 180ms ease, transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.work-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0) 16%,
    rgba(255, 255, 255, 0.33) 50%,
    rgba(255, 255, 255, 0) 84%
  );
  transform: translateX(-135%);
  transition: transform 460ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.work-name {
  position: relative;
  z-index: 1;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.52rem, 2.7vw, 2.58rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.94;
  transition: transform 220ms ease, letter-spacing 220ms ease;
}

.work-url {
  position: relative;
  z-index: 1;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.72rem, 1.05vw, 1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: center;
  opacity: 0.82;
  transition: transform 220ms ease, opacity 220ms ease;
}

.work-link:hover,
.work-link:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-top-color: rgba(17, 17, 17, 0.58);
}

.work-link:hover::before,
.work-link:focus-visible::before {
  transform: translateX(135%);
}

.work-link:hover .work-name,
.work-link:focus-visible .work-name {
  transform: translateX(4px);
  letter-spacing: -0.02em;
}

.work-link:hover .work-url,
.work-link:focus-visible .work-url {
  opacity: 1;
  transform: translateX(2px);
}

.culture-media:hover .work-box-title,
.culture-media:focus-within .work-box-title {
  transform: translateX(3px);
  opacity: 0.94;
}

.culture-media:hover .work-url,
.culture-media:focus-within .work-url {
  opacity: 1;
}

.panel-production {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}

.production-title {
  position: relative;
  isolation: isolate;
  margin-top: 1.4vh;
  color: #cfd2d8;
  font-size: clamp(2.8rem, 12.7vw, 14rem);
  line-height: 0.82;
  width: 100%;
  max-width: none;
  margin-left: 0;
  text-align: center;
  align-self: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.09),
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 12px 24px rgba(0, 0, 0, 0.13);
}

.production-title span {
  display: block;
  white-space: nowrap;
}

.production-info-bar {
  width: 100%;
  transform: none;
  border-top: 1px solid rgba(244, 245, 247, 0.2);
  padding-top: 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.2fr);
  gap: 1.2rem;
  align-items: start;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.production-info-left {
  padding-left: 6%;
}

.production-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(242, 243, 246, 0.8);
  cursor: pointer;
}

.production-copy {
  margin-top: 0.55rem;
  max-width: 36rem;
  color: rgba(226, 229, 236, 0.75);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.84rem, 0.95vw, 1rem);
  letter-spacing: 0.02em;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease, max-height 180ms ease;
}

.production-kicker:hover + .production-copy,
.production-kicker:focus-visible + .production-copy,
.production-info-left:hover .production-copy,
.production-info-left:focus-within .production-copy {
  opacity: 1;
  transform: translateY(0);
  max-height: 12rem;
}

.production-info-right {
  display: flex;
  justify-content: flex-end;
  padding-right: 20%;
}

.mini-menu-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
}

.mini-scroll {
  color: rgba(230, 233, 240, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  padding-top: 0.02rem;
  margin-left: -0.35rem;
}

.mini-menu-column {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.mini-menu-btn {
  border: 0;
  background: transparent;
  color: rgba(230, 233, 240, 0.8);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.mini-menu {
  margin-top: 0;
  padding-top: 0.45rem;
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  text-align: right;
}

.mini-menu a {
  color: rgba(231, 235, 244, 0.76);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.mini-menu a:hover,
.mini-menu a:focus-visible {
  color: rgba(247, 249, 252, 0.95);
}

.mini-menu-btn:hover + .mini-menu,
.mini-menu-btn:focus-visible + .mini-menu,
.mini-menu-column:hover .mini-menu,
.mini-menu-column:focus-within .mini-menu,
.mini-menu:hover,
.mini-menu:focus-within {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.project-strip {
  --strip-base-offset: 15%;
  --strip-lift: 0px;
  position: relative;
  width: 108%;
  margin-left: -4%;
  perspective: 1000px;
  transform: translateY(calc(var(--strip-base-offset) - var(--strip-lift)));
  cursor: pointer;
  overflow: hidden;
  will-change: transform;
}

.project-strip::before {
  content: "SCROLL";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(-18%);
  transition:
    opacity 160ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 5;
}

.project-strip::after {
  content: none;
}

.project-strip:hover::before,
.project-strip:focus-within::before {
  opacity: 1;
  transform: translateY(0);
}

.strip-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
  padding: 1rem;
  background: #fa2a55;
  transform: rotateX(24deg);
  transform-origin: top;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.tile {
  min-height: clamp(11rem, 19vw, 17rem);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.06);
  background-image: none;
  filter: none;
  box-shadow: inset 0 0 0 1px rgba(122, 8, 40, 0.18);
}

.tile-1 {
  background: rgba(255, 255, 255, 0.05);
}

.tile-2 {
  background: rgba(255, 255, 255, 0.1);
}

.tile-3 {
  background: rgba(255, 255, 255, 0.04);
}

.tile-4 {
  background: rgba(255, 255, 255, 0.09);
}

.tile-5 {
  background: rgba(255, 255, 255, 0.05);
}

.strip-scroll-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.92);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.35rem;
  line-height: 1;
  pointer-events: none;
  z-index: 4;
}

.project-strip:hover .strip-scroll-arrow,
.project-strip:focus-within .strip-scroll-arrow {
  animation: strip-arrow-fly-down 280ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.project-strip:not(:hover):not(:focus-within) .strip-scroll-arrow {
  animation: strip-arrow-return-top 320ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes strip-arrow-fly-down {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0.92;
  }
  100% {
    transform: translate(-50%, 560%);
    opacity: 0;
  }
}

@keyframes strip-arrow-return-top {
  0% {
    transform: translate(-50%, -260%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 0.92;
  }
}

.strip-showroom {
  position: absolute;
  right: 1.15rem;
  bottom: clamp(2rem, 14%, 3.1rem);
  z-index: 4;
  color: rgba(255, 255, 255, 0.95);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: auto;
}

.strip-showroom-btn {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.74);
  padding: 0.26rem 0.45rem;
  background: transparent;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.strip-showroom-btn:hover,
.strip-showroom-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.plus {
  position: absolute;
  z-index: 4;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "IBM Plex Mono", monospace;
  color: rgba(44, 45, 52, 0.5);
  pointer-events: none;
}

.panel-dark .plus {
  color: rgba(244, 245, 248, 0.6);
}

.p1 {
  top: 20%;
  right: 13%;
}

.p2 {
  top: 76%;
  left: 17%;
}

.p3 {
  top: 26%;
  right: 48%;
}

.p4 {
  top: 75%;
  left: 48%;
}

.p5 {
  top: 19%;
  left: 58%;
}

.p6 {
  top: 55%;
  right: 8%;
}

.p7 {
  top: 68%;
  left: 15%;
}

/* Unique layouts for home.html and work.html */
.page-home {
  background: var(--light-bg);
}

.page-work {
  --progress-height: 0px;
  background: #141519;
}

.home-stage {
  background:
    radial-gradient(circle at 78% 16%, rgba(250, 42, 85, 0.2) 0%, rgba(250, 42, 85, 0) 44%),
    linear-gradient(180deg, #ececea 0%, #e4e4e1 100%);
  display: grid;
  grid-template-rows: 1fr;
  gap: clamp(1.1rem, 2.1vw, 2rem);
}

.home-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.home-brand {
  text-decoration: none;
  color: #1b1c21;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1rem;
}

.home-nav a {
  text-decoration: none;
  color: #30333b;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-nav a:hover,
.home-nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.1rem, 2.3vw, 2.3rem);
  align-items: stretch;
}

.home-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 46rem;
}

.home-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #3c3f47;
}

.home-title {
  margin-top: 0.45rem;
  color: #18191d;
  font-size: clamp(2.7rem, 9vw, 8.2rem);
  line-height: 0.82;
  letter-spacing: -0.048em;
  text-transform: uppercase;
}

.home-title span {
  display: block;
}

.home-lead {
  margin-top: 1.3rem;
  max-width: 35rem;
  color: #32363f;
  font-size: clamp(0.96rem, 1.22vw, 1.2rem);
  line-height: 1.58;
}

.home-cta-row {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.home-pill {
  text-decoration: none;
  border: 1px solid rgba(26, 28, 34, 0.34);
  color: #1a1b20;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.58rem;
  transition: background 180ms ease, color 180ms ease;
}

.home-pill:hover,
.home-pill:focus-visible {
  background: #fa2a55;
  color: #f7f8fa;
}

.home-pill-alt {
  border-color: rgba(26, 28, 34, 0.2);
  color: #3a3d45;
}

.home-art {
  position: relative;
  min-height: clamp(25rem, 39vw, 34rem);
  background: #fa2a55;
  border: 1px solid rgba(17, 18, 21, 0.32);
  overflow: hidden;
  isolation: isolate;
}

.home-art::before {
  content: "";
  position: absolute;
  inset: -16% -8% auto;
  height: 44%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 74%);
  pointer-events: none;
}

.home-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.home-orbit-a {
  width: 18rem;
  height: 18rem;
  top: -16%;
  right: -12%;
}

.home-orbit-b {
  width: 15rem;
  height: 15rem;
  bottom: -20%;
  left: -10%;
}

.home-orbit-c {
  width: 10rem;
  height: 10rem;
  top: 36%;
  right: 40%;
}

.home-card-stack {
  position: absolute;
  inset: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  align-content: end;
}

.home-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  padding: 0.62rem;
  min-height: 8.4rem;
}

.home-mini-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(246, 248, 252, 0.86);
}

.home-mini-card h2 {
  margin-top: 0.35rem;
  color: #141519;
  font-size: clamp(1.18rem, 1.7vw, 1.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-mini-card p {
  margin-top: 0.46rem;
  color: rgba(18, 19, 24, 0.82);
  font-size: 0.76rem;
  line-height: 1.35;
}

.home-bands {
  background: #181a1f;
  color: #d3d8e3;
  display: grid;
  gap: clamp(1rem, 2vw, 1.8rem);
  align-content: center;
}

.home-band-row {
  display: grid;
  gap: 0.45rem;
}

.home-band {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(242, 244, 248, 0.22);
  border-bottom: 1px solid rgba(242, 244, 248, 0.14);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.6rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-band span {
  display: inline-block;
  min-width: max-content;
  padding: 0.42rem 1.9rem 0.5rem 0;
  animation: home-band-move 16s linear infinite;
}

.home-band-b span {
  animation-direction: reverse;
  animation-duration: 19s;
}

@keyframes home-band-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-46%); }
}

.home-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.home-feed-card {
  border: 1px solid rgba(242, 244, 248, 0.26);
  background: rgba(240, 243, 249, 0.04);
  padding: 0.84rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
}

.home-feed-index {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(228, 233, 244, 0.64);
}

.home-feed-card h3 {
  margin-top: 0.42rem;
  color: #f4f6fa;
  font-size: clamp(1.1rem, 2.1vw, 1.68rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-feed-card p {
  margin-top: 0.55rem;
  color: rgba(222, 227, 237, 0.8);
  font-size: 0.84rem;
  line-height: 1.48;
}

.home-feed-card a {
  margin-top: auto;
  padding-top: 0.72rem;
  color: #fa2a55;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-feed-card a:hover,
.home-feed-card a:focus-visible {
  text-decoration: underline;
}

.home-contact {
  background: linear-gradient(180deg, #e7e7e5 0%, #dfdfdc 100%);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.58fr) minmax(0, 0.45fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.home-contact-main .label,
.work-mail-block .label,
.work-actions .label {
  color: rgba(30, 32, 38, 0.72);
}

.home-contact-title {
  margin-top: 0.42rem;
  color: #18191d;
  font-size: clamp(2.3rem, 6.9vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.home-mail-cta {
  display: inline-block;
  margin-left: 0.18em;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.3em;
  color: #18191d;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-mail-cta:hover,
.home-mail-cta:focus-visible {
  transform: translate(3px, -3px);
}

.home-contact-note {
  margin-top: 0.75rem;
  max-width: 30rem;
  color: #353942;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.52;
}

.home-action-links,
.work-action-links {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.home-action-links a,
.work-action-links a {
  text-decoration: none;
  color: #2f3239;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-action-links a:hover,
.home-action-links a:focus-visible,
.work-action-links a:hover,
.work-action-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.home-contact-mantra p:last-child {
  margin-top: 0.25rem;
  color: #2b2f37;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.45;
}

.work-stage {
  background:
    radial-gradient(circle at 84% 18%, rgba(250, 42, 85, 0.26) 0%, rgba(250, 42, 85, 0) 40%),
    linear-gradient(180deg, #191b21 0%, #131418 100%);
  color: #d7dde8;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(1rem, 2vw, 1.9rem);
}

.work-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.work-brand {
  text-decoration: none;
  color: #eef2fa;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1rem;
}

.work-nav a {
  text-decoration: none;
  color: rgba(231, 236, 247, 0.8);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-nav a:hover,
.work-nav a:focus-visible {
  text-decoration: underline;
}

.work-stage-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: end;
}

.work-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(220, 226, 240, 0.72);
}

.work-stage-title {
  margin-top: 0.4rem;
  color: #dce3ef;
  font-size: clamp(2.9rem, 10vw, 9.3rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.work-stage-title span {
  display: block;
}

.work-stage-lead {
  margin-top: 1.2rem;
  max-width: 36rem;
  color: rgba(220, 226, 240, 0.76);
  font-size: clamp(0.95rem, 1.2vw, 1.16rem);
  line-height: 1.55;
}

.work-stage-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.64rem;
}

.work-chip {
  border: 1px solid rgba(232, 236, 247, 0.25);
  background: rgba(232, 236, 247, 0.05);
  min-height: 8.3rem;
  padding: 0.66rem;
  display: grid;
  align-content: space-between;
}

.work-chip p {
  color: rgba(224, 229, 241, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-chip h2 {
  color: #eef3fd;
  font-size: clamp(1.28rem, 2.2vw, 2.05rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.work-chip span {
  color: rgba(224, 229, 241, 0.8);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-chip-accent {
  background: #fa2a55;
  border-color: rgba(255, 255, 255, 0.44);
}

.work-chip-accent h2,
.work-chip-accent p,
.work-chip-accent span {
  color: #17181d;
}

.work-catalog {
  background: #ececea;
}

.work-catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.work-catalog-title {
  color: #18191d;
  font-size: clamp(2.1rem, 7vw, 6.4rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.work-catalog-note {
  max-width: 30rem;
  color: #363a42;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  line-height: 1.42;
  text-transform: uppercase;
}

.work-case-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.18rem;
}

.work-case {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(24, 25, 29, 0.25);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.84rem 0.2rem;
  text-decoration: none;
  color: #18191d;
}

.work-case::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(250, 42, 85, 0) 16%, rgba(250, 42, 85, 0.22) 50%, rgba(250, 42, 85, 0) 84%);
  transform: translateX(-130%);
  transition: transform 460ms cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: -1;
}

.work-case:hover::before,
.work-case:focus-visible::before {
  transform: translateX(130%);
}

.work-case-index {
  color: #565b66;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-case-main {
  display: grid;
  gap: 0.2rem;
}

.work-case-main strong {
  color: #131418;
  font-size: clamp(1.05rem, 2.2vw, 1.9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.work-case-main small {
  color: #3f434c;
  font-size: 0.82rem;
  line-height: 1.44;
}

.work-case-tag {
  color: #fa2a55;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-case:hover .work-case-main strong,
.work-case:focus-visible .work-case-main strong {
  transform: translateX(3px);
}

.work-manifesto {
  background: linear-gradient(180deg, #16181e 0%, #101116 100%);
  color: #d7dce7;
  display: grid;
  align-content: center;
}

.work-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.74fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.work-mail-title {
  margin-top: 0.45rem;
  color: #e3e9f4;
  font-size: clamp(2.15rem, 6.6vw, 6.1rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.work-mail-cta {
  display: inline-block;
  margin-left: 0.16em;
  color: #e3e9f4;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.3em;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 180ms ease;
}

.work-mail-cta:hover,
.work-mail-cta:focus-visible {
  transform: translate(3px, -3px);
  opacity: 0.75;
}

.work-mail-note {
  margin-top: 0.72rem;
  max-width: 31rem;
  color: rgba(217, 223, 235, 0.78);
  font-size: clamp(0.9rem, 1vw, 1.04rem);
  line-height: 1.5;
}

.work-action-links a {
  color: rgba(222, 227, 240, 0.86);
}

.work-mantra {
  margin-top: 0.72rem;
  color: rgba(222, 227, 240, 0.65);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .scroll-nav {
    margin: 0 -1rem 0;
    width: calc(100% + 2rem);
    min-height: 1.45rem;
    padding: 0.2rem 1rem 0.18rem;
  }


  .scroll-nav.global-scroll-nav {
    margin: 0;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .scroll-nav-content {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
  }

  .scroll-nav-brand {
    padding-left: 0;
    font-size: 0.66rem;
  }

  .scroll-nav-right {
    padding-right: 0;
    align-items: center;
    gap: 0.68rem;
  }

  .scroll-nav-percent {
    margin-left: 0;
    font-size: 0.66rem;
  }

  .scroll-nav-btn {
    font-size: 0.68rem;
  }

  .scroll-nav-dropdown {
    min-width: 6.8rem;
  }

  .panel {
    padding: 1.1rem 1rem 1rem;
  }

  .hero-layout,
  .culture-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.4rem;
  }

  .culture-copy {
    max-width: none;
  }

  .culture-copy .mega-title {
    font-size: clamp(2.35rem, 11vw, 5.4rem);
  }

  .culture-story {
    margin-top: 1.25rem;
    margin-left: 0;
    max-width: none;
  }

  .culture-story p {
    padding: 1rem 0;
    font-size: clamp(0.98rem, 2.25vw, 1.12rem);
    line-height: 1.58;
  }

  .inline-link {
    margin-top: 1.15rem;
  }

  .hero-figure {
    width: min(72vw, 25rem);
    height: min(65vh, 34rem);
  }

  .artist-tag {
    right: 2vw;
    top: 8%;
    transform: none;
  }

  .hero-info-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 0.2rem;
    gap: 1.2rem;
  }

  .hero-links a,
  .hero-mantra {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .culture-media {
    margin-bottom: 0;
    min-height: 0;
    height: auto;
    aspect-ratio: 1.08;
    max-width: none;
    width: 100%;
  }

  .work-box {
    padding: clamp(0.68rem, 1.4vw, 0.9rem);
  }

  .work-box-title {
    font-size: clamp(2.2rem, 8.8vw, 4.2rem);
  }

  .work-name {
    font-size: clamp(1.3rem, 4.5vw, 1.9rem);
  }

  .work-url {
    font-size: clamp(0.62rem, 1.7vw, 0.82rem);
  }

  .production-title {
    margin-top: 2.4rem;
    font-size: clamp(2.3rem, 11.5vw, 8.5rem);
  }

  .production-copy {
    margin-top: 0.45rem;
    opacity: 1;
    transform: none;
    max-height: none;
    overflow: visible;
  }

  .production-info-bar {
    transform: none;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .production-info-left {
    padding-left: 0;
  }

  .production-info-right {
    justify-content: flex-start;
    padding-right: 0;
  }

  .mini-menu-wrap {
    gap: 0.62rem;
  }

  .project-strip {
    --strip-base-offset: 0%;
    width: 100%;
    margin: 0;
    padding-bottom: 0.7rem;
  }

  .strip-track {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    transform: none;
  }

  .strip-showroom {
    right: 0.95rem;
    bottom: clamp(1.4rem, 10%, 2.2rem);
  }

  .hero-bottom {
    margin-top: auto;
  }

  .hero-mail-title {
    font-size: clamp(2.5rem, 12.3vw, 7.6rem);
    line-height: 0.89;
  }

  .panel-hero .hero-layout {
    min-height: calc(100svh - 2.2rem);
    height: 100%;
    align-items: stretch;
  }

  .hero-left {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .scroll-nav {
    margin: 0;
    width: 100%;
    min-height: 1.5rem;
    padding: 0.22rem 0.82rem 0.2rem;
  }


  .scroll-nav.global-scroll-nav {
    margin: 0;
    width: 100%;
    padding-left: 0.82rem;
    padding-right: 0.82rem;
  }

  .scroll-nav-content {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
  }

  .scroll-nav-brand {
    padding-left: 0;
    font-size: 0.58rem;
    letter-spacing: 0.11em;
  }

  .scroll-nav-right {
    gap: 0.42rem;
    padding-right: 0;
    align-items: center;
  }

  .scroll-nav-percent {
    margin-left: 0;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .scroll-nav-btn {
    font-size: 0.6rem;
    letter-spacing: 0.11em;
  }

  .scroll-nav-dropdown {
    min-width: 6.2rem;
    padding: 0.28rem;
    right: 0;
  }

  .scroll-nav-dropdown a {
    font-size: 0.58rem;
    padding: 0.16rem 0.24rem;
  }

  .topbar {
    font-size: 0.62rem;
  }

  .topbar-right {
    gap: 0.6rem;
  }

  .menu-btn {
    padding: 0.38rem 0.55rem;
  }

  .panel {
    padding: 0.95rem 0.75rem 0.9rem;
  }

  .mega-title {
    font-size: clamp(2.2rem, 13.8vw, 4.9rem);
  }

  .production-title {
    margin-top: 1.3rem;
    font-size: clamp(2.1rem, 14vw, 4.9rem);
    line-height: 0.84;
  }

  .production-info-bar {
    gap: 0.85rem;
    padding-top: 0.75rem;
  }

  .production-copy {
    font-size: clamp(0.76rem, 3.1vw, 0.9rem);
    line-height: 1.42;
  }

  .mini-menu-wrap {
    gap: 0.48rem;
  }

  .mini-scroll,
  .mini-menu-btn,
  .mini-menu a {
    font-size: 0.62rem;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hero-mail-title {
    font-size: clamp(2.08rem, 12.8vw, 3.95rem);
    line-height: 0.9;
  }

  .hero-subtitle {
    margin-top: 0.62rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-links a,
  .hero-mantra {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    line-height: 1.42;
  }

  .culture-layout {
    gap: 0.95rem;
  }

  .culture-copy .mega-title {
    font-size: clamp(2.05rem, 13.5vw, 3.8rem);
  }

  .culture-story {
    margin-top: 0.95rem;
  }

  .culture-story p {
    margin: 0;
    padding: 0.8rem 0;
    font-size: clamp(0.9rem, 3.9vw, 0.98rem);
    line-height: 1.5;
  }

  .work-box-title {
    font-size: clamp(1.8rem, 11vw, 2.8rem);
    line-height: 0.84;
  }

  .culture-media {
    min-height: 22rem;
    height: auto;
    aspect-ratio: auto;
  }

  .work-box {
    padding: 0.62rem;
  }

  .work-list {
    margin-top: 0.25rem;
    grid-template-rows: repeat(3, minmax(0, auto));
    gap: 0;
  }

  .work-link {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.16rem;
    padding: 0.58rem 0 0.46rem;
  }

  .work-name {
    font-size: clamp(1.04rem, 6.6vw, 1.5rem);
    line-height: 0.98;
  }

  .work-url {
    font-size: 0.56rem;
    letter-spacing: 0.09em;
  }

  .project-strip {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .strip-track {
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    gap: 0.55rem;
    padding: 0.72rem;
  }

  .tile {
    min-height: clamp(7.8rem, 28vw, 10rem);
  }

  .strip-scroll-arrow {
    font-size: 1.12rem;
  }

  .strip-showroom {
    right: 0.75rem;
    bottom: clamp(1rem, 9vw, 1.7rem);
    font-size: 0.56rem;
  }

  .strip-showroom-btn {
    padding: 0.22rem 0.34rem;
  }

  .culture-media:hover,
  .culture-media:focus-within {
    transform: none;
    box-shadow: none;
    border-color: rgba(15, 15, 15, 0.32);
  }

  .culture-media:hover::before,
  .culture-media:focus-within::before {
    transform: translateX(-120%);
  }

  .culture-media:hover .work-box-title,
  .culture-media:focus-within .work-box-title,
  .culture-media:hover .work-link,
  .culture-media:focus-within .work-link {
    transform: none;
  }
}

@media (max-width: 430px) {
  .scroll-nav-percent {
    display: none;
  }
}

@media (max-width: 1100px) {
  .home-hero-grid,
  .work-stage-main,
  .work-manifesto-grid {
    grid-template-columns: 1fr;
  }

  .home-art {
    min-height: clamp(21rem, 56vw, 30rem);
  }

  .home-card-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-contact-main {
    grid-column: 1 / -1;
  }

  .work-stage-matrix {
    margin-top: 0.4rem;
  }

  .work-catalog-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .home-topline,
  .work-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.62rem;
  }

  .home-nav,
  .work-nav {
    justify-content: flex-start;
    gap: 0.45rem 0.72rem;
  }

  .home-nav a,
  .work-nav a {
    font-size: 0.6rem;
  }

  .home-title {
    font-size: clamp(2.2rem, 14.4vw, 4.6rem);
    line-height: 0.84;
  }

  .home-lead,
  .work-stage-lead {
    font-size: clamp(0.88rem, 4vw, 0.98rem);
    line-height: 1.48;
  }

  .home-art {
    min-height: 21rem;
  }

  .home-card-stack {
    grid-template-columns: 1fr;
  }

  .home-mini-card {
    min-height: auto;
  }

  .home-feed-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .home-contact-title {
    font-size: clamp(1.9rem, 12.8vw, 3.7rem);
    line-height: 0.9;
  }

  .work-stage-title {
    font-size: clamp(2.3rem, 15vw, 5.2rem);
    line-height: 0.84;
  }

  .work-stage-matrix {
    grid-template-columns: 1fr;
  }

  .work-case {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.72rem 0;
  }

  .work-case-tag {
    justify-self: start;
  }

  .work-mail-title {
    font-size: clamp(1.95rem, 12.4vw, 3.5rem);
    line-height: 0.9;
  }
}

.page-work-single {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(250, 42, 85, 0.14) 0%, rgba(250, 42, 85, 0) 38%),
    linear-gradient(180deg, #171a21 0%, #12141a 100%);
}

.page-work-single .site-main {
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.work-onepage {
  height: 100%;
  min-height: 0;
  padding: calc(0.95rem + var(--progress-height)) 2.1vw 0.95rem;
  background: transparent;
  color: #d7deea;
  overflow: hidden;
}

.work-onepage-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.work-onepage-layout {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  align-items: stretch;
  gap: clamp(0.9rem, 1.7vw, 1.4rem);
}

.work-onepage-left {
  min-height: 0;
  display: grid;
  align-content: center;
  gap: 0.72rem;
  padding-right: 0.22rem;
}

.work-onepage-left .work-stage-lead {
  margin-top: 0.08rem;
  max-width: 21rem;
}

.work-onepage-right-column {
  min-height: 0;
  height: 100%;
  display: flex;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(229, 234, 246, 0.14);
}

.work-onepage-right-box {
  flex: 1;
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(234, 239, 248, 0.18);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(250, 42, 85, 0.15) 0%, rgba(250, 42, 85, 0) 42%),
    linear-gradient(180deg, rgba(233, 238, 248, 0.06) 0%, rgba(233, 238, 248, 0.03) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 30px rgba(8, 10, 14, 0.34);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.work-list-kicker {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.54rem 0.68rem;
  border-bottom: 1px solid rgba(229, 234, 246, 0.12);
  background: rgba(17, 20, 27, 0.84);
  backdrop-filter: blur(7px);
  color: rgba(227, 233, 245, 0.74);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-list-kicker::after {
  content: "SCROLL BOX";
  color: rgba(234, 239, 248, 0.56);
  font-size: 0.53rem;
}

.work-mail-inline {
  width: max-content;
  text-decoration: none;
  color: rgba(228, 234, 245, 0.92);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-mail-inline:hover,
.work-mail-inline:focus-visible {
  color: #fa2a55;
}

.work-onepage-right {
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: 0.56rem;
  display: grid;
  align-content: start;
  gap: 0.52rem;
}

.work-onepage-right::-webkit-scrollbar {
  width: 8px;
}

.work-onepage-right::-webkit-scrollbar-track {
  background: rgba(231, 236, 246, 0.06);
}

.work-onepage-right::-webkit-scrollbar-thumb {
  background: rgba(250, 42, 85, 0.38);
  border-radius: 999px;
  border: 2px solid rgba(16, 19, 25, 0.6);
}

.work-rail-item {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-height: clamp(7.2rem, 12vw, 8.4rem);
  padding: 0.78rem 0.74rem;
  border: 1px solid rgba(232, 238, 248, 0.16);
  border-radius: 0.86rem;
  background:
    linear-gradient(145deg, rgba(232, 238, 248, 0.06) 0%, rgba(232, 238, 248, 0.02) 100%);
  text-decoration: none;
  color: #e7ecf6;
  transition:
    transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.work-rail-item:hover,
.work-rail-item:focus-visible,
.work-rail-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(250, 42, 85, 0.48);
  background:
    linear-gradient(145deg, rgba(250, 42, 85, 0.16) 0%, rgba(250, 42, 85, 0.08) 100%);
  box-shadow: 0 10px 20px rgba(7, 9, 14, 0.32);
}

.work-rail-item:hover .work-rail-main strong,
.work-rail-item:focus-visible .work-rail-main strong,
.work-rail-item.is-active .work-rail-main strong {
  transform: none;
}

.work-cursor-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(13.2rem, 20vw, 17rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(13, 16, 22, 0.96);
  border-radius: 0.82rem;
  box-shadow:
    0 20px 42px rgba(6, 8, 12, 0.55),
    0 0 0 1px rgba(250, 42, 85, 0.22);
  color: #edf3fc;
  overflow: hidden;
  z-index: 240;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0) scale(0.96);
  transform-origin: top left;
  transition: opacity 130ms ease, transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.work-cursor-preview.is-visible {
  opacity: 1;
  transform: translate3d(var(--cursor-preview-x, -999px), var(--cursor-preview-y, -999px), 0) scale(1);
}

.work-cursor-preview-media {
  height: clamp(6.2rem, 10vw, 8rem);
  background:
    linear-gradient(132deg, rgba(13, 16, 22, 0.18) 0%, rgba(13, 16, 22, 0.66) 100%),
    #252a34;
  background-size: cover;
  background-position: center;
}

.work-cursor-preview.is-no-image .work-cursor-preview-media {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(47, 54, 67, 0.92) 0%, rgba(27, 30, 38, 0.98) 100%);
  color: rgba(237, 243, 252, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-cursor-preview-meta {
  padding: 0.5rem 0.58rem 0.56rem;
  display: grid;
  gap: 0.2rem;
  border-top: 1px solid rgba(228, 234, 246, 0.14);
}

.work-cursor-preview-type {
  color: rgba(230, 236, 248, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-cursor-preview-title {
  color: #f3f7fe;
  font-size: clamp(0.92rem, 1.3vw, 1.06rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.work-cursor-preview-cta {
  margin-top: 0.12rem;
  width: max-content;
  border: 1px solid rgba(250, 42, 85, 0.72);
  background: #fa2a55;
  color: #111319;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.42rem;
  box-shadow: 0 3px 10px rgba(250, 42, 85, 0.36);
}

.work-rail-index {
  color: rgba(232, 238, 248, 0.88);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.24rem 0.34rem;
  border: 1px solid rgba(232, 238, 248, 0.26);
  border-radius: 999px;
  background: rgba(232, 238, 248, 0.06);
}

.work-rail-main {
  display: grid;
  gap: 0.2rem;
}

.work-rail-main strong {
  color: #edf2fb;
  font-size: clamp(1.04rem, 2vw, 1.58rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.work-rail-main small {
  color: rgba(228, 234, 246, 0.82);
  font-size: 0.78rem;
  line-height: 1.45;
}

.work-rail-arrow {
  color: #fa2a55;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .page-work-single {
    overflow-y: auto;
  }

  .page-work-single .site-main {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    display: block;
  }

  .work-onepage {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .work-onepage-layout {
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .work-onepage-left {
    align-content: start;
  }

  .work-onepage-right-column {
    height: auto;
    display: block;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(229, 234, 246, 0.16);
    padding-top: 0.85rem;
  }

  .work-onepage-right-box {
    height: auto;
    min-height: 20rem;
    border-radius: 0.86rem;
  }

  .work-onepage-right {
    height: auto;
    overflow: visible;
    padding: 0.45rem;
  }

  .work-cursor-preview {
    display: none;
  }
}

@media (max-width: 640px) {
  .work-onepage {
    padding: calc(0.95rem + var(--progress-height)) 0.75rem 0.9rem;
  }

  .work-onepage-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .work-stage-title {
    font-size: clamp(2.2rem, 14vw, 4.6rem);
    line-height: 0.84;
  }

  .work-stage-lead {
    font-size: clamp(0.88rem, 4vw, 0.98rem);
    line-height: 1.45;
  }

  .work-rail-item {
    grid-template-columns: 1fr;
    gap: 0.38rem;
    min-height: auto;
  }

  .work-rail-arrow {
    justify-self: start;
  }

  .work-rail-main strong {
    font-size: clamp(1rem, 7vw, 1.34rem);
  }
}

/* About / Contact / Quote pages */
.page-about,
.page-contact,
.page-quote {
  background: #15171c;
}

.about-stage,
.contact-stage,
.quote-stage {
  background: linear-gradient(180deg, #1b1d24 0%, #15171c 100%);
  color: #d8deea;
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.6rem);
}

.about-topline,
.contact-topline,
.quote-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.about-brand,
.contact-brand,
.quote-brand {
  text-decoration: none;
  color: #eef2fa;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-nav,
.contact-nav,
.quote-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1rem;
}

.about-nav a,
.contact-nav a,
.quote-nav a {
  text-decoration: none;
  color: rgba(229, 235, 246, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-nav a:hover,
.about-nav a:focus-visible,
.contact-nav a:hover,
.contact-nav a:focus-visible,
.quote-nav a:hover,
.quote-nav a:focus-visible {
  text-decoration: underline;
}

.about-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 2vw, 1.9rem);
  align-items: start;
}

.about-kicker,
.contact-kicker,
.quote-kicker {
  color: rgba(222, 228, 240, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-title,
.contact-title,
.quote-title {
  margin-top: 0.42rem;
  color: #e5eaf5;
  font-size: clamp(2.5rem, 9.4vw, 8.6rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.about-title span,
.contact-title span,
.quote-title span {
  display: block;
}

.about-intro {
  border: 1px solid rgba(229, 234, 246, 0.2);
  background: rgba(229, 234, 246, 0.04);
  padding: clamp(0.72rem, 1.3vw, 1rem);
  display: grid;
  gap: 0.85rem;
}

.about-intro p,
.contact-lead,
.quote-lead {
  color: rgba(221, 227, 239, 0.82);
  font-size: clamp(0.94rem, 1.16vw, 1.1rem);
  line-height: 1.55;
}

.about-intro a,
.quote-mail {
  width: max-content;
  color: #fa2a55;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-intro a:hover,
.about-intro a:focus-visible,
.quote-mail:hover,
.quote-mail:focus-visible {
  text-decoration: underline;
}

.about-method {
  background: #ececea;
  color: #18191d;
}

.about-method-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.about-method-head h2,
.quote-scope-head h2 {
  font-size: clamp(2rem, 6.8vw, 5.7rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.about-method-head p {
  max-width: 28rem;
  color: #3a3e46;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-method-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.about-step {
  border: 1px solid rgba(24, 25, 29, 0.2);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.75rem;
  min-height: 13.6rem;
}

.about-step-index {
  color: #565a64;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-step h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-step p {
  margin-top: 0.48rem;
  color: #3a3e46;
  font-size: 0.86rem;
  line-height: 1.46;
}

.about-footer {
  background: linear-gradient(180deg, #16181e 0%, #101116 100%);
  color: #d8deea;
}

.about-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.7fr) minmax(0, 0.9fr);
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
  align-items: start;
}

.about-mantra {
  color: rgba(227, 233, 246, 0.9);
  font-size: clamp(1.45rem, 4vw, 3.1rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.about-links a {
  color: rgba(224, 230, 242, 0.86);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-links a:hover,
.about-links a:focus-visible {
  text-decoration: underline;
}

.about-mail a {
  color: #fa2a55;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.82rem, 1.2vw, 1.12rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-mail a:hover,
.about-mail a:focus-visible {
  text-decoration: underline;
}

.contact-stage {
  background:
    radial-gradient(circle at 82% 18%, rgba(250, 42, 85, 0.2) 0%, rgba(250, 42, 85, 0) 40%),
    linear-gradient(180deg, #1b1d24 0%, #15171c 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.contact-card {
  border: 1px solid rgba(229, 234, 246, 0.2);
  background: rgba(229, 234, 246, 0.04);
  padding: clamp(0.75rem, 1.3vw, 1rem);
}

.contact-mail {
  margin-top: 0.24rem;
  display: inline-block;
  color: #fa2a55;
  text-decoration: none;
  font-size: clamp(1rem, 1.85vw, 1.5rem);
  line-height: 1;
  letter-spacing: -0.015em;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  text-decoration: underline;
}

.contact-lines {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.55rem;
}

.contact-lines p {
  color: rgba(224, 230, 242, 0.82);
  font-size: 0.86rem;
  line-height: 1.42;
}

.contact-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-actions a {
  text-decoration: none;
  border: 1px solid rgba(229, 234, 246, 0.24);
  color: rgba(229, 234, 246, 0.9);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.48rem;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  background: #fa2a55;
  color: #15171c;
}

.contact-band {
  background: #ececea;
}

.contact-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.contact-option {
  border: 1px solid rgba(24, 25, 29, 0.2);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.72rem;
  min-height: 12.6rem;
}

.contact-option-index {
  color: #565a64;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-option h2 {
  margin-top: 0.35rem;
  color: #16181d;
  font-size: clamp(1.16rem, 2.3vw, 1.88rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-option p {
  margin-top: 0.45rem;
  color: #3a3e46;
  font-size: 0.86rem;
  line-height: 1.45;
}

.contact-footer {
  background: #111319;
  color: #d8deea;
  min-height: 26vh;
  display: grid;
  align-content: center;
}

.contact-mantra {
  color: rgba(224, 230, 242, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-stage {
  background:
    radial-gradient(circle at 82% 16%, rgba(250, 42, 85, 0.2) 0%, rgba(250, 42, 85, 0) 40%),
    linear-gradient(180deg, #1b1d24 0%, #15171c 100%);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.quote-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

.quote-package {
  border: 1px solid rgba(229, 234, 246, 0.2);
  background: rgba(229, 234, 246, 0.04);
  padding: 0.66rem;
  min-height: 14.4rem;
}

.quote-package-accent {
  background: #fa2a55;
  border-color: rgba(255, 255, 255, 0.44);
}

.quote-package-name {
  color: rgba(224, 230, 242, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quote-package h2 {
  margin-top: 0.34rem;
  color: #eef2fb;
  font-size: clamp(1.14rem, 2.15vw, 1.75rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.quote-package p {
  margin-top: 0.45rem;
  color: rgba(224, 230, 242, 0.78);
  font-size: 0.84rem;
  line-height: 1.42;
}

.quote-package-accent .quote-package-name,
.quote-package-accent h2,
.quote-package-accent p {
  color: #15171c;
}

.quote-scope {
  background: #ececea;
}

.quote-scope-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.quote-scope-item {
  border: 1px solid rgba(24, 25, 29, 0.2);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.72rem;
  min-height: 11.5rem;
}

.quote-scope-item p:last-child {
  margin-top: 0.32rem;
  color: #3a3e46;
  font-size: 0.86rem;
  line-height: 1.42;
}

.quote-footer {
  background: #111319;
  color: #d8deea;
  min-height: 26vh;
  display: grid;
  align-content: center;
}

.quote-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.quote-send {
  text-decoration: none;
  border: 1px solid rgba(229, 234, 246, 0.24);
  color: rgba(229, 234, 246, 0.9);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 0.62rem;
}

.quote-send:hover,
.quote-send:focus-visible {
  background: #fa2a55;
  color: #15171c;
}

@media (max-width: 1100px) {
  .about-stage-grid,
  .contact-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .about-method-grid,
  .contact-option-grid,
  .quote-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-packages {
    grid-template-columns: 1fr;
  }

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

  .about-mail {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .about-topline,
  .contact-topline,
  .quote-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .about-nav,
  .contact-nav,
  .quote-nav {
    justify-content: flex-start;
    gap: 0.45rem 0.72rem;
  }

  .about-nav a,
  .contact-nav a,
  .quote-nav a {
    font-size: 0.6rem;
  }

  .about-title,
  .contact-title,
  .quote-title {
    font-size: clamp(2.2rem, 14vw, 4.6rem);
    line-height: 0.84;
  }

  .about-intro p,
  .contact-lead,
  .quote-lead {
    font-size: clamp(0.88rem, 4vw, 0.98rem);
    line-height: 1.48;
  }

  .about-method-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-method-grid,
  .contact-option-grid,
  .quote-scope-grid,
  .about-footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* about.html redesign */
.page-about.page-about-rebuild {
  background: #ffffff;
  color: #17191d;
}

.page-about-rebuild .scroll-nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(18, 20, 24, 0.16);
}

.page-about-rebuild .scroll-nav-dropdown {
  background: rgba(255, 255, 255, 0.98);
}

.about-rebuild-main {
  background: #ffffff;
}

.about-rebuild-hero,
.about-rebuild-process,
.about-rebuild-footer {
  background: #ffffff;
  color: #17191d;
}

.about-rebuild-hero,
.about-rebuild-process {
  border-bottom: 1px solid rgba(18, 20, 24, 0.12);
}

.about-rebuild-hero-grid {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1rem, 2.3vw, 2rem);
  align-items: stretch;
}

.about-rebuild-copy {
  max-width: 48rem;
  display: grid;
  align-content: center;
}

.about-rebuild-kicker {
  color: rgba(29, 32, 39, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-rebuild-title {
  margin-top: 0.4rem;
  color: #14161b;
  font-size: clamp(2.7rem, 8.8vw, 8.1rem);
  line-height: 0.83;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.about-rebuild-title span {
  display: block;
}

.about-rebuild-lead {
  margin-top: 1rem;
  max-width: 36rem;
  color: #2a2e36;
  font-size: clamp(0.98rem, 1.22vw, 1.18rem);
  line-height: 1.56;
}

.about-rebuild-cta {
  margin-top: 1.1rem;
  width: max-content;
  color: #14161b;
  text-decoration: none;
  border: 1px solid rgba(20, 22, 27, 0.26);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.34rem 0.52rem;
}

.about-rebuild-cta:hover,
.about-rebuild-cta:focus-visible {
  background: #14161b;
  color: #ffffff;
}

.about-rebuild-panel {
  min-height: 0;
  display: grid;
  align-content: stretch;
  gap: 0.62rem;
  padding-left: clamp(0.6rem, 1.3vw, 1rem);
  border-left: 1px solid rgba(18, 20, 24, 0.14);
}

.about-rebuild-note {
  border: 1px solid rgba(18, 20, 24, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f4 100%);
  padding: clamp(0.72rem, 1.25vw, 0.95rem);
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

.about-rebuild-note-label {
  color: rgba(30, 33, 40, 0.68);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-rebuild-note p:last-child {
  color: #262a31;
  font-size: clamp(0.9rem, 1.08vw, 1.04rem);
  line-height: 1.5;
}

.about-rebuild-process-head h2 {
  margin-top: 0.42rem;
  color: #14161b;
  font-size: clamp(2.25rem, 7.4vw, 6.5rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.about-rebuild-steps {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.about-rebuild-step {
  border: 1px solid rgba(18, 20, 24, 0.16);
  background: #fafbf9;
  min-height: 14rem;
  padding: 0.72rem;
}

.about-rebuild-step-index {
  color: rgba(30, 33, 40, 0.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-rebuild-step h3 {
  margin-top: 0.34rem;
  color: #14161b;
  font-size: clamp(1.18rem, 2.3vw, 1.9rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.about-rebuild-step p {
  margin-top: 0.44rem;
  color: #2d3239;
  font-size: 0.88rem;
  line-height: 1.46;
}

.about-rebuild-footer-grid {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.72fr) minmax(0, 0.92fr);
  align-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
}

.about-rebuild-footer .label {
  color: rgba(28, 31, 38, 0.7);
}

.about-rebuild-mantra {
  color: #181a1f;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-rebuild-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}

.about-rebuild-links a {
  color: #242830;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-rebuild-links a:hover,
.about-rebuild-links a:focus-visible {
  color: #fa2a55;
}

.about-rebuild-mail a {
  color: #181a1f;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.84rem, 1.2vw, 1.08rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-rebuild-mail a:hover,
.about-rebuild-mail a:focus-visible {
  color: #fa2a55;
}

@media (max-width: 1100px) {
  .about-rebuild-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-rebuild-panel {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(18, 20, 24, 0.14);
    padding-top: 0.82rem;
  }

  .about-rebuild-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-rebuild-mail {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .about-rebuild-title {
    font-size: clamp(2.2rem, 13.8vw, 4.8rem);
    line-height: 0.84;
  }

  .about-rebuild-lead {
    font-size: clamp(0.9rem, 4vw, 0.99rem);
    line-height: 1.5;
  }

  .about-rebuild-process-head h2 {
    font-size: clamp(2.1rem, 13.2vw, 4.7rem);
  }

  .about-rebuild-steps,
  .about-rebuild-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* about.html unique redesign */
.page-about.page-about-unique {
  background:
    radial-gradient(circle at 14% 8%, rgba(250, 42, 85, 0.12) 0%, rgba(250, 42, 85, 0) 40%),
    linear-gradient(180deg, #efefeb 0%, #e6e6e2 52%, #dadcda 100%);
  color: #17191d;
}

.about-unique-main {
  background: transparent;
}

.page-about-unique .scroll-nav {
  background: rgba(239, 239, 235, 0.94);
  border-bottom-color: rgba(18, 20, 24, 0.18);
}

.page-about-unique .scroll-nav-btn {
  color: #101215;
}

.page-about-unique .scroll-nav-dropdown {
  background: #ffffff;
  border-top-color: rgba(16, 18, 21, 0.62);
}

.page-about-unique .scroll-nav-dropdown a {
  color: #121419;
}

.about-unique-hero {
  background: transparent;
  border-bottom: 1px solid rgba(18, 20, 24, 0.15);
}

.about-unique-hero-grid {
  min-height: clamp(32rem, calc(86vh - 5.8rem), 48rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(0.9rem, 1.8vw, 1.45rem);
  align-items: stretch;
}

.about-unique-copy {
  border: 1px solid rgba(20, 24, 31, 0.16);
  background:
    radial-gradient(circle at 14% 10%, rgba(250, 42, 85, 0.1) 0%, rgba(250, 42, 85, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(238, 241, 246, 0.64) 100%);
  padding: clamp(0.82rem, 1.35vw, 1.1rem);
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.42rem;
  max-width: 54rem;
}

.about-unique-kicker {
  color: rgba(27, 30, 37, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-unique-title {
  margin-top: 0.4rem;
  color: #121419;
  font-size: clamp(2.9rem, 10.2vw, 9.8rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.about-unique-title span {
  display: block;
}

.about-unique-lead {
  margin-top: 0.75rem;
  max-width: 39rem;
  color: #2a2f38;
  font-size: clamp(0.96rem, 1.2vw, 1.16rem);
  line-height: 1.52;
}

.about-mode-switch {
  margin-top: 0.86rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 0.5rem;
}

.about-discover-grid {
  margin-top: 0.2rem;
}

.about-mode-btn {
  border: 1px solid rgba(20, 22, 27, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(238, 242, 248, 0.68) 100%);
  color: #1a1d24;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  min-height: 5.5rem;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.66rem 0.64rem;
  border-radius: 0.72rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 7px 16px rgba(20, 23, 31, 0.16);
  cursor: pointer;
  transition:
    transform 170ms cubic-bezier(0.22, 0.61, 0.36, 1),
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 170ms ease;
}

.about-mode-btn::after {
  content: "CLICK";
  color: rgba(24, 27, 34, 0.68);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
}

.about-mode-btn:hover,
.about-mode-btn:focus-visible,
.about-mode-btn.is-active {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #17191d 0%, #121419 100%);
  border-color: #17191d;
  color: #eceff6;
  box-shadow: 0 10px 18px rgba(17, 20, 26, 0.28);
}

.about-mode-btn:hover::after,
.about-mode-btn:focus-visible::after,
.about-mode-btn.is-active::after {
  color: rgba(236, 241, 248, 0.72);
}

.about-mode-btn.is-active::after {
  content: "ACTIVE";
}

.about-mode-card {
  border: 1px solid rgba(226, 232, 245, 0.26);
  background: linear-gradient(180deg, #171a20 0%, #0f1116 100%);
  color: #e8edf7;
  border-radius: 1rem;
  padding: clamp(0.86rem, 1.35vw, 1.12rem);
  box-shadow: 0 14px 26px rgba(6, 8, 12, 0.3);
  display: grid;
  align-content: stretch;
  gap: 0.7rem;
}

.about-mode-label {
  color: rgba(226, 232, 245, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

#aboutModeTitle {
  color: #eff3fb;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

#aboutModeCopy {
  color: rgba(225, 231, 242, 0.85);
  font-size: clamp(0.9rem, 1.1vw, 1.04rem);
  line-height: 1.5;
}

.about-mode-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.about-mode-points li {
  border-top: 1px solid rgba(228, 233, 245, 0.22);
  padding-top: 0.3rem;
  color: rgba(233, 238, 247, 0.9);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-mode-foot {
  margin-top: auto;
  border-top: 1px solid rgba(227, 233, 246, 0.2);
  padding-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.45rem;
}

.about-mode-foot p {
  color: rgba(225, 231, 242, 0.76);
  font-size: 0.82rem;
}

.about-mode-foot a {
  color: #f1f5fd;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-mode-foot a:hover,
.about-mode-foot a:focus-visible {
  color: #fa2a55;
}

.about-unique-compare {
  background: #0e1117;
  color: #e8edf6;
  border-bottom: 1px solid rgba(232, 237, 246, 0.14);
}

.about-compare-head h2 {
  margin-top: 0.42rem;
  font-size: clamp(2.2rem, 7vw, 6rem);
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.about-compare-head p:last-child {
  margin-top: 0.6rem;
  max-width: 44rem;
  color: rgba(228, 233, 245, 0.78);
  font-size: clamp(0.9rem, 1.1vw, 1.03rem);
  line-height: 1.5;
}

.about-compare-stage {
  --compare-position: 58%;
  --compare-num: 58;
  --template-power: 42;
  --custom-power: 58;
  position: relative;
  margin-top: 1rem;
  min-height: clamp(23rem, 48vw, 36rem);
  border: 1px solid rgba(229, 235, 246, 0.2);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  box-shadow: 0 18px 40px rgba(3, 6, 12, 0.34);
  transition: box-shadow 180ms ease;
}

.about-compare-stage.is-dragging {
  box-shadow: 0 24px 52px rgba(3, 6, 12, 0.46);
}

.about-compare-topbar {
  position: absolute;
  top: clamp(0.68rem, 1.2vw, 1rem);
  left: clamp(0.65rem, 1.05vw, 0.95rem);
  right: clamp(0.65rem, 1.05vw, 0.95rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  z-index: 4;
  pointer-events: none;
}

.about-compare-score {
  border: 1px solid rgba(228, 233, 245, 0.22);
  padding: 0.34rem 0.45rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
}

.about-compare-score-template {
  background: rgba(14, 18, 26, 0.62);
}

.about-compare-score-custom {
  background: rgba(250, 42, 85, 0.2);
}

.about-compare-score span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(234, 238, 247, 0.82);
}

.about-compare-score strong {
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #eef2fb;
}

.about-compare-layer {
  position: absolute;
  inset: 0;
  padding: clamp(3.2rem, 7.8vw, 4.4rem) clamp(0.8rem, 1.45vw, 1.15rem) clamp(0.8rem, 1.45vw, 1.15rem);
  display: grid;
  align-content: end;
  transition: transform 180ms ease, filter 180ms ease;
}

.about-compare-layer-template {
  position: relative;
  background: #ffffff;
  color: #111111;
  transform: none;
  clip-path: inset(0 0 0 var(--compare-position));
  filter: none;
  box-shadow: inset 0 0 0 1px #d8d8d8;
  z-index: 1;
}

.about-compare-layer-template::before {
  content: none;
}

.about-compare-layer-template::after {
  content: none;
}

.about-compare-layer-template > * {
  position: relative;
  z-index: 1;
}

.about-compare-layer-template .about-compare-label {
  font-family: "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #000000;
}

.about-compare-layer-template .about-compare-subtitle {
  max-width: none;
  color: #1a1a1a;
  line-height: 1.42;
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  opacity: 1;
  background: none;
  border-left: 0;
  padding: 0;
  transform: none;
}

.about-compare-layer-template ul {
  display: block;
  list-style: disc;
  margin: 0.95rem 0 0 1.2rem;
  padding: 0;
}

.about-compare-layer-custom {
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
  transform: none;
  z-index: 2;
}

.about-compare-layer-inner {
  position: absolute;
  inset: 0;
  padding: clamp(3.2rem, 7.8vw, 4.4rem) clamp(0.8rem, 1.45vw, 1.15rem) clamp(0.8rem, 1.45vw, 1.15rem);
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 84% 16%, rgba(250, 42, 85, 0.38) 0%, rgba(250, 42, 85, 0) 40%),
    linear-gradient(180deg, #1a1e27 0%, #11141b 72%, #0c0f15 100%);
  color: #edf2fb;
  filter: saturate(calc(0.7 + (var(--custom-power) / 125)));
}

.about-compare-label {
  color: inherit;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-compare-subtitle {
  margin-top: 0.45rem;
  max-width: 32rem;
  color: inherit;
  font-size: clamp(0.9rem, 1.06vw, 1.04rem);
  line-height: 1.46;
  opacity: 0.84;
}

.about-compare-stage ul {
  list-style: none;
  margin: 0.82rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.38rem 0.62rem;
}

.about-compare-stage li {
  font-size: clamp(0.92rem, 1.22vw, 1.2rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  white-space: normal;
  border-left: 2px solid transparent;
  padding-left: 0.45rem;
}

.about-compare-layer-template li {
  background: none;
  border-left: 0;
  color: #111111;
  box-shadow: none;
  opacity: 1;
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.42;
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  margin: 0 0 0.22rem;
}

.about-compare-layer-template li:nth-child(odd) {
  transform: none;
}

.about-compare-layer-template li:nth-child(even) {
  transform: none;
}

.about-compare-layer-template li:nth-child(3n) {
  letter-spacing: 0;
}

.about-compare-layer-custom li {
  background: rgba(233, 238, 248, 0.08);
  border-left-color: rgba(250, 42, 85, 0.72);
  opacity: calc(0.56 + (var(--custom-power) / 210));
}

.about-compare-handle {
  position: absolute;
  top: 50%;
  left: clamp(0.95rem, var(--compare-position), calc(100% - 0.95rem));
  transform: translate(-50%, -50%);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 234, 246, 0.62);
  background: #11141b;
  color: #edf2fb;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 3;
}

.about-compare-handle::before {
  content: "";
  position: absolute;
  top: -100vh;
  bottom: -100vh;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(250, 42, 85, 0.85);
}

.about-compare-handle span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: -0.04em;
}

.about-compare-control {
  margin-top: 0.8rem;
  display: inline-block;
  color: rgba(228, 233, 245, 0.74);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-compare-range {
  --compare-position: 58%;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 0.4rem;
  width: min(46rem, 100%);
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(205, 211, 221, 0.96) 0%,
      rgba(205, 211, 221, 0.96) var(--compare-position),
      rgba(250, 42, 85, 0.96) var(--compare-position),
      rgba(250, 42, 85, 0.96) 100%
    );
  outline: none;
}

.about-compare-range::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: transparent;
}

.about-compare-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 17, 24, 0.92);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(250, 42, 85, 0.24);
  margin-top: -6px;
}

.about-compare-range::-moz-range-track {
  height: 4px;
  background: transparent;
}

.about-compare-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 17, 24, 0.92);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(250, 42, 85, 0.24);
}

.about-compare-presets {
  margin-top: 0.58rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.about-compare-preset {
  border: 1px solid rgba(230, 235, 245, 0.28);
  background: rgba(230, 235, 245, 0.07);
  color: rgba(235, 239, 247, 0.86);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.34rem 0.52rem;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.about-compare-preset:hover,
.about-compare-preset:focus-visible,
.about-compare-preset.is-active {
  background: #fa2a55;
  border-color: rgba(255, 255, 255, 0.48);
  color: #111319;
}

.about-unique-footer {
  background: linear-gradient(180deg, #ececea 0%, #e2e2de 100%);
  color: #15171c;
}

.about-unique-footer-grid {
  min-height: calc(62vh - 4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  align-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
}

.about-unique-info-grid {
  margin-top: clamp(1rem, 2vw, 1.7rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.about-unique-info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(22, 24, 30, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 240, 246, 0.84) 100%);
  box-shadow:
    0 10px 22px rgba(18, 20, 26, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  padding: 0.84rem 0.86rem;
  min-height: 10.2rem;
  display: grid;
  align-content: start;
  gap: 0.5rem;
  transition:
    transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 180ms ease;
}

.about-unique-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #fa2a55;
  z-index: 0;
}

.about-unique-info-card::after {
  content: attr(data-card);
  position: absolute;
  right: 0.64rem;
  bottom: 0.48rem;
  z-index: 0;
  color: rgba(24, 27, 34, 0.1);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-unique-info-card:hover,
.about-unique-info-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(22, 24, 30, 0.34);
  box-shadow:
    0 16px 28px rgba(18, 20, 26, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.about-unique-info-card > * {
  position: relative;
  z-index: 1;
}

.about-unique-info-card:nth-child(1) {
  background:
    radial-gradient(circle at 90% 12%, rgba(250, 42, 85, 0.1) 0%, rgba(250, 42, 85, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 241, 247, 0.84) 100%);
}

.about-unique-info-card:nth-child(2) {
  background:
    radial-gradient(circle at 10% 86%, rgba(20, 25, 34, 0.08) 0%, rgba(20, 25, 34, 0) 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(236, 241, 245, 0.84) 100%);
}

.about-unique-info-card:nth-child(3) {
  background:
    radial-gradient(circle at 82% 18%, rgba(250, 42, 85, 0.08) 0%, rgba(250, 42, 85, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 240, 244, 0.86) 100%);
}

.about-unique-info-card:nth-child(4) {
  background:
    radial-gradient(circle at 16% 14%, rgba(18, 21, 27, 0.07) 0%, rgba(18, 21, 27, 0) 43%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 242, 246, 0.84) 100%);
}

.about-unique-info-label {
  color: rgba(24, 27, 34, 0.86);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-unique-info-copy {
  color: #1a1f28;
  font-size: clamp(0.88rem, 0.98vw, 0.98rem);
  line-height: 1.48;
}

.about-unique-mantra {
  font-size: clamp(1.55rem, 4.4vw, 3.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-unique-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.about-unique-links a {
  color: #242932;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-unique-links a:hover,
.about-unique-links a:focus-visible {
  color: #fa2a55;
}

.about-unique-mail {
  color: #15171c;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.84rem, 1.2vw, 1.08rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-unique-mail:hover,
.about-unique-mail:focus-visible {
  color: #fa2a55;
}

.about-unique-pink {
  background: #fa2a55;
  color: #121317;
}

.about-unique-pink-inner {
  border: 1px solid rgba(18, 20, 24, 0.34);
  background: #fa2a55;
  min-height: clamp(24rem, 48vw, 44rem);
  height: 100%;
}

.about-unique-pink .work-box {
  height: 100%;
}

.page-contact.page-contact-pink {
  background: #fa2a55;
}

.contact-pink-main {
  background: #fa2a55;
}

.page-contact-pink .scroll-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(18, 20, 24, 0.2);
}

.page-contact-pink .scroll-nav-dropdown {
  background: #ffffff;
  border-top-color: rgba(18, 20, 24, 0.62);
}

.page-contact-pink .scroll-nav-dropdown a {
  color: #13151a;
}

.contact-pink-stage {
  background: #fa2a55;
  color: #121317;
  min-height: clamp(18rem, 46vh, 30rem);
  padding-top: 1.15rem;
  padding-bottom: 1rem;
}

.contact-pink-inner {
  border: 1px solid rgba(18, 20, 24, 0.34);
  background: #fa2a55;
  min-height: clamp(14rem, 34vh, 24rem);
  height: 100%;
}

.contact-pink-inner .work-box {
  height: 100%;
}

.contact-pink-lead {
  margin-top: clamp(0.45rem, 1vw, 0.72rem);
  max-width: 52rem;
  color: rgba(19, 21, 27, 0.9);
  font-size: clamp(0.96rem, 1.22vw, 1.16rem);
  line-height: 1.5;
}

.contact-pink-meta {
  margin-top: clamp(0.6rem, 1.1vw, 0.85rem);
  padding-top: 0.55rem;
  border-top: 1px solid rgba(18, 20, 24, 0.28);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.contact-pink-meta .label {
  color: rgba(20, 22, 28, 0.72);
}

.contact-pink-meta p:last-child {
  color: rgba(20, 23, 30, 0.9);
  font-size: clamp(0.84rem, 0.98vw, 0.94rem);
  line-height: 1.4;
}

.contact-form-stage {
  background:
    linear-gradient(180deg, #13161d 0%, #0f1117 100%);
  color: #e8edf7;
  border-top: 1px solid rgba(233, 238, 248, 0.14);
  min-height: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.contact-form-shell {
  width: min(94rem, 100%);
  margin: 0 auto;
}

.contact-form-kicker {
  color: rgba(232, 237, 247, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form-title {
  margin-top: 0.45rem;
  color: #edf2fb;
  font-size: clamp(1.65rem, 5.6vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  max-width: 100%;
  text-wrap: balance;
}

.contact-sentence-form {
  margin-top: 1.1rem;
  border: 1px solid rgba(231, 236, 247, 0.18);
  background:
    radial-gradient(circle at 92% 10%, rgba(250, 42, 85, 0.22) 0%, rgba(250, 42, 85, 0) 46%),
    linear-gradient(180deg, rgba(233, 238, 248, 0.06) 0%, rgba(233, 238, 248, 0.02) 100%);
  padding: clamp(0.95rem, 1.8vw, 1.5rem);
  display: grid;
  gap: clamp(0.76rem, 1.25vw, 1rem);
}

.contact-sentence-line {
  margin: 0;
  color: rgba(231, 237, 248, 0.86);
  font-size: clamp(1.05rem, 1.65vw, 1.5rem);
  line-height: 1.46;
  letter-spacing: -0.01em;
}

.contact-sentence-line label {
  display: inline-block;
  min-width: 10rem;
  margin: 0 0.18rem;
}

.contact-sentence-line input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(233, 238, 248, 0.5);
  background: transparent;
  color: #f5f8ff;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1rem, 1.56vw, 1.3rem);
  line-height: 1.3;
  padding: 0.08rem 0.02rem;
}

.contact-sentence-line input::placeholder {
  color: rgba(230, 236, 247, 0.48);
}

.contact-sentence-line input:focus-visible {
  outline: none;
  border-bottom-color: #fa2a55;
}

.contact-intent-group {
  margin: 0;
  border: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-type-group {
  margin: 0;
  border: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-type-group legend {
  margin-bottom: 0.45rem;
  color: rgba(233, 238, 248, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-intent-group legend {
  margin-bottom: 0.45rem;
  color: rgba(230, 236, 247, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-intent-chip {
  position: relative;
  cursor: pointer;
}

.contact-intent-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-intent-chip span {
  display: inline-block;
  border: 1px solid rgba(231, 236, 247, 0.24);
  padding: 0.35rem 0.58rem;
  color: rgba(231, 236, 247, 0.88);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.contact-intent-chip input:checked + span,
.contact-intent-chip:hover span,
.contact-intent-chip:focus-within span {
  background: #fa2a55;
  color: #111319;
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-budget-note {
  margin: 0;
  color: rgba(228, 234, 246, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.45;
}

.contact-message-field {
  color: rgba(230, 236, 247, 0.86);
  font-size: clamp(0.9rem, 1.06vw, 1rem);
  line-height: 1.36;
}

.contact-sentence-form textarea {
  margin-top: 0.45rem;
  width: 100%;
  border: 1px solid rgba(231, 236, 247, 0.26);
  background: rgba(8, 10, 15, 0.38);
  color: #f2f6fe;
  font-family: "Archivo", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.42;
  padding: 0.56rem 0.62rem;
  resize: vertical;
  min-height: 7.5rem;
}

.contact-sentence-form textarea::placeholder {
  color: rgba(228, 234, 246, 0.46);
}

.contact-sentence-form textarea:focus-visible {
  outline: 1px solid #fa2a55;
  outline-offset: 0;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.95rem;
}

.contact-send-btn {
  border: 1px solid rgba(231, 236, 247, 0.32);
  background: #fa2a55;
  color: #111319;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.42rem 0.68rem;
  cursor: pointer;
}

.contact-send-btn:disabled {
  opacity: 0.65;
  cursor: default;
}

.contact-send-btn:hover,
.contact-send-btn:focus-visible {
  filter: brightness(0.95);
}

.contact-form-actions a {
  color: rgba(232, 237, 247, 0.78);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-actions a:hover,
.contact-form-actions a:focus-visible {
  color: #fa2a55;
}

.contact-form-status {
  margin: 0;
  color: rgba(231, 236, 247, 0.75);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  min-height: 1.1rem;
}

.contact-form-status.is-success {
  color: #7ff3b0;
}

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

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-page-footer {
  margin-top: auto;
  border-top: 1px solid rgba(231, 236, 247, 0.2);
  padding-top: 0.9rem;
  padding-bottom: max(0.95rem, env(safe-area-inset-bottom, 0px));
}

.contact-page-footer-grid {
  width: min(94rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.9rem;
}

.contact-page-footer-mail {
  display: inline-block;
  margin-top: 0.34rem;
  text-decoration: none;
  color: #edf2fb;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.84rem, 1.08vw, 1.02rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(237, 242, 251, 0.36);
  padding-bottom: 0.08rem;
}

.contact-page-footer-mail:hover,
.contact-page-footer-mail:focus-visible {
  color: #fa2a55;
  border-bottom-color: #fa2a55;
  outline: none;
}

.contact-page-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.42rem;
}

.contact-page-footer-links a {
  text-decoration: none;
  color: rgba(232, 237, 247, 0.9);
  border: 1px solid rgba(232, 237, 247, 0.28);
  padding: 0.3rem 0.45rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1;
}

.contact-page-footer-links a:hover,
.contact-page-footer-links a:focus-visible {
  color: #ffffff;
  border-color: rgba(250, 42, 85, 0.92);
  background: rgba(250, 42, 85, 0.2);
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  position: relative;
  z-index: 8;
  background: #0f1117;
  color: #e8edf7;
  border-top: 1px solid rgba(231, 236, 247, 0.18);
  padding: 0.85rem clamp(0.9rem, 2.2vw, 1.4rem);
}

.site-footer-grid {
  width: min(94rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
}

.site-footer-brand {
  margin: 0;
  color: rgba(236, 241, 249, 0.86);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.36rem;
}

.site-footer-links a {
  text-decoration: none;
  color: rgba(232, 237, 247, 0.9);
  border: 1px solid rgba(232, 237, 247, 0.24);
  padding: 0.28rem 0.42rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #ffffff;
  border-color: rgba(250, 42, 85, 0.92);
  background: rgba(250, 42, 85, 0.22);
  outline: none;
}

.page-home .panel-hero {
  min-height: auto;
  overflow: visible;
  padding-bottom: clamp(0.8rem, 2.2vw, 1.3rem);
}

.page-home .panel-hero .hero-layout {
  min-height: auto;
}

.page-home .hero-left {
  min-height: 0;
}

.page-home .hero-bottom {
  margin-top: clamp(1rem, 2.6vw, 1.6rem);
}

.page-status {
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 44%),
    radial-gradient(circle at 82% 78%, rgba(218, 221, 228, 0.44) 0%, rgba(218, 221, 228, 0) 45%),
    linear-gradient(150deg, #efefec 0%, #e5e5e3 44%, #d9d9d7 100%);
  color: var(--text-dark);
}

.status-main {
  width: min(1020px, 94vw);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(1rem, 2.4vw, 1.8rem) 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: clamp(0.8rem, 2.2vw, 1.4rem);
}

.status-back-link {
  justify-self: start;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(24, 25, 29, 0.8);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
}

.status-back-link:hover,
.status-back-link:focus-visible {
  color: #fa2a55;
  border-bottom-color: #fa2a55;
}

.status-card {
  border: 1px solid rgba(24, 25, 29, 0.16);
  background: rgba(237, 237, 235, 0.92);
  backdrop-filter: blur(8px);
  padding: clamp(1.2rem, 4vw, 3rem);
  display: grid;
  gap: clamp(0.9rem, 2.2vw, 1.4rem);
  box-shadow: 0 22px 48px rgba(24, 25, 29, 0.14);
  align-self: center;
}

.status-kicker {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(24, 25, 29, 0.62);
}

.status-title {
  margin: 0;
  font-size: clamp(2rem, 10.8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.status-copy {
  margin: 0;
  max-width: 44rem;
  font-size: clamp(1rem, 2vw, 1.38rem);
  line-height: 1.4;
  font-weight: 500;
  color: rgba(24, 25, 29, 0.86);
}

.status-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.status-links a {
  text-decoration: none;
  border: 1px solid rgba(24, 25, 29, 0.22);
  padding: 0.44rem 0.62rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.status-links a:hover,
.status-links a:focus-visible {
  color: #fa2a55;
  border-color: #fa2a55;
}

@media (max-width: 1100px) {
  .about-unique-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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

  .about-mode-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.36rem;
  }

  .about-mode-btn {
    min-width: 0;
  }

  .about-mode-card {
    min-height: auto;
  }

  .about-unique-footer-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .about-unique-footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .about-unique-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-compare-topbar {
    grid-template-columns: 1fr;
    gap: 0.34rem;
  }

  .about-compare-layer,
  .about-compare-layer-inner {
    padding-top: clamp(4.5rem, 12vw, 5.8rem);
  }
}

@media (max-width: 640px) {
  .status-main {
    width: min(1060px, 92vw);
  }

  .status-card {
    padding: clamp(1rem, 5vw, 1.5rem);
  }

  .status-title {
    font-size: clamp(1.9rem, 12vw, 3.4rem);
  }

  .status-copy {
    font-size: clamp(0.96rem, 4vw, 1.05rem);
  }

  .about-unique-title {
    font-size: clamp(2.2rem, 13.5vw, 4.9rem);
    line-height: 0.84;
  }

  .about-unique-lead {
    font-size: clamp(0.88rem, 4vw, 0.98rem);
    line-height: 1.5;
  }

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

  .about-compare-head h2 {
    font-size: clamp(2rem, 12.5vw, 4.7rem);
  }

  .about-compare-stage li {
    font-size: clamp(0.86rem, 3.6vw, 1rem);
    line-height: 1.18;
  }

  .about-compare-stage ul {
    grid-template-columns: 1fr;
  }

  .about-compare-score strong {
    font-size: 0.82rem;
  }

  .about-compare-presets {
    gap: 0.34rem;
  }

  .about-compare-preset {
    flex: 1 1 auto;
    text-align: center;
    min-width: 5.8rem;
  }

  .about-unique-info-grid,
  .contact-pink-meta {
    grid-template-columns: 1fr;
  }

  .contact-form-title {
    max-width: none;
  }

  .contact-sentence-line {
    font-size: clamp(0.95rem, 4.1vw, 1.08rem);
    line-height: 1.5;
  }

  .contact-sentence-line label {
    min-width: 7.8rem;
    margin: 0 0.12rem;
  }

  .contact-sentence-line input {
    font-size: clamp(0.9rem, 3.8vw, 1rem);
  }

  .contact-intent-group {
    gap: 0.35rem;
  }

  .contact-type-group {
    gap: 0.35rem;
  }

  .contact-intent-chip span {
    font-size: 0.58rem;
  }

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

/* Cross-device stability improvements */
img,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

.panel {
  min-height: 100svh;
}

@media (max-width: 1366px) {
  .scroll-nav-brand {
    padding-left: clamp(0rem, 2vw, 0.8rem);
  }

  .scroll-nav-right {
    padding-right: clamp(0rem, 2.2vw, 0.8rem);
  }

  .hero-layout {
    gap: 1.2rem;
  }

  .hero-mail-title {
    font-size: clamp(2.3rem, 9vw, 8.8rem);
  }
}

@media (max-width: 900px) {
  .scroll-nav-percent {
    display: none;
  }

  .scroll-nav-content {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .scroll-nav-right {
    gap: 0.45rem;
  }

  .production-info-bar {
    grid-template-columns: 1fr;
  }

  .mini-menu-wrap,
  .mini-menu-column {
    width: 100%;
    align-items: flex-start;
  }

  .mini-menu {
    width: min(18rem, 100%);
  }

  .hero-bottom {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .contact-sentence-line label {
    display: block;
    min-width: 0;
    margin: 0.18rem 0 0;
  }

  .contact-sentence-line input {
    width: 100%;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-onepage-right {
    padding: 0.45rem;
  }
}

@media (max-height: 820px) {
  .page-work-single {
    overflow-y: auto;
  }

  .page-work-single .site-main {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    display: block;
  }

  .work-onepage {
    height: auto;
    min-height: calc(100svh - var(--progress-height));
    overflow: visible;
  }

  .work-onepage-layout {
    height: auto;
    min-height: 0;
  }

  .work-onepage-right-box {
    min-height: clamp(20rem, 62svh, 34rem);
  }
}

/* Mobile/index/contact refinements requested */
@media (max-width: 1100px) {
  .panel-production {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0.95rem;
    padding-bottom: 0.85rem;
  }

  .project-strip {
    transform: none;
    margin-top: 0.2rem;
  }
}

@media (max-width: 640px) {
  .scroll-nav,
  .scroll-nav.global-scroll-nav {
    padding-top: calc(0.24rem + env(safe-area-inset-top, 0px));
  }

  .panel-production {
    gap: 0.75rem;
    padding-top: calc(0.95rem + env(safe-area-inset-top, 0px));
  }

  .production-title {
    margin-top: 0;
    text-align: left;
    font-size: clamp(1.95rem, 12.6vw, 4.2rem);
    line-height: 0.9;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05),
      0 5px 10px rgba(0, 0, 0, 0.18);
  }

  .production-info-bar {
    margin-top: 0;
    padding-top: 0.62rem;
  }

  .strip-track {
    transform: none;
  }
}

.contact-pink-stage {
  min-height: 0;
  height: auto;
  padding-bottom: 0.45rem;
}

.contact-pink-inner {
  min-height: 0;
  height: auto;
}

@media (max-width: 640px) {
  .contact-pink-stage {
    padding-top: 0.82rem;
    padding-bottom: 0.3rem;
  }

  .contact-pink-inner {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .project-strip {
    overflow: hidden;
    width: calc(100% + 1.5rem + env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px));
    margin-left: calc(-0.75rem - env(safe-area-inset-left, 0px));
    margin-right: calc(-0.75rem - env(safe-area-inset-right, 0px));
  }

  .strip-track {
    width: 100%;
    min-width: 0;
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
    padding-left: calc(0.75rem + env(safe-area-inset-left, 0px));
    padding-right: calc(0.75rem + env(safe-area-inset-right, 0px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.3rem, 1.8vw, 0.55rem);
  }

  .tile {
    min-height: 0;
    aspect-ratio: 1 / 0.62;
  }

  .strip-track .tile:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 640px) {
  /* Cleaner mobile overview */
  .plus,
  .mini-scroll {
    display: none;
  }

  .production-info-right {
    display: flex;
    justify-content: flex-start;
    padding-right: 0;
  }

  .production-info-bar {
    border-top: 0;
    padding-top: 0.4rem;
    gap: 0.62rem;
  }

  .production-copy {
    margin-top: 0.34rem;
    max-width: none;
  }

  .production-title {
    font-size: clamp(1.58rem, 10.4vw, 2.5rem);
    line-height: 0.92;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .production-title span {
    white-space: normal;
  }

  .hero-info-grid {
    gap: 0.62rem;
  }

  .hero-info-grid > div {
    border: 1px solid rgba(24, 25, 29, 0.18);
    background: rgba(245, 245, 243, 0.64);
    padding: 0.5rem 0.58rem;
  }

  .hero-bottom {
    margin-top: 1.15rem;
  }

  .hero-mail-title {
    font-size: clamp(2.45rem, 14.5vw, 5rem);
    line-height: 0.88;
  }

  .hero-mail-cta {
    font-size: 0.38em;
  }

  /* Extend pink section so black does not show too early */
  .contact-pink-main {
    background: #fa2a55;
  }

  .contact-pink-stage {
    min-height: calc(100svh - 3.2rem);
    padding-bottom: 1.2rem;
  }

  .contact-pink-inner {
    min-height: clamp(18rem, 56svh, 32rem);
  }
}

@media (max-width: 900px) {
  .panel.panel-production {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100svh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.72rem;
    padding-bottom: 0;
  }

  .production-title {
    margin-top: 0;
    width: 100%;
    text-align: left;
    font-size: clamp(2.6rem, 12.8vw, 5.45rem);
    line-height: 0.86;
    overflow-wrap: anywhere;
  }

  .production-title span {
    white-space: normal;
    text-wrap: balance;
  }

  .production-info-bar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
    min-height: clamp(18rem, 42vh, 26rem);
    grid-template-columns: 1fr;
    gap: 0.78rem;
    border-top: 0;
    padding: 1.06rem;
    border: 1px solid rgba(230, 233, 240, 0.2);
    background: rgba(17, 19, 24, 0.56);
    backdrop-filter: blur(4px);
  }

  .production-info-left {
    padding-left: 0;
  }

  .production-kicker {
    font-size: 0.72rem;
    color: rgba(242, 243, 246, 0.92);
  }

  .production-copy {
    opacity: 1;
    transform: none;
    max-height: none;
    overflow: visible;
    margin-top: 0.5rem;
    max-width: none;
    font-size: clamp(1.04rem, 2.65vw, 1.2rem);
    line-height: 1.5;
    letter-spacing: 0;
  }

  .production-info-right {
    justify-content: flex-start;
    padding-right: 0;
    border-top: 1px solid rgba(230, 233, 240, 0.2);
    padding-top: 0.56rem;
  }

  .mini-menu-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.36rem;
    width: 100%;
  }

  .mini-menu-column {
    width: 100%;
    align-items: flex-start;
  }

  .mini-menu {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding-top: 0.28rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem 0.46rem;
    text-align: left;
  }

  .mini-menu-btn {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(242, 243, 246, 0.9);
  }

  .mini-menu a {
    border: 1px solid rgba(232, 236, 244, 0.24);
    padding: 0.28rem 0.46rem;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    color: rgba(245, 247, 251, 0.92);
  }

  .panel-hero .hero-layout {
    min-height: calc(100svh - 2rem);
    height: 100%;
    margin-top: 0;
    grid-template-rows: 1fr;
    align-items: stretch;
  }

  .hero-left {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
    gap: 0.88rem;
  }

  .hero-info-grid > div {
    padding: 0.74rem 0.78rem;
  }

  .hero-bottom {
    margin-top: auto;
    padding-top: 0.8rem;
    padding-bottom: calc(0.35rem + env(safe-area-inset-bottom, 0px));
  }

  .hero-reachout {
    margin: 0 0 0.32rem;
    font-size: 0.6rem;
    letter-spacing: 0.13em;
    color: rgba(23, 25, 31, 0.58);
  }

  .hero-mail-title {
    margin-left: 0;
    font-size: clamp(2.6rem, 12.8vw, 5.45rem);
    line-height: 0.86;
  }

  .hero-mail-text {
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .hero-mail-cta {
    font-size: 0.31em;
    margin-left: 0.1em;
  }

  .panel-culture {
    position: relative;
    z-index: 2;
  }

  .panel-hero {
    position: relative;
    z-index: 3;
  }

  .project-strip {
    transform: none;
    margin-top: 0.62rem;
    overflow: hidden;
    background: #fa2a55;
    margin-bottom: 0;
  }

  .strip-track {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.32rem, 1.2vw, 0.58rem);
    padding-top: 0.82rem;
    padding-right: 0.82rem;
    padding-left: 0.82rem;
    padding-bottom: calc(0.82rem + env(safe-area-inset-bottom, 0px));
    transform: none;
  }

  .tile {
    min-height: 0;
    aspect-ratio: 1 / 0.42;
  }

  .strip-track .tile:nth-child(n + 4) {
    display: none;
  }

  .strip-showroom {
    right: 0.7rem;
    bottom: 0.6rem;
    font-size: 0.56rem;
  }

  .contact-pink-main {
    background: #fa2a55;
  }

  .contact-pink-stage {
    min-height: auto;
    height: auto;
    padding-top: 0.9rem;
    padding-bottom: 0.8rem;
  }

  .contact-pink-inner {
    min-height: 0;
    height: auto;
  }

  .contact-pink-inner .work-box {
    height: auto;
  }
}

@media (max-width: 760px) {
  .page-home .panel-hero {
    padding-bottom: 0.74rem;
  }

  .page-home .panel-hero .hero-layout {
    min-height: auto;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.56rem;
  }

  .site-footer-links {
    justify-content: flex-start;
  }

  .contact-page-footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.72rem;
  }

  .contact-page-footer-links {
    justify-content: flex-start;
  }
}
