:root {
  --black: #000000;
  --white: #ffffff;
  --gold1: #c99700;
  --gold2: #ffd676;
}

/* RESET / BASE */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* SHIMMER GOLD TEXT EFFECT */
.shimmer-gold {
  background: linear-gradient(90deg, var(--gold1), var(--gold2), var(--gold1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 215, 80, 0.6),
    0 0 22px rgba(255, 215, 80, 0.4);
}

/* NAVIGATION */
.hl-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  box-shadow: 0 0 20px rgba(255, 215, 80, 0.3);
}

.hl-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.hl-menu li {
  height: 40px;
  display: flex;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8px 14px;
  white-space: nowrap;
}

.nav-btn {
  border: 1px solid var(--gold2);
  border-radius: 6px;
}

/* HERO SECTION */
.hl-hero {
  padding-top: 110px; /* space for fixed nav */
}

.hl-hero-wrap {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px 0;
}

.gold-line {
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold1), var(--gold2), var(--gold1));
  box-shadow: 0 0 14px rgba(255, 215, 80, 0.7);
  margin: 10px 0 16px 0;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0 0 18px 0;
}

/* PHONE IN HERO */
.hero-phone {
  font-size: 16px;
  margin-top: 8px;
}

.hero-phone-link {
  color: inherit;
  text-decoration: none;
}

/* BUTTONS */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  border-radius: 8px;
  padding: 11px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  background: var(--gold1);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--gold2);
  border: 2px solid var(--gold2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(255, 215, 80, 0.5);
}

/* HERO LOGO */
.hero-logo {
  margin-top: 10px;
  width: 320px;
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(255, 215, 80, 0.4));
}

/* HERO MAP */
.hl-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-map {
  width: 95%;
  max-width: 520px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 18px rgba(255, 215, 80, 0.35));
}

/* GENERIC SECTIONS */
.hl-section {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 26px 0;
}

/* SHUFFLE CARDS GRID */
.shuffle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.shuffle-card {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 24px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 0 12px rgba(255, 215, 80, 0.35),
    0 0 26px rgba(255, 215, 80, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.shuffle-card small {
  display: block;
  margin-top: 6px;
  font-weight: 500;
  opacity: 0.9;
}

.shuffle-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #ffda56;
  box-shadow: 0 0 20px rgba(255, 215, 80, 0.8),
    0 0 40px rgba(255, 215, 80, 0.5);
}

/* ABOUT LIST */
.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 2;
}

/* CONTACT PHONE LINK */
.contact-phone {
  color: var(--gold2);
  font-weight: 800;
  text-decoration: none;
}

/* FOOTER */
.hl-footer {
  text-align: center;
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255, 215, 80, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hl-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gold-line {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }
}