:root {
  --ink: #0d0e11;
  --paper: #f6efe5;
  --muted: #c9bfaf;
  --line: rgba(246, 239, 229, 0.18);
  --gold: #d4a14a;
  --red: #b94337;
  --green: #2d7668;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  overflow-x: clip;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(246, 239, 229, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 229, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 110px clamp(18px, 5vw, 74px) 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(246, 239, 229, 0.08), transparent 28%),
    #0d0e11;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background-image: url("optimized/hero-ai-studio.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 900ms ease;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 14, 17, 0.94), rgba(13, 14, 17, 0.68) 44%, rgba(13, 14, 17, 0.22)),
    linear-gradient(180deg, rgba(13, 14, 17, 0.52), transparent 38%, rgba(13, 14, 17, 0.74));
}

.topbar {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: clamp(18px, 5vw, 74px);
  right: clamp(18px, 5vw, 74px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.menu-toggle {
  display: none;
}

.language-switcher {
  position: relative;
  min-width: 150px;
}

.language-current,
.language-menu button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid transparent;
  background: rgba(8, 9, 12, 0.58);
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.language-current {
  min-height: 42px;
  justify-content: space-between;
  padding: 0 14px;
  border-color: rgba(255, 248, 237, 0.22);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.language-current:hover,
.language-switcher.is-open .language-current {
  border-color: rgba(212, 161, 74, 0.62);
  background: rgba(13, 14, 17, 0.74);
}

.language-flag {
  width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
}

.language-name {
  flex: 1;
  display: inline-flex;
  align-items: center;
  text-align: left;
  line-height: 1;
}

.language-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 248, 237, 0.82);
  border-bottom: 2px solid rgba(255, 248, 237, 0.82);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.language-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.02)),
    rgba(8, 9, 12, 0.92);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  min-height: 44px;
  justify-content: flex-start;
  padding: 0 12px;
  border-radius: 6px;
  background: transparent;
}

.language-menu button span {
  width: 24px;
  font-size: 20px;
  text-align: center;
}

.language-menu button:hover,
.language-menu button.is-active {
  border-color: rgba(212, 161, 74, 0.32);
  background: rgba(212, 161, 74, 0.13);
}

.nav-actions a,
.hero-actions a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  text-decoration: none;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.44);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-actions a::after,
.hero-actions a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms ease;
}

.nav-actions a:hover,
.hero-actions a:hover {
  transform: translateY(-2px);
  color: #fff;
}

.nav-actions a:hover::after,
.hero-actions a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(58px, 12vw, 150px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 26px;
}

.scroll-cue {
  position: fixed;
  z-index: 20;
  right: clamp(16px, 3vw, 46px);
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  pointer-events: none;
  color: rgba(255, 248, 237, 0.9);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(-50%);
  opacity: 1;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.scroll-cue.is-hidden {
  opacity: 0;
  transform: translateY(-42%);
}

.scroll-cue i {
  position: relative;
  width: 42px;
  height: 74px;
  display: grid;
  place-items: start center;
  padding-top: 16px;
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.02)),
    rgba(8, 9, 12, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.scroll-cue i::after {
  position: absolute;
  top: 13px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 161, 74, 0.12);
  animation: scrollDot 1600ms ease-in-out infinite;
}

.scroll-cue b {
  width: 11px;
  height: 11px;
  display: block;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollArrow 1600ms ease-in-out infinite;
}

.scroll-cue b + b {
  margin-top: -4px;
  animation-delay: 120ms;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(28px);
    opacity: 1;
  }
}

@keyframes scrollArrow {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.38;
  }
  50% {
    transform: translateY(8px) rotate(45deg);
    opacity: 1;
  }
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

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

.content-section,
.consult-section,
.design-section,
.application-section,
.home-studio-summary,
.contact-page,
.gallery-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 74px);
}

.page-hero {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(18px, 5vw, 74px) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 14, 17, 0.9), rgba(13, 14, 17, 0.62)),
    url("optimized/hero-ai-studio.jpg") center / cover;
}

.compact-page {
  min-height: 48svh;
}

