:root {
  --bg: #010204;
  --bg-soft: #06080d;
  --panel: #05070b;
  --line: #1a2230;
  --text: #e7edf7;
  --muted: #8c99b0;
  --accent: #d3d9e6;
  --accent-dark: #0b0d12;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.lightbox-open {
  overflow: hidden;
}

body {
  font-family: "Space Mono", monospace;
  background:
    radial-gradient(circle at 25% -10%, rgba(90, 110, 150, 0.13) 0%, transparent 35%),
    radial-gradient(circle at 80% 110%, rgba(50, 66, 96, 0.1) 0%, transparent 35%),
    linear-gradient(180deg, #020306 0%, #010204 60%, #000000 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  letter-spacing: 0.2px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 2px,
      transparent 4px
    ),
    radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.035) 0%, transparent 40%);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 2px,
      transparent 4px
    ),
    radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.04) 0%, transparent 38%);
  mix-blend-mode: screen;
  z-index: 1;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 3;
}

.site-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.1);
  cursor: zoom-in;
}

.nav-links {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  gap: 10px;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.hero-image-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #0b0e14;
  min-height: 460px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  cursor: zoom-in;
}

.hero-copy {
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.97), rgba(4, 6, 10, 0.97));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 2px;
}

h1,
h2 {
  margin: 0 0 14px;
  font-family: "Syne", sans-serif;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.03;
  text-transform: uppercase;
}

h1 span {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}

.hero-copy p {
  margin: 0 0 14px;
  color: #d7deea;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-dark);
  font-weight: 700;
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--bg-soft);
}

.btn-x {
  color: #e9eef8;
  background: #0a0d14;
}

.btn-x:hover {
  background: #101624;
}

.about,
.gallery {
  margin-top: 28px;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.98), rgba(3, 4, 8, 0.98));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.about p {
  color: #ccd5e4;
  margin: 0 0 12px;
}

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

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  filter: grayscale(95%) contrast(1.05);
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border: 1px solid #2d3545;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: 1px solid #3a4256;
  background: #0a0d14;
  color: #f1f5ff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  cursor: pointer;
}

.lightbox-close:hover {
  background: #121828;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 16px 24px 24px;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .site-header {
    justify-content: center;
  }

  .nav-links {
    margin-left: 0;
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 360px;
  }

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

  .header-actions {
    width: 100%;
    justify-content: center;
  }
}
