@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  color-scheme: dark;
  background: #05070b;
  color: #f3f5f7;
  font-family: Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(89, 216, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #05070b 0%, #07101a 42%, #05070b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(89, 216, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 216, 255, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.46;
}

::selection {
  background: #59d8ff;
  color: #05070b;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #05070b;
}

.loader span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 10vw, 10rem);
  line-height: 0.8;
  color: #f3f5f7;
  text-shadow: 0 0 34px rgba(89, 216, 255, 0.5);
  animation: pulse-title 1.25s ease-in-out infinite alternate;
}

.html-loader.is-hidden {
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms ease;
}

.brand-orb,
.category-orb {
  display: grid;
  place-items: center;
  border: 1px solid rgba(89, 216, 255, 0.4);
  border-radius: 999px;
  background: rgba(89, 216, 255, 0.1);
  color: #59d8ff;
  box-shadow: 0 0 42px rgba(89, 216, 255, 0.32);
  font-weight: 900;
}

.brand-orb {
  width: 36px;
  height: 36px;
  font-size: 12px;
}

.category-orb {
  width: 56px;
  height: 56px;
  font-size: 14px;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: #59d8ff;
}

.reveal {
  opacity: 0;
  transform: translateY(72px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes pulse-title {
  from {
    opacity: 0.48;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.hero-aurora {
  background:
    radial-gradient(circle at 20% 30%, rgba(89, 216, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 76% 60%, rgba(14, 22, 33, 0.98), transparent 36rem),
    linear-gradient(135deg, rgba(89, 216, 255, 0.08), transparent 48%);
  filter: blur(18px);
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particles span {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: #59d8ff;
  box-shadow: 0 0 18px rgba(89, 216, 255, 0.85);
  animation: particle-drift 10s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0.42;
}

@keyframes particle-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(22px, -34px, 0);
  }
}

.premium-button {
  display: inline-flex;
  position: relative;
  z-index: 5;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(89, 216, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 13px 19px;
  color: #f3f5f7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.premium-button:hover {
  transform: translateY(-3px);
  border-color: rgba(89, 216, 255, 0.82);
  box-shadow: 0 0 42px rgba(89, 216, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.premium-button.primary {
  border-color: transparent;
  background: #59d8ff;
  color: #05070b;
  box-shadow: 0 0 42px rgba(89, 216, 255, 0.38);
}

.hero-title {
  display: grid;
  gap: 0.03em;
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.86;
  white-space: nowrap;
}

.hero-title span {
  display: block;
}

.hero-lead {
  max-width: 760px;
}

.approach-title,
.contact-title {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.approach-text {
  max-width: 780px;
}

.hero-copy,
.hero .order-1 {
  position: relative;
  z-index: 4;
}

.hero-qr {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: clamp(86px, 9vw, 132px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(89, 216, 255, 0.28);
  border-radius: 8px;
  background: #f3f5f7;
  box-shadow: 0 0 42px rgba(89, 216, 255, 0.22);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.hero-qr:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 58px rgba(89, 216, 255, 0.34);
}

.hero-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.portrait-panel,
.sculptor-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(89, 216, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(89, 216, 255, 0.22), transparent 20rem),
    linear-gradient(145deg, #101823, #05070b 68%);
  box-shadow: 0 0 80px rgba(89, 216, 255, 0.18);
}

.image-portrait,
.image-about,
.image-case {
  padding: 0;
}

.portrait-panel.image-portrait {
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: min(72vh, 680px);
}

.image-portrait img,
.image-portrait video,
.image-about img,
.image-case img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-portrait img,
.image-portrait video {
  min-height: 0;
  object-fit: contain;
  background: #05070b;
}

.hero-loop-video,
.hero-loop-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.image-portrait.is-video .hero-loop-video,
.image-portrait.is-image .hero-loop-image {
  opacity: 1;
}

.image-portrait::after,
.image-about::after,
.image-case::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0), rgba(5, 7, 11, 0.24)),
    radial-gradient(circle at 50% 45%, transparent 38%, rgba(89, 216, 255, 0.16));
  mix-blend-mode: screen;
}

.image-about img {
  min-height: 560px;
  object-fit: contain;
  background: #05070b;
}

.portrait-panel::before,
.sculptor-panel::before,
.showreel::before,
.contact-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.12), transparent 34rem);
  pointer-events: none;
}

.portrait-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(89, 216, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 216, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(500px) rotateX(56deg) translateY(22%);
  transform-origin: bottom;
}

.portrait-core {
  position: absolute;
  inset: 7% 9% 0;
}

.portrait-head {
  position: absolute;
  left: 50%;
  top: 13%;
  width: 24%;
  aspect-ratio: 0.82;
  transform: translateX(-50%);
  border: 1px solid rgba(243, 245, 247, 0.28);
  border-radius: 47% 47% 42% 42%;
  background:
    radial-gradient(circle at 52% 38%, rgba(243, 245, 247, 0.28), transparent 25%),
    linear-gradient(145deg, #e1e8ee, #5a6876 42%, #0f1722 76%);
  box-shadow: 0 0 80px rgba(89, 216, 255, 0.36);
}

.portrait-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70%;
  height: 58%;
  transform: translateX(-50%);
  border: 1px solid rgba(243, 245, 247, 0.14);
  border-radius: 48% 48% 0 0;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(89, 216, 255, 0.18) 22% 25%, transparent 25% 75%, rgba(89, 216, 255, 0.18) 75% 78%, transparent 78%),
    linear-gradient(145deg, #1e2f40, #070b11 62%);
}

.portrait-light {
  position: absolute;
  top: 19%;
  width: 2px;
  height: 64%;
  background: #59d8ff;
  box-shadow: 0 0 28px #59d8ff;
}

.portrait-light.left {
  left: 21%;
  transform: rotate(12deg);
}

.portrait-light.right {
  right: 20%;
  transform: rotate(-12deg);
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  height: 1px;
  background: #59d8ff;
  box-shadow: 0 0 24px #59d8ff;
  animation: scan 4.8s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-120px);
    opacity: 0;
  }
  50% {
    transform: translateY(250px);
    opacity: 1;
  }
}

.portrait-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(89, 216, 255, 0.24);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.62);
  padding: 9px 13px;
  color: #8e97a3;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.section-shell {
  position: relative;
  width: min(1440px, calc(100% - 24px));
  margin: 0 auto;
  padding: 120px 0 0;
  scroll-margin-top: 84px;
}

