:root {
  --dark-bg: #1a1a1a;
  --dark-card: #252525;
  --gold-accent: #d4a06b;
  --gold-light: #dab404;
  --text-light: #f5f5f5;
  --text-muted: #b0b0b0;
  --border-dark: #333;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  background-color: var(--dark-bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--gold-light); }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
}

/* Header & Navigation */
header {
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  background-color: var(--gold-light);
  color: #000;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.header-top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-top a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header-top a:hover {
  opacity: 0.8;
}

nav.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark-card);
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-dark);
  z-index: 999;
}

.mobile-nav a {
  padding: 15px 20px;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border-dark);
  display: block;
}

.mobile-nav a:hover {
  background-color: var(--dark-bg);
  color: var(--gold-light);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 65px;
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--gold-light);
}

.cta-button {
  background-color: var(--gold-light);
  color: #000;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
  border: 2px solid var(--gold-light);
  cursor: pointer;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--gold-light);
}

.cta-button-alt {
  background-color: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold-light);
  padding: 10px 24px;
}

.cta-button-alt:hover {
  background-color: var(--gold-light);
  color: #000;
}

/* Page Title Band (replaces hero video on sub-pages) */
.page-title-band {
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), #1a1a1a;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-title-band h1 {
  color: var(--gold-light);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.page-title-band-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 20px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections */
.content-section {
  background-color: var(--dark-bg);
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block h2 {
  color: var(--gold-light);
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-block h3 {
  color: var(--text-light);
  margin-top: 1.5rem;
  font-size: 1.3rem;
}

.content-block p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-block strong {
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-bg), var(--gold-accent) 50%);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  background-color: var(--gold-light);
  color: #000;
  padding: 15px 40px;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: var(--dark-card);
  border-top: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--gold-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--gold-light);
}

.footer-section p {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
}

/* Floating CTA Button */
.floating-phone-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #d4a06b;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 99;
  transition: all 0.3s;
}

.floating-phone-cta:hover {
  background-color: var(--gold-light);
  transform: scale(1.1);
}

/* Logo sizing override for all pages */
.site-logo { height: 65px; width: auto; }
.logo, .brand-logo { height: 65px; display: flex; align-items: center; }
.logo img, .brand-logo img, a.logo img { height: 65px !important; width: auto !important; max-width: 240px !important; object-fit: contain; }
.site-header .site-logo img { height: 65px !important; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.2rem; }

  .header-top-content {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
  }

  .mobile-nav.active {
    display: flex;
  }

  .page-title-band {
    padding: 50px 0;
    min-height: 200px;
  }

  .page-title-band h1 {
    font-size: 2rem;
  }

  section {
    padding: 50px 0;
  }

  .footer-content {
    gap: 30px;
  }

  .floating-phone-cta {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .header-top {
    display: none;
  }

  .logo {
    font-size: 1.2rem;
  }

  .page-title-band {
    padding: 40px 20px;
    min-height: 150px;
  }

  .page-title-band h1 {
    font-size: 1.5rem;
  }

  .cta-section {
    padding: 50px 20px;
  }

  .mobile-nav a {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .floating-phone-cta {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
    font-size: 1rem;
  }
}
