:root {
  --bg: #222831;
  --bg-soft: #2b323d;
  --surface: #313a46;
  --surface-2: #3a4554;
  --text: #eef4ff;
  --muted: #b8c2d6;
  --blue: #2d7ed8;
  --blue-strong: #1f5fab;
  --border: #4a5568;
  --shadow: rgba(9, 14, 22, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, #2f3f58 0%, transparent 45%),
    linear-gradient(160deg, #232a33, #1f252e 60%, #1c2129);
}

body.modal-open {
  overflow: hidden;
}

.site-header {
  width: min(1100px, 92%);
  margin: 20px auto 0;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(49, 58, 70, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px var(--shadow);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-mark {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.5px;
  color: #8ec2ff;
  font-size: 2rem;
}

.brand-name {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.nav a:hover {
  border-color: #6ea8e8;
  background: rgba(45, 126, 216, 0.15);
}

.nav a.active {
  background: linear-gradient(90deg, var(--blue), var(--blue-strong));
  color: #fff;
  border-color: transparent;
}

.container {
  width: min(1100px, 92%);
  margin: 26px auto 58px;
}

.hero,
.card,
.gallery-item {
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(10, 15, 22, 0.3);
}

.hero {
  border-radius: 24px;
  padding: 32px;
  animation: rise 0.55s ease;
}

.eyebrow {
  margin: 0 0 8px;
  color: #8ec2ff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.3px;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.95;
}

.lead {
  margin: 16px 0 0;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  background: linear-gradient(90deg, var(--blue), var(--blue-strong));
  color: #fff;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn.btn-outline {
  background: transparent;
  border-color: #6ea8e8;
  color: #cfe6ff;
}

.group-photo-section {
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(10, 15, 22, 0.3);
  animation: rise 0.6s ease both;
}

.group-photo {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  background: #1c2129;
  display: block;
}

.cards,
.contact-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: 16px;
  padding: 20px;
  animation: rise 0.6s ease both;
}

.card h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.card p strong {
  color: var(--text);
}

.card-highlight {
  border-color: #5f9ee0;
}

.section-title {
  margin-bottom: 18px;
}

.section-title h1 {
  margin-top: 3px;
}

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

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 170px;
  padding: 0;
  cursor: pointer;
}

button.gallery-item {
  appearance: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.card a {
  color: #8ec2ff;
  text-decoration: none;
  font-weight: 700;
}

.card a:hover {
  text-decoration: underline;
}

.site-footer {
  text-align: center;
  color: var(--muted);
  padding: 8px 16px 22px;
}

[v-cloak] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 20, 0.88);
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 80vh;
  border-radius: 14px;
  border: 2px solid #506079;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
}

.lightbox-caption {
  margin: 12px 0 0;
  color: #d8e1ef;
  font-weight: 600;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid #6d7f9b;
  background: rgba(49, 58, 70, 0.9);
  color: #eef4ff;
  border-radius: 10px;
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 56px;
  font-size: 1.7rem;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .hero {
    padding: 22px;
  }

  .cards,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    width: 42px;
    height: 48px;
  }
}
