:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --gold: #d4af37;
  --gold-light: #f1d788;
  --gray: #b5b5b5;
  --white: #ffffff;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow.center,
.center {
  text-align: center;
}

.accent {
  color: var(--gold);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 800;
  color: var(--gold);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  transform: rotate(45deg);
}

.brand-mark span,
.brand-mark {
  position: relative;
}

.brand-mark.small {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 800;
}

.brand-est {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray);
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding-top: 84px;
  background: var(--black);
}

.hero-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 700px) {
  .hero-banners {
    grid-template-columns: 1fr;
  }
}

.banner-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-top: 3px solid var(--accent);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.banner-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.banner-link:hover img {
  transform: scale(1.03);
}

.banner-link:hover {
  box-shadow: inset 0 0 0 2px var(--accent);
  z-index: 2;
}

.col-gold { --accent: #d4af37; }
.col-pink { --accent: #e0397a; }
.col-blue { --accent: #3aa0e8; }
.col-orange { --accent: #e8823a; }

@media (prefers-reduced-motion: reduce) {
  .banner-link img {
    transition: none;
  }
  .banner-link:hover img {
    transform: none;
  }
}

/* Stats bar */
.stats-bar {
  background: var(--black-soft);
  padding: 36px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item i {
  color: var(--gold);
  font-size: 26px;
  flex-shrink: 0;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.stat-lbl {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .stat-item {
    border-right: none;
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* About */
.about {
  padding: 140px 0;
  background: var(--black-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.visual-frame {
  width: 260px;
  height: 260px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin 18s linear infinite;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
}

.visual-mark {
  font-size: 64px;
  font-weight: 800;
  color: var(--gold);
  animation: counterSpin 18s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-stats {
    justify-content: center;
  }
  .about-visual {
    order: -1;
    margin-bottom: 20px;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Connect */
.connect {
  padding: 140px 0;
}

.connect h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 60px;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.connect-card {
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 44px 36px;
  border-radius: 4px;
  transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease;
}

.connect-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  background: rgba(212, 175, 55, 0.04);
}

.connect-icon {
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.connect-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.connect-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.connect-email {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 700px) {
  .connect-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  padding: 50px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-inner p {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.copyright {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #777;
}

/* Mobile nav */
@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 260px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 32px;
    gap: 28px;
    transition: right 0.4s ease;
  }
  .main-nav.open {
    right: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visible focus states */
a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}
