:root {
  --bg: #07080c;
  --bg-2: #101217;
  --panel: rgba(255, 255, 255, 0.074);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f8f8f3;
  --muted: #b7bac6;
  --red: #ff2d2d;
  --orange: #ff8a1d;
  --yellow: #ffe04a;
  --cyan: #40d7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 45, 45, 0.22), transparent 31rem),
    radial-gradient(circle at 84% 8%, rgba(255, 138, 29, 0.17), transparent 28rem),
    linear-gradient(140deg, #07080c 0%, #101217 52%, #08090e 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #09090c;
  background: var(--yellow);
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
  animation: gridPulse 18s linear infinite;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255, 224, 74, 0.14), rgba(255, 45, 45, 0.08) 34%, transparent 68%);
  filter: blur(10px);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--cyan));
  box-shadow: 0 0 24px rgba(255, 138, 29, 0.72);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  max-width: 100vw;
  padding: 14px clamp(16px, 3vw, 36px);
}

.navbar {
  position: relative;
  width: min(100%, var(--max-width));
  max-width: calc(100vw - clamp(32px, 6vw, 72px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 14, 0.7);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 28px rgba(255, 45, 45, 0.28);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

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

.brand strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  padding: 11px 13px;
  border-radius: 999px;
  color: rgba(248, 248, 243, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 80;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(8, 9, 14, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 224, 74, 0.08);
  backdrop-filter: blur(14px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 781px) {
  .nav-toggle {
    display: none;
  }
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(82px, 10vw, 132px) clamp(18px, 4vw, 40px);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-height) + 62px);
  overflow: hidden;
  isolation: isolate;
}

#printScene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.88) 0%, rgba(7, 8, 12, 0.52) 44%, rgba(7, 8, 12, 0.82) 100%),
    radial-gradient(circle at 72% 48%, rgba(255, 138, 29, 0.2), transparent 27rem);
  animation: heroAura 9s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.36;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.14) 48%, transparent 53%),
    linear-gradient(65deg, transparent 0 50%, rgba(255, 224, 74, 0.18) 54%, transparent 58%);
  transform: translateX(-26%);
  animation: lightSweep 7s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 14px;
  max-width: 820px;
  font-size: clamp(4.2rem, 13vw, 10rem);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow:
    0 0 40px rgba(255, 45, 45, 0.34),
    0 20px 72px rgba(0, 0, 0, 0.75);
}

h1 span {
  display: block;
}

.hero-copy,
.hero-visual,
.about-content,
.contact-info,
.contact-form {
  min-width: 0;
}

.hero-subtitle {
  margin-bottom: 12px;
  font-size: clamp(1.42rem, 3vw, 2.9rem);
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(248, 248, 243, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  --btn-glow: rgba(255, 138, 29, 0.36);
  --magnet-x: 0px;
  --magnet-y: 0px;
  position: relative;
  isolation: isolate;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 900;
  overflow: hidden;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 44%, rgba(255, 255, 255, 0.16));
  transition: opacity 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 3px), 0);
  box-shadow: 0 18px 42px var(--btn-glow);
  filter: saturate(1.12);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn svg {
  position: relative;
  z-index: 2;
  width: 19px;
  height: 19px;
}

.btn > span:not(.btn-shine) {
  position: relative;
  z-index: 2;
}

