/* Original SKORPION identity and visual story */
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px #d51f2655;
}

.hero-symbol { max-width: 520px; }
.hero-symbol .orbit, .hero-symbol .sigil { display: none; }
.logo-halo {
  position: absolute;
  inset: -5%;
  border: 1px solid #ffffff20;
  border-radius: 50%;
  box-shadow: 0 0 90px #d51f262a;
  animation: pulse 4s ease-in-out infinite;
}
.logo-halo::after {
  content: "";
  position: absolute;
  inset: 6%;
  border: 1px dashed #c7a86744;
  border-radius: 50%;
  animation: spin 35s linear infinite;
}
.hero-logo {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 24px 38px #000);
}
.hero-symbol > p {
  z-index: 3;
  bottom: -4%;
  right: auto;
  white-space: nowrap;
  color: var(--gold);
}
@keyframes pulse {
  50% { transform: scale(1.025); box-shadow: 0 0 120px #d51f2644; }
}

.gallery {
  max-width: 1280px;
  margin: auto;
  padding: 130px 6vw;
  border-top: 1px solid #ffffff1f;
}
.gallery-intro {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 65px;
}
.gallery-intro .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.gallery-intro h2 { font-size: clamp(3rem, 6vw, 6.4rem); letter-spacing: -.04em; }
.gallery-intro > p:last-child { color: #aaa; margin: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-grid figure {
  margin: 0;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #151515;
}
.gallery-grid .gallery-wide { grid-column: 1 / -1; min-height: 610px; }
.gallery-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, #050505e8);
}
.gallery-grid figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.gallery-grid figcaption span {
  color: var(--red);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .16em;
  margin-top: 5px;
}
.gallery-grid figcaption strong, .gallery-grid figcaption small { display: block; }
.gallery-grid figcaption strong { font-family: "Playfair Display"; font-size: 1.8rem; }
.gallery-grid figcaption small { color: #bbb; font-size: .78rem; margin-top: 4px; }
.gallery-wide img { object-position: center 42%; }

@media (max-width: 900px) {
  .gallery-intro { grid-template-columns: 1fr; }
  .gallery-grid .gallery-wide { min-height: 480px; }
}
@media (max-width: 600px) {
  .gallery { padding: 90px 6vw; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-wide { grid-column: auto; min-height: 380px; }
  .gallery-grid figure { min-height: 360px; }
  .gallery-grid figcaption { left: 22px; right: 22px; bottom: 20px; }
  .gallery-grid figcaption strong { font-size: 1.45rem; }
  .hero-symbol > p { white-space: normal; text-align: center; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-grid img, .logo-halo, .logo-halo::after { animation: none; transition: none; }
}
