@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --ink: #10100f;
  --paper: #f2f0ea;
  --paper-light: #faf9f6;
  --muted: #706e68;
  --line: rgba(16, 16, 15, .16);
  --warm: #ffca72;
  --warm-dark: #d8943f;
  --support-size: clamp(15px, 1.05vw, 17px);
  --support-leading: 1.72;
  --detail-size: clamp(13.5px, .92vw, 15px);
  --detail-leading: 1.66;
  --support-paper: #68655f;
  --support-dark: rgba(255, 255, 255, .6);
  --detail-dark: rgba(255, 255, 255, .5);
  --heading-detail-paper: #716e68;
  --heading-detail-dark: rgba(255, 255, 255, .54);
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-mono: "Manrope", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary { font: inherit; -webkit-tap-highlight-color: transparent; }
::selection { background: var(--warm); color: var(--ink); }
:focus-visible { outline: 2px solid #ef4739; outline-offset: 4px; }

/* Light-themed opening loader */
body.is-loading { overflow: hidden; }
body.is-loading > main *,
body.is-loading > header * { animation-play-state: paused !important; }
.site-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 41%, rgba(255, 194, 98, .1), transparent 25%),
    linear-gradient(145deg, #171816, #090a09 64%, #14120e);
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .58s cubic-bezier(.22, 1, .36, 1), visibility 0s .58s;
}
.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000, transparent 68%);
}
.site-loader.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-scene {
  position: relative;
  width: min(86vw, 370px);
  height: 270px;
  transform: translateZ(0);
  transform-origin: center bottom;
  transition: transform .58s cubic-bezier(.22, 1, .36, 1);
}
.site-loader.is-leaving .loader-scene { transform: translateY(-18px) scale(.94); }
.loader-scene > span { position: absolute; display: block; left: 50%; }
.loader-cord {
  z-index: 3;
  top: -22px;
  width: 1px;
  height: 108px;
  background: linear-gradient(#353735, #a48a64);
  box-shadow: 0 0 8px rgba(255, 206, 127, .12);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  animation: loader-drop .52s .04s cubic-bezier(.22, 1, .36, 1) forwards;
}
.loader-socket {
  z-index: 4;
  top: 75px;
  width: 30px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 4px 4px 9px 9px;
  background:
    linear-gradient(to bottom, transparent 31%, rgba(255, 255, 255, .23) 32% 36%, transparent 37% 62%, rgba(255, 255, 255, .2) 63% 67%, transparent 68%),
    #292a27;
  opacity: 0;
  transform: translate(-50%, -8px);
  animation: loader-socket-in .4s .28s ease forwards;
}
.loader-bulb {
  z-index: 3;
  top: 93px;
  width: 62px;
  height: 72px;
  border: 1px solid rgba(255, 228, 184, .76);
  border-radius: 52% 52% 45% 45% / 56% 56% 42% 42%;
  background: radial-gradient(circle at 50% 45%, #fff9dd 0 9%, #ffd68e 34%, rgba(255, 189, 89, .18) 68%, rgba(255, 255, 255, .03) 100%);
  opacity: .08;
  transform: translateX(-50%) scale(.88);
  animation: loader-ignite 1.18s .38s linear forwards, loader-bulb-breathe 1.5s 1.62s ease-in-out infinite;
}
.loader-bulb::before,
.loader-bulb::after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 1px;
  height: 18px;
  background: rgba(120, 74, 20, .58);
  transform-origin: bottom;
}
.loader-bulb::before { left: 24px; transform: rotate(-17deg); }
.loader-bulb::after { right: 24px; transform: rotate(17deg); }
.loader-bulb i {
  position: absolute;
  right: 22px;
  bottom: 17px;
  left: 22px;
  height: 8px;
  border-top: 1px solid rgba(120, 74, 20, .6);
  border-radius: 50%;
}
.loader-beam {
  z-index: 1;
  top: 139px;
  width: min(350px, 92vw);
  height: 126px;
  background: linear-gradient(to bottom, rgba(255, 214, 143, .2), rgba(255, 194, 91, .035) 72%, transparent);
  clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
  filter: blur(4px);
  opacity: 0;
  transform: translateX(-50%) scaleX(.36);
  transform-origin: top;
  animation: loader-beam-on .9s .58s cubic-bezier(.22, 1, .36, 1) forwards;
}
.loader-floor {
  z-index: 2;
  bottom: 7px;
  width: min(270px, 72vw);
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 209, 130, .42), rgba(255, 194, 92, .08) 48%, transparent 72%);
  filter: blur(6px);
  opacity: 0;
  transform: translateX(-50%) scale(.45);
  animation: loader-floor-on .7s .72s ease forwards;
}
.site-loader > p {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 3px 0 0;
  opacity: 0;
  transform: translateY(12px);
  animation: loader-copy-in .6s .54s cubic-bezier(.22, 1, .36, 1) forwards;
}
.site-loader > p strong {
  font-size: clamp(14px, 2.2vw, 19px);
  font-weight: 500;
  letter-spacing: .28em;
}
.site-loader > p strong em { color: var(--warm); font-style: normal; }
.site-loader > p small {
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}
html.skip-loader .site-loader,
html.no-js .site-loader { display: none; }
html.skip-loader body.is-loading,
html.no-js body.is-loading { overflow-x: hidden; overflow-y: auto; }

@keyframes loader-drop { to { transform: translateX(-50%) scaleY(1); } }
@keyframes loader-socket-in { to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes loader-ignite {
  0%, 24% { opacity: .08; transform: translateX(-50%) scale(.88); box-shadow: none; }
  31% { opacity: .92; }
  39% { opacity: .16; }
  49% { opacity: 1; }
  56% { opacity: .68; }
  64%, 100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 18px 7px rgba(255, 203, 116, .38), 0 0 70px 28px rgba(255, 181, 67, .2), 0 0 145px 65px rgba(255, 167, 42, .08);
  }
}
@keyframes loader-beam-on { to { opacity: 1; transform: translateX(-50%) scaleX(1); } }
@keyframes loader-floor-on { to { opacity: 1; transform: translateX(-50%) scale(1); } }
@keyframes loader-copy-in { to { opacity: 1; transform: translateY(0); } }
@keyframes loader-bulb-breathe { 50% { filter: brightness(1.09); } }

