/* Unique Prefix: erh- */
:root {
  --erh-bg: #0A090C;
  --erh-surface: #1B191E;
  --erh-surface-hover: #262329;
  --erh-accent: #CFA96B;
  --erh-text: #EAE6EA;
  --erh-text-muted: #A39E9E;
  --erh-radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Lato', sans-serif;
  background-color: var(--erh-bg);
  color: var(--erh-text);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }
a { color: inherit; text-decoration: none; }

/* Wrapper */
.erh-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.erh-topbar {
  padding: 30px 0;
  border-bottom: 1px solid rgba(207, 169, 107, 0.2);
}
.erh-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.erh-brand-box { display: flex; flex-direction: column; }
.erh-brand-title { font-size: 2rem; color: var(--erh-accent); letter-spacing: 2px; }
.erh-brand-sub { font-size: 0.85rem; color: var(--erh-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.erh-badge {
  background: var(--erh-accent);
  color: var(--erh-bg);
  padding: 6px 12px;
  font-weight: 900;
  border-radius: 4px;
  font-size: 1.1rem;
}

/* Hero */
.erh-showcase { padding: 80px 0; text-align: center; }
.erh-showcase-label { font-size: 0.9rem; color: var(--erh-accent); text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 20px; }
.erh-showcase-heading { font-size: 4rem; margin-bottom: 30px; line-height: 1.1; }
.erh-showcase-text { font-size: 1.2rem; max-width: 700px; margin: 0 auto 60px; color: var(--erh-text-muted); }

.erh-grid-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.erh-info-card {
  background: var(--erh-surface);
  padding: 40px 30px;
  border-radius: var(--erh-radius);
  border: 1px solid rgba(207, 169, 107, 0.1);
  transition: all 0.3s ease;
}
.erh-info-card:hover { transform: translateY(-5px); border-color: rgba(207, 169, 107, 0.4); }
.erh-info-card h3 { font-size: 1.4rem; color: var(--erh-accent); margin-bottom: 15px; }
.erh-info-card p { font-size: 0.95rem; color: var(--erh-text-muted); }

/* Sections */
.erh-section { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.erh-section-head { text-align: center; margin-bottom: 60px; }
.erh-section-head h2 { font-size: 2.5rem; color: var(--erh-accent); margin-bottom: 15px; }
.erh-section-head p { max-width: 600px; margin: 0 auto; color: var(--erh-text-muted); }

.erh-grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.erh-card {
  background: var(--erh-surface);
  padding: 40px;
  border-radius: var(--erh-radius);
  border: 1px solid rgba(255,255,255,0.03);
}
.erh-card-kicker { font-size: 0.8rem; color: var(--erh-accent); text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.erh-card h3 { font-size: 1.6rem; margin-bottom: 20px; }
.erh-card p { margin-bottom: 20px; font-size: 0.95rem; color: var(--erh-text-muted); }
.erh-card ul { list-style: none; }
.erh-card li { margin-bottom: 10px; padding-left: 20px; position: relative; font-size: 0.9rem; }
.erh-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--erh-accent);
  font-size: 0.8rem;
  top: 2px;
}

/* Footer */
.erh-base { padding: 80px 0 40px; background: #050406; border-top: 1px solid rgba(207, 169, 107, 0.2); }
.erh-base-title { font-size: 2.2rem; color: var(--erh-accent); margin-bottom: 40px; text-align: center; font-family: 'Playfair Display', serif;}
.erh-base-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.erh-base-text p { color: var(--erh-text-muted); font-size: 0.9rem; margin-bottom: 15px; }

.erh-base-bottom { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }
.erh-base-contacts h4 { color: var(--erh-accent); margin-bottom: 15px; font-size: 1.2rem; }
.erh-base-contacts p { color: var(--erh-text-muted); font-size: 0.9rem; margin-bottom: 5px; }
.erh-base-nav ul { list-style: none; display: flex; gap: 20px; }
.erh-base-nav a { color: var(--erh-text-muted); font-size: 0.9rem; transition: color 0.2s; }
.erh-base-nav a:hover { color: var(--erh-accent); }

@media (max-width: 900px) {
  .erh-grid-info, .erh-grid-cards, .erh-base-cols { grid-template-columns: 1fr; }
  .erh-base-bottom { flex-direction: column; gap: 30px; align-items: flex-start; }
  .erh-showcase-heading { font-size: 2.5rem; }
}
