:root {
  --black: #040404;
  --ink: #0c0c0e;
  --white: #f7f7f3;
  --muted: #b7b7b0;
  --line: rgba(255, 255, 255, 0.16);
  --logo-teal: #14e8c5;
  --logo-blue: #18a8ff;
  --logo-royal: #2b65ff;
  --logo-green: #50f07d;
  --logo-gold: #ffdc1f;
  --logo-orange: #ff7a18;
  --logo-navy: #07143f;
  --cyan: var(--logo-teal);
  --yellow: var(--logo-gold);
  --violet: var(--logo-orange);
  --panel: #111115;
  --panel-light: #f2f1ea;
  --max: 1280px;
  --motion-gradient: linear-gradient(90deg, #ff6b19 0%, #ff941f 4%, #ffd338 8%, #96ee5f 13%, #1fe8cb 18%, #16b7ff 23%, #2d66ff 28%, #16b7ff 33%, #1fe8cb 38%, #96ee5f 43%, #ffd338 47%, #ff6b19 50%, #ff941f 54%, #ffd338 58%, #96ee5f 63%, #1fe8cb 68%, #16b7ff 73%, #2d66ff 78%, #16b7ff 83%, #1fe8cb 88%, #96ee5f 93%, #ffd338 97%, #ff6b19 100%);
  --motion-gradient-soft: linear-gradient(90deg, rgba(255, 107, 25, 0.84) 0%, rgba(255, 148, 31, 0.82) 4%, rgba(255, 211, 56, 0.78) 8%, rgba(150, 238, 95, 0.72) 13%, rgba(31, 232, 203, 0.8) 18%, rgba(22, 183, 255, 0.8) 23%, rgba(45, 102, 255, 0.76) 28%, rgba(22, 183, 255, 0.8) 33%, rgba(31, 232, 203, 0.8) 38%, rgba(150, 238, 95, 0.72) 43%, rgba(255, 211, 56, 0.78) 47%, rgba(255, 107, 25, 0.84) 50%, rgba(255, 148, 31, 0.82) 54%, rgba(255, 211, 56, 0.78) 58%, rgba(150, 238, 95, 0.72) 63%, rgba(31, 232, 203, 0.8) 68%, rgba(22, 183, 255, 0.8) 73%, rgba(45, 102, 255, 0.76) 78%, rgba(22, 183, 255, 0.8) 83%, rgba(31, 232, 203, 0.8) 88%, rgba(150, 238, 95, 0.72) 93%, rgba(255, 211, 56, 0.78) 97%, rgba(255, 107, 25, 0.84) 100%);
  --motion-background-size: 200% 100%;
  --motion-duration-fast: 8s;
  --motion-duration: 12s;
  --motion-duration-slow: 18s;
  --motion-glow: rgba(24, 168, 255, 0.18);
  --motion-glow-soft: rgba(24, 168, 255, 0.08);
}

:root[data-palette="classic"] {
  --cyan: #23f0d0;
  --yellow: #ffe900;
  --violet: #8c35ff;
  --motion-gradient: linear-gradient(90deg, var(--cyan) 0%, var(--yellow) 15%, var(--violet) 32%, var(--cyan) 50%, var(--yellow) 65%, var(--violet) 82%, var(--cyan) 100%);
  --motion-gradient-soft: var(--motion-gradient);
  --motion-background-size: 200% 100%;
  --motion-glow: rgba(35, 240, 208, 0.18);
  --motion-glow-soft: rgba(35, 240, 208, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  color-scheme: dark;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.text-link {
  color: var(--cyan);
  font-weight: 900;
  text-decoration-color: rgba(20, 232, 197, 0.45);
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
  text-decoration-color: var(--yellow);
}

.links-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 168, 255, 0.18), transparent 30%),
    radial-gradient(circle at 42% 84%, rgba(20, 232, 197, 0.12), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(255, 122, 24, 0.18), transparent 28%),
    linear-gradient(135deg, #020202, #09090a 50%, #030303);
}

.links-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 5vw, 64px);
}