.shell { width: min(100% - 48px, 1380px); margin-inline: auto; }
.section { padding-block: clamp(100px, 11vw, 170px); }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-label { margin: 0 0 42px; color: var(--muted); }
.section-label.light { color: rgba(255, 255, 255, .5); }
h1, h2, h3, p { text-wrap: pretty; }
h2 {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 500;
  letter-spacing: -.068em;
  line-height: .94;
}
h2 em {
  display: inline-block;
  margin-top: .12em;
  color: var(--heading-detail-paper);
  font-family: inherit;
  font-size: .65em;
  font-style: normal;
  font-weight: 340;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.section-heading { margin-bottom: clamp(66px, 8vw, 112px); }
.section-intro { color: var(--support-paper); }
.support-copy {
  max-inline-size: 44ch;
  margin: 0;
  color: var(--support-paper);
  font-size: var(--support-size);
  font-weight: 420;
  letter-spacing: -.012em;
  line-height: var(--support-leading);
}
.support-copy-light { color: var(--support-dark); }
.card-support {
  max-inline-size: 52ch;
  margin: 0;
  font-size: var(--detail-size);
  font-weight: 400;
  letter-spacing: -.006em;
  line-height: var(--detail-leading);
}

/* Header and hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 38%, rgba(255, 190, 92, .1), transparent 27%),
    linear-gradient(145deg, #171816 0%, #0b0c0b 62%, #15130f 100%);
}
.hero-grid-bg {
  position: absolute;
  right: -8%;
  bottom: -33%;
  width: 72%;
  height: 78%;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 32%, #000 72%, transparent);
  transform: perspective(800px) rotateX(61deg) rotateZ(-7deg);
  transform-origin: center bottom;
}
.hero-ambient {
  position: absolute;
  top: 11%;
  right: 4%;
  width: min(650px, 56vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, .018), 0 0 0 180px rgba(255, 255, 255, .012);
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1380px);
  min-height: 104px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  transform: translateX(-50%);
  isolation: isolate;
  transition: min-height .3s ease, border-color .3s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(12, 13, 12, .9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
  opacity: 0;
  transform: translateX(-50%);
  backdrop-filter: blur(20px) saturate(1.2);
  transition: opacity .3s ease;
}
.site-header.is-scrolled { min-height: 78px; border-bottom-color: transparent; }
.site-header.is-scrolled::before { opacity: 1; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 999px;
  color: rgba(255, 255, 255, .52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}
.language-switch a { display: grid; min-width: 29px; height: 27px; padding-inline: 7px; border-radius: 999px; place-items: center; transition: background .2s ease, color .2s ease; }
.language-switch a:hover { color: #fff; }
.language-switch a[aria-current="page"] { background: var(--warm); color: var(--ink); }
.language-switch > span { opacity: .35; }
.brand { display: inline-flex; align-items: center; gap: 13px; justify-self: start; }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
}
.brand-mark::before,
.brand-mark::after,
.brand-mark span { content: ""; position: absolute; display: block; background: #fff; }
.brand-mark::before { width: 2px; height: 15px; top: 8px; }
.brand-mark::after { width: 15px; height: 1px; bottom: 11px; }
.brand-mark span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 16px 4px rgba(255, 202, 114, .72);
  animation: brand-flicker 7.5s ease-in-out infinite;
}
.brand-name { font-size: 12px; letter-spacing: .18em; line-height: 1.15; }
.brand-name b { display: block; color: var(--warm); font-weight: 500; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav a { position: relative; padding-block: 8px; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--warm);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-end { display: flex; align-items: center; justify-self: end; gap: 14px; }
.header-call { font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.header-call span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  display: grid;
  place-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary i { width: 16px; height: 1px; background: #fff; transition: transform .2s ease; }
.mobile-menu[open] summary i:first-child { transform: translateY(3.5px) rotate(45deg); }
.mobile-menu[open] summary i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu nav {
  position: absolute;
  top: 56px;
  right: 0;
  display: grid;
  width: min(290px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(14, 14, 14, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
}
.mobile-menu nav a { padding: 15px 14px; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 14px; }
.mobile-menu nav a:last-child { border: 0; color: var(--warm); }
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  min-height: 100svh;
  padding-block: 128px 105px;
}
.hero-copy { position: relative; z-index: 2; max-width: 820px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  max-width: 510px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
  animation: hero-in .8s .1s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-kicker-bulb {
  position: relative;
  width: 15px;
  height: 22px;
  flex: 0 0 15px;
}
.hero-kicker-bulb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 9px;
  background: rgba(255, 255, 255, .5);
  transform: translateX(-50%);
}
.hero-kicker-bulb::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 9px;
  height: 10px;
  border: 1px solid rgba(255, 219, 161, .72);
  border-radius: 52% 52% 45% 45%;
  background: rgba(255, 202, 114, .18);
  box-shadow: 0 0 8px rgba(255, 196, 99, .34);
  transform: translateX(-50%);
}
h1 {
  margin: 0;
  font-size: clamp(56px, 6.15vw, 96px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .91;
  animation: hero-in .9s .2s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(56px, 5.9vw, 92px);
  line-height: .93;
}
h1 em {
  display: block;
  margin-top: .22em;
  color: var(--heading-detail-dark);
  font-family: inherit;
  font-size: .58em;
  font-style: normal;
  font-weight: 340;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.hero-copy h1 .hero-title-accent {
  display: block;
  width: auto;
  max-width: 760px;
  margin: .25em 0 0;
  background: none;
  color: var(--heading-detail-dark);
  font-size: .58em;
  line-height: 1.05;
  letter-spacing: -.045em;
  filter: none;
  -webkit-text-fill-color: currentColor;
}
.hero-copy > p {
  max-width: 50ch;
  margin: 36px 0 0;
  color: var(--support-dark);
  font-size: var(--support-size);
  font-weight: 420;
  letter-spacing: -.012em;
  line-height: var(--support-leading);
  animation: hero-in .9s .32s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 40px; animation: hero-in .9s .44s cubic-bezier(.22, 1, .36, 1) both; }
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button-primary::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -35%;
  width: 22%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  transform: rotate(18deg) translateX(-240%);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.button-primary:hover::before,
.button-primary:focus-visible::before { transform: rotate(18deg) translateX(720%); }
.button:hover { transform: translateY(-2px); }
.button-primary { gap: 28px; background: var(--warm); color: #131313; }
.button-primary span { font-size: 19px; }
.button-primary:hover { background: #fff; }
.button-ghost { border-color: rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .04); backdrop-filter: blur(10px); }
.button-ghost:hover { background: #fff; color: #111; }
.hero-footer {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue { display: flex; align-items: center; gap: 10px; }
.scroll-cue i { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--warm); box-shadow: 0 0 0 5px rgba(255, 202, 114, .13); animation: pulse 2s ease infinite; }

/* CSS 3D light */
.lamp-stage {
  --pointer-x: 0deg;
  --pointer-y: 0deg;
  position: relative;
  height: min(69vh, 700px);
  min-height: 570px;
  perspective: 1200px;
  transform: rotateX(var(--pointer-y)) rotateY(var(--pointer-x));
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
  animation: hero-in 1s .32s cubic-bezier(.22, 1, .36, 1) both;
}
.lamp-stage::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  transform: translateX(-50%);
}
.lamp-stage::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 120, .22), rgba(255, 175, 61, .05) 52%, transparent 70%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  animation: breathe 4.8s ease-in-out infinite;
}
.lamp-beam {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 76%;
  height: 52%;
  background: linear-gradient(to bottom, rgba(255, 208, 130, .14), transparent 82%);
  clip-path: polygon(43% 0, 57% 0, 94% 100%, 6% 100%);
  filter: blur(11px);
  transform: translateX(-50%);
  transform-origin: top;
  animation: beam-shift 6s ease-in-out infinite;
}
.light-particles {
  position: absolute;
  z-index: 1;
  inset: 16% 8% 8%;
  pointer-events: none;
}
.light-particles i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff6da;
  box-shadow: 0 0 7px 2px rgba(255, 193, 88, .72), 0 0 22px 6px rgba(255, 181, 62, .18);
  opacity: 0;
  animation: spark-drift 5.8s ease-in-out infinite;
}
.light-particles i:nth-child(1) { top: 25%; left: 17%; animation-delay: .2s; }
.light-particles i:nth-child(2) { top: 12%; right: 18%; animation-delay: 1.8s; animation-duration: 7s; }
.light-particles i:nth-child(3) { top: 56%; left: 10%; animation-delay: 3.1s; }
.light-particles i:nth-child(4) { right: 7%; bottom: 24%; animation-delay: 4.2s; animation-duration: 6.8s; }
.light-particles i:nth-child(5) { right: 27%; bottom: 8%; animation-delay: 2.5s; }
.light-particles i:nth-child(6) { top: 34%; left: 51%; animation-delay: 5s; animation-duration: 7.4s; }
.lamp-assembly {
  --lamp-scale: 1;
  position: absolute;
  z-index: 2;
  inset: 0;
  transform-style: preserve-3d;
  animation: lamp-float 5.5s ease-in-out infinite;
}
.lamp-canopy {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 128px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: linear-gradient(110deg, #191a19 8%, #8c7760 47%, #252522 78%);
  box-shadow: inset 0 4px 9px rgba(255, 255, 255, .15), 0 13px 30px rgba(0, 0, 0, .5);
  transform: translateX(-50%) rotateX(68deg) translateZ(45px);
}
.lamp-wire {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 1px;
  height: 236px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .62), rgba(255, 255, 255, .08));
  transform-origin: top;
}
.wire-left { transform: translateX(-44px) rotateZ(-9deg); }
.wire-right { transform: translateX(44px) rotateZ(9deg); }
.wire-center { height: 260px; opacity: .38; }
.lamp-ring {
  position: absolute;
  top: 53%;
  left: 50%;
  display: block;
  border: 2px solid rgba(255, 205, 125, .94);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 204, 117, .9), 0 0 26px rgba(255, 183, 73, .5), inset 0 0 14px rgba(255, 195, 103, .3);
  transform-style: preserve-3d;
}
.lamp-ring::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 8%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff3d7;
  box-shadow: 0 0 15px 4px #ffbb51;
}
.ring-one { width: 410px; height: 410px; animation: ring-one 12s linear infinite; }
.ring-two { width: 286px; height: 286px; border-width: 1px; opacity: .76; animation: ring-two 15s linear infinite reverse; }
.ring-three { width: 205px; height: 205px; border-color: rgba(255, 238, 207, .7); opacity: .62; animation: ring-three 17s linear infinite; }
.lamp-orb {
  position: absolute;
  z-index: 3;
  top: 53%;
  left: 50%;
  display: block;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 28%, rgba(255, 255, 255, .95), transparent 8%),
    radial-gradient(circle at 50% 50%, #fff0c2 0%, #ffc761 18%, rgba(235, 153, 49, .44) 45%, rgba(255, 255, 255, .06) 70%);
  box-shadow: 0 0 40px rgba(255, 183, 65, .54), 0 0 110px rgba(255, 174, 46, .3), inset -18px -20px 32px rgba(72, 35, 5, .28);
  transform: translate(-50%, -50%) translateZ(88px);
  animation: orb-flicker 8s ease-in-out infinite;
}
.lamp-orb i {
  position: absolute;
  top: 20%;
  left: 25%;
  width: 22px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  filter: blur(4px);
  transform: rotate(-35deg);
}
.lamp-shadow {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 58%;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .72), transparent 68%);
  filter: blur(8px);
  transform: translateX(-50%) rotateX(65deg);
}
/* Moving ribbon */
.trust-strip { position: relative; overflow: hidden; border-bottom: 1px solid rgba(16, 16, 15, .15); background: var(--warm); }
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  width: max-content;
  min-width: 100vw;
  padding: 20px 34px;
}
.ticker span { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.ticker i { flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); opacity: .5; }
.media-toggle {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

/* Services */
.services { background: var(--paper); }
.services .section-heading { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 80px; }
.services .section-label { grid-column: 1 / -1; margin-bottom: 0; }
.services .section-intro { max-width: 430px; margin: 0 0 4px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  perspective: 1200px;
}
.service-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: background .35s ease, color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 80% 15%, rgba(255, 202, 114, .2), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.service-card:hover { z-index: 1; background: var(--ink); color: #fff; box-shadow: 0 26px 70px rgba(16, 16, 15, .16); transform: translateY(-7px) rotateX(1.6deg) rotateY(-1.6deg); }
.service-card:nth-child(even):hover { transform: translateY(-7px) rotateX(1.6deg) rotateY(1.6deg); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; transform: translateZ(22px); }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 66px; color: var(--muted); font-family: var(--font-mono); font-size: 11px; transition: color .35s ease; }
.service-top .service-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.service-icon b,
.service-icon b::before,
.service-icon b::after { box-sizing: border-box; }
.service-icon-install::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 1px;
  height: 8px;
  background: currentColor;
  transform: translateX(-50%);
}
.service-icon-install::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 14px;
  height: 7px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}
