:root {
  --heh-bg: #130a1c;
  --heh-bg-card: #1e112a;
  --heh-accent: #d4af37;
  --heh-accent-hover: #e5c358;
  --heh-text-main: #f5f0fa;
  --heh-text-muted: #b4a8c4;
  --heh-border: #38244a;
  --heh-font: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--heh-font);
  background-color: var(--heh-bg);
  color: var(--heh-text-main);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3 { font-weight: 600; margin-bottom: 1rem; color: var(--heh-text-main); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
p { margin-bottom: 1rem; color: var(--heh-text-muted); }

/* Layout */
.heh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.heh-section { padding: 80px 0; border-bottom: 1px solid var(--heh-border); }
.heh-section:last-child { border-bottom: none; }

/* Header */
.heh-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--heh-border);
  background-color: var(--heh-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.heh-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heh-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heh-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.heh-nav {
  display: flex;
  gap: 20px;
}
.heh-nav-link {
  color: var(--heh-text-main);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.heh-nav-link:hover { color: var(--heh-accent); }
.heh-badge-18 {
  border: 1px solid var(--heh-accent);
  color: var(--heh-accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* Button */
.heh-btn {
  display: inline-block;
  background-color: var(--heh-accent);
  color: var(--heh-bg);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.heh-btn:hover { background-color: var(--heh-accent-hover); }

/* Hero */
.heh-hero {
  text-align: center;
  padding: 120px 0;
}
.heh-hero__title { font-size: 3.5rem; margin-bottom: 20px; }
.heh-hero__desc { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; }

/* Grids & Cards */
.heh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.heh-card {
  background-color: var(--heh-bg-card);
  padding: 30px;
  border: 1px solid var(--heh-border);
  border-radius: 8px;
  transition: border-color 0.3s;
}
.heh-card:hover { border-color: var(--heh-accent); }
.heh-card__title { font-size: 1.5rem; color: var(--heh-accent); margin-bottom: 15px; }

/* Forms */
.heh-form-group { margin-bottom: 20px; }
.heh-input, .heh-textarea {
  width: 100%;
  padding: 15px;
  background-color: var(--heh-bg);
  border: 1px solid var(--heh-border);
  color: var(--heh-text-main);
  border-radius: 6px;
  font-family: var(--heh-font);
}
.heh-input:focus, .heh-textarea:focus { outline: none; border-color: var(--heh-accent); }
.heh-textarea { resize: vertical; min-height: 120px; }

/* Contact */
.heh-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 768px) {
  .heh-contact-wrap { grid-template-columns: 1fr; }
  .heh-header__inner { flex-direction: column; gap: 15px; }
  .heh-nav { flex-wrap: wrap; justify-content: center; }
}

/* Footer */
.heh-footer {
  background-color: var(--heh-bg-card);
  padding: 60px 0 30px;
  border-top: 1px solid var(--heh-border);
}
.heh-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.heh-footer-col { flex: 1; min-width: 250px; }
.heh-footer-col h3 { color: var(--heh-accent); font-size: 1.1rem; }
.heh-footer-col ul { list-style: none; }
.heh-footer-col li { margin-bottom: 10px; }
.heh-footer-col a { color: var(--heh-text-muted); text-decoration: none; transition: color 0.3s; }
.heh-footer-col a:hover { color: var(--heh-accent); }
.heh-footer-bottom {
  text-align: center;
  border-top: 1px solid var(--heh-border);
  padding-top: 30px;
}
.heh-resp-text {
  font-weight: bold;
  color: var(--heh-accent);
  margin-bottom: 15px;
}

/* Cookie Banner */
.heh-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background-color: var(--heh-bg-card);
  border-top: 1px solid var(--heh-border);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  flex-wrap: wrap;
  gap: 15px;
}
.heh-cookie p { margin: 0; font-size: 0.9rem; }
.heh-cookie-btns { display: flex; gap: 10px; }
.heh-cookie-btn {
  padding: 8px 16px; border-radius: 4px; border: 1px solid var(--heh-accent);
  background: transparent; color: var(--heh-accent); cursor: pointer;
}
.heh-cookie-btn.accept { background: var(--heh-accent); color: var(--heh-bg); }

/* Utility */
.text-center { text-align: center; }
.heh-badge { display: inline-block; padding: 5px 10px; font-size: 0.8rem; background: var(--heh-border); border-radius: 4px; margin-bottom: 10px; }