.links-card {
  position: relative;
  isolation: isolate;
  width: min(720px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 18% 10%, rgba(24, 168, 255, 0.1), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(255, 122, 24, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 10, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.links-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 4px;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  animation: button-sheen var(--motion-duration) linear infinite;
  will-change: background-position;
}

.links-home {
  position: relative;
  isolation: isolate;
  display: block;
  width: min(310px, 76%);
  margin: 0 auto;
  background: url("assets/studio-genki-logo-white-720.png") center / contain no-repeat;
  transition: transform 160ms ease, filter 160ms ease;
}

.links-home img {
  width: 100%;
  filter: drop-shadow(0 0 18px rgba(20, 232, 197, 0.08));
}

.links-home::after,
.links-mythictale::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: center / contain no-repeat;
  filter: brightness(1.9) contrast(1.08) saturate(1.22);
  -webkit-mask-image: linear-gradient(108deg, transparent 0 38%, rgba(0, 0, 0, 0.34) 44%, #000 50%, rgba(0, 0, 0, 0.38) 56%, transparent 64% 100%);
  mask-image: linear-gradient(108deg, transparent 0 38%, rgba(0, 0, 0, 0.34) 44%, #000 50%, rgba(0, 0, 0, 0.38) 56%, transparent 64% 100%);
  -webkit-mask-position: -145% 0;
  mask-position: -145% 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 240% 100%;
  mask-size: 240% 100%;
  mix-blend-mode: plus-lighter;
  will-change: mask-position, -webkit-mask-position;
}

.links-home::after {
  background-image: url("assets/studio-genki-logo-white-720.png");
}

.links-home:hover,
.links-home:focus-visible {
  transform: translateY(-2px) rotate(-0.5deg);
  filter: drop-shadow(0 0 18px rgba(20, 232, 197, 0.18));
}

.links-home:hover::after,
.links-home:focus-visible::after {
  opacity: 1;
  animation: logo-shimmer 1.15s linear infinite;
}

.links-kicker {
  width: fit-content;
  margin: -12px auto 16px;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(20, 232, 197, 0.42);
}

.links-card h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 6vw, 3.8rem);
  text-align: center;
  text-wrap: balance;
}

.links-copy {
  max-width: 470px;
  margin: 0 auto 26px;
  color: var(--muted);
  text-align: center;
}

.links-list {
  display: grid;
  gap: 12px;
}

.links-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.links-button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  opacity: 0.88;
  animation: button-sheen var(--motion-duration) linear infinite;
  will-change: background-position;
}

.links-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #101012;
}

.links-button:hover,
.links-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 26px var(--motion-glow);
}

.links-mythictale {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 116px;
  place-items: center;
  overflow: visible;
  padding: 8px 10px 18px;
  border: 0;
  border-radius: 0;
  background: url("assets/mythictale-logo-1200.png") center / min(460px, 100%) auto no-repeat;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.links-mythictale::after {
  background-image: url("assets/mythictale-logo-1200.png");
}

.links-mythictale img {
  width: min(460px, 100%);
  filter: drop-shadow(8px 10px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 18px rgba(20, 232, 197, 0.18));
  transition: filter 160ms ease, transform 160ms ease;
}

.links-mythictale:hover,
.links-mythictale:focus-visible {
  transform: translateY(-3px) rotate(-0.6deg);
  filter: drop-shadow(0 0 18px rgba(255, 122, 24, 0.24));
}

.links-mythictale:hover img,
.links-mythictale:focus-visible img {
  filter: drop-shadow(9px 12px 0 rgba(0, 0, 0, 0.54)) drop-shadow(0 0 24px rgba(20, 232, 197, 0.28)) drop-shadow(0 0 28px rgba(255, 122, 24, 0.22));
}

.links-mythictale:hover::after,
.links-mythictale:focus-visible::after {
  opacity: 1;
  animation: logo-shimmer 1.15s linear infinite;
}

.links-button {
  min-height: 74px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 12px;
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
}

.links-button img {
  width: 72px;
  height: 72px;
  max-width: none;
  image-rendering: pixelated;
}

.links-button span {
  min-width: 0;
  justify-self: center;
  max-width: 28ch;
  text-align: center;
  overflow-wrap: anywhere;
  line-height: 1.08;
}

.links-button-featured::after {
  background: #161615;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(4, 4, 4, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(124px, 12vw, 166px);
  min-height: 42px;
  transition: opacity 160ms ease;
}

.brand img {
  width: 100%;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.home-page .site-header:not(.is-scrolled) .brand {
  opacity: 0;
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0;
  cursor: pointer;
}

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

.home-page .site-header:not(.is-scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

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

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 39%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(circle at 72% 34%, rgba(24, 168, 255, 0.24), transparent 30%),
    radial-gradient(circle at 84% 43%, rgba(255, 122, 24, 0.2), transparent 30%),
    var(--black);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0), var(--black));
}

