:root {
  --page: #f7f4ed;
  --paper: #ffffff;
  --soft: #f1eee7;
  --ink: #12181b;
  --text: #293034;
  --muted: #6d7378;
  --line: rgba(18, 24, 27, 0.1);
  --shadow: 0 18px 55px rgba(24, 28, 31, 0.11);
  --shadow-soft: 0 10px 32px rgba(24, 28, 31, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --purple: #7357b8;
  --gold: #c7a46a;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 10%, rgba(115, 87, 184, 0.08), transparent 28rem),
    linear-gradient(180deg, #fff 0, var(--page) 760px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(54px, 7vw, 104px) 0;
}

.section-pad.compact {
  padding-top: 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 0 clamp(22px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(18, 24, 27, 0.06);
  backdrop-filter: blur(22px);
}

.wordmark {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav a {
  color: #2e3438;
}

.site-nav a:hover {
  color: #000;
}

.nav-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: #08090a;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.menu-toggle {
  display: none;
}

.hero {
  padding-top: clamp(64px, 8vw, 118px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.05fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: #8a8e93;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 610px;
  font-size: clamp(3rem, 5.7vw, 5.9rem);
  line-height: 0.98;
  font-weight: 720;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.35rem);
  line-height: 1.02;
  font-weight: 690;
}

h3 {
  font-size: 1.05rem;
}

p {
  color: var(--text);
  line-height: 1.7;
}

.lead {
  max-width: 430px;
  margin-top: 28px;
  color: #4d5459;
  font-size: 1.04rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button-dark {
  color: #fff;
  background: #08090a;
  border-color: #08090a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.button-light {
  color: #1c2024;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-collage {
  position: relative;
  min-height: 560px;
}

.float-card {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: floatSubtle 7s ease-in-out infinite;
}

.float-card:hover {
  transform: translateY(-4px) rotate(var(--rotate, 0deg));
  box-shadow: 0 24px 70px rgba(24, 28, 31, 0.16);
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card span,
.float-card small {
  position: absolute;
  left: 18px;
  z-index: 2;
}

.float-card span {
  bottom: 42px;
  color: #111;
  font-weight: 800;
}

.float-card small {
  bottom: 20px;
  color: #555d62;
  font-size: 0.76rem;
}

.card-raskys {
  --rotate: -2deg;
  top: 0;
  left: 80px;
  width: 270px;
  height: 170px;
  transform: rotate(-2deg);
}

.card-more {
  --rotate: 7deg;
  top: 96px;
  right: 0;
  width: 230px;
  height: 190px;
  transform: rotate(7deg);
  animation-delay: 0.7s;
}

.card-music {
  --rotate: -1deg;
  top: 220px;
  left: 18px;
  width: 240px;
  height: 260px;
  background: #07111b;
  transform: rotate(-1deg);
  animation-delay: 1.2s;
}

.card-music span,
.card-music small {
  color: #fff;
}

@keyframes floatSubtle {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.identity-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 0;
}

.identity-grid span {
  color: #31373b;
  font-size: 0.9rem;
  font-weight: 730;
}

.identity-grid span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border: 1.5px solid var(--purple);
  border-radius: 50%;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.venture-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.venture-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: transform 600ms ease, opacity 600ms ease;
}

.venture-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.94));
}

.venture-card.dark::after {
  background: linear-gradient(180deg, rgba(4, 12, 20, 0.16), rgba(4, 12, 20, 0.82));
}

.venture-card:hover img {
  transform: scale(1.035);
  opacity: 0.52;
}

.venture-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 326px;
}

.venture-card h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
}

.venture-card p {
  max-width: 430px;
  margin-top: 18px;
  color: #343a3f;
  font-size: 1rem;
}

.venture-card a {
  width: fit-content;
  margin-top: 26px;
  color: var(--purple);
  font-weight: 850;
}

.venture-card.dark h2,
.venture-card.dark p,
.venture-card.dark a {
  color: #fff;
}

.pillar-card,
.work-card,
.vision-card,
.process-card,
.about-panel,
.contact-panel,
.split-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 22px;
}

.pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.95));
}

.pillar-card.dark::after,
.pillar-card.image-rich::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.64));
}

.pillar-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 206px;
}

.pillar-card h2 {
  font-size: 1.45rem;
}

.pillar-card p {
  max-width: 190px;
  margin-top: 10px;
  color: #343a3f;
}