.contact-shell {
  position: relative;
  min-height: 112svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(212, 161, 74, 0.14), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(45, 118, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #090a0d, #111216 52%, #050506);
}

.contact-shell .topbar {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px clamp(18px, 5vw, 74px);
  background: linear-gradient(180deg, rgba(9, 10, 13, 0.94), rgba(9, 10, 13, 0.58));
  backdrop-filter: blur(14px);
}

.contact-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(246, 239, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 229, 0.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse at 50% 56%, black, transparent 76%);
}

.contact-experience {
  position: relative;
  z-index: 2;
  min-height: calc(112svh - 98px);
  display: grid;
  place-items: center;
  gap: clamp(22px, 4vh, 42px);
  padding: clamp(132px, 14vw, 178px) clamp(18px, 5vw, 74px) clamp(76px, 9vw, 120px);
  text-align: center;
  perspective: 1400px;
}

.contact-title-depth {
  animation: contactTitleIn 1800ms 120ms cubic-bezier(0.08, 0.86, 0.14, 1) both;
  transform-origin: 50% 50%;
}

.contact-title-depth h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(64px, 13vw, 178px);
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(246, 239, 229, 0.14),
    0 42px 110px rgba(0, 0, 0, 0.72);
}

.contact-title-depth p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: titleHintArrive 1500ms 540ms cubic-bezier(0.16, 0.86, 0.2, 1) both;
}

@keyframes contactTitleIn {
  0% {
    opacity: 0;
    transform: translateZ(-2200px) translateY(-80px) scale(0.08);
    filter: blur(28px);
  }
  62% {
    opacity: 1;
    transform: translateZ(90px) translateY(4px) scale(1.06);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

.cube-stage {
  position: relative;
  width: clamp(320px, 42vw, 560px);
  height: clamp(320px, 42vw, 560px);
  display: grid;
  place-items: center;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  perspective: 1300px;
  animation: cubeStageIn 1900ms 420ms cubic-bezier(0.08, 0.86, 0.14, 1) both;
}

.cube-stage.is-dragging {
  cursor: grabbing;
}

.cube-stage::before {
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 82%;
  height: 26%;
  content: "";
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212, 161, 74, 0.18), rgba(0, 0, 0, 0.5) 56%, transparent 72%);
  filter: blur(12px);
}

@keyframes cubeStageIn {
  0% {
    opacity: 0;
    transform: translateZ(-2600px) translateY(70px) scale(0.06);
    filter: blur(32px);
  }
  68% {
    opacity: 1;
    transform: translateZ(120px) translateY(-6px) scale(1.08);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    filter: blur(0);
  }
}

.contact-cube {
  position: relative;
  --cube-size: clamp(220px, 25vw, 330px);
  --cube-half: calc(var(--cube-size) / 2);
  width: var(--cube-size);
  height: var(--cube-size);
  transform-style: preserve-3d;
  transform: rotateX(var(--cube-x, 0deg)) rotateY(var(--cube-y, 0deg));
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.cube-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 239, 229, 0.16);
  border-radius: clamp(22px, 3vw, 38px);
  background: #070707;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -28px 58px rgba(0, 0, 0, 0.34);
  backface-visibility: visible;
  overflow: hidden;
}

.cube-face img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  filter: none;
  image-rendering: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.cube-face-whatsapp {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #21d04e, #08733b);
}

.cube-face-phone {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #22c96a, #08713b);
}

.cube-face-phone img {
  width: 100%;
  height: 100%;
}

.cube-face-logo {
  background: #070707;
}

.cube-face-instagram {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 225, 140, 0.55), transparent 26%),
    linear-gradient(135deg, #5b3fd7 0%, #c12b89 48%, #f06b42 100%);
}