.btn-shine {
  position: absolute;
  inset: -60% auto -60% -42%;
  z-index: 1;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover .btn-shine,
.btn:focus-visible .btn-shine {
  opacity: 1;
  animation: buttonShine 0.9s ease;
}

.btn-primary {
  border-color: rgba(255, 224, 74, 0.5);
  color: #15100a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, var(--yellow), var(--orange) 48%, var(--red));
  box-shadow: 0 14px 45px rgba(255, 138, 29, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

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

.motion-ribbons span {
  position: absolute;
  left: -24vw;
  width: clamp(180px, 28vw, 440px);
  height: 3px;
  border-radius: 999px;
  opacity: 0.74;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  filter: drop-shadow(0 0 22px currentColor);
  animation: ribbonFly 8s linear infinite;
}

.motion-ribbons span:nth-child(1) {
  top: 28%;
  color: var(--red);
  animation-duration: 7.4s;
}

.motion-ribbons span:nth-child(2) {
  top: 45%;
  color: var(--yellow);
  animation-duration: 9.2s;
  animation-delay: -2.2s;
}

.motion-ribbons span:nth-child(3) {
  top: 62%;
  color: var(--cyan);
  animation-duration: 8.4s;
  animation-delay: -4.7s;
}

.motion-ribbons span:nth-child(4) {
  top: 76%;
  color: var(--orange);
  animation-duration: 10s;
  animation-delay: -6s;
}

.hero-visual {
  position: relative;
  min-height: min(640px, 70vh);
  perspective: 1500px;
}

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

.hero-visual::before {
  inset: 14% 8% 18% 20%;
  border: 1px solid rgba(255, 224, 74, 0.18);
  box-shadow: 0 0 90px rgba(255, 138, 29, 0.12), inset 0 0 70px rgba(64, 215, 255, 0.06);
  transform: rotateX(68deg) rotateZ(-18deg);
  animation: orbitRing 9s ease-in-out infinite;
}

.hero-visual::after {
  right: 4%;
  top: 16%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 224, 74, 0.2), transparent 68%);
  animation: pulseDot 5s ease-in-out infinite;
}

.print-stack {
  position: absolute;
  inset: 7% 0 auto 4%;
  height: 70%;
  transform-style: preserve-3d;
  animation: floatStack 5.8s ease-in-out infinite;
}

.print-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(11, 12, 18, 0.74);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.main-card {
  left: 11%;
  top: 16%;
  width: clamp(230px, 33vw, 390px);
  aspect-ratio: 0.72;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(20px, 4vw, 34px);
  overflow: hidden;
  transform: rotateY(-18deg) rotateX(10deg) rotateZ(-3deg);
  animation: cardBreath 4.8s ease-in-out infinite;
}

.main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 26%, rgba(255, 45, 45, 0.9) 26% 31%, transparent 31% 47%, rgba(255, 224, 74, 0.86) 47% 53%, transparent 53% 70%, rgba(64, 215, 255, 0.78) 70% 76%, transparent 76%),
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.24), transparent 9rem);
  opacity: 0.86;
}

.main-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.4) 44%, transparent 50%),
    radial-gradient(circle at 70% 18%, rgba(255, 224, 74, 0.32), transparent 9rem);
  mix-blend-mode: screen;
  transform: translateX(-32%);
  animation: cardFoil 6s ease-in-out infinite;
}

.main-card-logo,
.main-card small,
.card-tag {
  position: relative;
  z-index: 1;
}

.card-tag {
  align-self: flex-start;
  width: max-content;
  margin-bottom: auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: #16120d;
  background: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.main-card-logo {
  width: min(86%, 280px);
  margin: auto 0 16px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  filter:
    drop-shadow(0 18px 42px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.16));
  animation: logoFloat 5.4s ease-in-out infinite;
}

.main-card small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

