/* ========================================
   HERO BANNER
   ======================================== */

.hero {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 48%, #B8243A 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 45%, rgba(201,168,76,0.16) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Ccircle cx='160' cy='110' r='125' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='42'/%3E%3Ccircle cx='160' cy='110' r='72' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='30'/%3E%3C/svg%3E") no-repeat center right;
  background-size: cover;
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: var(--site-container);
  margin: 0 auto;
  padding: 56px var(--site-padding);
  position: relative;
  z-index: 2;
}

.hero-content .block {
  max-width: 720px;
}

/* Hide Drupal block title */
.hero-content .block > h2,
.hero-content .contextual-region > h2,
.hero-content [id^="block-"] > h2,
.hero-content .block-title,
.hero-content .block__title,
.hero-content .field--name-title {
  display: none !important;
}

.hero-content .hero-badge,
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.20);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-content h1,
.hero-content .block__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.22;
  color: #ffffff !important;
  margin: 0 0 14px;
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(0,0,0,0.28);
}

.hero-content .block__content h2,
.hero-content .field--name-body h2 {
  font-size: 36px;
  line-height: 1.25;
  color: #ffffff !important;
  margin: 0 0 14px;
  font-weight: 800;
  text-shadow: 0 3px 14px rgba(0,0,0,0.28);
}

.hero-content p,
.hero-content .field--name-body {
  color: rgba(255,255,255,0.86) !important;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 620px;
}

.hero-content a {
  color: var(--gold-light) !important;
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 28px;
  }
}