.hero-art {
  position: absolute;
  z-index: -2;
  right: -9vw;
  top: 50%;
  width: min(1180px, 72vw);
  aspect-ratio: 6000 / 4000;
  transform: translateY(-45%);
  pointer-events: none;
}

.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.hero-aura {
  z-index: 0;
  opacity: 0.94;
  transform-origin: 50% 50%;
  animation: aura-drift 6.8s ease-in-out infinite alternate;
  filter: saturate(1.16) contrast(1.05) drop-shadow(0 0 30px rgba(20, 232, 197, 0.18)) drop-shadow(0 0 34px rgba(24, 168, 255, 0.22)) drop-shadow(0 0 28px rgba(255, 122, 24, 0.14));
}

.hero-fighters {
  z-index: 1;
  transform: translate(1.5%, -5%) scale(0.99) rotate(0.45deg);
  animation: hero-art-float 5.8s ease-in-out infinite alternate;
  filter: drop-shadow(12px 18px 0 rgba(7, 6, 13, 0.62)) drop-shadow(0 28px 46px rgba(0, 0, 0, 0.76));
}

.hero-mt-logo {
  z-index: 2;
  top: auto;
  right: 4%;
  bottom: -4%;
  left: 8%;
  width: 88%;
  height: auto;
  transform: rotate(-1.3deg);
  animation: hero-logo-pulse 4.2s ease-in-out infinite alternate;
  filter: drop-shadow(8px 11px 0 rgba(7, 20, 63, 0.86)) drop-shadow(0 0 22px rgba(24, 168, 255, 0.28)) drop-shadow(0 0 18px rgba(20, 232, 197, 0.22)) drop-shadow(0 0 24px rgba(255, 122, 24, 0.16));
}

.hero-logo {
  width: min(470px, 100%);
  margin: -24px 0 -4px;
}

.hero-copy {
  width: min(100%, 640px);
  max-width: 640px;
  min-width: 0;
}

@keyframes aura-drift {
  from {
    opacity: 0.84;
    transform: scale(1.06) rotate(-0.8deg) translate3d(0, 0, 0);
    filter: saturate(1.05) contrast(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1.09) rotate(-1.2deg) translate3d(6px, -6px, 0);
    filter: saturate(1.22) contrast(1.1);
  }
}

@keyframes hero-art-float {
  from {
    transform: translate(1.5%, -5%) scale(0.99) rotate(0.45deg);
  }

  to {
    transform: translate(0.7%, -5.7%) scale(1.005) rotate(0deg);
  }
}

@keyframes hero-logo-pulse {
  from {
    transform: rotate(-1.3deg) scale(0.985);
  }

  to {
    transform: rotate(-0.7deg) scale(1.015);
  }
}

.eyebrow,
.section-kicker,
.post-meta {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero .eyebrow {
  position: relative;
  isolation: isolate;
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--white);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
}

.home-hero .eyebrow::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  border-radius: inherit;
  background: var(--motion-gradient);
  background-size: var(--motion-background-size);
  animation: button-sheen var(--motion-duration-fast) linear infinite;
  will-change: background-position;
}