.kicker {
  margin: 0 0 14px;
  color: #59d8ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.78;
  letter-spacing: 0;
  color: #f3f5f7;
}

.about-title {
  max-width: 720px;
  font-size: clamp(3.8rem, 7vw, 7.8rem);
  line-height: 0.86;
}

.sculptor-panel {
  min-height: 560px;
}

.sculptor-panel p {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 22px;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.62);
  padding: 10px 14px;
  color: #f3f5f7;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.robot-sculpture {
  position: absolute;
  inset: 9%;
}

.human,
.robot {
  position: absolute;
  bottom: 16%;
  width: 32%;
  height: 58%;
  border: 1px solid rgba(243, 245, 247, 0.16);
  background: linear-gradient(150deg, rgba(243, 245, 247, 0.24), rgba(14, 22, 33, 0.82));
  box-shadow: 0 0 50px rgba(89, 216, 255, 0.18);
}

.human {
  left: 7%;
  border-radius: 44% 44% 16% 16%;
}

.robot {
  right: 6%;
  border-radius: 8px;
}

.robot::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: -24%;
  aspect-ratio: 1;
  border: 1px solid rgba(89, 216, 255, 0.5);
  border-radius: 8px;
  background: #0e1621;
  box-shadow: 0 0 42px rgba(89, 216, 255, 0.42);
}

