:root {
  --bg: #050505;
  --card: #111111;
  --text: #f6f6f6;
  --muted: #b5b5b5;
  --gold: #d8b26a;
  --line: #242424;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.05));
  transition: 0.3s ease;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid #ffffff44;
  border-radius: 8px;
  width: 40px;
  height: 40px;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  background: url("assets/2.jpg") center 20% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(216, 178, 106, 0.24), transparent 45%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.88));
  z-index: -1;
}

.hero-content {
  text-align: center;
  padding-top: 72px;
}

.eyebrow,
.section-eyebrow {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

h1 {
  margin: 0.8rem 0 0.5rem;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 1;
}

.hero-subtitle {
  margin: 0 0 1.7rem;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: #e6e6e6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  color: black;
  background: var(--gold);
  font-weight: 700;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: #ffffff55;
}

section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 0;
}

.achievements-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.achievements-list li {
  margin-bottom: 0.45rem;
}

.achievements-list strong {
  color: var(--text);
  font-weight: 600;
}

.about-image-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #0b0b0b;
}

.about-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.centered {
  text-align: center;
}

.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 1.2rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.gallery-grid {
  margin-top: 2rem;
  columns: 3 290px;
  column-gap: 1rem;
}

.media-item {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 1rem;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
}

.media-item img,
.media-item video {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.media-item:hover img,
.media-item:hover video {
  transform: scale(1.03);
}

.play-badge {
  position: absolute;
  inset: auto auto 12px 12px;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid #ffffff66;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.contact-copy {
  max-width: 640px;
  margin: 0 auto 1.4rem;
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: min(1000px, 88vw);
  max-height: 84vh;
}

.lightbox-content img,
.lightbox-content video {
  max-height: 84vh;
  border-radius: 12px;
  border: 1px solid #ffffff2f;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid #ffffff40;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    right: 4%;
    width: min(230px, 92vw);
    background: #0c0c0c;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.65rem;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.55rem 0.5rem;
    display: block;
  }
}