.home-hero .eyebrow::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(4.1rem, 12vw, 10.5rem);
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 8vw, 7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  font-weight: 920;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-lede,
.page-hero p,
.section p,
.project-copy p,
.project-info p {
  color: rgba(247, 247, 243, 0.8);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 30px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  opacity: 0;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  transition: opacity 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 3px;
  background: currentColor;
  opacity: 0;
  transition: opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 24px var(--motion-glow);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  animation: button-sheen var(--motion-duration-fast) linear infinite;
  will-change: background-position;
}

.button-primary {
  background: var(--white);
  color: var(--black);
}

.button-primary::after {
  background: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary::after,
.button-ghost::after {
  background: #111113;
  opacity: 1;
}

.button-secondary::before,
.button-ghost::before {
  opacity: 0.34;
}

.button-light {
  color: var(--black);
  background: var(--yellow);
}

.button-light::after {
  background: var(--yellow);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.16);
}

@keyframes button-sheen {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@keyframes logo-shimmer {
  from {
    -webkit-mask-position: -145% 0;
    mask-position: -145% 0;
  }

  to {
    -webkit-mask-position: 145% 0;
    mask-position: 145% 0;
  }
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 118px) 0;
  scroll-margin-top: 110px;
}

.split-section,
.story-section,
.project-detail,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.14fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.feature-grid,
.values-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.feature-card,
.post-card,
.contact-panel,
.contact-aside {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 8%, rgba(24, 168, 255, 0.06), transparent 30%),
    radial-gradient(circle at 18% 0%, rgba(20, 232, 197, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  padding: clamp(20px, 2.2vw, 28px);
}

.feature-card::before,
.post-card::before,
.contact-panel::before,
.contact-aside::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  opacity: 0.52;
  transition: opacity 180ms ease;
}

.feature-card:hover::before,
.post-card:hover::before,
.contact-panel:hover::before,
.contact-aside:hover::before {
  opacity: 1;
  animation: button-sheen var(--motion-duration-fast) linear infinite;
  will-change: background-position;
}

.feature-card {
  display: flex;
  min-height: clamp(250px, 23vw, 320px);
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.post-card,
.contact-panel,
.contact-aside {
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 168, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.042));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 24px var(--motion-glow-soft);
}

.post-card:hover,
.contact-panel:hover,
.contact-aside:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 168, 255, 0.28);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24), 0 0 22px var(--motion-glow-soft);
}

.feature-card span {
  display: block;
  margin-bottom: clamp(18px, 2.5vw, 34px);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 100%;
  font-size: clamp(1.18rem, 1.25vw, 1.62rem);
  line-height: 1;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.feature-card p,
.post-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.feature-card p {
  max-width: 26ch;
}

.split-section .feature-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.split-section .feature-card {
  min-height: 300px;
}

.project-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding-inline: clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.24), rgba(4, 4, 4, 0.88)),
    linear-gradient(135deg, rgba(255, 122, 24, 0.18), rgba(255, 220, 31, 0.14) 34%, rgba(20, 232, 197, 0.16) 56%, rgba(24, 168, 255, 0.22) 73%, rgba(7, 20, 63, 0.34)),
    #111;
}

.project-media {
  display: flex;
  justify-content: center;
}

