/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 50%, var(--cream-dark) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--rose-gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(166, 123, 91, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(183, 110, 92, 0.08);
  border: 1px solid rgba(183, 110, 92, 0.15);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-title em {
  color: var(--rose-gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--rose-gold);
  font-weight: 600;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(44, 36, 32, 0.12);
}
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--rose-gold-light);
  border-radius: 24px;
  z-index: 1;
}
.hero-img-float {
  position: absolute;
  bottom: -20px; left: -30px;
  z-index: 3;
  padding: 16px 24px;
}
.hero-img-float-icon {
  width: 36px; height: 36px;
  background: var(--rose-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.hero-img-float-icon svg { width: 18px; height: 18px; color: #fff; }
.hero-img-float-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.hero-img-float-text strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
}

/* ====== SECTION TITLES ====== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--rose-gold);
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}