.service-icon-install b {
  position: absolute;
  top: 21px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
  transform: translateX(-50%);
}
.service-icon-install b::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -6px;
  width: 16px;
  height: 1px;
  background: currentColor;
}
.service-icon-led::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 4px;
  width: 5px;
  height: 1px;
  background: currentColor;
}
.service-icon-led::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 4px;
  width: 5px;
  height: 1px;
  background: currentColor;
}
.service-icon-led b {
  position: absolute;
  top: 10px;
  left: 8px;
  width: 18px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 3px;
}
.service-icon-led b::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 5px 0 currentColor, 10px 0 currentColor;
}
.service-icon-service::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 9px;
  width: 1px;
  height: 7px;
  background: currentColor;
}
.service-icon-service::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 6px;
  width: 7px;
  height: 1px;
  background: currentColor;
}
.service-icon-service b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.service-icon-service b::before,
.service-icon-service b::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}
.service-icon-service b::before { left: -5px; }
.service-icon-service b::after { right: -5px; border-bottom-color: transparent; border-left-color: transparent; transform: translateY(-50%) rotate(45deg); }
.service-icon-plan b {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 14px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 1px;
}
.service-icon-plan b::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 7px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor;
}
.service-icon-plan b::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 1px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(-45deg);
}
.service-card:hover .service-top { color: var(--warm); }
.service-card h3 { margin: 0 0 18px; font-size: clamp(25px, 2.1vw, 34px); font-weight: 520; letter-spacing: -.04em; }
.service-card > p { margin: 0; color: var(--support-paper); font-size: var(--detail-size); line-height: var(--detail-leading); transition: color .35s ease; }
.service-card:hover > p { color: rgba(255, 255, 255, .64); }
.service-card ul { display: grid; gap: 9px; margin: 27px 0 0; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 17px; color: var(--muted); font-size: 12px; line-height: 1.45; transition: color .35s ease; }
.service-card li::before { content: ""; position: absolute; top: .58em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--warm-dark); }
.service-card:hover li { color: rgba(255, 255, 255, .76); }

