/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #063b32 0%, #02120d 50%, #000000 100%);
  color: #f5f5f5;
  line-height: 1.6;
}

/* TOP BAR */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6vw;
  background: linear-gradient(to right, #050608 0%, #050822 40%, #020f0b 100%);
  border-bottom: 1px solid rgba(245, 212, 107, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(245, 212, 107, 0.8);
  box-shadow: 0 0 20px rgba(245, 212, 107, 0.6);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 13px;
  text-transform: uppercase;
  color: #f5d46b;
}

.brand-tagline {
  font-size: 11px;
  color: #e0e8ff;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

.nav a {
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: #f5f5f5;
  opacity: 0.85;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: opacity 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.nav a:hover {
  opacity: 1;
  border-color: #f5d46b;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  padding: 40px 6vw 60px;
  gap: 32px;
  align-items: center;
}

.hero-media img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(245, 212, 107, 0.35);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(6, 255, 164, 0.25);
  object-fit: cover;
}

.hero-content h1 {
  font-size: clamp(30px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  color: #ffeaa7;
}

.hero-content p {
  font-size: 15px;
  max-width: 520px;
  color: #f3f7ff;
  margin-bottom: 22px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: radial-gradient(circle at 30% 0%, #ffeaa7 0%, #f5d46b 35%, #d8a521 100%);
  color: #241400;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(245, 212, 107, 0.6);
  color: #f5d46b;
}

.btn.ghost:hover {
  background: rgba(245, 212, 107, 0.1);
}

/* SECTIONS */

.section {
  padding: 60px 6vw;
}

.section-dark {
  background: radial-gradient(circle at top, #03271f 0%, #020a09 50%, #000000 100%);
}

.section-gold {
  background: radial-gradient(circle at top, #1f1300 0%, #090302 50%, #000000 100%);
}

.section-deep {
  background: radial-gradient(circle at top, #020c12 0%, #000000 60%, #020608 100%);
}

.section h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 18px;
  color: #ffeaa7;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 13px;
  color: #d7e2ff;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* CARD GRID */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.card {
  background: radial-gradient(circle at top, #091619 0%, #050708 55%, #000000 100%);
  border-radius: 22px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(245, 212, 107, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.card-image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
}

.card-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffeaa7;
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: #dde6ff;
}

/* Framed effect */

.framed {
  padding: 6px;
  border-radius: 22px;
  background: radial-gradient(circle at top, #f5d46b 0%, #645022 45%, #120800 100%);
}

/* GOLD SECTION */

.gold-grid .card {
  background: radial-gradient(circle at top, #241000 0%, #050101 55%, #000000 100%);
}

.gold-card .card-image {
  background: radial-gradient(circle at top, #70501d 0%, #120701 60%, #000000 100%);
}

/* TWO COLUMN SECTIONS */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  gap: 32px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
}

.column-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}

.tall img {
  max-height: 520px;
}

.column-text h2 {
  text-align: left;
  margin-bottom: 12px;
}

.column-text p {
  font-size: 14px;
  color: #e2ecff;
  margin-bottom: 10px;
}

.column-text .highlight {
  margin-top: 8px;
  color: #ffeaa7;
}

/* FOOTER */

.footer {
  padding: 35px 6vw 28px;
  background: #020406;
  border-top: 1px solid rgba(245, 212, 107, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  font-size: 13px;
}

.footer h3 {
  color: #ffeaa7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 6px;
}

.footer p {
  color: #d6e0ff;
  margin-bottom: 4px;
}

.footer a {
  color: #f5d46b;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .hero-media {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .top-bar {
    padding-inline: 16px;
  }

  .section {
    padding-inline: 16px;
  }

  .hero {
    padding-inline: 16px;
  }
}