.project-media > img,
.project-poster > img:not([class]) {
  width: min(360px, 88%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
}

.project-showcase {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 11;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background:
    url("assets/mythictale-logo-1200.png") 53% 92% / 78% auto no-repeat,
    url("assets/mythictale-menu-1200.png") 48% 58% / 112% auto no-repeat,
    url("assets/mythictale-aura-1200.png") 48% 46% / 124% auto no-repeat,
    radial-gradient(circle at 58% 45%, rgba(24, 168, 255, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(255, 122, 24, 0.12), rgba(255, 220, 31, 0.08) 34%, rgba(20, 232, 197, 0.12) 56%, rgba(24, 168, 255, 0.18) 72%, rgba(7, 20, 63, 0.22)),
    #050505;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.project-showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  opacity: 0.9;
  animation: button-sheen var(--motion-duration-slow) linear infinite;
  will-change: background-position;
}

.project-showcase::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 8px;
  background: #050505;
}

.project-showcase img {
  position: absolute;
  max-width: none;
  pointer-events: none;
}

.project-showcase-aura {
  top: 2%;
  left: -9%;
  z-index: 0;
  width: 118%;
  opacity: 0.74;
  filter: saturate(1.14) contrast(1.05) drop-shadow(0 0 24px rgba(20, 232, 197, 0.2));
  animation: aura-drift 7.4s ease-in-out infinite alternate;
}

.project-showcase-fighters {
  top: 5%;
  left: -5%;
  z-index: 1;
  width: 106%;
  filter: drop-shadow(10px 14px 0 rgba(0, 0, 0, 0.72)) drop-shadow(0 24px 36px rgba(0, 0, 0, 0.72));
}

.project-showcase-logo {
  right: 7%;
  bottom: 4%;
  z-index: 2;
  width: 76%;
  filter: drop-shadow(8px 10px 0 rgba(7, 20, 63, 0.82)) drop-shadow(0 0 18px rgba(24, 168, 255, 0.24)) drop-shadow(0 0 14px rgba(255, 122, 24, 0.18));
}

.project-showcase-band {
  width: min(560px, 100%);
}

.project-poster.project-showcase {
  min-height: 430px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px var(--motion-glow-soft);
}

.project-copy {
  max-width: 720px;
}

.news-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.twitter-shell {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0b0d;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.twitter-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 2px;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  animation: button-sheen var(--motion-duration-slow) linear infinite;
}

.twitter-shell > a {
  display: block;
  padding: 24px;
  color: var(--cyan);
}

.twitter-shell iframe {
  position: relative;
  z-index: 2;
}

.x-feed-loader {
  display: grid;
  min-height: 540px;
  place-items: center;
  margin: 0;
  padding: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.twitter-shell.is-loaded .x-feed-loader,
.twitter-shell.is-loaded .x-feed-fallback,
.twitter-shell.is-fallback .twitter-timeline,
.twitter-shell.is-fallback .x-feed-loader {
  display: none;
}

.x-feed-fallback {
  display: none;
  min-height: 540px;
  align-content: center;
  padding: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 78% 22%, rgba(24, 168, 255, 0.14), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(255, 122, 24, 0.12), transparent 30%);
}

.twitter-shell.is-fallback .x-feed-fallback {
  display: grid;
}

.x-feed-fallback h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.x-feed-fallback p:not(.section-kicker) {
  max-width: 44ch;
  margin-bottom: 22px;
  color: var(--muted);
}

.x-feed-fallback .button {
  width: fit-content;
}

.studio-strip {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding-inline: clamp(18px, 5vw, 72px);
  background: var(--white);
  color: var(--black);
}

.studio-strip .section-kicker {
  color: var(--logo-orange);
}

.studio-strip h2 {
  margin-bottom: 0;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 70px;
  display: grid;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 16px;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
  box-shadow: 0 0 0 1px rgba(4, 4, 4, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.capability-list li::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  border-radius: inherit;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  opacity: 0.9;
  animation: button-sheen var(--motion-duration) linear infinite;
  will-change: background-position;
}

.capability-list li::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 8px;
  background: var(--white);
}

.capability-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(4, 4, 4, 0.12);
}

.page-hero {
  position: relative;
  min-height: 56svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 126px clamp(18px, 5vw, 72px) 64px;
  background: var(--black);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, rgba(255, 122, 24, 0.1), rgba(255, 220, 31, 0.07), rgba(20, 232, 197, 0.12), rgba(24, 168, 255, 0.18), rgba(7, 20, 63, 0.22));
}

.projects-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 2px;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  opacity: 0.8;
  animation: button-sheen var(--motion-duration-slow) linear infinite;
  will-change: background-position;
}

.about-hero::after,
.blog-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: -15vw;
  z-index: -1;
  width: min(760px, 70vw);
  aspect-ratio: 1.4;
  background: url("assets/studio-genki-logo-white.png") center / contain no-repeat;
  opacity: 0.11;
}

.projects-hero-aura {
  position: absolute;
  right: -11vw;
  bottom: -15vw;
  z-index: -1;
  width: min(1040px, 80vw);
  opacity: 0.7;
  filter: saturate(1.15) contrast(1.04);
}

