:root {
  --bg: #1a1612;
  --surface: #221d18;
  --text: #f5f1ea;
  --muted: #a39689;
  --primary: #e89540;
  --primary-strong: #d97726;
  --border: rgba(255, 255, 255, 0.08);
  --gradient-amber: linear-gradient(135deg, #f0a44a, #d96b2c);
  --gradient-hero: linear-gradient(180deg, rgba(20, 16, 12, 0.2) 0%, rgba(20, 16, 12, 0.85) 70%, #1a1612 100%);
  --shadow-glow: 0 0 60px -10px rgba(232, 149, 64, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 1100px;
  width: 100%;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1.05;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto;
}

.hero__title-accent {
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__lead {
  margin: 32px auto 0;
  max-width: 560px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--gradient-amber);
  color: #1a0f08;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-glow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 80px -10px rgba(232, 149, 64, 0.65);
}

/* Members */
.members {
  margin-top: 72px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.members__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.members__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.member-chip {
  background: rgba(34, 29, 24, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.member-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .hero__content { padding: 60px 20px; }
  .members { margin-top: 56px; }
}