/* Gallery */
.gallery { background: var(--paper-light); }
.gallery-heading { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 80px; }
.gallery-heading .section-intro { max-width: 420px; margin: 0 0 5px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; grid-auto-rows: clamp(160px, 17vw, 278px); gap: 20px; }
.gallery-item { display: flex; flex-direction: column; grid-column: span 4; grid-row: span 2; min-width: 0; height: 100%; margin: 0; }
.gallery-item.gallery-wide { grid-column: span 8; }
.gallery-item.gallery-tall { grid-row: span 3; }
.gallery-item > a { position: relative; flex: 1; min-height: 0; overflow: hidden; background: #d8d4ca; cursor: zoom-in; }
.gallery-item > a::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  left: -32%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 216, .45), transparent);
  opacity: 0;
  transform: rotate(12deg) translateX(-240%);
  pointer-events: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .5s ease; }
.gallery-item:hover img,
.gallery-item:focus-within img { transform: scale(1.045); filter: saturate(.82); }
.gallery-item:hover > a::after,
.gallery-item:focus-within > a::after { animation: gallery-flare .85s cubic-bezier(.22, 1, .36, 1); }
.gallery-open {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.gallery-open::before,
.gallery-open::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 1px;
  border-radius: 1px;
  background: currentColor;
}
.gallery-open::after { transform: rotate(90deg); }
.gallery-item:hover .gallery-open,
.gallery-item:focus-within .gallery-open { opacity: 1; transform: translateY(0); }
.gallery-item figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-top: 15px; }
.gallery-item figcaption span { color: var(--muted); font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.gallery-item figcaption strong { font-size: 14px; font-weight: 550; text-align: right; }

/* Gallery modal */
.lightbox {
  position: fixed;
  inset: 0;
  width: min(1180px, calc(100% - 48px));
  height: min(900px, calc(100% - 48px));
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #0d0e0d;
  color: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .58), 0 0 80px rgba(255, 193, 93, .1);
}
.lightbox[open] { animation: modal-in .38s cubic-bezier(.22, 1, .36, 1); }
.lightbox::backdrop {
  background: rgba(6, 7, 6, .86);
  backdrop-filter: blur(12px);
  animation: backdrop-in .25s ease both;
}
.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  margin: 0;
}
.lightbox-media {
  display: grid;
  min-height: 0;
  padding: 28px 88px 0;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 199, 107, .11), transparent 36%),
    linear-gradient(145deg, #151614, #090a09);
}
.lightbox-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34);
}
.lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 96px;
  padding: 22px 88px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.lightbox figcaption > div { display: flex; flex-direction: column; gap: 5px; }