.side-card {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.side-card-one {
  right: 4%;
  top: 8%;
  width: 132px;
  height: 92px;
  transform: rotateY(24deg) rotateX(-8deg) rotateZ(9deg) translateZ(120px);
  animation: sideFloatOne 4.6s ease-in-out infinite;
}

.side-card-two {
  right: 0;
  bottom: 10%;
  width: 160px;
  height: 110px;
  transform: rotateY(-26deg) rotateX(8deg) rotateZ(-7deg) translateZ(90px);
  animation: sideFloatTwo 5.4s ease-in-out infinite;
}

.color-strip {
  position: absolute;
  height: 12px;
  border-radius: 999px;
  filter: drop-shadow(0 0 24px rgba(255, 138, 29, 0.45));
  transform-origin: left center;
}

.strip-one {
  left: 2%;
  top: 20%;
  width: 62%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: rotateZ(24deg) translateZ(170px);
  animation: stripPulse 3.2s ease-in-out infinite;
}

.strip-two {
  right: 7%;
  top: 44%;
  width: 48%;
  background: linear-gradient(90deg, var(--yellow), var(--cyan));
  transform: rotateZ(-19deg) translateZ(140px);
  animation: stripPulse 3.8s ease-in-out infinite reverse;
}

.strip-three {
  left: 16%;
  bottom: 15%;
  width: 54%;
  background: linear-gradient(90deg, #fff, var(--red));
  transform: rotateZ(13deg) translateZ(100px);
  animation: stripPulse 4.2s ease-in-out infinite;
}

.hero-photo-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo-orbit img {
  position: absolute;
  width: clamp(92px, 14vw, 156px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
  animation: photoDrift 4.8s ease-in-out infinite;
}

.hero-photo-orbit img:nth-child(1) {
  right: 11%;
  top: 24%;
}

.hero-photo-orbit img:nth-child(2) {
  left: 2%;
  bottom: 13%;
  animation-delay: -2.4s;
}

.hero-photo-orbit img:nth-child(3) {
  right: 1%;
  bottom: 26%;
  animation-delay: -4.6s;
}

.ink-shard {
  position: absolute;
  z-index: 0;
  width: 150px;
  height: 34px;
  border-radius: 999px;
  opacity: 0.34;
  filter: blur(0.2px) drop-shadow(0 0 26px currentColor);
  animation: shardMove 12s ease-in-out infinite;
}

.shard-a {
  top: 20%;
  left: 6%;
  color: var(--red);
  background: currentColor;
}

.shard-b {
  top: 14%;
  right: 13%;
  color: var(--yellow);
  width: 96px;
  background: currentColor;
  animation-delay: -3s;
}

.shard-c {
  bottom: 24%;
  left: 45%;
  color: var(--cyan);
  width: 118px;
  background: currentColor;
  animation-delay: -6s;
}

.shard-d {
  bottom: 15%;
  right: 6%;
  color: var(--orange);
  width: 180px;
  background: currentColor;
  animation-delay: -8s;
}

.hero-bottom-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(90deg, rgba(255, 45, 45, 0.1), rgba(255, 224, 74, 0.08), rgba(64, 215, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  white-space: nowrap;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ticker-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-right: clamp(28px, 5vw, 64px);
}

.hero-bottom-line span {
  position: relative;
  min-width: max-content;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-bottom-line span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(28px, 5vw, 64px) / -2);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  transform: translate(50%, -50%);
  box-shadow: 0 0 16px rgba(255, 224, 74, 0.7);
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5.8vw, 5.1rem);
  line-height: 0.96;
  font-weight: 900;
}

.section-heading.centered {
  max-width: 860px;
  margin: 0 auto clamp(32px, 6vw, 62px);
  text-align: center;
}

.lead {
  color: rgba(248, 248, 243, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.glass-card,
.service-card,
.reason-card,
.company-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(12, 13, 19, 0.68);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.glass-card {
  min-height: 210px;
  padding: 24px;
}

.glass-card svg,
.contact-list svg,
.company-social svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
}

.glass-card h3,
.service-card h3,
.reason-card h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.glass-card p,
.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.services {
  overflow: hidden;
}

.services::before,
.gallery-section::before,
.contact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(980px, 88vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 224, 74, 0.68), rgba(255, 45, 45, 0.52), transparent);
}

.gallery-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(64, 215, 255, 0.08), transparent 28rem),
    radial-gradient(circle at 84% 62%, rgba(255, 45, 45, 0.08), transparent 32rem);
}

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  opacity: 0;
  background: linear-gradient(0deg, rgba(255, 45, 45, 0.28), transparent);
  transition: opacity 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-58%);
  transition: opacity 0.25s ease;
}

