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

:root {
  --thgh-bg: #050a14;
  --thgh-surface: #0f192b;
  --thgh-surface-alt: #17243c;
  --thgh-text: #e2e8f0;
  --thgh-text-muted: #94a3b8;
  --thgh-accent: #cfa75c;
  --thgh-accent-light: #eadd9b;
  --thgh-border: rgba(207, 167, 92, 0.2);
  --thgh-heading-font: 'Cinzel', serif;
  --thgh-body-font: 'Lato', sans-serif;
}

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

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

a {
  color: var(--thgh-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--thgh-accent-light);
}

.thgh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.thgh-header {
  background-color: rgba(5, 10, 20, 0.95);
  border-bottom: 1px solid var(--thgh-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(10px);
}

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

.thgh-brand-box {
  display: flex;
  flex-direction: column;
}

.thgh-logo-abbr {
  font-family: var(--thgh-heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--thgh-accent);
  line-height: 1;
  letter-spacing: 2px;
}

.thgh-brand-name {
  font-size: 0.85rem;
  color: var(--thgh-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.thgh-badge {
  background: transparent;
  border: 1px solid var(--thgh-accent);
  color: var(--thgh-accent);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Hero */
.thgh-hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.thgh-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(207, 167, 92, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.thgh-hero-label {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--thgh-accent);
  margin-bottom: 24px;
  position: relative;
}

.thgh-hero-label::before,
.thgh-hero-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--thgh-accent);
}

.thgh-hero-label::before { left: -40px; }
.thgh-hero-label::after { right: -40px; }

.thgh-hero-title {
  font-family: var(--thgh-heading-font);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff;
}

.thgh-hero-desc {
  font-size: 1.2rem;
  color: var(--thgh-text-muted);
  max-width: 700px;
  margin: 0 auto 60px;
}

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

.thgh-hero-card {
  background-color: var(--thgh-surface);
  border: 1px solid var(--thgh-border);
  padding: 24px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.thgh-hero-card:hover {
  transform: translateY(-5px);
  border-color: var(--thgh-accent);
}

.thgh-hero-card-title {
  font-family: var(--thgh-heading-font);
  color: var(--thgh-accent);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* Sections */
.thgh-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.thgh-sec-title {
  font-family: var(--thgh-heading-font);
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.thgh-sec-intro {
  color: var(--thgh-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.thgh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.thgh-card {
  background-color: var(--thgh-surface);
  border: 1px solid var(--thgh-border);
  padding: 40px 32px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.thgh-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--thgh-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.thgh-card:hover::after {
  transform: scaleX(1);
}

.thgh-card:hover {
  background-color: var(--thgh-surface-alt);
}

.thgh-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--thgh-accent);
  margin-bottom: 16px;
  display: block;
}

.thgh-card-title {
  font-family: var(--thgh-heading-font);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 16px;
}

.thgh-card-text {
  color: var(--thgh-text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.thgh-list {
  list-style: none;
}

.thgh-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--thgh-text);
  font-size: 0.95rem;
}

.thgh-list li::before {
  content: '•';
  color: var(--thgh-accent);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* Footer */
.thgh-footer {
  background-color: #03060a;
  padding: 80px 0 40px;
  border-top: 1px solid var(--thgh-border);
}

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

.thgh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.thgh-footer-col-title {
  color: #fff;
  font-family: var(--thgh-heading-font);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.thgh-footer-text {
  color: var(--thgh-text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.thgh-footer-nav {
  list-style: none;
}

.thgh-footer-nav li {
  margin-bottom: 12px;
}

.thgh-footer-nav a {
  color: var(--thgh-text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.thgh-footer-nav a:hover {
  color: var(--thgh-accent);
}

.thgh-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(148, 163, 184, 0.5);
  font-size: 0.85rem;
}

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

@media (max-width: 768px) {
  .thgh-hero-title { font-size: 2.8rem; }
  .thgh-hero-grid, .thgh-grid { grid-template-columns: 1fr; }
  .thgh-footer-grid { grid-template-columns: 1fr; }
  .thgh-hero-label::before, .thgh-hero-label::after { display: none; }
}