.cube-face-location {
  border-radius: clamp(30px, 4.2vw, 54px);
  background: linear-gradient(135deg, #e8ef9a, #8fc6a4 48%, #e9c352);
}

.cube-face-gmail {
  background:
    linear-gradient(135deg, rgba(209, 54, 48, 0.18), transparent 38%),
    #f2eee5;
}

.cube-face-instagram img,
.cube-face-gmail img {
  width: 100%;
  height: 100%;
}

.cube-face-location img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cube-face-logo img {
  width: 100%;
  height: 100%;
}

.cube-face-phone img,
.cube-face-whatsapp img,
.cube-face-instagram img,
.cube-face-gmail img {
  transform: scale(1.28);
}

.cube-face-action {
  position: absolute;
  left: 50%;
  bottom: clamp(12px, 1.6vw, 20px);
  z-index: 2;
  max-width: calc(100% - 20px);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 11px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(5, 8, 7, 0.78);
  color: #fff;
  font-size: clamp(10px, 1.05vw, 13px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  transform: translate3d(-50%, 0, 1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
  white-space: normal;
}

.cube-face-action:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(5, 8, 7, 0.74);
}

.cube-face-phone .cube-face-action {
  border-color: rgba(179, 255, 211, 0.42);
  background: rgba(7, 106, 54, 0.9);
}

.cube-face-phone .cube-face-action:hover {
  background: rgba(9, 132, 67, 0.88);
}

.cube-face-whatsapp .cube-face-action {
  border-color: rgba(190, 255, 216, 0.42);
  background: rgba(3, 96, 45, 0.9);
}

.cube-face-whatsapp .cube-face-action:hover {
  background: rgba(9, 116, 58, 0.9);
}

.cube-face-instagram .cube-face-action {
  border-color: rgba(255, 210, 238, 0.44);
  background: rgba(133, 28, 92, 0.92);
  font-size: clamp(8px, 0.9vw, 11px);
  max-width: calc(100% - 16px);
}

.cube-face-instagram .cube-face-action:hover {
  background: rgba(164, 38, 113, 0.9);
}

.cube-face-location .cube-face-action {
  border-color: rgba(255, 247, 185, 0.48);
  background: rgba(104, 119, 36, 0.9);
}

.cube-face-location .cube-face-action:hover {
  background: rgba(151, 166, 58, 0.9);
}

.cube-face-gmail .cube-face-action {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(185, 52, 45, 0.94);
}

.cube-face-gmail .cube-face-action:hover {
  background: rgba(210, 64, 55, 0.94);
}

.cube-face-front {
  transform: translateZ(var(--cube-half));
}

.cube-face-back {
  transform: rotateY(180deg) translateZ(var(--cube-half));
}

.cube-face-right {
  transform: rotateY(90deg) translateZ(var(--cube-half));
}

.cube-face-left {
  transform: rotateY(-90deg) translateZ(var(--cube-half));
}

.cube-face-top {
  transform: rotateX(90deg) translateZ(var(--cube-half));
}

.cube-face-bottom {
  transform: rotateX(-90deg) translateZ(var(--cube-half));
}

.studio-page-hero {
  background:
    linear-gradient(90deg, rgba(13, 14, 17, 0.88), rgba(13, 14, 17, 0.48)),
    url("optimized/studio-wide-ai.jpg") center / cover;
}

.gallery-page-hero {
  background:
    linear-gradient(90deg, rgba(13, 14, 17, 0.9), rgba(13, 14, 17, 0.58)),
    url("thumbs/IMG_9078.jpg") center / cover;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(13, 14, 17, 0.92), rgba(13, 14, 17, 0.58)),
    url("optimized/hero.jpg") center 50% / cover;
}

.page-title {
  position: relative;
  z-index: 3;
  width: min(820px, 100%);
}

.page-title h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.9;
}

.page-title p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.about-slogan {
  width: min(1080px, 100%);
  padding-top: clamp(30px, 4vw, 64px);
}

.about-slogan h1 {
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8.6vw, 142px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  color: #fff8ed;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(212, 161, 74, 0.5),
    0 22px 54px rgba(0, 0, 0, 0.78);
}

.about-slogan h1::after {
  width: min(320px, 45vw);
  height: 3px;
  display: block;
  margin-top: clamp(24px, 3vw, 38px);
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 248, 237, 0));
}

.home-studio-summary {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  background: linear-gradient(135deg, #121419, #1d1e1f);
}

.artist-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 74px);
  background:
    radial-gradient(circle at 18% 22%, rgba(212, 161, 74, 0.14), transparent 28%),
    linear-gradient(135deg, #0d0e11, #191b1f 60%, #101114);
}

.artist-photo {
  aspect-ratio: 4 / 5.2;
  overflow: hidden;
  border-radius: 2px 30px 2px 30px;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.88);
}

.artist-story {
  max-width: 780px;
}