.pillar-card.dark h2,
.pillar-card.dark p,
.pillar-card.image-rich h2,
.pillar-card.image-rich p {
  color: #fff;
}

.pillar-card a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 22px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-weight: 900;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  padding: clamp(36px, 5vw, 62px);
}

.split-copy p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 24px;
  color: #4c5459;
}

.split-copy .button {
  margin-top: 28px;
}

.hospitality-panel,
.music-panel,
.shnork-hero {
  min-height: 500px;
}

.blueprint-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fbfaf7;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 180ms linear;
}

.blueprint-stage img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.72;
  transform-origin: center;
  animation: blueprintDrift 12s ease-in-out infinite;
}

.blueprint-stage.is-blueprint-ready img {
  opacity: 0;
}

.blueprint-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.blueprint-svg [data-blueprint-line] {
  transition: stroke-dashoffset 420ms ease-out;
}

.blueprint-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.78) 44%, transparent 72%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  animation: blueprintSweep 5.8s ease-in-out 0.6s both;
  pointer-events: none;
}

@keyframes blueprintSweep {
  to {
    transform: translateX(120%);
  }
}

@keyframes blueprintDrift {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.018) translateY(-4px);
  }
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.concept-grid article {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
}

.concept-grid h3 {
  margin-bottom: 10px;
}

.concept-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.vision-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) 1fr;
  gap: 28px;
  margin-top: 24px;
  padding: 28px;
}

.vision-card p {
  margin-top: 14px;
}

blockquote {
  margin: 24px 0 0;
  color: #2f3438;
  font-size: 1.1rem;
}

.vision-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 12px;
}

.vision-gallery img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

.vision-gallery img:first-child {
  grid-row: span 2;
  height: 312px;
}

.music-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(241,238,231,0.65));
}

.music-panel {
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 0.5fr);
}

.album-card {
  justify-self: center;
  width: min(320px, 100%);
}

.album-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 22px 52px rgba(15, 35, 55, 0.25);
}

.album-card h3 {
  margin-top: 18px;
}

.album-card p {
  margin-top: 6px;
  color: var(--muted);
}

.future-link {
  margin-top: 14px;
  color: #8a8e93;
  font-size: 0.84rem;
}

.releases {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading-row a {
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 800;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.release-grid img,
.release-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.release-grid a {
  display: block;
  transition: transform 220ms ease;
}

.release-grid a:hover {
  transform: translateY(-4px);
}

.release-grid h4 {
  margin-top: 14px;
}

.release-grid p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.release-placeholder {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.95), transparent 7%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3), transparent 32%),
    #111;
}

.release-placeholder.signal {
  background:
    radial-gradient(circle, rgba(255,255,255,0.9) 0 3%, transparent 4%),
    radial-gradient(circle, rgba(120,120,120,0.7), transparent 35%),
    #161616;
}

