@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi_Complete/Fonts/TTF/Satoshi-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi_Complete/Fonts/TTF/Satoshi-VariableItalic.ttf")
    format("truetype");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --font-body: "Satoshi", "Helvetica Neue", "Arial", sans-serif;
  --font-display: "Satoshi", "Helvetica Neue", "Arial", sans-serif;
  --ink: #edf4ff;
  --coal: #080d14;
  --slate: #111925;
  --stone: #1b2430;
  --gold: #88bce4;
  --gold-soft: #cee8fb;
  --gold-deep: #3d6f98;
  --mist: rgba(224, 236, 248, 0.14);
  --glass-bg: rgba(10, 18, 28, 0.52);
  --glass-border: rgba(206, 230, 248, 0.28);
  --glass-highlight: rgba(255, 255, 255, 0.2);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --scroll: 0;
  --mx: 0;
  --my: 0;
  --camera: 0px;
  --base-scale: 0.98;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  background: #000;
  overflow-x: hidden;
  overflow-y: auto;
}

body:not(.gallery) {
  background-color: #000;
}

@media (hover: hover) and (pointer: fine) {
  body:not(.gallery) {
    background-image: radial-gradient(
      circle clamp(170px, 21vw, 340px) at var(--cursor-ratio-x, 50%) var(--cursor-ratio-y, 42%),
      rgba(126, 188, 255, 0.2),
      rgba(126, 188, 255, 0) 66%
    );
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

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

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

button {
  font-family: inherit;
  color: inherit;
}

.ambient {
  display: none;
}

.ambient__fog {
  position: absolute;
  inset: -10% -10% 0 0;
  background: radial-gradient(circle at 30% 30%, rgba(94, 138, 180, 0.28), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(166, 206, 236, 0.24), transparent 55%);
  transform: translate3d(calc(var(--mx) * 40px), calc(var(--my) * 40px), 0);
  animation: fog 18s ease-in-out infinite alternate;
  opacity: 0.6;
}

.ambient__dust {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.3;
  animation: drift 28s linear infinite;
}

.ambient__lights {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(280deg, rgba(136, 188, 228, 0.18), transparent 45%);
  mix-blend-mode: screen;
  animation: sweep 20s ease-in-out infinite;
  opacity: 0.6;
}

.ambient__orbs {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 70%, rgba(72, 120, 166, 0.24), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(136, 188, 228, 0.34), transparent 60%),
    radial-gradient(circle at 55% 25%, rgba(255, 255, 255, 0.12), transparent 45%);
  animation: orbit 30s ease-in-out infinite;
  opacity: 0.55;
}

.ambient__rays {
  position: absolute;
  inset: -20% -10% 0 -10%;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 2px,
    transparent 2px,
    transparent 120px
  );
  opacity: 0.2;
  transform: translate3d(0, calc(var(--scroll) * -0.08px), 0);
}

.walk {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: visible;
  perspective: none;
  z-index: 1;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.walk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 1;
  z-index: 0;
}

.walk::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 9, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

body.walkthrough-active .walk::after {
  opacity: 0.55;
}

.walk__track {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  transform: none;
  display: block;
  padding: 0;
}

body.walkthrough-active .walk__track {
  opacity: 0.2;
  filter: blur(6px);
  pointer-events: none;
}

.walk__nav {
  position: absolute;
  left: 50%;
  bottom: 3vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(10, 11, 13, 0.52);
  border: 1px solid rgba(244, 239, 231, 0.15);
  backdrop-filter: blur(6px);
  z-index: 4;
}

.walk__nav,
.hallway {
  display: none;
}

body.walkthrough-active .hallway {
  display: grid;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}

.walkthrough-dismiss {
  display: none;
  position: fixed;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  z-index: 8;
  cursor: default;
}

body.walkthrough-active .walkthrough-dismiss {
  display: block;
}

.walkthrough-cta {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 6vh;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 9;
  text-align: center;
}

body.walkthrough-active .walkthrough-cta {
  display: block;
}

.walkthrough-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.walkthrough-cta__inner {
  background: transparent;
  border: none;
  border-radius: 32px;
  padding: 0;
  transform: scale(0.98);
  box-shadow: none;
  backdrop-filter: none;
  max-width: min(560px, 90vw);
}

.walkthrough-cta__inner h3 {
  margin: 0.6rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.walkthrough-cta__inner p {
  margin: 0;
  color: rgba(244, 239, 231, 0.75);
  line-height: 1.5;
}

.walkthrough-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 0;
}

.walkthrough-cta__button {
  position: relative;
  border: 1px solid rgba(206, 230, 248, 0.45);
  border-radius: 999px;
  padding: 1rem 2.2rem 0.95rem;
  min-width: min(520px, 86vw);
  background:
    radial-gradient(circle at 18% 20%, rgba(221, 239, 253, 0.34), rgba(221, 239, 253, 0) 40%),
    linear-gradient(155deg, rgba(41, 73, 102, 0.72), rgba(14, 24, 35, 0.88));
  color: rgba(244, 249, 255, 0.98);
  cursor: pointer;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(108, 159, 200, 0.35);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  text-align: center;
  isolation: isolate;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease,
    filter 0.3s ease;
  animation: ctaPulse 3.2s ease-in-out infinite;
}

.walkthrough-cta__button::before {
  content: "";
  position: absolute;
  inset: -14px -18px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 45%, rgba(166, 208, 238, 0.35), rgba(166, 208, 238, 0));
  z-index: -1;
  animation: ctaAura 4.2s ease-in-out infinite;
  pointer-events: none;
}

.walkthrough-cta__button::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: -38%;
  width: 34%;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  filter: blur(0.5px);
  animation: ctaSweep 3.4s ease-in-out infinite;
  pointer-events: none;
}

.walkthrough-cta__button:hover,
.walkthrough-cta__button:focus-visible {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(232, 246, 255, 0.75);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(140, 184, 219, 0.46);
  filter: saturate(1.08);
  outline: none;
}

.walkthrough-cta__button-label {
  display: block;
  font-size: clamp(1.1rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.walkthrough-cta__button-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(219, 235, 249, 0.88);
}

.walk__btn {
  border: 1px solid rgba(244, 239, 231, 0.2);
  background: rgba(17, 22, 28, 0.7);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.walk__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.walk__status {
  display: grid;
  gap: 0.15rem;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(244, 239, 231, 0.65);
  text-align: center;
}

.walk__progress {
  width: 120px;
  height: 2px;
  background: rgba(244, 239, 231, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.walk__progress span {
  display: block;
  height: 100%;
  background: linear-gradient(120deg, #88bce4, #c6e0f6);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.hallway {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 3;
  perspective: 1400px;
}

body.walkthrough-active .hallway {
  opacity: 1;
}

.hallway__lane {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hallway__lane--left {
  --lane-x-start: -10vw;
  --lane-x-end: -26vw;
  --yaw: 7deg;
}

.hallway__lane--right {
  --lane-x-start: 10vw;
  --lane-x-end: 26vw;
  --yaw: -7deg;
}

.hallway__frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(320px, 44vw, 620px);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  animation: hallwayFlow 16s linear infinite;
  animation-delay: var(--delay);
}

.hallway__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room {
  position: relative;
  padding: 6rem 8vw 5rem;
  overflow: visible;
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
  pointer-events: auto;
  z-index: 1;
  min-height: auto;
}

.room::-webkit-scrollbar {
  width: 0;
}

.room.is-active,
.room.is-prev,
.room.is-next {
  opacity: 1;
  transform: none;
  filter: none;
  pointer-events: auto;
}

.room::before,
.room::after {
  display: none;
}

.hero {
  display: grid;
  gap: clamp(2.6rem, 4.2vw, 5rem);
  align-items: center;
  min-height: min(94svh, 920px);
  padding-bottom: clamp(8rem, 14vh, 12rem);
}

.hero__content {
  max-width: 560px;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: rgba(136, 188, 228, 0.85);
}

.value-prop {
  margin: 0.6rem 0 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(136, 188, 228, 0.85);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin: 1rem 0 1.5rem;
  line-height: 1.05;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 239, 231, 0.84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero__note {
  font-size: 0.9rem;
  color: rgba(244, 239, 231, 0.6);
}

.hero__frame {
  align-self: center;
  max-width: 560px;
  width: 100%;
  justify-self: center;
  text-align: center;
  z-index: 1;
  transform: none;
  transition: none;
}

.hero__caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(244, 239, 231, 0.7);
}

.hero-printer {
  --print-duration: 18.6s;
  --print-track-top: clamp(0.98rem, 1.5vw, 1.18rem);
  --print-track-bottom: calc(100% - clamp(0.98rem, 1.5vw, 1.18rem) - clamp(1.02rem, 1.9vw, 1.24rem));
  --scan-pad: 2px;
  --scan-line-w: clamp(2px, 0.34vw, 4px);
  width: min(100%, 560px);
}

.hero-printer__panel {
  position: relative;
  border-radius: 30px;
  padding: clamp(1.05rem, 1.55vw, 1.28rem);
  border: 1px solid rgba(191, 210, 228, 0.22);
  background:
    radial-gradient(circle at 18% 9%, rgba(228, 240, 251, 0.13), rgba(228, 240, 251, 0) 44%),
    linear-gradient(150deg, rgba(18, 27, 39, 0.95), rgba(9, 14, 22, 0.98));
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(28, 47, 66, 0.36);
  overflow: hidden;
}

.hero-printer__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(206, 230, 248, 0.1), rgba(206, 230, 248, 0)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 20px
    );
  pointer-events: none;
}

.hero-printer__canvas {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(206, 230, 248, 0.2);
  background: linear-gradient(180deg, rgba(11, 16, 22, 0.97), rgba(8, 12, 18, 0.98));
}

.hero-printer__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.022);
  filter: saturate(1.06) contrast(1.02);
}

.hero-printer__unprinted {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 12, 0.985), rgba(7, 13, 19, 0.985)),
    radial-gradient(circle at 28% 14%, rgba(208, 224, 237, 0.05), rgba(208, 224, 237, 0) 40%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      rgba(20, 32, 44, 0.06) 1px,
      rgba(20, 32, 44, 0.06) 3px
    );
  transform: translateY(0);
  will-change: transform;
}