.artist-story h2 {
  margin: 0;
  font-size: clamp(34px, 5.8vw, 72px);
  line-height: 0.96;
}

.artist-story p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.summary-visual {
  min-height: clamp(320px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px 28px 2px 28px;
  background: #15161a;
  box-shadow: var(--shadow);
}

.summary-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  background: linear-gradient(135deg, #121419, #1d1e1f);
}

.content-section,
.consult-section,
.design-section,
.application-section,
.home-studio-summary,
.gallery-section,
.contact-page {
  position: relative;
  overflow: hidden;
}

.content-section::before,
.consult-section::before,
.design-section::before,
.application-section::before,
.home-studio-summary::before,
.gallery-section::before,
.contact-page::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.3;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(246, 239, 229, 0.045) 38% 39%, transparent 39% 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.studio-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px 28px 2px 28px;
  background: #15161a;
  box-shadow: var(--shadow);
}

.studio-visual img {
  width: 100%;
  min-height: clamp(320px, 42vw, 620px);
  display: block;
  object-fit: cover;
}

.studio-copy {
  padding: clamp(8px, 2vw, 22px) 0;
}

.section-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 0.95;
}

.section-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.studio-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.studio-points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 239, 229, 0.06);
  color: var(--paper);
  font-size: 14px;
}

.consult-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  background:
    radial-gradient(circle at 88% 18%, rgba(212, 161, 74, 0.14), transparent 28%),
    linear-gradient(135deg, #0d0e11, #181a1e 58%, #111215);
}

.consult-copy {
  max-width: 650px;
}

.consult-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5.8vw, 72px);
  line-height: 0.96;
}

.consult-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.coffee-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 20px;
  border: 1px solid rgba(212, 161, 74, 0.55);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(212, 161, 74, 0.22), rgba(246, 239, 229, 0.06)),
    rgba(13, 14, 17, 0.72);
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.coffee-button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(212, 161, 74, 0.14);
}

.coffee-button:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 239, 229, 0.72);
  background:
    linear-gradient(135deg, rgba(212, 161, 74, 0.32), rgba(246, 239, 229, 0.1)),
    rgba(13, 14, 17, 0.9);
}

.consult-visual {
  position: relative;
  min-height: clamp(420px, 52vw, 720px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px 2px 28px 2px;
  background: #15161a;
  box-shadow: var(--shadow);
}

.consult-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 14, 17, 0.06), transparent 52%, rgba(13, 14, 17, 0.3)),
    linear-gradient(90deg, rgba(13, 14, 17, 0.2), transparent 34%);
}

.consult-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.design-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  background:
    radial-gradient(circle at 12% 22%, rgba(45, 118, 104, 0.16), transparent 30%),
    linear-gradient(135deg, #15171b, #0d0e11 72%);
}

.design-visual {
  position: relative;
  min-height: clamp(320px, 40vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(212, 161, 74, 0.24);
  border-radius: 2px 28px 2px 28px;
  background: #15161a;
  box-shadow: var(--shadow);
}

.design-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 14, 17, 0.04), transparent 60%, rgba(13, 14, 17, 0.28)),
    linear-gradient(90deg, transparent 58%, rgba(13, 14, 17, 0.18));
}

.design-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.design-copy {
  max-width: 620px;
  padding: clamp(8px, 2vw, 22px) 0;
}

.design-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 0.98;
}

.design-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.design-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.design-points span {
  padding: 10px 12px;
  border: 1px solid rgba(212, 161, 74, 0.26);
  border-radius: 999px;
  background: rgba(246, 239, 229, 0.06);
  color: var(--paper);
  font-size: 14px;
}

.application-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 67, 55, 0.14), transparent 28%),
    linear-gradient(135deg, #0d0e11, #181a1e 62%, #111215);
}

.application-copy {
  max-width: 650px;
}

.application-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 0.98;
}

.application-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.application-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.application-points span {
  padding: 10px 12px;
  border: 1px solid rgba(185, 67, 55, 0.28);
  border-radius: 999px;
  background: rgba(246, 239, 229, 0.06);
  color: var(--paper);
  font-size: 14px;
}