.lightbox figcaption span {
  color: var(--warm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.lightbox figcaption strong { font-size: 19px; font-weight: 500; }
.lightbox figcaption small { color: rgba(255, 255, 255, .48); font-size: 11px; letter-spacing: .14em; }
.lightbox figcaption small b { color: #fff; font-weight: 600; }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 50%;
  background: rgba(16, 17, 15, .72);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { border-color: var(--warm); background: var(--warm); color: var(--ink); }
.lightbox-close { top: 22px; right: 22px; width: 48px; height: 48px; font-size: 27px; line-height: 1; }
.lightbox-nav { top: 50%; width: 50px; height: 50px; font-size: 20px; transform: translateY(-50%); }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

/* About */
.about {
  overflow: hidden;
  background: radial-gradient(circle at 76% 20%, rgba(255, 197, 105, .1), transparent 24%), #111210;
  color: #fff;
}
.about-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(70px, 9vw, 140px); }
.about-media {
  position: relative;
  min-height: 710px;
  transform: perspective(1200px) rotateY(3deg) rotateX(.7deg);
  transform-origin: left center;
}
.about-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .18), 35px 45px 100px rgba(0, 0, 0, .3);
  pointer-events: none;
}
.about-media video { width: 100%; height: 100%; min-height: 710px; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.media-toggle {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(13, 14, 13, .72);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
}
.media-toggle:hover { background: var(--warm); color: var(--ink); transform: scale(1.06); }
.media-toggle span { position: relative; display: block; width: 14px; height: 14px; }
.media-toggle[aria-pressed="false"] span::before,
.media-toggle[aria-pressed="false"] span::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 3px;
  border-radius: 1px;
  background: currentColor;
}
.media-toggle[aria-pressed="false"] span::before { left: 2px; }
.media-toggle[aria-pressed="false"] span::after { right: 2px; }
.media-toggle[aria-pressed="true"] span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 3px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}
.no-js .media-toggle { display: none; }
.about-media-label {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  padding: 22px;
  background: var(--warm);
  color: var(--ink);
}
.about-media-label span { margin-bottom: 6px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.about-media-label strong { font-size: 18px; font-weight: 600; }
.about-copy { max-width: 670px; }
.about-copy h2 { font-size: clamp(52px, 5.8vw, 88px); }
.about-copy h2 em { color: var(--heading-detail-dark); }
.about-lead { max-width: 44ch; margin: 39px 0 20px; color: rgba(255, 255, 255, .68); font-size: var(--support-size); font-weight: 470; letter-spacing: -.012em; line-height: var(--support-leading); }
.about-copy > p:not(.section-label):not(.about-lead) { max-width: 52ch; margin: 0; color: var(--detail-dark); font-size: var(--detail-size); line-height: var(--detail-leading); }
.about-copy > p:not(.section-label):not(.about-lead) + p { margin-top: 16px; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; padding-block: 26px; border-top: 1px solid rgba(255, 255, 255, .18); border-bottom: 1px solid rgba(255, 255, 255, .18); }
.about-facts > div { display: flex; flex-direction: column; gap: 7px; padding-right: 16px; }
.about-facts strong { color: var(--warm); font-size: clamp(29px, 2.7vw, 42px); font-weight: 500; letter-spacing: -.055em; }
.about-facts span { max-width: 145px; color: rgba(255, 255, 255, .58); font-size: 11px; line-height: 1.45; text-transform: uppercase; }
html[lang="en"] .about-facts { grid-template-columns: .6fr .9fr 1.5fr; }
html[lang="en"] .about-facts > div:nth-child(n + 2) strong {
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.text-link { display: inline-flex; gap: 26px; align-items: center; margin-top: 38px; padding-bottom: 8px; border-bottom: 1px solid rgba(255, 255, 255, .56); font-size: 13px; font-weight: 650; }
.text-link span { color: var(--warm); font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.compact-process { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(85px, 10vw, 145px); border-top: 1px solid rgba(255, 255, 255, .18); border-left: 1px solid rgba(255, 255, 255, .18); }
.compact-process > div { min-height: 190px; padding: 28px; border-right: 1px solid rgba(255, 255, 255, .18); border-bottom: 1px solid rgba(255, 255, 255, .18); }
.compact-process span { display: block; margin-bottom: 38px; color: var(--warm); font-family: var(--font-mono); font-size: 10px; }
.compact-process strong { display: block; margin-bottom: 10px; font-size: 21px; font-weight: 530; letter-spacing: -.03em; }
.compact-process p { max-width: 300px; margin: 0; color: var(--detail-dark); font-size: var(--detail-size); line-height: var(--detail-leading); }
.reference-panel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 120px);
  margin-top: clamp(80px, 10vw, 145px);
  padding-top: clamp(60px, 7vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, .18);
  scroll-margin-top: 30px;
}
.reference-heading .section-label { margin-bottom: 30px; }
.reference-heading h3 {
  margin: 0;
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}
.reference-heading h3 em {
  display: block;
  margin-top: .16em;
  color: var(--heading-detail-dark);
  font-family: inherit;
  font-size: .68em;
  font-style: normal;
  font-weight: 340;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.reference-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .18); }
.reference-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.reference-list span { color: var(--warm); font-size: 10px; font-weight: 600; letter-spacing: .1em; }
.reference-list strong { max-width: 720px; font-size: clamp(14px, 1.35vw, 18px); font-weight: 500; line-height: 1.5; }
.client-showcase { grid-column: 1 / -1; margin-top: clamp(24px, 4vw, 56px); }
.client-showcase-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 24px;
}
.client-showcase-intro > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--warm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.client-showcase-intro > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 13px 4px rgba(255, 202, 114, .28);
  animation: brand-flicker 7.5s ease-in-out infinite;
}
.client-showcase-intro p { max-width: 42ch; margin: 0; color: var(--detail-dark); font-size: var(--detail-size); line-height: var(--detail-leading); text-align: right; }
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.client-card {
  position: relative;
  display: flex;
  min-height: 185px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
  transform: perspective(900px) translateZ(0);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.client-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 114, .2), transparent 66%);
  opacity: .45;
  transition: opacity .35s ease, transform .55s ease;
}
.client-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 42%;
  background: linear-gradient(to bottom, var(--warm), transparent);
  box-shadow: 0 0 12px rgba(255, 202, 114, .44);
}
.client-card:hover {
  z-index: 1;
  border-color: rgba(255, 202, 114, .58);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22), inset 0 0 50px rgba(255, 202, 114, .035);
  transform: perspective(900px) translateY(-6px) rotateX(1.5deg);
}
.client-card:hover::before { opacity: 1; transform: scale(1.15); }
.client-card-featured { border-color: rgba(255, 202, 114, .38); background: linear-gradient(140deg, rgba(255, 202, 114, .18), rgba(255, 202, 114, .045)); }
.client-card-meta { position: absolute; top: 23px; right: 25px; left: 25px; display: flex; align-items: center; justify-content: space-between; }
.client-card-meta span { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .52); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.client-card-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--warm); box-shadow: 0 0 9px var(--warm); }
.client-card-meta b { color: rgba(255, 255, 255, .26); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.client-card > strong { position: relative; font-size: clamp(27px, 3vw, 43px); font-weight: 500; letter-spacing: -.055em; line-height: 1; }
.client-card > small { position: relative; margin-top: 10px; color: rgba(255, 255, 255, .48); font-size: 11px; letter-spacing: .025em; }

/* Contact */
.contact { position: relative; overflow: hidden; padding-block: clamp(88px, 8vw, 124px) 64px; background: #0e0f0e; color: #fff; }
.contact::before {
  content: "";
  position: absolute;
  top: -38vw;
  right: -16vw;
  width: 78vw;
  height: 78vw;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  opacity: .48;
}
.contact-glow {
  position: absolute;
  top: -22vw;
  right: -2vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 114, .27), rgba(255, 202, 114, .04) 48%, transparent 69%);
  opacity: .58;
  animation: breathe 5s ease-in-out infinite;
}
.contact-inner { position: relative; z-index: 1; }
.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  column-gap: clamp(44px, 7vw, 100px);
  row-gap: 20px;
}
.contact-heading .section-label { grid-column: 1 / -1; margin-bottom: 0; }
.contact-heading h2 { max-width: 760px; font-size: clamp(46px, 5vw, 72px); line-height: .99; }
.contact-heading h2 em {
  color: var(--heading-detail-dark);
}
.contact-heading > p { max-width: 40ch; margin: 0 0 4px; color: var(--support-dark); font-size: var(--support-size); line-height: var(--support-leading); }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: clamp(40px, 5vw, 64px); }
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 112px;
  padding: 23px 27px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .025);
  color: #fff;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.contact-card:hover,