.hero-printer__rail {
  position: absolute;
  left: clamp(1.12rem, 2vw, 1.46rem);
  right: clamp(1.12rem, 2vw, 1.46rem);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(166, 192, 216, 0.14),
    rgba(208, 228, 245, 0.58),
    rgba(166, 192, 216, 0.14)
  );
  pointer-events: none;
}

.hero-printer__rail--top {
  top: var(--print-track-top);
}

.hero-printer__rail--bottom {
  bottom: clamp(0.98rem, 1.5vw, 1.18rem);
}

.hero-printer__carriage {
  position: absolute;
  left: clamp(1.12rem, 2vw, 1.46rem);
  right: clamp(1.12rem, 2vw, 1.46rem);
  top: var(--print-track-top);
  height: clamp(1.02rem, 1.9vw, 1.24rem);
  border-radius: 6px;
  border: 1px solid rgba(184, 201, 218, 0.42);
  background:
    linear-gradient(180deg, rgba(214, 224, 232, 0.3), rgba(214, 224, 232, 0) 36%),
    linear-gradient(180deg, rgba(21, 30, 41, 0.98), rgba(10, 16, 23, 0.98));
  box-shadow:
    0 10px 16px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(71, 97, 121, 0.36);
  overflow: hidden;
  z-index: 2;
  will-change: top;
}

.hero-printer__head {
  position: absolute;
  top: 50%;
  left: var(--scan-pad);
  width: var(--scan-line-w);
  height: 80%;
  transform: translateY(-50%);
  border-radius: 1px;
  border: none;
  background:
    linear-gradient(180deg, rgba(196, 223, 244, 0.98), rgba(109, 166, 205, 0.9));
  box-shadow:
    0 0 12px rgba(166, 211, 243, 0.82),
    0 0 0 1px rgba(167, 204, 231, 0.6);
}

.hero-printer__head::before {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(171, 214, 244, 0.34), rgba(171, 214, 244, 0.06));
  filter: blur(0.8px);
  opacity: 0.7;
}

.hero-printer__beam {
  position: absolute;
  left: 7%;
  right: 7%;
  top: calc(100% + 3px);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(163, 181, 196, 0),
    rgba(205, 220, 232, 0.65),
    rgba(163, 181, 196, 0)
  );
  opacity: 0.38;
}

.hero-printer.is-running .hero-printer__image {
  animation: printImageBreathe var(--print-duration) ease-out 1 forwards;
}

.hero-printer.is-running .hero-printer__unprinted {
  animation: printReveal var(--print-duration) linear 1 forwards;
}

.hero-printer.is-running .hero-printer__carriage {
  animation: printerCarriage var(--print-duration) linear 1 forwards;
}

.hero-printer.is-running .hero-printer__head {
  animation: printHeadSweep 4.8s linear infinite;
}

.hero-printer.is-complete .hero-printer__unprinted {
  transform: translateY(100%);
}

.hero-printer.is-complete .hero-printer__carriage {
  top: var(--print-track-bottom);
}

.hero-printer.is-complete .hero-printer__beam {
  opacity: 0.2;
}

.btn {
  border: 1px solid var(--glass-border);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--glass-bg);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 var(--glass-highlight);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background 0.3s ease;
}

.btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(136, 188, 228, 0.35), rgba(198, 226, 246, 0.18));
  color: var(--ink);
  border-color: rgba(206, 230, 248, 0.6);
  box-shadow: 0 18px 40px rgba(20, 16, 12, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--ghost {
  background: rgba(17, 13, 10, 0.55);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.room__header {
  max-width: 520px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  display: none;
}

.room__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 0.8rem;
}

.room__header p {
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.6;
}

.room__walls {
  position: relative;
  display: block;
  z-index: 1;
}

.room--gallery {
  background: transparent;
  color: var(--ink);
  padding: 5.2rem 3.7vw 3.4rem;
  position: relative;
  overflow: visible;
}

.room--gallery + .room--gallery {
  margin-top: -0.8rem;
  padding-top: 2.5rem;
}

.room--gallery::before,
.room--gallery::after {
  display: none;
}

.room--gallery .room__header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.room--gallery .room__header p {
  color: rgba(244, 239, 231, 0.68);
}

.room--gallery .room__header h2 {
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 1.8vw, 1.85rem);
  max-width: min(1740px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-grid .art-card {
  display: grid;
  grid-template-rows: auto minmax(6.4rem, auto);
  width: 100%;
  margin: 0;
  --tilt: 0deg;
  align-self: stretch;
}

.gallery-grid .art-card:nth-child(2n) .art-card__frame {
  animation-delay: -4s;
}

.gallery-grid .art-card:nth-child(3n) .art-card__frame {
  animation-delay: -8s;
}

.room--gallery .art-card {
  color: var(--ink);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.room--gallery .art-card__frame {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float 16s ease-in-out infinite;
  aspect-ratio: 3 / 4;
}

.room--gallery .art-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-card__scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
}

.art-card__scene-room {
  position: absolute;
  inset: 0;
  background: var(--scene-room-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02) brightness(1.13);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.art-card__scene-room::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.art-card__scene-print {
  position: absolute;
  left: var(--scene-frame-x, 24%);
  top: var(--scene-frame-y, 10%);
  width: var(--scene-frame-w, 40%);
  height: var(--scene-frame-h, 46%);
  border-radius: var(--scene-frame-radius, 1%);
  border: var(--scene-frame-border, 1.2%) solid rgba(12, 11, 10, 0.96);
  box-shadow: var(--scene-frame-shadow, 0 16px 34px rgba(0, 0, 0, 0.48));
  background: rgba(10, 9, 8, 0.95);
  overflow: hidden;
}

.art-card__scene-print::before {
  content: "";
  position: absolute;
  inset: var(--scene-print-inset, 2.4%);
  border-radius: calc(var(--scene-frame-radius, 1%) * 0.35);
  background-image: var(--card-print);
  background-size: var(--scene-print-fit, cover);
  background-repeat: no-repeat;
  background-position: center;
}

.art-card__scene-print::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 48%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

.gallery-grid .art-card:has(.art-card__frame:hover) .art-card__frame > img,
.gallery-grid .art-card:focus-visible .art-card__frame > img {
  opacity: 0.1;
  transform: scale(1.05);
  filter: blur(0.8px);
}

.gallery-grid .art-card:has(.art-card__frame:hover) .art-card__scene,
.gallery-grid .art-card:focus-visible .art-card__scene {
  opacity: 1;
  transform: scale(1);
}

.gallery-grid .art-card:has(.art-card__frame:hover) .art-card__scene-room,
.gallery-grid .art-card:focus-visible .art-card__scene-room {
  transform: scale(1);
  filter: saturate(1.08) contrast(1.03) brightness(1.16);
}

body.walkthrough-active {
  overflow: hidden;
}

body.walkthrough-active .art-card__scene {
  display: none !important;
}

body.walkthrough-active .gallery-grid .art-card .art-card__frame > img {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

body.walkthrough-active .gallery-grid .art-card.is-walk-focus {
  transform: translateY(-8px);
}

body.walkthrough-active .gallery-grid .art-card.is-walk-focus .art-card__frame {
  border-color: rgba(206, 230, 248, 0.72);
  box-shadow: 0 0 0 2px rgba(206, 230, 248, 0.35), 0 28px 60px rgba(0, 0, 0, 0.55);
}

.room--gallery .art-card__meta {
  gap: 0.35rem;
  text-align: center;
  align-content: start;
  min-height: 6.4rem;
}

.room--gallery.is-images-only .art-card,
.room--gallery .art-card.is-images-only {
  grid-template-rows: 1fr;
}

.room--gallery.is-images-only .art-card__meta,
.room--gallery.is-images-only .art-card__cta,
.room--gallery.is-images-only .art-card__badge,
.room--gallery .art-card.is-images-only .art-card__meta,
.room--gallery .art-card.is-images-only .art-card__cta,
.room--gallery .art-card.is-images-only .art-card__badge {
  display: none !important;
}

.room--gallery .art-card__details {
  color: rgba(244, 239, 231, 0.65);
  font-size: 0.88rem;
}

.art-card__cta {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--glass-bg);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  display: inline-flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 var(--glass-highlight);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.art-card__cta:hover {
  background: rgba(37, 28, 19, 0.92);
  border-color: rgba(206, 230, 248, 0.8);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  color: rgba(255, 248, 231, 0.98);
}

.art-card__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  background: rgba(17, 13, 10, 0.62);
  border: 1px solid rgba(206, 230, 248, 0.45);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.art-card--feature {
  grid-column: span 1;
}

.art-card--feature .art-card__frame {
  aspect-ratio: 3 / 4;
}

.art-card--feature .art-card__title {
  font-size: 1.1rem;
}

.room--interlude {
  padding-top: 3.8rem;
  padding-bottom: 5rem;
}

.interlude {
  max-width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(1.2rem, 2.1vw, 2.3rem);
  border-radius: 30px;
  border: 1px solid rgba(219, 232, 246, 0.15);
  background:
    radial-gradient(circle at 8% -10%, rgba(136, 188, 228, 0.2), rgba(136, 188, 228, 0) 38%),
    radial-gradient(circle at 92% 15%, rgba(156, 210, 245, 0.16), rgba(156, 210, 245, 0) 42%),
    linear-gradient(160deg, rgba(10, 15, 22, 0.82), rgba(9, 13, 19, 0.9));
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42);
  position: relative;
  overflow: hidden;
}

.interlude::before,
.interlude::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.interlude::before {
  width: 320px;
  height: 320px;
  left: -90px;
  top: -110px;
  background: radial-gradient(circle, rgba(136, 188, 228, 0.15), rgba(136, 188, 228, 0));
}

.interlude::after {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(176, 220, 248, 0.12), rgba(176, 220, 248, 0));
}

.interlude__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.66rem;
  color: rgba(136, 188, 228, 0.82);
}

.interlude__lead {
  margin: 0.5rem 0 1.2rem;
  color: rgba(244, 239, 231, 0.76);
  font-size: 0.97rem;
  line-height: 1.55;
  max-width: 580px;
}

.process {
  display: grid;
  gap: 1.2rem 1.5rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  position: relative;
  z-index: 1;
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  grid-column: 1 / 2;
}

.process__steps li {
  background: rgba(17, 22, 28, 0.55);
  border: 1px solid rgba(244, 239, 231, 0.1);
  border-radius: 20px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease,
    background 0.35s ease;
}

.process__steps li:nth-child(2) {
  transform: translateY(0.65rem) rotate(-0.35deg);
}

.process__steps li:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 72%;
  justify-self: end;
  transform: translateY(-0.15rem) rotate(0.3deg);
}

.process__steps li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(136, 188, 228, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.process__steps li:hover,
.process__steps li:focus-within {
  transform: translateY(-6px);
  border-color: rgba(136, 188, 228, 0.35);
  background: rgba(17, 22, 28, 0.72);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.process__steps li:hover::after,
.process__steps li:focus-within::after {
  opacity: 1;
}

.process__steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.process__steps p {
  margin: 0;
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.5;
}

.process__details {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-column: 2 / 3;
  align-content: start;
}

.detail-card {
  background: rgba(15, 20, 26, 0.6);
  border: 1px solid rgba(244, 239, 231, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-card:nth-child(2) {
  transform: translateY(1.2rem) rotate(-0.4deg);
}

.detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.detail-card figcaption {
  padding: 0.9rem 1.2rem 1.2rem;
  font-size: 0.9rem;
  color: rgba(244, 239, 231, 0.65);
}

.trust {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.trust__card {
  background: rgba(17, 22, 28, 0.55);
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 22px;
  padding: 1.6rem;
}

.trust__card:first-child {
  transform: rotate(-0.3deg);
}

.trust__card:last-child {
  transform: translateY(0.7rem) rotate(0.4deg);
}

.trust__card h3 {
  margin-top: 0;
}

.trust__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.6);
}

.trust__card--bio {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.trust__card--bio img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.coa-preview {
  margin: 1rem 0;
  border: 1px dashed rgba(244, 239, 231, 0.2);
  border-radius: 16px;
  padding: 1rem;
  position: relative;
  background: rgba(9, 11, 13, 0.6);
}

.coa-preview__title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.6rem;
}

.coa-preview__line {
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.7);
  margin-bottom: 0.3rem;
}

.coa-preview__seal {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(136, 188, 228, 0.6);
  display: grid;
  place-items: center;
  color: rgba(136, 188, 228, 0.9);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq details {
  background: rgba(17, 22, 28, 0.55);
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease,
    background 0.35s ease;
}

.faq details::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(136, 188, 228, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.faq details[open] {
  border-color: rgba(136, 188, 228, 0.35);
  background: rgba(17, 22, 28, 0.72);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.faq details[open]::after {
  opacity: 1;
}

.faq details:hover,
.faq details:focus-within {
  transform: translateY(-4px);
  border-color: rgba(136, 188, 228, 0.3);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

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

.faq summary::after {
  content: "▸";
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(136, 188, 228, 0.8);
  transform: translateY(1px);
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(90deg) translateX(2px);
}

.faq p {
  margin: 0.7rem 0 0;
  color: rgba(244, 239, 231, 0.7);
}

.policy-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.policy-card {
  background: rgba(15, 20, 26, 0.55);
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 20px;
  padding: 1.4rem;
}

.room__wall {
  display: grid;
  gap: 2rem;
}

.art-card {
  border: none;
  padding: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  display: grid;
  gap: 0.7rem;
  transform: translateY(0) rotate(var(--tilt, 0deg));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.art-card__frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transform: translateZ(0);
  animation: float 12s ease-in-out infinite;
}

.art-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 45%);
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}

.art-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: opacity 0.45s ease, transform 0.5s ease, filter 0.45s ease;
}

.art-card__meta {
  display: grid;
  gap: 0.15rem;
  margin-top: -0.1rem;
}

.art-card__title {
  font-weight: 600;
  font-size: 1.1rem;
}

.art-card__details {
  color: rgba(244, 239, 231, 0.6);
  font-size: 0.9rem;
  line-height: 1.4;
}

.art-card:has(.art-card__frame:hover),
.art-card:focus-visible {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg) rotate(var(--tilt, 0deg));
  filter: brightness(1.05);
}

.room__wall .art-card:nth-child(2) .art-card__frame {
  animation-delay: -4s;
}

.room__wall .art-card:nth-child(3) .art-card__frame {
  animation-delay: -7s;
}

.acrylic {
  position: relative;
}

.acrylic::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.4), transparent 35%);
  mix-blend-mode: screen;
  opacity: 0.35;
  pointer-events: none;
}

.acrylic::after {
  content: "";
  position: absolute;
  inset: 6% 6% auto 6%;
  height: 30%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0.2;
  pointer-events: none;
}

.room--final {
  padding-bottom: 7rem;
}

.commission {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  position: relative;
  z-index: 1;
}