.energy-line {
  position: absolute;
  left: 33%;
  right: 30%;
  top: 38%;
  height: 2px;
  background: #59d8ff;
  box-shadow: 0 0 22px #59d8ff;
  transform-origin: left;
  animation: energy 2.8s ease-in-out infinite;
}

.energy-line.two {
  top: 51%;
  animation-delay: -1.2s;
}

@keyframes energy {
  0%,
  100% {
    transform: scaleX(0.38);
    opacity: 0.32;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.chip {
  border: 1px solid rgba(89, 216, 255, 0.2);
  border-radius: 999px;
  background: rgba(89, 216, 255, 0.07);
  padding: 8px 12px;
  color: #f3f5f7;
  font-size: 12px;
  font-weight: 800;
}

.info {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
}

.info p {
  margin: 0 0 8px;
  color: #8e97a3;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.info strong {
  color: #f3f5f7;
  font-size: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(14, 22, 33, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 216, 255, 0.58);
  box-shadow: 0 0 54px rgba(89, 216, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.video-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background-color: #05070b;
  background-size: cover;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 30%),
    radial-gradient(circle at 70% 30%, rgba(89, 216, 255, 0.34), transparent 28%);
  mix-blend-mode: screen;
}

.thumb-1 {
  background:
    radial-gradient(circle at 28% 26%, rgba(243, 245, 247, 0.72), transparent 12%),
    linear-gradient(135deg, #1a2635, #294b65 45%, #05070b);
}

.thumb-2 {
  background:
    radial-gradient(circle at 70% 62%, rgba(89, 216, 255, 0.82), transparent 13%),
    linear-gradient(135deg, #05070b, #243245 42%, #10202d);
}

.thumb-3 {
  background:
    linear-gradient(90deg, rgba(243, 245, 247, 0.12) 0 18%, transparent 18% 82%, rgba(243, 245, 247, 0.12) 82%),
    linear-gradient(135deg, #122130, #38647a 46%, #05070b);
}

.video-noise {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 8px);
  opacity: 0.55;
}

.portfolio-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #05070b;
}

.portfolio-video:fullscreen,
.portfolio-video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  object-fit: contain !important;
  background: #05070b;
}

.portfolio-video:hover {
  filter: brightness(1.08) saturate(1.05);
}

.play-button {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(89, 216, 255, 0.55);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.72);
  color: #59d8ff;
  box-shadow: 0 0 30px rgba(89, 216, 255, 0.28);
  backdrop-filter: blur(12px);
}

.play-triangle {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.mini-icon {
  color: #59d8ff;
  font-size: 12px;
  line-height: 1;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.photo-cell {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0e1621;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.photo-cell:nth-child(3n) {
  min-height: 340px;
}

.photo-cell:hover {
  transform: translateY(-6px);
  border-color: rgba(89, 216, 255, 0.58);
  box-shadow: 0 0 54px rgba(89, 216, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.photo-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 11, 0.74));
}

.photo-cell img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease, filter 240ms ease;
}

.photo-cell:hover img {
  transform: scale(1.045);
  filter: brightness(1.08) saturate(1.05);
}

.photo-cell span {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  color: #f3f5f7;
  font-size: 11px;
  font-weight: 900;
}

.image-case {
  overflow: hidden;
}

.image-case-title {
  margin: 0 0 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.86;
  color: #f3f5f7;
}

.image-case img {
  border: 1px solid rgba(89, 216, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(89, 216, 255, 0.18);
}

.major-project {
  scroll-margin-top: 84px;
}

.major-project-heading {
  max-width: 1120px;
  margin-bottom: 34px;
}

.major-project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}

.major-project-video,
.major-project-copy {
  overflow: hidden;
  border: 1px solid rgba(89, 216, 255, 0.22);
  border-radius: 8px;
  background: rgba(14, 22, 33, 0.74);
  box-shadow: 0 0 80px rgba(89, 216, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.major-project-video {
  position: relative;
  min-height: 520px;
}

.major-project-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 26%, transparent 74%, rgba(89, 216, 255, 0.12));
  mix-blend-mode: screen;
}

.major-project-video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: #05070b;
}

.major-project-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  padding: clamp(24px, 4vw, 44px);
}