.projects-hero-logo {
  position: absolute;
  right: clamp(18px, 7vw, 112px);
  bottom: clamp(22px, 8vw, 90px);
  z-index: -1;
  width: min(540px, 42vw);
  opacity: 0.34;
  transform: rotate(-2deg);
  filter: drop-shadow(0 0 22px rgba(24, 168, 255, 0.26)) drop-shadow(0 0 18px rgba(255, 122, 24, 0.16));
}

.page-hero > div {
  position: relative;
  max-width: 900px;
}

.page-hero > div::after {
  content: "";
  display: block;
  width: min(180px, 44vw);
  height: 3px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  animation: button-sheen var(--motion-duration-slow) linear infinite;
  will-change: background-position;
}

.story-copy p {
  color: #323232;
}

.story-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
  background: var(--white);
  color: var(--black);
}

.story-section .section-kicker,
.story-section .feature-card span {
  color: var(--logo-orange);
}

.light-card {
  background: #fff;
  border-color: rgba(4, 4, 4, 0.14);
}

.light-card:hover {
  border-color: rgba(4, 4, 4, 0.24);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.light-card p {
  color: #4b4b4b;
}

.studio-manifesto {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.studio-manifesto img {
  width: min(320px, 70vw);
  filter: invert(1);
}

.project-info {
  max-width: 720px;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.fact-list div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  overflow-wrap: anywhere;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fact-list div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--motion-gradient-soft);
  background-size: var(--motion-background-size);
  opacity: 0.58;
}

.fact-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 168, 255, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.blog-layout {
  display: grid;
  gap: 18px;
}

.post-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.42rem, 1.7vw, 2.05rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.featured-post h2 {
  font-size: clamp(2rem, 3vw, 3.65rem);
}

.post-grid .post-card {
  min-height: 0;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 50px);
  align-items: center;
}