.contact-card.contact-phone:hover { border-color: rgba(255, 202, 114, .55); background: rgba(255, 255, 255, .07); color: #fff; transform: translateY(-2px); }
.contact-card.contact-phone { border-color: rgba(255, 202, 114, .4); background: rgba(255, 202, 114, .07); color: #fff; box-shadow: inset 2px 0 0 var(--warm); }
.contact-card small { grid-column: 1; margin: 0 0 8px; color: var(--warm); font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; opacity: .8; text-transform: uppercase; }
.contact-card strong { grid-column: 1; overflow-wrap: anywhere; font-size: clamp(20px, 2vw, 30px); font-weight: 500; letter-spacing: -.035em; }
.contact-card > span {
  position: static;
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  place-items: center;
  font-size: 14px;
  opacity: .72;
}
.inquiry-form {
  position: relative;
  margin-top: 22px;
  padding: clamp(32px, 4.2vw, 60px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
}
.inquiry-form::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -190px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 104, .34), rgba(255, 199, 104, .07) 42%, transparent 68%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}
.inquiry-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 9%;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--warm-dark), transparent);
  box-shadow: 0 0 12px rgba(216, 148, 63, .5);
}
.form-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 36px;
  padding-bottom: clamp(32px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}
.form-intro > div { max-width: 790px; }
.form-kicker { display: flex; align-items: center; gap: 10px; color: var(--warm-dark); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.form-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--warm-dark); box-shadow: 0 0 0 6px rgba(216, 148, 63, .1), 0 0 13px rgba(216, 148, 63, .46); }
.form-intro h3 { margin: 18px 0 16px; font-size: clamp(36px, 4.4vw, 60px); font-weight: 500; letter-spacing: -.06em; line-height: .98; }
.form-intro h3 em {
  display: block;
  margin-top: .14em;
  color: var(--heading-detail-paper);
  font-family: inherit;
  font-size: .68em;
  font-style: normal;
  font-weight: 340;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.form-intro p { max-width: 44ch; margin: 0; color: var(--support-paper); font-size: var(--support-size); line-height: var(--support-leading); }
.form-response { display: flex; align-items: center; gap: 9px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.form-response i { width: 6px; height: 6px; border-radius: 50%; background: #4f9f68; box-shadow: 0 0 0 5px rgba(79, 159, 104, .1); }
.form-section { position: relative; z-index: 1; min-width: 0; margin: 0; padding: clamp(36px, 5vw, 62px) 0 0; border: 0; }
.form-section legend { display: flex; align-items: center; gap: 13px; margin: 0 0 22px; padding: 0; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.form-section legend span { color: var(--warm-dark); font-size: 9px; letter-spacing: .13em; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.category-option { position: relative; min-width: 0; cursor: pointer; }
.category-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.category-option > span {
  position: relative;
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .56);
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.category-option > span::before {
  content: "";
  position: absolute;
  top: -46px;
  right: -46px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 114, .7), transparent 67%);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.category-option b { position: absolute; top: 18px; left: 20px; color: var(--warm-dark); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.category-option strong { position: relative; font-size: 16px; font-weight: 650; letter-spacing: -.03em; }
.category-option small { position: relative; margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.category-option:hover > span { border-color: rgba(216, 148, 63, .54); transform: translateY(-2px); }
.category-option input:focus-visible + span { outline: 2px solid var(--warm-dark); outline-offset: 3px; }
.category-option input:checked + span { border-color: var(--warm-dark); background: var(--ink); color: #fff; box-shadow: 0 16px 36px rgba(16, 16, 15, .15); transform: translateY(-2px); }
.category-option input:checked + span::before { opacity: .78; transform: scale(1.16); }
.category-option input:checked + span small { color: rgba(255, 255, 255, .56); }
.form-details-section { margin-top: clamp(36px, 5vw, 62px); border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; }
.form-field { display: flex; min-width: 0; flex-direction: column; gap: 9px; }
.form-field > span { color: #52514d; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, .7);
  color: var(--ink);
  font: 500 14px/1.4 var(--font-sans);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.form-field textarea { min-height: 145px; padding-block: 16px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #94918a; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--warm-dark); background: #fff; box-shadow: 0 0 0 4px rgba(216, 148, 63, .1); }
.form-field-full { grid-column: 1 / -1; }
.form-submit-row { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 34px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-submit-row p { display: flex; align-items: flex-start; gap: 10px; max-width: 610px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.form-submit-row p a { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(216, 148, 63, .55); text-underline-offset: 3px; }
.form-submit-row p a:hover { text-decoration-color: var(--warm-dark); }
.form-submit-row p i { flex: 0 0 auto; width: 6px; height: 6px; margin-top: 5px; border-radius: 50%; background: var(--warm-dark); box-shadow: 0 0 9px rgba(216, 148, 63, .55); }
.form-submit {
  position: relative;
  display: inline-flex;
  min-width: 230px;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 0 22px 0 25px;
  border: 0;
  border-radius: 999px;
  background: var(--warm);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.form-submit::before { content: ""; position: absolute; top: -70%; left: -35%; width: 20%; height: 240%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent); transform: rotate(18deg) translateX(-250%); transition: transform .7s cubic-bezier(.22, 1, .36, 1); }
.form-submit:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.form-submit:hover::before { transform: rotate(18deg) translateX(850%); }
.form-submit span,
.form-submit b { position: relative; }
.form-submit b { font-size: 20px; font-weight: 400; }
.form-status { position: relative; z-index: 1; min-height: 20px; margin: 15px 0 -20px; color: #6e4a1e; font-size: 11px; font-weight: 600; text-align: right; }
.contact-details { display: grid; grid-template-columns: 1.25fr .75fr 1fr; gap: 36px; margin-top: 58px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .2); }
.contact-details > div { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.contact-details small { margin-bottom: 8px; color: rgba(255, 255, 255, .38); font-family: var(--font-mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.contact-details strong,
.contact-details a { font-size: 14px; font-weight: 550; line-height: 1.45; }
.contact-details a:hover { color: var(--warm); }
.contact-details span { color: rgba(255, 255, 255, .48); font-size: 11px; line-height: 1.5; }

/* Footer */
footer { padding: 54px 0 26px; background: var(--warm); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.brand-dark .brand-mark { border-color: rgba(16, 16, 15, .5); }
.brand-dark .brand-mark::before,
.brand-dark .brand-mark::after,
.brand-dark .brand-mark span { background: var(--ink); }
.brand-dark .brand-mark span { box-shadow: 0 0 14px 3px rgba(16, 16, 15, .18); }
.brand-dark .brand-name b { color: #7e471b; }
.footer-grid > p { margin: 0; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.footer-links { display: flex; justify-self: end; gap: 24px; font-size: 12px; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(16, 16, 15, .22); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom a { text-decoration: underline; text-decoration-color: rgba(16, 16, 15, .28); text-underline-offset: 3px; }
.footer-bottom a:hover { text-decoration-color: var(--ink); }
/* Privacy pages */
.legal-page { background: var(--paper-light); }
.legal-page .site-header { color: #fff; }
.legal-main { min-height: 80svh; }
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(170px, 17vw, 230px) 0 clamp(90px, 10vw, 145px);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 80% 28%, rgba(255, 191, 87, .17), transparent 28%),
    #111210;
  background-size: 52px 52px, 52px 52px, auto, auto;
  color: #fff;
}
.legal-glow { position: absolute; top: -20%; right: -5%; width: min(720px, 65vw); aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255, 255, 255, .014), 0 0 100px rgba(255, 190, 80, .08); pointer-events: none; }
.legal-hero .shell { position: relative; z-index: 1; }
.legal-hero .section-label { margin-bottom: 34px; }
.legal-hero h1 { max-width: 1000px; font-size: clamp(56px, 7.6vw, 112px); }
.legal-hero h1 em { color: var(--heading-detail-dark); white-space: normal; }
.legal-hero .shell > p:not(.section-label) { max-width: 720px; margin: 34px 0 0; color: rgba(255, 255, 255, .66); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.65; }
.legal-hero small { display: block; margin-top: 42px; color: rgba(255, 255, 255, .38); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.legal-body { background: var(--paper-light); }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); align-items: start; gap: clamp(70px, 10vw, 150px); }
.legal-toc { position: sticky; top: 112px; display: grid; border-top: 1px solid var(--line); }
.legal-toc > span { padding: 18px 0; color: var(--warm-dark); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.legal-toc a { padding: 15px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 600; transition: color .2s ease, padding-left .2s ease; }
.legal-toc a:hover { padding-left: 7px; color: var(--ink); }
.legal-content { max-width: 900px; }
.legal-content > section { scroll-margin-top: 105px; padding: 0 0 clamp(58px, 7vw, 90px); margin-bottom: clamp(58px, 7vw, 90px); border-bottom: 1px solid var(--line); }
.legal-number { margin: 0 0 21px; color: var(--warm-dark); font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.legal-content h2 { max-width: 760px; margin-bottom: 29px; font-size: clamp(35px, 4.5vw, 60px); letter-spacing: -.055em; line-height: 1; }
.legal-content p:not(.legal-number) { max-width: 790px; margin: 0; color: #5d5b55; font-size: clamp(14px, 1.2vw, 16px); line-height: 1.82; }
.legal-content p:not(.legal-number) + p { margin-top: 18px; }
.legal-content p a { color: var(--ink); font-weight: 650; text-decoration: underline; text-decoration-color: rgba(216, 148, 63, .55); text-underline-offset: 4px; }
.legal-contact-box { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }
.legal-contact-box a { padding: 13px 17px; border: 1px solid var(--line); background: #fff; font-size: 12px; font-weight: 650; transition: border-color .2s ease, background .2s ease; }
.legal-contact-box a:hover { border-color: var(--warm-dark); background: var(--warm); }
.legal-back { padding-top: 4px; }
.legal-back .button { width: auto; }

/* Motion */
@keyframes hero-in { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes breathe { 50% { opacity: .65; transform: scale(1.06); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255, 202, 114, 0); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes brand-flicker {
  0%, 8%, 11%, 14%, 53%, 55%, 100% { opacity: 1; box-shadow: 0 0 16px 4px rgba(255, 202, 114, .72); }
  9%, 13%, 54% { opacity: .72; box-shadow: 0 0 8px 2px rgba(255, 202, 114, .42); }
}
@keyframes orb-flicker {
  0%, 7%, 10%, 13%, 58%, 60%, 100% { filter: brightness(1); }
  8%, 12%, 59% { filter: brightness(.86); }
  18%, 72% { filter: brightness(1.08); }
}
@keyframes spark-drift {
  0%, 100% { opacity: 0; transform: translate3d(0, 16px, 0) scale(.45); }
  18%, 58% { opacity: .9; }
  75% { opacity: 0; transform: translate3d(9px, -24px, 36px) scale(1); }
}
@keyframes gallery-flare {
  0% { opacity: 0; transform: rotate(12deg) translateX(-240%); }
  22% { opacity: .82; }
  100% { opacity: 0; transform: rotate(12deg) translateX(900%); }
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(.975); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(45px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lamp-float {
  0%, 100% { transform: scale(var(--lamp-scale)) translateY(0) rotateY(-3deg); }
  50% { transform: scale(var(--lamp-scale)) translateY(-13px) rotateY(3deg); }
}
@keyframes ring-one {
  from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}
@keyframes ring-two {
  from { transform: translate(-50%, -50%) rotateY(69deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateY(69deg) rotateZ(360deg); }
}
@keyframes ring-three {
  from { transform: translate(-50%, -50%) rotateX(56deg) rotateY(53deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(56deg) rotateY(53deg) rotateZ(360deg); }
}
@keyframes beam-shift {
  0%, 100% { opacity: .48; transform: translateX(-50%) rotateZ(-2deg); }
  50% { opacity: .82; transform: translateX(-50%) rotateZ(2deg); }
}

.reveal { opacity: 0; transform: translateY(38px); transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }
.service-card:nth-child(2),
.gallery-item:nth-child(2) { transition-delay: .07s; }
.service-card:nth-child(3),
.gallery-item:nth-child(3) { transition-delay: .14s; }
.service-card:nth-child(4),
.gallery-item:nth-child(4) { transition-delay: .21s; }

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav { gap: 22px; }
  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr); }
  .lamp-assembly { --lamp-scale: .84; }
  .services .section-heading,
  .gallery-heading { grid-template-columns: 1.2fr .8fr; gap: 50px; }
  .contact-heading { grid-template-columns: minmax(0, 1fr) minmax(260px, 350px); column-gap: 50px; }
  .about-grid { gap: 68px; }
  .about-media,
  .about-media video { min-height: 620px; }
  .reference-panel { gap: 60px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding-block: 126px 100px; }
  .hero-copy { max-width: 780px; }
  .lamp-stage { height: 540px; min-height: 540px; }
  .lamp-assembly { --lamp-scale: .8; }
  .services .section-heading,
  .gallery-heading { grid-template-columns: 1fr; gap: 32px; }
  .contact-heading { grid-template-columns: 1fr; gap: 22px; }
  .services .section-label,
  .contact-heading .section-label { margin-bottom: 0; }
  .services .section-intro,
  .gallery-heading .section-intro,
  .contact-heading > p { max-width: 650px; }
  .gallery-grid { grid-template-columns: repeat(8, 1fr); grid-auto-rows: 24vw; }
  .gallery-item { grid-column: span 4; }
  .gallery-item.gallery-wide { grid-column: span 8; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 680px; min-height: 650px; }
  .about-media video { min-height: 650px; }
  .about-copy { max-width: 780px; }
  .reference-panel { grid-template-columns: 1fr; }
  .reference-heading { max-width: 620px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-actions { grid-template-columns: 1fr; }
  .form-intro { grid-template-columns: 1fr; }
  .form-response { justify-self: start; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .contact-details > div:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > p { display: none; }
  .legal-layout { grid-template-columns: 1fr; gap: 58px; }
  .legal-toc { position: static; grid-template-columns: repeat(3, 1fr); }
  .legal-toc > span { grid-column: 1 / -1; }
  .legal-toc a { padding-right: 14px; }
}

@media (max-width: 640px) {
  :root { --support-size: 15px; --support-leading: 1.68; --detail-size: 14px; --detail-leading: 1.62; }
  .shell { width: min(100% - 32px, 1380px); }
  .section { padding-block: 90px; }
  .site-header { min-height: 82px; }
  .brand-mark { width: 38px; height: 38px; }
  .header-call { display: none; }
  .header-end { gap: 9px; }
  .language-switch { font-size: 8px; }
  .language-switch a { min-width: 27px; height: 25px; padding-inline: 6px; }
  .hero-content { padding-top: 112px; }
  .hero-kicker { max-width: 300px; margin-bottom: 24px; font-size: 8px; line-height: 1.5; }
  .hero-copy h1 { font-size: clamp(46px, 14vw, 62px); }
  h1 em { white-space: normal; }
  .hero-copy h1 .hero-title-accent { max-width: 100%; margin-top: .28em; font-size: .62em; white-space: normal; }
  h2 { font-size: clamp(44px, 13.5vw, 62px); }
  .hero-copy > p { margin-top: 26px; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 30px; }
  .button { width: 100%; }
  .hero-footer > span:last-child { display: none; }
  .lamp-stage { height: 400px; min-height: 400px; margin-top: -10px; }
  .lamp-assembly { --lamp-scale: .6; }
  .lamp-stage::before { top: 3%; width: 105%; }
  .ticker-group { gap: 25px; padding: 17px 25px; }
  .ticker span { font-size: 10px; }
  .section-heading { margin-bottom: 58px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; padding: 28px; }
  .service-top { margin-bottom: 55px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; gap: 44px; }
  .gallery-item,
  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall { grid-column: auto; grid-row: auto; }
  .gallery-item > a { flex: none; height: auto; aspect-ratio: 4 / 5; }
  .gallery-item.gallery-wide > a { aspect-ratio: 4 / 3; }
  .gallery-open { opacity: 1; transform: none; }
  .lightbox {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .lightbox-media { padding: 64px 12px 0; }
  .lightbox figcaption { min-height: 104px; padding: 18px 118px 18px 18px; }
  .lightbox figcaption > div { min-width: 0; }
  .lightbox figcaption strong { overflow-wrap: anywhere; font-size: 16px; }
  .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; }
  .lightbox-nav { top: auto; bottom: 26px; width: 42px; height: 42px; transform: none; }
  .lightbox-nav:hover { transform: scale(1.05); }
  .lightbox-prev { right: 62px; left: auto; }
  .lightbox-next { right: 12px; }
  .about-grid { gap: 58px; }
  .about-media { min-height: 118vw; transform: none; }
  .about-media video { min-height: 118vw; }
  .about-media-label { right: -1px; bottom: 20px; min-width: 180px; }
  .about-facts { grid-template-columns: 1fr; gap: 22px; }
  .about-facts > div { display: grid; grid-template-columns: 90px 1fr; align-items: center; }
  html[lang="en"] .about-facts { grid-template-columns: 1fr; gap: 0; padding-block: 0; }
  html[lang="en"] .about-facts > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 5px;
    min-width: 0;
    padding: 18px 0;
  }
  html[lang="en"] .about-facts > div + div { border-top: 1px solid rgba(255, 255, 255, .12); }
  html[lang="en"] .about-facts strong,
  html[lang="en"] .about-facts > div:nth-child(n + 2) strong {
    max-width: 100%;
    font-size: clamp(24px, 7.5vw, 29px);
    line-height: 1.1;
    letter-spacing: -.035em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }
  html[lang="en"] .about-facts span { max-width: none; font-size: 10px; line-height: 1.45; }
  .compact-process { grid-template-columns: 1fr; }
  .compact-process > div { min-height: 165px; }
  .reference-list li { grid-template-columns: 38px 1fr; gap: 10px; padding: 19px 0; }
  .client-showcase-intro { align-items: flex-start; flex-direction: column; gap: 12px; }
  .client-showcase-intro p { text-align: left; }
  .client-grid { grid-template-columns: 1fr; }
  .client-card { min-height: 165px; }
  .contact { padding: 80px 0 52px; }
  .contact-heading h2 { font-size: clamp(40px, 12vw, 58px); }
  .contact-card { min-height: 96px; padding: 20px; }
  .contact-card strong { font-size: clamp(18px, 5vw, 24px); }
  .contact-card > span { width: 34px; height: 34px; }
  .inquiry-form { padding: 29px 20px 34px; border-radius: 20px; }
  .form-intro { gap: 24px; }
  .form-response { align-items: flex-start; white-space: normal; }
  .category-grid { grid-template-columns: 1fr; }
  .category-option > span { min-height: 124px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit { width: 100%; }
  .form-status { margin-bottom: -12px; text-align: left; }
  .contact-details { grid-template-columns: 1fr; gap: 28px; }
  .contact-details > div:first-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { justify-self: start; flex-wrap: wrap; }
  .footer-bottom { flex-wrap: wrap; gap: 13px 20px; }
  .footer-bottom a { order: 3; width: 100%; }
  .legal-hero { padding-top: 145px; }
  .legal-toc { grid-template-columns: 1fr 1fr; }
  .legal-content > section { scroll-margin-top: 88px; }
  .legal-back .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ticker { animation: none; }
  .media-toggle { display: none; }
  .about-media video { display: none; }
  .about-media { background: url("assets/project-03.jpg") center / cover no-repeat; }
  .reveal { opacity: 1; transform: none; }
}