.major-project-copy p {
  margin: 0;
  color: #f3f5f7;
  font-size: clamp(1.35rem, 2.4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.12;
}

.major-project-copy p + p {
  color: #59d8ff;
}

.showreel,
.contact-screen {
  position: relative;
  margin-top: 120px;
  overflow: hidden;
  background: #05070b;
}

.showreel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.08) contrast(1.08) brightness(0.74);
  transition: opacity 500ms ease, filter 500ms ease, object-fit 500ms ease;
}

.showreel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.86), rgba(5, 7, 11, 0.32) 46%, rgba(5, 7, 11, 0.74)),
    radial-gradient(circle at 24% 50%, rgba(89, 216, 255, 0.2), transparent 34rem);
  opacity: 1;
  transition: opacity 500ms ease;
}

.showreel-overlay {
  transition: opacity 420ms ease, visibility 420ms ease;
}

.showreel.is-open .showreel-video {
  object-fit: contain;
  opacity: 1;
  filter: none;
  background: #05070b;
}

.showreel.is-open::after {
  opacity: 0;
}

.showreel.is-open .showreel-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.montage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0.62;
  filter: saturate(1.2);
}

.montage span {
  background:
    radial-gradient(circle at 50% 38%, rgba(243, 245, 247, 0.42), transparent 18%),
    linear-gradient(145deg, rgba(89, 216, 255, 0.14), transparent 46%),
    #0e1621;
  animation: montage 9s ease-in-out infinite;
}

.montage span:nth-child(2) {
  animation-delay: -2s;
  background:
    radial-gradient(circle at 62% 58%, rgba(89, 216, 255, 0.5), transparent 18%),
    #07101a;
}

.montage span:nth-child(3) {
  animation-delay: -4s;
}

.montage span:nth-child(4) {
  animation-delay: -6s;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 14%, transparent 14% 86%, rgba(255, 255, 255, 0.08) 86%),
    #101b28;
}

@keyframes montage {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.82;
  }
}

.contact-screen {
  margin-top: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(89, 216, 255, 0.18), transparent 32rem),
    #05070b;
}

@media (max-width: 1024px) {
  .sculptor-panel {
    min-height: 520px;
  }

  .image-about img {
    min-height: 520px;
  }

  .hero-qr {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
    width: 104px;
  }

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

  .major-project-layout {
    grid-template-columns: 1fr;
  }

  .major-project-video,
  .major-project-video video,
  .major-project-copy {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  #home > .mx-auto {
    width: calc(100% - 24px) !important;
  }

  #home .order-1,
  #home .order-2 {
    width: 100%;
    min-width: 0;
  }

  .sculptor-panel {
    min-height: 430px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13.2vw, 4.6rem);
    line-height: 0.9;
    max-width: 100%;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .hero-lead {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
  }

  .approach-title {
    font-size: clamp(3rem, 12vw, 4.6rem) !important;
    line-height: 0.96 !important;
  }

  .contact-title {
    font-size: clamp(3rem, 12.5vw, 4.8rem) !important;
    line-height: 0.96 !important;
  }

  .approach-text {
    font-size: 1.16rem !important;
    line-height: 1.48 !important;
  }

  .hero-qr {
    width: 92px;
  }

  .image-about img {
    min-height: 430px;
  }

  .portrait-panel.image-portrait {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .image-case img {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center top;
  }

  .major-project-video,
  .major-project-video video,
  .major-project-copy {
    min-height: 340px;
  }

  .section-shell {
    padding-top: 84px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-cell,
  .photo-cell:nth-child(3n) {
    min-height: 220px;
  }

  .montage {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-button {
    width: 100%;
  }

  .contact-screen .premium-button,
  .hero .premium-button {
    width: 100%;
  }
}

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