:root {
  --gcrst-bg: #07090f;
  --gcrst-surface: #111522;
  --gcrst-surface-hover: #181d2f;
  --gcrst-gold: #d4af37;
  --gcrst-gold-dim: rgba(212, 175, 55, 0.2);
  --gcrst-text: #e2e8f0;
  --gcrst-text-muted: #94a3b8;
}

body {
  margin: 0;
  background-color: var(--gcrst-bg);
  color: var(--gcrst-text);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .gcrst-brand-name, .gcrst-foot-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--gcrst-gold);
}

.gcrst-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.gcrst-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--gcrst-gold-dim);
}

.gcrst-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gcrst-brand-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  border: 1px solid var(--gcrst-gold);
  padding: 8px 12px;
  color: var(--gcrst-gold);
}

.gcrst-brand-info {
  display: flex;
  flex-direction: column;
}

.gcrst-brand-name {
  font-size: 28px;
  line-height: 1.1;
}

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

.gcrst-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gcrst-gold-dim);
  border: 1px solid var(--gcrst-gold);
  color: var(--gcrst-gold);
  font-weight: 600;
  border-radius: 4px;
}

/* Hero */
.gcrst-hero-sec {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gcrst-hero-sec::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(7,9,15,0) 70%);
  pointer-events: none;
}

.gcrst-hero-kicker {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gcrst-gold);
  margin-bottom: 16px;
  display: block;
}

.gcrst-hero-title {
  font-size: 64px;
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.gcrst-hero-desc {
  max-width: 600px;
  margin: 0 auto 64px auto;
  font-size: 18px;
  color: var(--gcrst-text-muted);
}

.gcrst-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.gcrst-hero-card {
  background: var(--gcrst-surface);
  padding: 32px;
  border-top: 2px solid var(--gcrst-gold);
  transition: transform 0.3s ease, background 0.3s ease;
}
.gcrst-hero-card:hover {
  transform: translateY(-5px);
  background: var(--gcrst-surface-hover);
}

.gcrst-hero-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gcrst-gold);
  margin-bottom: 8px;
}

.gcrst-hero-card span {
  color: var(--gcrst-text-muted);
}

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

.gcrst-sec-head {
  max-width: 700px;
  margin-bottom: 56px;
}

.gcrst-sec-head h2 {
  font-size: 42px;
  margin: 0 0 16px 0;
}

.gcrst-sec-head p {
  color: var(--gcrst-text-muted);
  font-size: 18px;
  margin: 0;
}

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

.gcrst-card {
  background: linear-gradient(145deg, var(--gcrst-surface) 0%, rgba(21, 28, 45, 0.4) 100%);
  border: 1px solid rgba(212,175,55,0.15);
  padding: 40px 32px;
  border-radius: 8px;
  transition: all 0.4s ease;
}

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

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

.gcrst-card-title {
  font-size: 28px;
  margin: 0 0 16px 0;
}

.gcrst-card-text {
  color: var(--gcrst-text-muted);
  margin: 0 0 24px 0;
  font-size: 15px;
}

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

.gcrst-card-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--gcrst-text);
}
.gcrst-card-list li:last-child {
  margin-bottom: 0;
}

.gcrst-card-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gcrst-gold);
  font-size: 14px;
}

/* Footer */
.gcrst-foot {
  background: #040509;
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--gcrst-gold-dim);
}

.gcrst-foot-slogan {
  font-size: 36px;
  text-align: center;
  margin: 0 0 64px 0;
}

.gcrst-foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.gcrst-foot-col h4 {
  color: var(--gcrst-gold);
  font-size: 18px;
  margin: 0 0 24px 0;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
}

.gcrst-foot-col p {
  color: var(--gcrst-text-muted);
  font-size: 14px;
  margin: 0 0 16px 0;
}

.gcrst-contact {
  list-style: none;
  padding: 0; margin: 0;
}

.gcrst-contact li {
  color: var(--gcrst-text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}
.gcrst-contact li strong {
  color: var(--gcrst-text);
  display: block;
  font-weight: 500;
}

.gcrst-foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--gcrst-text-muted);
}

.gcrst-nav {
  display: flex;
  gap: 24px;
}

.gcrst-nav a {
  color: var(--gcrst-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.gcrst-nav a:hover {
  color: var(--gcrst-gold);
}

@media (max-width: 900px) {
  .gcrst-hero-grid, .gcrst-grid, .gcrst-foot-cols {
    grid-template-columns: 1fr;
  }
  .gcrst-hero-title {
    font-size: 42px;
  }
  .gcrst-topbar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .gcrst-foot-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