.application-visual {
  position: relative;
  min-height: clamp(320px, 40vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(246, 239, 229, 0.16);
  border-radius: 28px 2px 28px 2px;
  background: #15161a;
  box-shadow: var(--shadow);
}

.application-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 14, 17, 0.04), transparent 58%, rgba(13, 14, 17, 0.24)),
    linear-gradient(90deg, rgba(13, 14, 17, 0.16), transparent 40%);
}

.application-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gallery-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(185, 67, 55, 0.16), transparent 28%),
    linear-gradient(135deg, #0d0e11, #17191d);
}

.carousel-gallery {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 110px 0 48px;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(246, 239, 229, 0.12), transparent 34%),
    radial-gradient(circle at 50% 72%, rgba(185, 67, 55, 0.18), transparent 28%),
    linear-gradient(180deg, #08090b 0%, #101115 50%, #050506 100%);
}

.carousel-gallery::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(246, 239, 229, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 229, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 58%, black, transparent 72%);
}

.gallery-title-motion {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - clamp(36px, 10vw, 148px)));
  margin: 0 auto;
  text-align: center;
  animation: titleArrive 1300ms cubic-bezier(0.16, 0.86, 0.2, 1) both;
  transform-origin: 50% 0;
}

.gallery-title-motion h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 10vw, 156px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(246, 239, 229, 0.16),
    0 34px 90px rgba(0, 0, 0, 0.62);
}

@keyframes titleArrive {
  from {
    opacity: 0;
    transform: translateY(-42px) scale(0.72);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.carousel-stage {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - clamp(36px, 10vw, 148px)));
  height: min(540px, 56vh);
  margin: clamp(20px, 4vh, 44px) auto 0;
  cursor: grab;
  touch-action: none;
  overflow: visible;
}

.carousel-stage.is-dragging {
  cursor: grabbing;
}

.carousel-stage::before {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: min(760px, 78vw);
  height: 92px;
  content: "";
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212, 161, 74, 0.16), rgba(0, 0, 0, 0.48) 62%, transparent 72%);
  filter: blur(10px);
}

.carousel-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
}

.carousel-artwork {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(94px, 10vw, 158px);
  aspect-ratio: 3 / 4.35;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 229, 0.16);
  border-radius: 2px 18px 2px 18px;
  background: #080808;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.46);
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
  contain: paint;
  will-change: transform, opacity;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.carousel-artwork:hover {
  border-color: rgba(212, 161, 74, 0.62);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.54);
  filter: brightness(1.08);
}

.carousel-artwork img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
  transform: translateZ(0);
}

.carousel-artwork::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.16), transparent 62%),
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.58));
  opacity: 0.58;
}

.carousel-hint {
  position: relative;
  z-index: 4;
  margin: 16px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  animation: titleHintArrive 1500ms 240ms cubic-bezier(0.16, 0.86, 0.2, 1) both;
}

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

.artwork-modal {
  width: min(900px, calc(100vw - 28px));
  padding: 0;
  border: 1px solid rgba(246, 239, 229, 0.22);
  border-radius: 2px 30px 2px 30px;
  background: rgba(10, 11, 13, 0.94);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.artwork-modal[open] {
  animation: artworkOpen 260ms ease both;
}

.artwork-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

@keyframes artworkOpen {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.artwork-card {
  display: block;
  padding: clamp(12px, 2vw, 20px);
}

.artwork-card img {
  width: 100%;
  max-height: 84vh;
  display: block;
  object-fit: contain;
  border-radius: 2px 22px 2px 22px;
}

.close-artwork {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(246, 239, 229, 0.08);
  color: var(--paper);
}

.gallery-summary .gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.reality-fold {
  min-height: 230vh;
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse at 48% 34%, rgba(246, 239, 229, 0.09), transparent 48%),
    radial-gradient(circle at 74% 48%, rgba(185, 67, 55, 0.12), transparent 30%),
    #050506;
}

.fold-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(420px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: clamp(42px, 7vh, 86px);
  perspective: 1600px;
  overflow: hidden;
}

.fold-copy {
  position: relative;
  z-index: 4;
}

.fold-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(46px, 7.5vw, 106px);
  line-height: 0.86;
  text-transform: uppercase;
}

