:root {
  --crhvn-bg-dark: #070709;
  --crhvn-bg-surface: #121216;
  --crhvn-bg-elevated: #1a1a20;
  --crhvn-gold-primary: #d4af37;
  --crhvn-gold-light: #f3e5ab;
  --crhvn-gold-dark: #aa8623;
  --crhvn-text-main: #f0f0f0;
  --crhvn-text-muted: #a0a0a5;
  --crhvn-border-subtle: rgba(212, 175, 55, 0.2);
  --crhvn-border-strong: rgba(212, 175, 55, 0.6);
  --crhvn-font-head: 'Cinzel', serif;
  --crhvn-font-body: 'Inter', sans-serif;
  --crhvn-radius-sm: 4px;
  --crhvn-radius-md: 8px;
  --crhvn-radius-lg: 16px;
  --crhvn-transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--crhvn-bg-dark);
  color: var(--crhvn-text-main);
  font-family: var(--crhvn-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--crhvn-transition);
}

h1, h2, h3, h4 {
  font-family: var(--crhvn-font-head);
  font-weight: 600;
  color: var(--crhvn-gold-primary);
  line-height: 1.2;
}

/* Header */
.crhvn-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 7, 9, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--crhvn-border-subtle);
  z-index: 1000;
  padding: 1rem 0;
}

.crhvn-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.crhvn-brand-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.crhvn-abbr {
  font-family: var(--crhvn-font-head);
  font-size: 2rem;
  color: var(--crhvn-bg-dark);
  background: linear-gradient(135deg, var(--crhvn-gold-light), var(--crhvn-gold-dark));
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--crhvn-radius-sm);
  font-weight: 700;
}

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

.crhvn-brand-name {
  font-family: var(--crhvn-font-head);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crhvn-gold-light);
}

.crhvn-brand-sub {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--crhvn-text-muted);
}

.crhvn-badge-box .crhvn-age-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--crhvn-gold-primary);
  border-radius: 50px;
  font-family: var(--crhvn-font-head);
  color: var(--crhvn-gold-primary);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Main Flow */
.crhvn-main-flow {
  padding-top: 100px; /* Offset for fixed header */
}

/* Hero Section */
.crhvn-grand-intro {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(circle at center, var(--crhvn-bg-elevated) 0%, var(--crhvn-bg-dark) 100%);
  position: relative;
}

.crhvn-grand-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid var(--crhvn-border-subtle);
  margin: 2rem;
  pointer-events: none;
}

.crhvn-intro-kicker {
  color: var(--crhvn-gold-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.crhvn-intro-kicker::before,
.crhvn-intro-kicker::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--crhvn-gold-primary);
}

.crhvn-intro-kicker::before { right: 100%; margin-right: 15px; }
.crhvn-intro-kicker::after { left: 100%; margin-left: 15px; }

.crhvn-intro-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--crhvn-gold-light);
  max-width: 800px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.crhvn-intro-desc {
  font-size: 1.2rem;
  color: var(--crhvn-text-muted);
  max-width: 600px;
  margin-bottom: 4rem;
}

/* Info Grid (Hero) */
.crhvn-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
}

.crhvn-info-pane {
  background: var(--crhvn-bg-surface);
  padding: 2rem;
  border: 1px solid var(--crhvn-border-subtle);
  border-radius: var(--crhvn-radius-sm);
  transition: var(--crhvn-transition);
}

.crhvn-info-pane:hover {
  border-color: var(--crhvn-gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.crhvn-info-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.crhvn-info-text {
  color: var(--crhvn-text-muted);
  font-size: 0.95rem;
}

/* Generic Section Styles */
.crhvn-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.crhvn-sec-header {
  text-align: center;
  margin-bottom: 4rem;
}

.crhvn-sec-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.crhvn-sec-intro {
  color: var(--crhvn-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Card Grid (Wellbeing & Gaming) */
.crhvn-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.crhvn-content-plaque {
  background: linear-gradient(180deg, var(--crhvn-bg-surface) 0%, var(--crhvn-bg-dark) 100%);
  border-top: 2px solid var(--crhvn-gold-primary);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 var(--crhvn-radius-md) var(--crhvn-radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.crhvn-plaque-kicker {
  font-size: 0.8rem;
  color: var(--crhvn-gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.crhvn-plaque-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.crhvn-plaque-text {
  color: var(--crhvn-text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.crhvn-plaque-list {
  list-style: none;
  border-top: 1px solid var(--crhvn-border-subtle);
  padding-top: 1.5rem;
}

.crhvn-plaque-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--crhvn-text-main);
  font-size: 0.95rem;
}

.crhvn-plaque-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--crhvn-gold-primary);
  font-size: 0.8rem;
  top: 2px;
}

/* Footer */
.crhvn-base-footer {
  background: var(--crhvn-bg-surface);
  border-top: 1px solid var(--crhvn-border-subtle);
  padding: 5rem 2rem 2rem;
  margin-top: 4rem;
}

.crhvn-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.crhvn-footer-slogan {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
  color: var(--crhvn-gold-light);
}

.crhvn-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.crhvn-fcol-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.crhvn-fcol-text {
  color: var(--crhvn-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.crhvn-fcol-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.crhvn-fcol-contact span {
  color: var(--crhvn-gold-primary);
  font-weight: 600;
}

.crhvn-fnav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.crhvn-fnav a {
  color: var(--crhvn-text-main);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.crhvn-fnav a:hover {
  color: var(--crhvn-gold-primary);
}

.crhvn-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--crhvn-border-subtle);
  color: var(--crhvn-text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .crhvn-info-grid, .crhvn-card-grid, .crhvn-footer-grid {
    grid-template-columns: 1fr;
  }
  .crhvn-intro-title {
    font-size: 2.5rem;
  }
  .crhvn-brand-name {
    font-size: 1.1rem;
  }
}
