/* Hero */
.home-hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}
.home-hero-eyebrow {
  font-family: var(--font-family-ui);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.home-hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}
.home-hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.home-hero-sub {
  font-family: var(--font-family-ui);
  font-size: 1.125rem;
  color: var(--color-grey);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 38rem;
}
.home-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Decorative circles */
.home-hero-decoration {
  position: absolute;
  top: -4rem;
  right: -6rem;
  width: 480px;
  height: 480px;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
}
.hero-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 98, 42, .09) 0%, transparent 70%);
  top: 0; right: 0;
}
.hero-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74, 124, 89, .08) 0%, transparent 70%);
  top: 80px; right: 120px;
}
.hero-circle-3 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 98, 42, .06) 0%, transparent 70%);
  top: 200px; right: 40px;
}

/* Value pills */
.home-values {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 4.5rem;
}
.home-value-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--color-white);
  border: 1px solid rgba(44, 26, 14, .1);
  border-radius: 50px;
  padding: .5rem 1rem .5rem .75rem;
  font-family: var(--font-family-ui);
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-black);
  box-shadow: var(--shadow);
}
.home-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-accent-soft);
  border-radius: 50%;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Articles section */
.home-articles .cta,
section > p > .cta {
  display: inline-flex;
  margin-top: 2.5rem;
}

/* CTA Banner */
.home-cta-banner {
  margin-top: 5rem;
  background: linear-gradient(135deg, #fdf0e4 0%, #f7ede0 60%, #eef4f0 100%);
  border-radius: 20px;
  border: 1px solid rgba(212, 98, 42, .15);
  padding: 4rem 3rem;
  text-align: center;
}
.home-cta-banner-label {
  font-family: var(--font-family-ui);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 1rem;
}
.home-cta-banner-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.home-cta-banner-text {
  font-family: var(--font-family-ui);
  font-size: 1.0625rem;
  color: var(--color-grey);
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 auto 2rem;
}