.fold-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.glass-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid rgba(246, 239, 229, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(246, 239, 229, 0.13), rgba(246, 239, 229, 0.035)),
    rgba(13, 14, 17, 0.42);
  color: var(--paper);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.glass-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 161, 74, 0.16);
}

.glass-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 161, 74, 0.68);
  background:
    linear-gradient(135deg, rgba(212, 161, 74, 0.18), rgba(246, 239, 229, 0.06)),
    rgba(13, 14, 17, 0.62);
}

.fold-room {
  position: relative;
  height: min(660px, 72vh);
  transform-style: preserve-3d;
  transform:
    rotateX(calc(72deg - var(--fold-progress, 0) * 78deg))
    rotateY(calc(-46deg + var(--fold-progress, 0) * 112deg))
    rotateZ(calc(-8deg + var(--fold-progress, 0) * 14deg))
    translateZ(calc(-360px + var(--fold-progress, 0) * 320px));
  transition: transform 0.16s ease-out;
}

.fold-room::before,
.fold-room::after {
  position: absolute;
  inset: 8% 2%;
  content: "";
  border: 1px solid rgba(246, 239, 229, 0.11);
  background:
    linear-gradient(90deg, rgba(246, 239, 229, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(246, 239, 229, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
}

.fold-room::before {
  transform: rotateX(82deg) translateZ(-220px);
}

.fold-room::after {
  transform: rotateY(82deg) translateZ(-260px);
  opacity: 0.56;
}

.fold-card {
  position: absolute;
  width: min(300px, 36vw);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 229, 0.18);
  border-radius: 2px 22px 2px 22px;
  background: #080808;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.62);
  transform-style: preserve-3d;
}

.fold-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.28) contrast(1.04) brightness(0.86);
}

.fold-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 48%);
}

.fold-card-1 {
  left: 2%;
  top: 10%;
  transform:
    translateX(calc(var(--fold-progress, 0) * -46px))
    translateY(calc(var(--fold-progress, 0) * 34px))
    translateZ(calc(260px + var(--fold-progress, 0) * 260px))
    rotateY(calc(-38deg + var(--fold-progress, 0) * 18deg))
    rotateZ(calc(-8deg + var(--fold-progress, 0) * -10deg));
}

.fold-card-2 {
  right: 8%;
  top: 2%;
  transform:
    translateX(calc(var(--fold-progress, 0) * 76px))
    translateY(calc(var(--fold-progress, 0) * -42px))
    translateZ(calc(90px + var(--fold-progress, 0) * -300px))
    rotateY(calc(48deg + var(--fold-progress, 0) * 34deg))
    rotateZ(calc(8deg + var(--fold-progress, 0) * 14deg));
}

.fold-card-3 {
  left: 32%;
  top: 28%;
  transform:
    translateY(calc(var(--fold-progress, 0) * -58px))
    translateZ(calc(440px - var(--fold-progress, 0) * 420px))
    rotateX(calc(-14deg + var(--fold-progress, 0) * 18deg))
    rotateY(calc(var(--fold-progress, 0) * -28deg))
    scale(calc(1.08 + var(--fold-progress, 0) * 0.1));
}

.fold-card-4 {
  right: 1%;
  bottom: 4%;
  transform:
    translateX(calc(var(--fold-progress, 0) * 52px))
    translateY(calc(var(--fold-progress, 0) * 52px))
    translateZ(calc(220px + var(--fold-progress, 0) * 360px))
    rotateY(calc(34deg - var(--fold-progress, 0) * 26deg))
    rotateZ(calc(-12deg + var(--fold-progress, 0) * 18deg));
}

.fold-card-5 {
  left: 9%;
  bottom: 1%;
  transform:
    translateX(calc(var(--fold-progress, 0) * -88px))
    translateY(calc(var(--fold-progress, 0) * 64px))
    translateZ(calc(-180px + var(--fold-progress, 0) * 460px))
    rotateY(calc(-56deg + var(--fold-progress, 0) * 42deg))
    rotateZ(calc(12deg - var(--fold-progress, 0) * 20deg));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 28px;
}