.release-placeholder.glow {
  background:
    radial-gradient(circle at 62% 42%, #f5d5ff, transparent 18%),
    radial-gradient(circle at 48% 58%, #6f45b7, transparent 28%),
    #151326;
}

.selected-work {
  padding-top: 42px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-card {
  overflow: hidden;
  padding: 12px 12px 18px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.work-card img,
.raskode-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
  background: #111;
}

.work-card h3 {
  margin: 16px 4px 8px;
}

.work-card p {
  min-height: 48px;
  margin: 0 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.work-card a {
  display: inline-block;
  margin: 14px 4px 0;
  color: var(--purple);
  font-size: 0.84rem;
  font-weight: 800;
}

.raskode-visual {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(180deg, #15191e, #050607);
}

.project-detail {
  padding-top: 46px;
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.project-showcase.reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.75fr);
}

.project-showcase > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.project-showcase p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
}

.highlight-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  color: #3c4449;
  font-weight: 680;
}

.highlight-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.design-card > p {
  max-width: 720px;
  margin-bottom: 26px;
}

.design-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 14px;
}

.design-gallery img {
  width: 100%;
  height: 310px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.design-gallery img:nth-child(2) {
  height: 230px;
}

.design-gallery img:nth-child(3) {
  height: 270px;
}

.raskode-large {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background:
    radial-gradient(circle at 68% 28%, rgba(199, 164, 106, 0.22), transparent 16rem),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(180deg, #15191e, #050607);
  box-shadow: var(--shadow-soft);
}

.shnork-section {
  background: rgba(255, 255, 255, 0.46);
}

.shnork-hero {
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 0.7fr);
}

.shnork-main-art {
  justify-self: end;
  width: min(360px, 100%);
}

.shnork-main-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.process-card {
  margin-top: 24px;
  padding: 28px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.process-grid article span {
  color: #9da2a6;
  font-size: 0.78rem;
  font-weight: 850;
}

.process-grid h4 {
  margin-top: 8px;
}

.process-grid p {
  min-height: 46px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.process-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: 14px;
  border-radius: 12px;
  object-fit: cover;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.85fr);
  gap: 44px;
  padding: clamp(34px, 5vw, 58px);
}

.about-copy p:not(.eyebrow) {
  margin-top: 24px;
  max-width: 470px;
}

.signature {
  font-family: "Segoe Script", "Bradley Hand ITC", cursive;
  color: #15191c;
  font-size: 1.5rem;
}

.about-image {
  overflow: hidden;
  border-radius: 16px;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 50% 36%;
}

.stats-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.stats-row article {
  display: grid;
  gap: 6px;
}

.stats-row strong {
  font-size: 1.45rem;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-section {
  padding: 34px 0 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.18fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.contact-panel h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.contact-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(24, 28, 31, 0.04);
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 132px;
  padding-top: 15px;
  resize: vertical;
}

.contact-form button {
  grid-column: 2;
  justify-self: end;
  min-width: 170px;
}

.site-footer {
  padding: 26px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto auto;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-inner .wordmark {
  color: var(--ink);
}

.view-counter {
  padding: 5px 9px;
  border: 1px solid rgba(18, 24, 27, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #8a8e93;
  font-size: 0.76rem;
}

.page-hero {
  padding-top: clamp(62px, 8vw, 112px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.page-hero-grid > * {
  min-width: 0;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: 1.02;
}

.page-hero .lead {
  max-width: 580px;
}

.page-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.page-visual img,
.page-visual .raskode-large {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.page-section {
  padding-top: 26px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.detail-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-link-card .button {
  margin-top: 18px;
}

.about-cv-button {
  margin-top: 18px;
}

.media-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.media-gallery img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.media-gallery img:first-child {
  height: 360px;
  grid-row: span 2;
}

.page-footer-cta {
  margin-top: 24px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.reveal-section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .float-card,
  .blueprint-stage img,
  .blueprint-stage::after,
  .reveal-section,
  .release-grid a,
  .work-card {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    inset: 66px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 38px;
    height: 34px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    background: var(--ink);
  }

  .hero-grid,
  .split-hero,
  .about-panel,
  .contact-panel,
  .vision-card {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 500px;
  }

  .card-raskys {
    left: 6%;
  }

  .venture-grid,
  .pillar-grid,
  .concept-grid,
  .release-grid,
  .process-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .project-showcase,
  .project-showcase.reverse {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 60px;
    padding: 0 14px;
  }

  .nav-button {
    display: none;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    max-width: 760px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-collage {
    min-height: 620px;
  }

  .float-card {
    border-radius: 14px;
  }

  .card-raskys {
    top: 0;
    left: 4%;
    width: 58%;
    height: 150px;
  }

  .card-more {
    top: 88px;
    right: 0;
    width: 52%;
    height: 150px;
  }

  .card-music {
    top: 220px;
    left: 0;
    width: 54%;
    height: 230px;
  }

  .identity-grid,
  .venture-grid,
  .pillar-grid,
  .concept-grid,
  .release-grid,
  .process-grid,
  .stats-row,
  .work-grid,
  .detail-grid,
  .media-gallery,
  .contact-form,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split-hero,
  .vision-card,
  .project-showcase,
  .about-panel,
  .contact-panel,
  .releases,
  .process-card {
    padding: 22px;
  }

  .vision-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .vision-gallery img,
  .vision-gallery img:first-child {
    grid-row: auto;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .work-card p,
  .process-grid p {
    min-height: 0;
  }

  .venture-card {
    min-height: 340px;
  }

  .venture-card > div {
    min-height: 276px;
  }

  .design-gallery {
    grid-template-columns: 1fr;
  }

  .design-gallery img,
  .design-gallery img:nth-child(2),
  .design-gallery img:nth-child(3) {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-form textarea,
  .contact-form button {
    grid-column: 1;
  }

  .contact-form button {
    justify-self: stretch;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .media-gallery img,
  .media-gallery img:first-child {
    height: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}
