.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero--full { min-height: calc(100vh - 60px); }
.hero--half { min-height: 50vh; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 80% 50%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero--no-grid::before { display: none; }

.hero-overline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.hero-overline::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  max-width: 820px;
  position: relative;
}

.hero--half h1 { font-size: clamp(3rem, 7vw, 5rem); }

.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.85;
  font-weight: 300;
  position: relative;
}
.hero-sub:last-child { margin-bottom: 0; }

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; position: relative; }

/* Gold theme (TAL) */
.hero--gold .hero-overline { color: var(--gold); }
.hero--gold .hero-overline::before { background: var(--gold); }
.hero--gold h1 em { color: var(--gold); }

/* Indigo theme (Community) */
.hero--indigo .hero-overline { color: var(--indigo); }
.hero--indigo .hero-overline::before { background: var(--indigo); }
.hero--indigo h1 em { color: var(--indigo); }