.commission__card {
  background: rgba(10, 14, 18, 0.82);
  border: 1px solid rgba(136, 188, 228, 0.28);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.commission__card--alt {
  background: rgba(12, 17, 22, 0.86);
}

.commission__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(136, 188, 228, 0.16), transparent 55%);
  opacity: 1;
  pointer-events: none;
}

.commission__card h3 {
  color: rgba(244, 239, 231, 0.95);
  margin-top: 0;
}

.commission__card p {
  color: rgba(244, 239, 231, 0.75);
}

.commission__list {
  margin: 1.5rem 0;
  padding-left: 1rem;
  color: rgba(244, 239, 231, 0.75);
}

.footer {
  --footer-ink: rgba(244, 239, 231, 0.9);
  --footer-muted: rgba(244, 239, 231, 0.72);
  --footer-accent: rgba(136, 188, 228, 0.9);
  --footer-glow: rgba(0, 0, 0, 0);
  --footer-cursor-glow: rgba(126, 138, 156, 0.24);
  --footer-cursor-color: rgba(136, 188, 228, 0);
  --footer-cursor-local-x: 50%;
  --footer-cursor-local-y: 50%;
  --footer-start: rgba(0, 0, 0, 0.36);
  --footer-mid: rgba(0, 0, 0, 0.84);
  --footer-end: rgba(0, 0, 0, 0.98);
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  padding: clamp(2.1rem, 4vw, 3.2rem) clamp(1rem, 2.2vw, 2rem) 0;
  margin-top: clamp(2.4rem, 5vw, 4rem);
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle clamp(130px, 20vw, 260px) at var(--footer-cursor-local-x) var(--footer-cursor-local-y),
      var(--footer-cursor-color),
      rgba(136, 188, 228, 0) 62%
    ),
    radial-gradient(120% 120% at 50% 0%, var(--footer-glow), rgba(136, 188, 228, 0) 58%),
    linear-gradient(180deg, var(--footer-start) 0%, var(--footer-mid) 34%, var(--footer-end) 100%);
  pointer-events: none;
  z-index: 0;
}

.footer.is-cursor-active {
  --footer-cursor-color: var(--footer-cursor-glow);
}

.footer::after {
  content: "DerinStudio";
  position: absolute;
  left: 50%;
  bottom: -0.095em;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 13.6vw, 10.8rem);
  line-height: 0.86;
  letter-spacing: 0.025em;
  color: rgba(244, 239, 231, 0.16);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(0.8rem, 1.8vw, 1.25rem);
  grid-template-columns: 1fr;
  align-items: flex-start;
  justify-items: end;
  min-height: clamp(6.8rem, 15vw, 10.5rem);
  padding: 0 0 clamp(5rem, 10vw, 8rem);
}

.footer__grid > * {
  position: relative;
  z-index: 1;
}

.footer__utility {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.05rem;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.72rem;
}

