@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --egh-bg-dark: #111111;
  --egh-bg-card: #1c1c1c;
  --egh-bg-burgundy: #2a0813;
  --egh-accent-gold: #d4af37;
  --egh-text-main: #f5f5f5;
  --egh-text-muted: #bbbbbb;
  --egh-font-heading: 'Playfair Display', serif;
  --egh-font-body: 'Montserrat', sans-serif;
  --egh-transition: all 0.3s ease;
}

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

body {
  background-color: var(--egh-bg-dark);
  color: var(--egh-text-main);
  font-family: var(--egh-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--egh-font-heading);
  font-weight: 400;
  color: var(--egh-accent-gold);
}

a {
  text-decoration: none;
  color: var(--egh-text-main);
  transition: var(--egh-transition);
}

a:hover {
  color: var(--egh-accent-gold);
}

/* Header */
.egh-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: var(--egh-bg-burgundy);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.egh-logo-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.egh-logo-abbr {
  font-family: var(--egh-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--egh-accent-gold);
  line-height: 1;
}

.egh-brand-details {
  display: flex;
  flex-direction: column;
}

.egh-brand-name {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.egh-brand-sub {
  font-size: 0.85rem;
  color: var(--egh-text-muted);
  letter-spacing: 1px;
}

.egh-badge-wrapper {
  display: flex;
  align-items: center;
}

.egh-age-badge {
  display: inline-block;
  border: 2px solid var(--egh-accent-gold);
  color: var(--egh-accent-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Hero Section */
.egh-main-showcase {
  padding: 8rem 5%;
  background: linear-gradient(180deg, var(--egh-bg-burgundy) 0%, var(--egh-bg-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.egh-main-showcase::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.egh-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.egh-hero-kicker {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--egh-accent-gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--egh-accent-gold);
  padding-bottom: 0.5rem;
}

.egh-hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.egh-hero-desc {
  font-size: 1.1rem;
  color: var(--egh-text-muted);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.egh-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.egh-hero-info-card {
  background-color: rgba(28, 28, 28, 0.6);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  transition: var(--egh-transition);
}

.egh-hero-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.egh-info-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--egh-accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.egh-info-text {
  font-size: 1rem;
}

/* Common Section Styles */
.egh-section-wrap {
  padding: 6rem 5%;
}

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

.egh-section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.egh-section-intro {
  color: var(--egh-text-muted);
  font-size: 1.1rem;
}

.egh-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Cards */
.egh-feature-box {
  background-color: var(--egh-bg-card);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: var(--egh-transition);
  overflow: hidden;
}

.egh-feature-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background-color: var(--egh-accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.egh-feature-box:hover {
  background-color: #222;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.egh-feature-box:hover::before {
  transform: scaleX(1);
}

.egh-card-kicker {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--egh-text-muted);
  display: block;
  margin-bottom: 1rem;
}

.egh-card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.egh-card-text {
  font-size: 0.95rem;
  color: var(--egh-text-muted);
  margin-bottom: 1.5rem;
}

.egh-card-list {
  list-style: none;
}

.egh-card-list li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  color: #ddd;
}

.egh-card-list li::before {
  content: "•";
  color: var(--egh-accent-gold);
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.2rem;
}

/* Footer */
.egh-footer-base {
  background-color: var(--egh-bg-burgundy);
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.egh-footer-slogan {
  text-align: center;
  font-family: var(--egh-font-heading);
  font-size: 2rem;
  color: var(--egh-accent-gold);
  margin-bottom: 4rem;
}

.egh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.egh-footer-col p {
  color: var(--egh-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.egh-footer-title {
  font-family: var(--egh-font-heading);
  color: var(--egh-accent-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.egh-contact-list {
  list-style: none;
}

.egh-contact-list li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--egh-text-muted);
}

.egh-contact-list span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--egh-accent-gold);
  margin-bottom: 0.2rem;
  margin-top: 1rem;
}

.egh-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.egh-footer-nav {
  display: flex;
  gap: 2rem;
}

.egh-footer-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.egh-copyright {
  font-size: 0.85rem;
  color: var(--egh-text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .egh-content-grid, .egh-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .egh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .egh-hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .egh-top-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .egh-logo-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  .egh-content-grid, .egh-hero-grid, .egh-footer-grid {
    grid-template-columns: 1fr;
  }
  .egh-section-title {
    font-size: 2.2rem;
  }
  .egh-hero-title {
    font-size: 2.8rem;
  }
  .egh-footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}