.service-card:hover {
  border-color: rgba(255, 224, 74, 0.42);
  box-shadow: 0 28px 84px rgba(255, 45, 45, 0.17), var(--shadow);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-card:hover::after {
  animation: galleryShine 1s ease;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #120d09;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--red));
  box-shadow: 0 12px 38px rgba(255, 138, 29, 0.36);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 42px);
}

.gallery-more {
  min-width: 190px;
}

.gallery-item {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.055);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
  isolation: isolate;
}

.gallery-item.is-gallery-hidden {
  display: none;
}

.gallery-item:nth-child(7n + 1),
.gallery-item:nth-child(9n + 4) {
  grid-row: span 2;
}

.gallery-item:nth-child(10n + 2) {
  grid-column: span 2;
}

.gallery-item button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  overflow: hidden;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  border-radius: calc(var(--radius) - 1px);
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.28) 47%, transparent 54%);
  transform: translateX(-50%);
  transition: opacity 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 224, 74, 0.2), transparent 13rem),
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.78));
  transition: opacity 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.12) translateY(-2px);
  filter: saturate(1.14) contrast(1.07);
}

.gallery-item:hover,
.gallery-item:focus-within {
  border-color: rgba(255, 224, 74, 0.38);
  box-shadow: 0 28px 80px rgba(255, 138, 29, 0.14), 0 18px 60px rgba(0, 0, 0, 0.36);
}

.gallery-item:hover::before,
.gallery-item:focus-within::before {
  opacity: 1;
  animation: galleryShine 1s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-overlay span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-overlay svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border-radius: 50%;
  color: #15100a;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reason-card {
  min-height: 172px;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background: linear-gradient(135deg, transparent 0 52%, rgba(255, 138, 29, 0.28) 52% 58%, transparent 58%);
}

.reason-card span {
  position: relative;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
}

.reason-card h3 {
  position: relative;
  max-width: 300px;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.contact {
  padding-bottom: clamp(72px, 10vw, 120px);
}

.contact-info h2 {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  line-height: 0.98;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  transform: translateX(5px);
  border-color: rgba(255, 224, 74, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.company-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.company-social {
  position: relative;
  isolation: isolate;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.company-social::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 224, 74, 0.18), rgba(255, 45, 45, 0.18), rgba(64, 215, 255, 0.1));
  transition: opacity 0.25s ease;
}

.company-social:hover,
.company-social:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 224, 74, 0.48);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 46px rgba(255, 138, 29, 0.16);
}

.company-social:hover::before,
.company-social:focus-visible::before {
  opacity: 1;
}

.company-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.company-card {
  margin-top: 18px;
  padding: 24px;
}

.company-card strong,
.company-card span,
.company-card small {
  display: block;
}

.company-card strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.company-card span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.company-card small {
  margin-top: 8px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  outline: none;
  padding: 15px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 224, 74, 0.6);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 0 4px rgba(255, 224, 74, 0.08);
}

.form-status {
  min-height: 24px;
  margin: 2px 0 0;
  color: var(--yellow);
  font-weight: 800;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 26px clamp(18px, 4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.24);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 900;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible,
.back-top:hover,
.back-top:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 224, 74, 0.48);
  background: rgba(255, 255, 255, 0.13);
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1120px, 86vw);
  max-height: 84vh;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.lightbox-counter {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 0.84rem;
  font-weight: 900;
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
}

.lightbox-next {
  right: 24px;
  top: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes gridPulse {
  0% {
    background-position: 0 0, 0 0;
    opacity: 0.1;
  }
  50% {
    background-position: 36px 24px, -24px 36px;
    opacity: 0.16;
  }
  100% {
    background-position: 72px 72px, -72px 72px;
    opacity: 0.1;
  }
}

@keyframes buttonShine {
  0% {
    transform: translateX(0) skewX(-18deg);
  }
  100% {
    transform: translateX(520%) skewX(-18deg);
  }
}

@keyframes galleryShine {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(60%);
  }
}

@keyframes heroAura {
  0% {
    filter: saturate(1) brightness(1);
    transform: scale(1);
  }
  100% {
    filter: saturate(1.18) brightness(1.12);
    transform: scale(1.03);
  }
}