.featured-post img {
  width: 100%;
  min-height: 300px;
  object-fit: contain;
  border-radius: 10px;
  background: #050505;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}

.post-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 13px 14px;
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(20, 232, 197, 0.62);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 0 0 4px rgba(20, 232, 197, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-aside {
  position: sticky;
  top: 96px;
}

.contact-aside img {
  width: min(280px, 80%);
  margin-bottom: 34px;
}

.contact-aside a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.contact-aside a:hover,
.contact-aside a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.channel-list img,
.social-link img {
  width: 72px;
  height: 72px;
  max-width: none;
  margin-bottom: 0;
  image-rendering: pixelated;
}

.channel-list .icon-outline,
.social-link .icon-outline {
  opacity: 0;
  pointer-events: none;
}

.channel-list a:hover .icon-outline,
.channel-list a:focus-visible .icon-outline,
.social-link:hover .icon-outline,
.social-link:focus-visible .icon-outline {
  opacity: 1;
}

.channel-list .icon-outline {
  position: absolute;
  left: 0;
  top: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(150px, 230px) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #020202;
  color: var(--muted);
}

.site-footer > img {
  width: 180px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-link {
  position: relative;
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.social-link img {
  position: absolute;
  inset: 0;
}

.social-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 16px rgba(20, 232, 197, 0.35));
}

.hero-social {
  margin-top: 22px;
}

.palette-switcher {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 72px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, var(--motion-glow-soft), transparent 34%),
    #020202;
  color: var(--muted);
}

.links-page .palette-switcher {
  margin-top: -1px;
}

.palette-switcher span {
  align-self: center;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.palette-options {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(126px, 1fr));
  gap: 3px;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#08080a, #08080a) padding-box,
    var(--motion-gradient) border-box;
  background-size: auto, var(--motion-background-size);
  animation: button-sheen var(--motion-duration) linear infinite;
  will-change: background-position;
}

.palette-options button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.palette-options button:hover,
.palette-options button:focus-visible {
  color: var(--white);
}

.palette-options button[aria-pressed="true"] {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

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

  .hero-aura,
  .hero-fighters,
  .hero-mt-logo,
  .project-showcase-aura {
    animation: none;
  }
}

.site-footer p {
  margin: 0;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: 84svh;
    align-items: end;
  }

  .hero-art {
    right: -26vw;
    top: 39%;
    width: 122vw;
    transform: translateY(-44%);
  }

  .hero-fighters {
    opacity: 0.86;
  }

  .hero-mt-logo {
    right: 5%;
    bottom: -7%;
    left: 7%;
  }

  .hero-copy {
    padding-top: 38vh;
  }

  .split-section,
  .story-section,
  .project-detail,
  .contact-layout,
  .project-band,
  .news-section,
  .studio-strip,
  .featured-post,
  .studio-manifesto {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 50svh;
  }

  .project-detail,
  .story-section,
  .contact-layout {
    align-items: start;
  }

  .feature-grid,
  .values-grid,
  .post-grid,
  .four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-aside {
    position: static;
  }

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

  .site-footer,
  .site-footer .social-links {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 80;
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
  }

  .site-nav {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(4, 4, 4, 0.98);
  }

  body.nav-open .site-nav {
    display: grid;
    gap: 18px;
  }

  .hero {
    min-height: 80svh;
    align-items: start;
    padding-bottom: 40px;
  }

  .hero-art {
    top: 74px;
    right: auto;
    left: 50%;
    width: 720px;
    max-width: none;
    transform: translateX(-50%);
  }

  .hero-fighters {
    opacity: 0.66;
  }

  .hero-aura {
    opacity: 0.58;
  }

  .hero-mt-logo {
    bottom: -9%;
    opacity: 0.9;
  }

  .hero-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding-top: 40vh;
  }

  .hero-lede {
    max-width: 320px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.3rem);
  }

  .hero-logo {
    width: 185px;
    margin-top: -24px;
    margin-bottom: -4px;
  }

  .social-links {
    gap: 8px;
  }

  .social-link,
  .social-link img {
    width: 58px;
    height: 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .links-shell {
    align-items: start;
    padding: 18px;
  }

  .links-card {
    padding: 24px 16px;
  }

  .links-card h1 {
    font-size: clamp(1.8rem, 11vw, 2.85rem);
    overflow-wrap: anywhere;
  }

  .links-copy {
    max-width: 30ch;
    font-size: 0.96rem;
  }

  .links-home {
    width: min(250px, 72%);
  }

  .links-mythictale {
    min-height: 92px;
    margin: 4px 0 2px;
    padding-inline: 0;
    background-size: min(312px, 96%) auto;
  }

  .links-mythictale img {
    width: min(312px, 96%);
  }

  .links-mythictale::after {
    background-size: min(312px, 96%) auto;
  }

  .links-button {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 64px;
    padding: 8px 12px 8px 8px;
    gap: 8px;
    font-size: 0.76rem;
  }

  .links-button img {
    width: 54px;
    height: 54px;
  }

  .feature-grid,
  .values-grid,
  .post-grid,
  .four-grid,
  .fact-list,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .split-section .feature-grid {
    grid-template-columns: 1fr;
  }

  .split-section .feature-card {
    min-height: 0;
  }

  .button {
    width: 100%;
  }

  .project-showcase {
    min-height: 310px;
  }

  .project-poster.project-showcase {
    min-height: 340px;
  }

  .page-hero {
    min-height: 48svh;
    padding-top: 112px;
    padding-bottom: 46px;
  }

  .projects-hero-aura {
    width: 142vw;
    right: -66vw;
    bottom: -14vw;
  }

  .projects-hero-logo {
    right: 8vw;
    bottom: 26px;
    width: 76vw;
    opacity: 0.22;
  }

  .section {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding: 42px 0;
  }

  .section > *,
  .split-section > *,
  .project-detail > *,
  .story-section > *,
  .contact-layout > * {
    min-width: 0;
  }

  .section p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .featured-post img {
    min-height: 220px;
  }

  .palette-switcher {
    justify-content: flex-start;
  }

  .palette-options {
    width: 100%;
  }

  .site-footer > img {
    width: 158px;
  }
}
