:root {
  --glhb-bg-main: #141518;
  --glhb-bg-alt: #1c1e22;
  --glhb-gold: #d4af37;
  --glhb-gold-hover: #e5c158;
  --glhb-text: #e8e8e8;
  --glhb-text-muted: #a0a0a0;
  --glhb-border: rgba(212, 175, 55, 0.2);
  --glhb-accent: #8b0000; /* Deep Ruby for accents */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--glhb-bg-main);
  color: var(--glhb-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .glhb-serif-font {
  font-family: "Georgia", "Playfair Display", "Times New Roman", serif;
  margin-top: 0;
  font-weight: 400;
}

/* Typography Helpers */
.glhb-text-gold { color: var(--glhb-gold); }
.glhb-text-center { text-align: center; }

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

/* Header */
.glhb-header-wrapper {
  background-color: rgba(20, 21, 24, 0.95);
  border-bottom: 1px solid var(--glhb-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.glhb-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.glhb-brand-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.glhb-logo-abbr {
  font-size: 28px;
  color: var(--glhb-gold);
  border: 2px solid var(--glhb-gold);
  padding: 5px 12px;
  font-family: "Georgia", serif;
  letter-spacing: 2px;
}

.glhb-brand-text {
  display: flex;
  flex-direction: column;
}

.glhb-brand-name {
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
}

.glhb-brand-sub {
  font-size: 12px;
  color: var(--glhb-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glhb-header-badge {
  background: var(--glhb-accent);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.glhb-badge-18 {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}

/* Hero Section */
.glhb-hero-section {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #1a1c20 0%, #0d0e11 100%);
  border-bottom: 1px solid var(--glhb-border);
  text-align: center;
}

.glhb-hero-kicker {
  font-size: 14px;
  color: var(--glhb-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid var(--glhb-gold);
  padding-bottom: 5px;
}

.glhb-hero-title {
  font-size: 56px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.1;
}

.glhb-hero-desc {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--glhb-text-muted);
}

.glhb-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.glhb-info-card {
  background-color: var(--glhb-bg-alt);
  padding: 30px 20px;
  border: 1px solid var(--glhb-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glhb-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--glhb-gold-hover);
}

.glhb-info-card-title {
  color: var(--glhb-gold);
  font-size: 20px;
  margin-bottom: 10px;
}

.glhb-info-card-text {
  font-size: 14px;
  color: var(--glhb-text-muted);
  margin: 0;
}

/* Sections Base */
.glhb-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--glhb-border);
}

.glhb-section-alt {
  background-color: var(--glhb-bg-alt);
}

.glhb-section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.glhb-section-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.glhb-section-intro {
  font-size: 16px;
  color: var(--glhb-text-muted);
}

/* Card Grids */
.glhb-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.glhb-feature-card {
  background-color: var(--glhb-bg-main);
  border: 1px solid var(--glhb-border);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.glhb-section-alt .glhb-feature-card {
  background-color: #1a1c20;
}

.glhb-feature-card:hover {
  border-color: var(--glhb-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glhb-card-kicker {
  font-size: 12px;
  color: var(--glhb-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.glhb-card-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

.glhb-card-desc {
  font-size: 15px;
  color: var(--glhb-text-muted);
  margin-bottom: 25px;
}

.glhb-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.glhb-card-list li {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--glhb-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.glhb-card-list li::before {
  content: "♦";
  color: var(--glhb-gold);
  font-size: 12px;
  margin-top: 2px;
}

/* Footer */
.glhb-footer {
  background-color: #0a0b0d;
  padding: 80px 0 40px;
  border-top: 2px solid var(--glhb-gold);
}

.glhb-footer-slogan {
  text-align: center;
  font-size: 28px;
  color: var(--glhb-gold);
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.glhb-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.glhb-footer-col-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glhb-footer-text {
  font-size: 14px;
  color: var(--glhb-text-muted);
  margin-bottom: 15px;
}

.glhb-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.glhb-footer-nav li {
  margin-bottom: 10px;
}

.glhb-footer-nav a {
  color: var(--glhb-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.glhb-footer-nav a:hover {
  color: var(--glhb-gold);
}

.glhb-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: #666;
}

/* Compliance Highlight in Footer */
.glhb-compliance-text {
  border-left: 2px solid var(--glhb-accent);
  padding-left: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .glhb-hero-grid, .glhb-card-grid, .glhb-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .glhb-header-inner {
    flex-direction: column;
    gap: 15px;
  }
  .glhb-hero-title {
    font-size: 40px;
  }
  .glhb-hero-grid, .glhb-card-grid, .glhb-footer-grid {
    grid-template-columns: 1fr;
  }
  .glhb-section-title {
    font-size: 32px;
  }
}