@keyframes orbitRing {
  0%,
  100% {
    transform: rotateX(68deg) rotateZ(-18deg) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: rotateX(66deg) rotateZ(-6deg) scale(1.08);
    opacity: 1;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

@keyframes lightSweep {
  0%,
  18% {
    transform: translateX(-52%);
    opacity: 0;
  }
  42% {
    opacity: 0.38;
  }
  68%,
  100% {
    transform: translateX(52%);
    opacity: 0;
  }
}

@keyframes cardFoil {
  0%,
  24% {
    transform: translateX(-55%);
    opacity: 0;
  }
  46% {
    opacity: 0.36;
  }
  70%,
  100% {
    transform: translateX(55%);
    opacity: 0;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 42px) scale(1);
  }
  50% {
    transform: translate3d(0, -8px, 68px) scale(1.035);
  }
}

@keyframes ribbonFly {
  0% {
    transform: translate3d(-18vw, 0, 0) rotate(-12deg) scaleX(0.72);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  55% {
    opacity: 0.55;
  }
  100% {
    transform: translate3d(142vw, -34px, 0) rotate(-12deg) scaleX(1.14);
    opacity: 0;
  }
}

@keyframes floatStack {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotateX(3deg) rotateY(-4deg);
  }
}

@keyframes cardBreath {
  0%,
  100% {
    transform: rotateY(-18deg) rotateX(10deg) rotateZ(-3deg) translate3d(0, 0, 0);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
  50% {
    transform: rotateY(-14deg) rotateX(13deg) rotateZ(-1deg) translate3d(0, -12px, 42px);
    box-shadow: 0 34px 92px rgba(255, 45, 45, 0.2), var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes sideFloatOne {
  0%,
  100% {
    transform: rotateY(24deg) rotateX(-8deg) rotateZ(9deg) translate3d(0, 0, 120px);
  }
  50% {
    transform: rotateY(30deg) rotateX(-3deg) rotateZ(4deg) translate3d(10px, -18px, 150px);
  }
}

@keyframes sideFloatTwo {
  0%,
  100% {
    transform: rotateY(-26deg) rotateX(8deg) rotateZ(-7deg) translate3d(0, 0, 90px);
  }
  50% {
    transform: rotateY(-18deg) rotateX(13deg) rotateZ(-2deg) translate3d(-14px, 15px, 125px);
  }
}

@keyframes stripPulse {
  0%,
  100% {
    opacity: 0.86;
    filter: drop-shadow(0 0 18px rgba(255, 138, 29, 0.32));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 36px rgba(255, 224, 74, 0.72));
  }
}

@keyframes photoDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateZ(-4deg);
  }
  50% {
    transform: translate3d(12px, -18px, 0) rotateZ(5deg);
  }
}

@keyframes shardMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }
  50% {
    transform: translate3d(24px, -18px, 0) rotate(-11deg);
  }
}