.gallery-grid button {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(246, 239, 229, 0.1);
  border-radius: 2px 18px 2px 18px;
  background: #18191c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.gallery-grid button::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(13, 14, 17, 0.45)),
    linear-gradient(90deg, rgba(212, 161, 74, 0.18), transparent 35%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-grid button:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid button:nth-child(3n) {
  aspect-ratio: 3 / 4;
}

.gallery-grid button:nth-child(7n) {
  grid-row: span 2;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.gallery-grid button:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 161, 74, 0.42);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
}

.gallery-grid button:hover::after {
  opacity: 1;
}

.gallery-grid img {
  transition: transform 220ms ease;
}

.site-footer {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 74px);
  border-top: 1px solid var(--line);
  background: #090a0d;
}

.reality-fold + .site-footer {
  margin-top: 0;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(212, 161, 74, 0.14), transparent 26%),
    radial-gradient(circle at 86% 76%, rgba(45, 118, 104, 0.14), transparent 30%),
    linear-gradient(180deg, #050506, #111216 48%, #08090b);
}

.testimonials-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(246, 239, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 229, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 48%, black, transparent 72%);
}

.testimonials-header {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - clamp(36px, 10vw, 148px)));
  margin: 0 auto clamp(30px, 5vw, 56px);
  text-align: center;
}