.footer__icon-link {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(206, 230, 248, 0.26);
  background: rgba(8, 12, 18, 0.38);
  color: rgba(244, 239, 231, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease,
    transform 0.18s ease;
}

.footer__icon-link:hover,
.footer__icon-link:focus-visible {
  color: rgba(255, 249, 236, 1);
  border-color: rgba(206, 230, 248, 0.56);
  background: rgba(12, 18, 27, 0.62);
  transform: translateY(-1px);
}

.footer__icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__link {
  border: none;
  background: transparent;
  color: rgba(244, 239, 231, 0.82);
  font-size: 0.92rem;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.footer__link:hover {
  color: rgba(255, 249, 236, 1);
}

.footer__note {
  margin: 0;
  color: rgba(244, 239, 231, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}


.footer__link--bar {
  font-size: 0.78rem;
  margin-left: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.76);
}

.footer__bar {
  position: absolute;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.footer__bar {
  border-top: 0;
  padding: 0.34rem 0.52rem;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  color: rgba(244, 239, 231, 0.7);
  text-align: right;
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid rgba(244, 239, 231, 0.16);
  background: rgba(8, 12, 18, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

body.home .footer {
  --footer-glow: rgba(0, 0, 0, 0);
  --footer-cursor-glow: rgba(126, 138, 156, 0.24);
  --footer-start: rgba(0, 0, 0, 0.36);
  --footer-mid: rgba(0, 0, 0, 0.84);
  --footer-end: rgba(0, 0, 0, 0.98);
}

body.gallery .footer {
  --footer-glow: rgba(0, 0, 0, 0);
  --footer-cursor-glow: rgba(126, 138, 156, 0.24);
  --footer-start: rgba(0, 0, 0, 0.36);
  --footer-mid: rgba(0, 0, 0, 0.84);
  --footer-end: rgba(0, 0, 0, 0.98);
  margin-top: 0;
}

body.contact-page .footer {
  --footer-glow: rgba(0, 0, 0, 0);
  --footer-cursor-glow: rgba(126, 138, 156, 0.24);
  --footer-start: rgba(0, 0, 0, 0.36);
  --footer-mid: rgba(0, 0, 0, 0.84);
  --footer-end: rgba(0, 0, 0, 0.98);
  margin-top: 0;
}

body.checkout-page .footer {
  --footer-glow: rgba(0, 0, 0, 0);
  --footer-cursor-glow: rgba(126, 138, 156, 0.24);
  --footer-start: rgba(0, 0, 0, 0.36);
  --footer-mid: rgba(0, 0, 0, 0.84);
  --footer-end: rgba(0, 0, 0, 0.98);
  margin-top: 0;
}

.art-modal {
  border: none;
  padding: 0;
  background: transparent;
  color: var(--ink);
  z-index: 10;
}

.art-modal::backdrop {
  background: rgba(10, 11, 13, 0.78);
  backdrop-filter: blur(6px);
}

.art-modal[open] {
  animation: modalFade 0.35s ease;
}

.art-modal[open] .art-modal__content {
  animation: modalRise 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.art-modal[open] .art-modal__art {
  animation: modalZoom 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.art-modal[open] .art-modal__info {
  animation: modalSlide 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.art-modal__content {
  background: rgba(15, 20, 26, 0.9);
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 2.6rem 2rem 2rem;
  display: grid;
  gap: 2rem;
  max-width: min(900px, 90vw);
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

.art-modal__content::before {
  content: "";
  position: absolute;
  inset: -20% 0 auto 0;
  height: 50%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 60%);
  opacity: 0.3;
  pointer-events: none;
  animation: sheen 6s ease-in-out infinite;
}

.art-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(206, 230, 248, 0.55);
  background: rgba(18, 14, 10, 0.82);
  color: rgba(244, 239, 231, 0.96);
  padding: 0.44rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  z-index: 12;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.art-modal__close:hover {
  background: rgba(30, 23, 16, 0.95);
  border-color: rgba(206, 230, 248, 0.8);
}

.art-modal__close:focus,
.art-modal__close:focus-visible {
  outline: none;
  border-color: rgba(206, 230, 248, 0.9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(136, 188, 228, 0.42);
}

.art-modal__art {
  position: sticky;
  top: 1.8rem;
  align-self: start;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 70vh;
}

.art-modal__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.art-modal__info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.art-modal__info p {
  color: rgba(244, 239, 231, 0.75);
  line-height: 1.6;
}

.art-modal__specs {
  display: grid;
  gap: 0.4rem;
  margin: 1.5rem 0;
  color: rgba(244, 239, 231, 0.65);
}

.art-modal__actions {
  position: sticky;
  bottom: -1px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  background: linear-gradient(180deg, rgba(15, 20, 26, 0) 0%, rgba(15, 20, 26, 0.85) 45%);
}

.commission-page {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 12, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 6vw 6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 7;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.commission-page.is-open {
  opacity: 1;
  pointer-events: auto;
}

.commission-page__panel {
  width: min(1120px, 92vw);
  background: rgba(15, 20, 26, 0.9);
  border-radius: 30px;
  border: 1px solid rgba(244, 239, 231, 0.12);
  box-shadow: var(--shadow);
  padding: 2.4rem 2.2rem 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
  position: relative;
  animation: modalRise 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  margin: 0 auto;
}

.commission-page__topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 4.2rem;
  margin-top: -0.2rem;
}

.commission-page__back {
  border: 1px solid rgba(244, 239, 231, 0.2);
  background: transparent;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
}

.commission-page__tag {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.55);
}

.commission-page__close {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  border: 1px solid rgba(244, 239, 231, 0.2);
  background: transparent;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
}

.commission-page__header {
  grid-column: 1 / -1;
}

.commission-page__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.6rem 0 0.5rem;
}

.commission-page__header p {
  color: rgba(244, 239, 231, 0.7);
  max-width: 640px;
}

.commission-guide {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.guide-card {
  background: rgba(15, 20, 26, 0.6);
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 20px;
  padding: 1rem 1.1rem;
}

.guide-card--proof {
  grid-column: 1 / -1;
}

.guide-card h3 {
  margin-top: 0;
}

.guide-list {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: rgba(244, 239, 231, 0.7);
  display: grid;
  gap: 0.3rem;
}

.proof-compare {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.6rem;
}

.proof-compare__pane {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.proof-compare__label {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  background: rgba(8, 10, 12, 0.7);
  border: 1px solid rgba(244, 239, 231, 0.15);
  color: rgba(244, 239, 231, 0.85);
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.proof__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.proof__img--before {
  filter: grayscale(0.6) brightness(0.85) contrast(0.9);
}

.commission-form {
  display: grid;
  gap: 0.85rem 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.commission-form__field {
  display: grid;
  gap: 0.4rem;
  color: rgba(244, 239, 231, 0.75);
}

.commission-form__field label {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.commission-form__label {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.commission-form__field input,
.commission-form__field select,
.commission-form__field textarea {
  background: rgba(10, 12, 15, 0.7);
  border: 1px solid rgba(244, 239, 231, 0.16);
  color: var(--ink);
  border-radius: 0;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.commission-form__field input:focus,
.commission-form__field select:focus,
.commission-form__field textarea:focus {
  outline: none;
  border-color: rgba(136, 188, 228, 0.7);
  box-shadow: 0 0 0 2px rgba(136, 188, 228, 0.2);
  transform: translateY(-1px);
}

.option-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.option-card {
  position: relative;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card__label {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.65rem 0.8rem;
  border-radius: 0;
  border: 1px solid rgba(244, 239, 231, 0.18);
  background: rgba(10, 12, 15, 0.6);
  color: rgba(244, 239, 231, 0.8);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
}

.option-card:hover .option-card__label {
  border-color: rgba(136, 188, 228, 0.55);
  transform: translateY(-1px);
}

.option-card input:checked + .option-card__label {
  border-color: rgba(136, 188, 228, 0.85);
  background: rgba(136, 188, 228, 0.2);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.option-card input:focus-visible + .option-card__label {
  outline: 2px solid rgba(136, 188, 228, 0.7);
  outline-offset: 2px;
}

.commission-form__field.is-full {
  grid-column: 1 / -1;
}

.commission-form__upload {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  align-items: center;
}

.commission-form__preview {
  height: 120px;
  border-radius: 18px;
  border: 1px dashed rgba(244, 239, 231, 0.2);
  display: grid;
  place-items: center;
  color: rgba(244, 239, 231, 0.55);
  font-size: 0.85rem;
  overflow: hidden;
}

.commission-form__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commission-form__meta {
  display: grid;
  gap: 0.3rem;
}

.commission-form__note {
  font-size: 0.8rem;
  color: rgba(244, 239, 231, 0.6);
}

.commission-form__checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.85rem;
}

.commission-form__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.2rem;
}

.good-to-know {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(244, 239, 231, 0.12);
  background: rgba(15, 20, 26, 0.6);
}

.good-to-know__copy h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.good-to-know__copy p {
  margin: 0;
  color: rgba(244, 239, 231, 0.7);
  font-size: 0.9rem;
}

.good-to-know__fields {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.commission-form__field--compact input {
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
}

.commission-side {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 2rem;
  align-self: start;
  height: fit-content;
}

.room-preview {
  --print-scale: 0.85;
  background: rgba(17, 22, 28, 0.62);
  border-radius: 22px;
  padding: 1rem;
  border: 1px solid rgba(244, 239, 231, 0.1);
  display: grid;
  gap: 0.75rem;
}

.room-preview[data-size="16x20"] {
  --print-scale: 0.6;
}

.room-preview[data-size="24x36"] {
  --print-scale: 0.72;
}

.room-preview[data-size="30x40"] {
  --print-scale: 0.82;
}

.room-preview[data-size="40x60"] {
  --print-scale: 0.95;
}

.room-preview[data-size="60x90"] {
  --print-scale: 1.08;
}

.room-preview[data-size="custom"] {
  --print-scale: 1;
}

.room-preview__wall {
  position: relative;
  border-radius: 18px;
  height: 230px;
  background: linear-gradient(180deg, rgba(29, 36, 44, 0.85), rgba(12, 14, 18, 0.95));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.room-preview__wall::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(6, 7, 9, 0), rgba(4, 5, 6, 0.65));
}

.room-preview__wall::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 22%;
  height: 6px;
  background: rgba(244, 239, 231, 0.12);
  border-radius: 999px;
}

.room-preview__print {
  width: clamp(150px, 48%, 270px);
  aspect-ratio: 3 / 4;
  background: #0b0d10;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transform: translateY(-8px) scale(var(--print-scale));
  transition: transform 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 231, 0.08);
}

.room-preview__print img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-preview__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.65);
}

.room-preview__title {
  color: var(--ink);
  font-weight: 600;
}

.commission-summary {
  background: rgba(17, 22, 28, 0.62);
  border-radius: 22px;
  padding: 1.4rem;
  border: 1px solid rgba(244, 239, 231, 0.1);
  display: grid;
  gap: 0.55rem;
  height: fit-content;
  position: static;
}

.commission-summary h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.commission-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(244, 239, 231, 0.75);
}

.commission-summary__price {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(244, 239, 231, 0.1);
  color: var(--ink);
  font-weight: 600;
}

.commission-summary__note {
  font-size: 0.8rem;
  color: rgba(244, 239, 231, 0.55);
}

.commission-confirm {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 10, 12, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: 30px;
  z-index: 5;
}

.commission-confirm.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.commission-confirm__card {
  width: min(420px, 90%);
  background: rgba(15, 20, 26, 0.95);
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 22px;
  padding: 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.commission-confirm__card ul {
  margin: 1rem auto 1.2rem;
  padding-left: 1rem;
  text-align: left;
  color: rgba(244, 239, 231, 0.7);
}

.commission-confirm__actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.status-toast {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: rgba(10, 11, 13, 0.85);
  border: 1px solid rgba(244, 239, 231, 0.2);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 8;
}

.status-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.commission-open .walk {
  filter: blur(8px);
  transform: scale(0.98);
  pointer-events: none;
}

@keyframes fog {
  0% {
    transform: translate3d(-20px, -10px, 0);
  }
  100% {
    transform: translate3d(20px, 10px, 0);
  }
}

@keyframes drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 400px;
  }
}

@keyframes sweep {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes orbit {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-20px, 30px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(20px, -10px, 0) scale(1);
  }
}

@keyframes modalRise {
  0% {
    transform: translateY(20px) scale(0.96);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes modalFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes modalZoom {
  0% {
    transform: scale(0.96);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes modalSlide {
  0% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hallwayFlow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%)
      translate3d(var(--lane-x-start), var(--y), -1200px)
      scale(0.45)
      rotateY(var(--yaw));
  }
  18% {
    opacity: 0.95;
  }
  80% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%)
      translate3d(var(--lane-x-end), var(--y), 280px)
      scale(1.08)
      rotateY(var(--yaw));
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-20%);
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(30%);
    opacity: 0;
  }
}

@keyframes printReveal {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes printerCarriage {
  0% {
    top: var(--print-track-top);
  }
  100% {
    top: var(--print-track-bottom);
  }
}

@keyframes printHeadSweep {
  0%,
  100% {
    left: var(--scan-pad);
  }
  50% {
    left: calc(100% - var(--scan-line-w) - var(--scan-pad));
  }
}

@keyframes printImageBreathe {
  0% {
    transform: scale(1.02);
    filter: saturate(1.03) contrast(1.01);
  }
  72% {
    transform: scale(1.036);
    filter: saturate(1.08) contrast(1.04);
  }
  100% {
    transform: scale(1.03);
    filter: saturate(1.1) contrast(1.06);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.01);
  }
}

@keyframes ctaAura {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.03);
  }
}

@keyframes ctaSweep {
  0% {
    left: -38%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  50% {
    left: 106%;
    opacity: 0;
  }
  100% {
    left: 106%;
    opacity: 0;
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .art-modal__content {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .art-card--feature {
    grid-column: span 1;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-column: 1 / -1;
  }

  .process__details {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process__steps li:nth-child(2),
  .process__steps li:nth-child(3),
  .detail-card:nth-child(2),
  .trust__card:first-child,
  .trust__card:last-child {
    transform: none;
  }
}

@media (max-width: 980px) {
  .commission-page__panel {
    grid-template-columns: 1fr;
  }

  .commission-side {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    padding-bottom: clamp(4.2rem, 16vw, 6.2rem);
  }

  .footer__bar {
    right: 50%;
    transform: translateX(50%);
    justify-content: center;
    text-align: center;
  }

  .footer::after {
    bottom: -0.095em;
    font-size: clamp(2.5rem, 19vw, 6rem);
    line-height: 0.88;
  }
}



.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0 0.85rem;
  pointer-events: none;
  background: rgba(8, 12, 18, 0.42);
  border-bottom: 1px solid rgba(206, 230, 248, 0.12);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.site-logo {
  position: absolute;
  left: clamp(1.5rem, 4vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237, 244, 255, 0.9);
  pointer-events: auto;
}

.site-nav {
  display: inline-flex;
  gap: 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.55);
  border: 1px solid rgba(206, 230, 248, 0.2);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  pointer-events: auto;
}

.site-nav__link {
  position: relative;
  padding: 0.2rem 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(237, 244, 255, 0.82);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -0.35rem;
  height: 1px;
  background: rgba(206, 230, 248, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #ffffff;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.cart-popover {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.site-header__checkout {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: rgba(237, 244, 255, 0.9);
  font-size: 1rem;
  pointer-events: auto;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header__checkout:hover,
.site-header__checkout:focus-visible {
  color: #ffffff;
  background: transparent;
}

.site-header__icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.35rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #88bce4;
  color: #0b0f14;
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.cart-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

.cart-badge.is-bump {
  animation: badgeBump 0.35s ease;
}

@keyframes badgeBump {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.28);
  }
  70% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}

.mini-cart {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: min(320px, 90vw);
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(8, 12, 18, 0.82);
  border: 1px solid rgba(206, 230, 248, 0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 7;
}

.mini-cart::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 0.75rem;
}

.cart-popover:hover .mini-cart,
.cart-popover:focus-within .mini-cart {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mini-cart__header {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(136, 188, 228, 0.8);
  margin-bottom: 0.8rem;
}

.mini-cart__items {
  display: grid;
  gap: 0.75rem;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.mini-cart__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.6rem;
  align-items: center;
}

.mini-cart__thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(244, 239, 231, 0.12);
}

.mini-cart__thumb-link {
  display: block;
  border-radius: 10px;
}

.mini-cart__thumb-link:focus-visible {
  outline: 1px solid rgba(206, 230, 248, 0.7);
  outline-offset: 2px;
}

.mini-cart__meta {
  display: grid;
  gap: 0.2rem;
}

.mini-cart__item-link {
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.9);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mini-cart__item-link:hover,
.mini-cart__item-link:focus-visible {
  color: #ffffff;
  border-color: rgba(206, 230, 248, 0.55);
}

.mini-cart__meta span {
  font-size: 0.75rem;
  color: rgba(244, 239, 231, 0.6);
}

.mini-cart__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.mini-cart__qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(206, 230, 248, 0.4);
  background: transparent;
  color: rgba(237, 244, 255, 0.8);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
}

.mini-cart__qty-btn:hover,
.mini-cart__qty-btn:focus-visible {
  border-color: rgba(206, 230, 248, 0.7);
  color: #ffffff;
}

.mini-cart__qty {
  font-size: 0.75rem;
  color: rgba(244, 239, 231, 0.75);
  min-width: 1.25rem;
  text-align: center;
}

.mini-cart__price {
  font-size: 0.8rem;
  color: rgba(244, 239, 231, 0.8);
}

.mini-cart__empty {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(244, 239, 231, 0.6);
}

.mini-cart__footer {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(244, 239, 231, 0.12);
  display: grid;
  gap: 0.5rem;
}

.mini-cart__footer span {
  font-size: 0.75rem;
  color: rgba(244, 239, 231, 0.6);
}

.mini-cart__footer strong {
  font-size: 0.9rem;
}

.mini-cart__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-cart__cta:hover,
.mini-cart__cta:focus-visible {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
}

.mini-cart__cta:active {
  transform: scale(0.98);
}

.mini-cart__cta.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    gap: 0.6rem;
  }

  .site-logo {
    position: static;
  }

  .cart-popover {
    top: 0.65rem;
    transform: none;
  }
}

body.home {
  background-color: #000;
  color: #f4f7ff;
}

/* =====================
   Legal Pages
===================== */

body.legal-page {
  background: #000;
  color: var(--ink);
  position: relative;
}

body.legal-page::before {
  display: none;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 6;
  background: rgba(8, 12, 18, 0.8);
  border-bottom: 1px solid rgba(206, 230, 248, 0.12);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.legal-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-brand {
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(237, 244, 255, 0.9);
}

.legal-actions {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-action {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(206, 230, 248, 0.25);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237, 244, 255, 0.78);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.legal-action:hover,
.legal-action:focus-visible {
  color: #ffffff;
  border-color: rgba(206, 230, 248, 0.6);
}

.legal-action--primary {
  background: rgba(136, 188, 228, 0.2);
  border-color: rgba(136, 188, 228, 0.55);
  color: rgba(237, 244, 255, 0.95);
}

.legal-shell {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5.5rem 6vw 4.5rem;
  display: grid;
  gap: 2.2rem;
}

.legal-hero {
  display: grid;
  gap: 0.8rem;
  max-width: 820px;
}

.legal-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(136, 188, 228, 0.85);
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  margin: 0;
}

.legal-lead {
  margin: 0;
  color: rgba(244, 239, 231, 0.75);
  line-height: 1.6;
}

.legal-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.6);
}

.legal-card {
  background: rgba(11, 15, 20, 0.92);
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 0.85rem;
}

.legal-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.legal-card p {
  margin: 0;
  color: rgba(244, 239, 231, 0.72);
  line-height: 1.6;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(244, 239, 231, 0.72);
  line-height: 1.6;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.legal-list a {
  color: rgba(136, 188, 228, 0.9);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-list a:hover,
.legal-list a:focus-visible {
  color: #ffffff;
  border-color: rgba(136, 188, 228, 0.6);
}

.legal-notes {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.legal-note h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.legal-note p {
  margin: 0;
  color: rgba(244, 239, 231, 0.7);
  font-size: 0.95rem;
}

.legal-media {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.legal-media figure {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.legal-media img {
  border-radius: 18px;
  border: 1px solid rgba(244, 239, 231, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.legal-media figcaption {
  font-size: 0.8rem;
  color: rgba(244, 239, 231, 0.6);
}

@media (max-width: 720px) {
  .legal-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .legal-shell {
    padding: 4.5rem 6vw 3.5rem;
  }
}

body.home .ambient {
  display: none;
}

.home-grid {
  min-height: 100vh;
  padding: 5rem 5vw 3rem;
}

.home-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: min(1000px, 92vw);
  margin: 0 auto;
  width: 100%;
}

.home-grid__column {
  display: grid;
  gap: 0.9rem;
}

.home-grid__item {
  --reveal-y: 12px;
  --depth-rotate-x: 0deg;
  --depth-rotate-y: 0deg;
  --depth-shift-x: 0px;
  --depth-shift-y: 0px;
  --depth-scale: 1;
  display: block;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  z-index: 0;
  width: 100%;
  perspective: 900px;
  transform-style: preserve-3d;
}

.home-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: scale(0.99);
  transition: opacity 0.3s ease, transform 0.28s ease;
  pointer-events: none;
}

.home-grid__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
  opacity: 1;
  transform:
    translate3d(var(--depth-shift-x), var(--depth-shift-y), 0)
    rotateX(var(--depth-rotate-x))
    rotateY(var(--depth-rotate-y))
    scale(var(--depth-scale));
  transform-origin: center;
  transition: opacity 0.6s ease, transform 0.28s ease, filter 0.28s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.home-grid__item.is-reveal .home-grid__image {
  opacity: 0;
}

.home-grid__item.is-reveal.is-visible .home-grid__image {
  opacity: 1;
}

.home-grid__item:hover,
.home-grid__item:focus-visible {
  z-index: 2;
}

.home-grid__item:hover .home-grid__image,
.home-grid__item:focus-visible .home-grid__image {
  --depth-scale: 1.015;
  transition-delay: 0ms;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.38));
}

.home-grid__item:hover::after,
.home-grid__item:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.home-grid__item.is-depth-active .home-grid__image {
  transition-duration: 0.12s;
}

body.home .footer {
  margin-top: 2rem;
  padding-top: 2.2rem;
}

.home-grid__error {
  margin: 0;
  color: rgba(244, 247, 255, 0.7);
  font-size: 0.95rem;
}

.home-footer {
  padding: 1.5rem 0 2.5rem;
}

.home-footer__inner {
  max-width: min(1200px, 90vw);
  margin: 0 auto;
  color: rgba(244, 247, 255, 0.6);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 900px) {
  .home-grid__inner {
    gap: 0.85rem;
  }
}

@media (max-width: 1100px) {
  .home-grid__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-grid__column[data-home-grid-col="right"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-grid {
    padding: 4.5rem 6vw 2.6rem;
  }

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

  .home-grid__column[data-home-grid-col="center"],
  .home-grid__column[data-home-grid-col="right"] {
    display: none;
  }

  .home-grid__image {
    width: 90%;
    max-width: 90%;
  }
}

.contact-shell {
  min-height: 128vh;
  padding: 8rem 6vw 1.6rem;
  display: grid;
  gap: 2.8rem;
  position: relative;
  z-index: 1;
}

.contact-hero {
  max-width: 680px;
  display: grid;
  gap: 0.8rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  margin: 0;
}

.contact-lead {
  margin: 0;
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.6;
}

.contact-booking {
  margin-top: 0.6rem;
}

.contact-booking__card {
  width: min(820px, 100%);
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px dashed rgba(136, 188, 228, 0.4);
  background: rgba(8, 12, 18, 0.56);
  display: grid;
  gap: 0.7rem;
}

.contact-booking__label {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(136, 188, 228, 0.82);
}

.contact-booking__card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.contact-booking__card p {
  margin: 0;
  color: rgba(244, 239, 231, 0.72);
  max-width: 52ch;
}

.contact-grid {
  display: grid;
  margin-top: 0.6rem;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-card {
  background: #0b0f14;
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.contact-card h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.contact-card p {
  margin: 0;
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.6;
}

.contact-meta {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
  color: rgba(244, 239, 231, 0.78);
  font-size: 0.95rem;
}

.contact-meta span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(136, 188, 228, 0.75);
  margin-bottom: 0.25rem;
}

.contact-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-link {
  color: rgba(244, 239, 231, 0.88);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #ffffff;
  border-color: rgba(136, 188, 228, 0.7);
}

.contact-form {
  align-self: start;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-note {
  margin: 0;
  color: rgba(244, 239, 231, 0.6);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-shell {
    min-height: 118vh;
    padding: 7rem 6vw 3.5rem;
  }
}

.checkout-shell {
  min-height: 100vh;
  padding: 7rem 6vw 4rem;
  display: grid;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}

.checkout-hero {
  max-width: 720px;
  display: grid;
  gap: 0.8rem;
}

.checkout-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  margin: 0;
}

.checkout-lead {
  margin: 0;
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.6;
}

.checkout-back-link {
  justify-self: start;
}

.checkout-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  align-items: start;
}

.checkout-card {
  background: #0b0f14;
  border: 1px solid rgba(244, 239, 231, 0.12);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.checkout-card h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.checkout-card p {
  margin: 0;
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.6;
}

.checkout-summary {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
  font-size: 0.95rem;
}

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

.checkout-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(244, 239, 231, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.checkout-item__thumb-link {
  display: block;
  border-radius: 14px;
}

.checkout-item__thumb-link:focus-visible {
  outline: 1px solid rgba(206, 230, 248, 0.7);
  outline-offset: 3px;
}

.checkout-item__meta {
  display: grid;
  gap: 0.3rem;
}

.checkout-item__link {
  font-size: 1rem;
  color: rgba(244, 239, 231, 0.92);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.checkout-item__link:hover,
.checkout-item__link:focus-visible {
  color: #ffffff;
  border-color: rgba(206, 230, 248, 0.6);
}

.checkout-item__meta span {
  color: rgba(244, 239, 231, 0.65);
  font-size: 0.9rem;
}

.checkout-item__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(206, 230, 248, 0.4);
  background: transparent;
  color: rgba(237, 244, 255, 0.85);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.checkout-qty-btn:hover,
.checkout-qty-btn:focus-visible {
  border-color: rgba(206, 230, 248, 0.7);
  color: #ffffff;
}

.checkout-qty-btn:active {
  transform: scale(0.92);
}

.checkout-qty {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(244, 239, 231, 0.8);
}

.checkout-item__price {
  font-size: 0.9rem;
  color: rgba(244, 239, 231, 0.85);
}

.checkout-empty {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(244, 239, 231, 0.6);
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(244, 239, 231, 0.82);
}

.checkout-line span {
  color: rgba(244, 239, 231, 0.65);
}

.checkout-total {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 239, 231, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
}

.checkout-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.6);
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .checkout-shell {
    padding: 6.5rem 6vw 3.5rem;
  }
}

.gallery-wall {
  touch-action: pan-y;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 4.5rem 4vw 1.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1800px;
  transform-origin: center center;
  will-change: transform;
}

.gallery-wall.is-room-spinning {
  pointer-events: none;
}

.gallery-wall.is-room-spinning-out {
  animation: galleryRoomSpinOut 480ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.gallery-wall.is-room-spinning-in {
  animation: galleryRoomSpinIn 540ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes galleryRoomSpinOut {
  0% {
    transform: perspective(1800px) rotateY(0deg) translateZ(0);
  }
  100% {
    transform: perspective(1800px) rotateY(-90deg) translateZ(0);
  }
}

@keyframes galleryRoomSpinIn {
  0% {
    transform: perspective(1800px) rotateY(90deg) translateZ(0);
  }
  100% {
    transform: perspective(1800px) rotateY(0deg) translateZ(0);
  }
}

.gallery-wall__bg {
  position: absolute;
  inset: 3.6rem 0 0 0;
  --gallery-room-image: url("gallery_wall/g1/img-g1-001.jpg");
  --gallery-room-position: center;
  --gallery-room-overlay-start: rgba(6, 10, 16, 0.08);
  --gallery-room-overlay-end: rgba(6, 10, 16, 0.34);
  --gallery-spotlight-alpha: 0.26;
  background-image:
    radial-gradient(
      circle clamp(180px, 24vw, 380px) at var(--cursor-ratio-x, 50%) var(--cursor-ratio-y, 42%),
      rgba(198, 226, 255, var(--gallery-spotlight-alpha)),
      rgba(198, 226, 255, 0) 66%
    ),
    linear-gradient(
      180deg,
      var(--gallery-room-overlay-start),
      var(--gallery-room-overlay-end)
    ),
    var(--gallery-room-image);
  background-size: cover;
  background-position: var(--gallery-room-position);
  background-repeat: no-repeat;
  opacity: 1;
}

.gallery-wall__frame {
  width: min(92vw, 1180px);
  height: min(78vh, 820px);
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  z-index: 1;
  --slide-offset: clamp(28px, 6vw, 90px);
}

.gallery-wall__frame::before {
  content: none;
}

.gallery-wall__frame::after {
  content: none;
}

.gallery-wall__ghost {
  position: absolute;
  top: 50%;
  width: clamp(160px, 26vw, 360px);
  height: clamp(130px, 22vh, 300px);
  pointer-events: none;
  opacity: 0.35;
  filter: grayscale(1) saturate(0.35) contrast(0.9) brightness(0.88);
  transition: none;
  z-index: 0;
}

.gallery-wall__frame.is-transitioning .gallery-wall__ghost {
  transition: transform 0.36s ease-in-out, opacity 0.36s ease-in-out;
}

.gallery-wall__ghost--prev {
  left: 50%;
  transform: translate(-135%, -50%) scale(0.7);
}

.gallery-wall__ghost--next {
  left: 50%;
  transform: translate(35%, -50%) scale(0.7);
}

.gallery-wall__frame.is-prep[data-direction="next"] .gallery-wall__ghost--prev {
  transform: translate(-145%, -50%) scale(0.68);
  opacity: 0.3;
}

.gallery-wall__frame.is-prep[data-direction="next"] .gallery-wall__ghost--next {
  transform: translate(25%, -50%) scale(0.74);
  opacity: 0.4;
}

.gallery-wall__frame.is-prep[data-direction="prev"] .gallery-wall__ghost--prev {
  transform: translate(-125%, -50%) scale(0.74);
  opacity: 0.4;
}

.gallery-wall__frame.is-prep[data-direction="prev"] .gallery-wall__ghost--next {
  transform: translate(45%, -50%) scale(0.68);
  opacity: 0.3;
}

.gallery-wall__ghost-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  box-shadow: none;
  opacity: 0.5;
}

.gallery-wall__frame.is-transitioning[data-direction="next"] .gallery-wall__ghost--prev {
  transform: translate(-185%, -50%) scale(0.65);
  opacity: 0.05;
}

.gallery-wall__frame.is-transitioning[data-direction="next"] .gallery-wall__ghost--next {
  transform: translate(0%, -50%) scale(0.82);
  opacity: 0.25;
}

.gallery-wall__frame.is-transitioning[data-direction="prev"] .gallery-wall__ghost--prev {
  transform: translate(-85%, -50%) scale(0.82);
  opacity: 0.25;
}

.gallery-wall__frame.is-transitioning[data-direction="prev"] .gallery-wall__ghost--next {
  transform: translate(85%, -50%) scale(0.65);
  opacity: 0.05;
}

.gallery-wall__print {
  --frame-pad: 0px;
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: var(--frame-pad);
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 1;
}

.gallery-wall__print::before {
  content: none;
}

.gallery-wall__print::after {
  content: none;
}

.gallery-wall__actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(0.8rem, 2vw, 1.4rem);
  position: relative;
  z-index: 1;
}

.gallery-wall__purchase {
  border: 1px solid rgba(206, 230, 248, 0.35);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.75);
  color: rgba(244, 247, 255, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gallery-wall__purchase:hover,
.gallery-wall__purchase:focus-visible {
  color: #ffffff;
  border-color: rgba(206, 230, 248, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.gallery-wall__image {
  grid-area: 1 / 1;
  height: clamp(320px, 52vh, 560px);
  width: auto;
  max-height: clamp(320px, 52vh, 560px);
  max-width: 90%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  background: transparent;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transform: translateX(0);
  transition: none;
  will-change: transform, opacity;
}

.gallery-wall__frame.is-transitioning .gallery-wall__image {
  transition: transform 0.36s ease-in-out, opacity 0.36s ease-in-out;
}

.gallery-wall__image--incoming {
  opacity: 0;
  z-index: 1;
}

.gallery-wall__image--current {
  z-index: 2;
}

.gallery-wall__frame[data-direction="next"] .gallery-wall__image--incoming {
  transform: translateX(var(--slide-offset));
}

.gallery-wall__frame[data-direction="prev"] .gallery-wall__image--incoming {
  transform: translateX(calc(var(--slide-offset) * -1));
}

.gallery-wall__frame.is-transitioning[data-direction="next"] .gallery-wall__image--current {
  transform: translateX(calc(var(--slide-offset) * -1));
  opacity: 0;
}

.gallery-wall__frame.is-transitioning[data-direction="next"] .gallery-wall__image--incoming {
  transform: translateX(0);
  opacity: 1;
}

.gallery-wall__frame.is-transitioning[data-direction="prev"] .gallery-wall__image--current {
  transform: translateX(var(--slide-offset));
  opacity: 0;
}

.gallery-wall__frame.is-transitioning[data-direction="prev"] .gallery-wall__image--incoming {
  transform: translateX(0);
  opacity: 1;
}

.gallery-wall__nav {
  position: absolute;
  top: 55%;
  transform: translateY(-50%) scaleY(1.85);
  transform-origin: center;
  z-index: 2;
  width: clamp(56px, 8vw, 120px);
  height: clamp(200px, 40vh, 520px);
  border-radius: 0;
  border: none;
  background: transparent;
  color: rgba(120, 74, 40, 0.95);
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.26s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-wall__icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 0.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 22px rgba(120, 74, 40, 0.35))
    drop-shadow(0 10px 22px rgba(10, 12, 18, 0.4));
}

.gallery-wall__nav:hover,
.gallery-wall__nav:focus-visible {
  transform: translateY(-50%) scale(1.16, 2.15);
}

.gallery-wall__nav--prev {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery-wall__nav--next {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery-wall__frame.is-transitioning ~ .gallery-wall__nav {
  opacity: 0;
  pointer-events: none;
}

.gallery-wall__switcher {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.35rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 3;
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

.gallery-wall__gallery-label {
  margin: 0;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(206, 230, 248, 0.22);
  background: rgba(8, 12, 18, 0.42);
  color: rgba(244, 247, 255, 0.78);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.gallery-wall__switch {
  border: 1px solid rgba(206, 230, 248, 0.35);
  padding: 0.58rem 1rem;
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.76);
  color: rgba(244, 247, 255, 0.92);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease, opacity 0.2s ease;
}

.gallery-wall__switch:hover,
.gallery-wall__switch:focus-visible {
  color: #ffffff;
  border-color: rgba(206, 230, 248, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.gallery-wall__switch:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .gallery-wall__print {
    --frame-pad: 0px;
  }

  .gallery-wall__ghost {
    width: clamp(150px, 30vw, 300px);
    height: clamp(120px, 20vh, 240px);
    opacity: 0.3;
  }

  .gallery-wall__ghost--prev {
    transform: translate(-115%, -50%) scale(0.66);
  }

  .gallery-wall__ghost--next {
    transform: translate(20%, -50%) scale(0.66);
  }

  .gallery-wall__image {
    height: clamp(280px, 50vh, 520px);
    max-height: clamp(280px, 50vh, 520px);
    max-width: 92%;
  }

  .gallery-wall__switch {
    padding: 0.54rem 0.86rem;
    letter-spacing: 0.24em;
  }
}

@media (max-width: 640px) {
  .gallery-wall__print {
    --frame-pad: 0px;
  }

  .gallery-wall__ghost {
    display: none;
  }

  .gallery-wall__image {
    height: clamp(240px, 46vh, 420px);
    max-height: clamp(240px, 46vh, 420px);
    max-width: 94%;
  }

  .gallery-wall__switcher {
    top: 0.6rem;
    right: 0.6rem;
  }

  .gallery-wall__gallery-label {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .gallery-wall__switch {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    padding: 0.5rem 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* =====================
   Store Page
===================== */

body.store {
  background: #000;
  color: #fff;
}

.store-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  padding: 6rem 4rem;
}

.store-preview {
  position: relative;
}

.store-stage {
  position: relative;
  width: 100%;
  height: clamp(560px, 84vh, 880px);
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 45%, rgba(18, 24, 36, 0.92), rgba(5, 7, 10, 0.98));
  border: 1px solid rgba(206, 230, 248, 0.14);
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  --preview-scale: 1;
  --depth-rotate-x: 0deg;
  --depth-rotate-y: 0deg;
  --depth-shift-x: 0px;
  --depth-shift-y: 0px;
}

.store-stage:focus-visible {
  outline: 2px solid rgba(206, 230, 248, 0.6);
  outline-offset: 4px;
}

.store-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 84% at 50% 0%,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0) 58%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.store-stage__art {
  display: block;
  max-width: 94%;
  max-height: 92%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.24s ease, filter 0.24s ease;
  will-change: transform;
}

.store-stage__art {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform:
    translate(-50%, -50%)
    translate3d(var(--depth-shift-x), var(--depth-shift-y), 0)
    rotateX(var(--depth-rotate-x))
    rotateY(var(--depth-rotate-y))
    scale(var(--preview-scale));
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.45));
}

.store-stage.is-depth-active .store-stage__art,
.store-stage:hover .store-stage__art,
.store-stage:focus-visible .store-stage__art {
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.6));
}

.store-config h1 {
  margin-bottom: 1rem;
}

.store-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 247, 255, 0.7);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.store-back:hover,
.store-back:focus-visible {
  color: #fff;
  border-color: rgba(244, 247, 255, 0.5);
}

.store-material {
  margin-bottom: 1.5rem;
}

.store-sizes h2 {
  margin: 0 0 0.75rem;
}

.store-sizes [data-size-options] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.size-option {
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 0.6rem 0.75rem;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
}

.size-option.active {
  border-color: #fff;
}

.store-price {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.store-add {
  margin-top: 2rem;
  padding: 1rem;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.store-add:hover,
.store-add:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
}

.store-add:active {
  transform: scale(0.98);
}

@media (max-width: 900px) {
  .store-layout {
    grid-template-columns: 1fr;
    padding: 6rem 2.5rem 4rem;
  }
}

@media (max-width: 640px) {
  .store-layout {
    padding: 5.5rem 1.5rem 3.5rem;
  }

  .store-sizes [data-size-options] {
    grid-template-columns: 1fr;
  }
}