@media (max-width: 1080px) {
  .hero-inner,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 8px 10px;
  }

  .navbar {
    min-height: 50px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

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

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 10px;
    left: auto;
    transform: translateY(-50%);
    z-index: 80;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    z-index: 70;
    display: grid;
    gap: 8px;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 14, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar {
    max-width: calc(100vw - 24px);
    padding-right: 64px;
  }

  body.nav-open .navbar {
    border-color: rgba(255, 224, 74, 0.34);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 224, 74, 0.08);
  }

  .nav-links a {
    border-radius: var(--radius);
    padding: 14px;
    font-size: 0.94rem;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-visual {
    min-height: 285px;
  }

  .hero-inner {
    gap: 18px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(3rem, 17vw, 4.8rem);
    line-height: 0.86;
  }

  .hero-subtitle {
    margin-bottom: 8px;
    font-size: clamp(1.18rem, 6vw, 1.55rem);
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .btn {
    min-height: 46px;
    padding: 12px 15px;
    font-size: 0.94rem;
  }

  .cursor-glow {
    display: none;
  }

  .motion-ribbons span {
    opacity: 0.42;
  }

  .print-stack {
    inset: 0;
  }

  .main-card {
    left: 7%;
    top: 9%;
    width: min(60vw, 235px);
    aspect-ratio: 0.82;
  }

  .side-card-one,
  .side-card-two {
    right: 2%;
  }

  .side-card {
    display: none;
  }

  .hero-photo-orbit img {
    width: 62px;
  }

  .hero-photo-orbit {
    display: none;
  }

  .hero-bottom-line {
    position: relative;
    margin: 12px -18px -82px;
    padding: 12px 0;
  }

  .hero-bottom-line span {
    font-size: 0.72rem;
  }

  .about-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.centered {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 12px;
  }

  .nav-toggle {
    top: 50%;
    right: 9px;
    left: auto;
  }

  .navbar {
    min-height: 48px;
    padding: 7px 58px 7px 10px;
  }

  .nav-links {
    top: 68px;
    left: 10px;
    right: 10px;
    padding: 10px;
  }

  .nav-links a {
    padding: 12px;
    font-size: 0.88rem;
  }

  .brand {
    gap: 9px;
  }

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

  .brand strong {
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 0;
  }

  .hero-inner {
    gap: 18px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(2.7rem, 16vw, 4rem);
    line-height: 0.86;
  }

  .hero-subtitle {
    margin-bottom: 8px;
    font-size: clamp(1.18rem, 6vw, 1.55rem);
  }

  .hero-text {
    max-width: 620px;
    margin-bottom: 20px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 0.94rem;
  }

  .hero-visual {
    min-height: 285px;
    margin-top: -6px;
  }

  .print-stack {
    height: 82%;
  }

  .main-card {
    left: 10%;
    top: 3%;
    width: min(52vw, 200px);
    aspect-ratio: 0.86;
    padding: 20px;
  }

  .main-card-logo {
    width: min(68%, 160px);
    margin-bottom: 8px;
  }

  .main-card small {
    display: block;
    font-size: 0.62rem;
  }

  .card-tag {
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .side-card {
    width: 82px;
    height: 54px;
    font-size: 0.64rem;
  }

  .color-strip {
    height: 8px;
    opacity: 0.68;
  }

  .strip-one {
    width: 62%;
  }

  .strip-two {
    width: 48%;
  }

  .strip-three {
    display: block;
  }

  .hero-bottom-line {
    margin: 12px -12px 0;
    padding: 10px 0;
  }

  .hero-bottom-line span {
    font-size: 0.72rem;
  }

  .about-grid,
  .services-grid,
  .gallery-grid,
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .services-grid,
  .about-grid {
    margin-top: 20px;
  }

  .glass-card,
  .service-card,
  .reason-card {
    padding: 14px;
  }

  .glass-card {
    min-height: 178px;
  }

  .service-card {
    min-height: 218px;
  }

  .reason-card {
    min-height: 120px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
  }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .glass-card svg {
    width: 20px;
    height: 20px;
  }

  .glass-card h3,
  .service-card h3,
  .reason-card h3 {
    margin: 12px 0 8px;
    font-size: 0.94rem;
    line-height: 1.14;
  }

  .glass-card p,
  .service-card p {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .reason-card span {
    font-size: 0.68rem;
  }

  .company-socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item:nth-child(n) {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 172px;
  }

  .gallery-overlay {
    opacity: 1;
    transform: none;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .gallery-overlay span {
    padding: 6px 7px;
    font-size: 0.64rem;
  }

  .gallery-overlay svg {
    width: 32px;
    height: 32px;
    padding: 8px;
  }

  .lightbox-counter {
    left: 14px;
    top: 14px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 70px 14px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 14px;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .print-stack,
  .main-card,
  .side-card,
  .color-strip,
  .hero-photo-orbit img,
  .ink-shard,
  .motion-ribbons span,
  .hero::before,
  .hero::after,
  .site-noise {
    animation-duration: 12s !important;
  }
}