.testimonials-header h2 {
  margin: 0;
  font-size: clamp(38px, 7vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
}

.testimonials-header p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.testimonial-marquee {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: min(160px, 18vw);
  content: "";
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #08090b, transparent);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #08090b, transparent);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 18px;
  animation: testimonialDrift 34s linear infinite;
}

.testimonial-track-reverse {
  animation-name: testimonialDriftReverse;
  animation-duration: 38s;
}

.testimonial-card {
  width: clamp(260px, 28vw, 390px);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(246, 239, 229, 0.14);
  border-radius: 2px 26px 2px 26px;
  background:
    linear-gradient(145deg, rgba(246, 239, 229, 0.09), rgba(246, 239, 229, 0.025)),
    rgba(13, 14, 17, 0.72);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.testimonial-card p {
  margin: 0;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.58;
}

.testimonial-card span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-card span::before {
  width: 22px;
  height: 1px;
  content: "";
  background: rgba(212, 161, 74, 0.72);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(26px, 5vw, 74px);
  background: linear-gradient(135deg, #0d0e11, #17191d);
}

.contact-empty {
  min-height: 420px;
  border: 1px solid rgba(246, 239, 229, 0.08);
  border-radius: 8px;
  background: rgba(246, 239, 229, 0.03);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 2px 28px 2px 28px;
  background:
    linear-gradient(145deg, rgba(246, 239, 229, 0.08), rgba(246, 239, 229, 0.035)),
    rgba(13, 14, 17, 0.74);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--paper);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(246, 239, 229, 0.24);
  border-radius: 0;
  background: rgba(13, 14, 17, 0.72);
  color: var(--paper);
  padding: 13px 14px;
  resize: vertical;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(13, 14, 17, 0.92);
}

.contact-form button {
  position: relative;
  min-height: 46px;
  justify-self: start;
  padding: 0 0 5px;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-weight: 800;
}

.contact-form button::after {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 220ms ease;
}

.contact-form button:hover::after {
  transform: scaleX(1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-size: 22px;
}

.footer-brand p {
  max-width: 420px;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.footer-credit {
  justify-self: end;
  margin: 0;
  color: rgba(246, 239, 229, 0.62);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.footer-credit span {
  display: block;
  margin-top: 4px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.footer-links,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-links {
  justify-content: center;
}

.footer-actions {
  justify-content: flex-end;
}

.footer-links a,
.footer-actions a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.footer-links a:hover,
.footer-actions a:hover {
  transform: translateY(-2px);
}

.footer-links a::after,
.footer-actions a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.footer-links a:hover::after,
.footer-actions a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lightbox {
  width: min(430px, calc(100vw - 24px));
  max-width: 96vw;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101115;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  width: 100%;
  display: block;
}

.close-lightbox {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(13, 14, 17, 0.78);
  color: var(--paper);
}

@media (max-width: 920px) {
  .content-section,
  .consult-section,
  .design-section,
  .application-section,
  .home-studio-summary,
  .artist-profile,
  .contact-page {
    grid-template-columns: 1fr;
  }

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

  .footer-links,
  .footer-actions,
  .footer-credit {
    justify-content: flex-start;
    justify-self: start;
    text-align: left;
  }

  .topbar {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-actions {
    position: fixed;
    z-index: 998;
    top: 76px;
    right: 16px;
    width: min(240px, calc(100vw - 32px));
    max-height: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
    overflow: hidden;
    padding: 0;
    border: 0 solid rgba(255, 248, 237, 0);
    border-radius: 8px;
    background: rgba(8, 9, 12, 0.78);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    opacity: 0;
    scrollbar-width: none;
    transition:
      max-height 260ms ease,
      padding 260ms ease,
      border-color 260ms ease,
      opacity 180ms ease;
  }

  .nav-actions::-webkit-scrollbar {
    display: none;
  }

  .topbar.is-menu-open .nav-actions {
    max-height: 280px;
    padding: 10px 12px;
    border-width: 1px;
    border-color: rgba(255, 248, 237, 0.16);
    opacity: 1;
  }

  .language-switcher {
    position: fixed;
    z-index: 999;
    top: 18px;
    right: 74px;
    width: 128px;
    justify-content: space-between;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .language-current {
    min-height: 46px;
    padding: 0 11px;
  }

  .language-current .language-name {
    font-size: 12px;
  }

  .language-menu {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    display: none;
  }

  .language-switcher.is-open .language-menu {
    display: block;
  }

  .menu-toggle {
    position: fixed;
    z-index: 1000;
    top: 24px;
    right: 22px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    border: 1px solid rgba(255, 248, 237, 0.46);
    border-radius: 999px;
    background: rgba(5, 6, 8, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 42px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(12px);
  }

  .menu-toggle span {
    width: 22px;
    height: 3px;
    flex: 0 0 3px;
    display: block;
    border-radius: 999px;
    background: #fff8ed;
    box-shadow: 0 0 10px rgba(255, 248, 237, 0.24);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-actions a {
    width: 100%;
    justify-content: flex-start;
    padding: 8px 4px;
    white-space: nowrap;
  }

  .contact-shell .topbar {
    align-items: center;
    flex-direction: row;
  }

  .contact-shell .nav-actions {
    width: 100%;
  }

  .fold-stage {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 26px;
    padding: 90px 0;
  }

  .fold-room {
    height: min(420px, 54vh);
    transition: transform 0.16s ease-out;
    will-change: transform;
  }

  .fold-card img {
    filter: none;
  }

  .carousel-gallery {
    padding-top: 92px;
  }

  .carousel-stage {
    height: 48vh;
  }

  .testimonials-section {
    padding-block: 64px;
  }

  .testimonial-track {
    animation-duration: 46s;
  }

  .testimonial-card {
    width: min(310px, 82vw);
    min-height: 180px;
  }

  .carousel-artwork {
    width: clamp(70px, 18vw, 108px);
    border-width: 1px;
  }

  .carousel-stage::before {
    filter: none;
    opacity: 0.45;
  }

  .carousel-artwork {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    will-change: transform;
  }

  .carousel-artwork img {
    filter: none;
  }

  .carousel-artwork::after {
    display: none;
  }

  .gallery-title-motion {
    animation: titleArrive 1300ms cubic-bezier(0.16, 0.86, 0.2, 1) both;
    filter: none;
  }

  .gallery-title-motion,
  .carousel-stage {
    width: min(100%, calc(100% - 28px));
  }

  .gallery-title-motion h1 {
    font-size: clamp(42px, 12vw, 92px);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 116px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 16px;
  }

  .nav-actions a {
    min-height: 34px;
    font-size: 13px;
  }

  .gallery-title-motion {
    width: calc(100% - 34px);
  }

  .gallery-title-motion h1 {
    font-size: clamp(34px, 11vw, 54px);
    line-height: 0.95;
  }

  .scroll-cue {
    right: 14px;
    top: 62%;
    gap: 8px;
    font-size: 10px;
  }

  .scroll-cue i {
    width: 36px;
    height: 62px;
    padding-top: 13px;
  }

  .menu-toggle {
    top: 18px;
    right: 16px;
    width: 46px;
    height: 46px;
  }

  .cube-stage {
    width: min(92vw, 390px);
    height: min(92vw, 390px);
  }

  .contact-cube {
    --cube-size: min(62vw, 250px);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
