/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  background:
    radial-gradient(ellipse 55% 65% at 18% 28%, rgba(247,242,234,0.55) 0%, rgba(247,242,234,0) 60%),
    linear-gradient(135deg, #d9c2a9 0%, #f7f2ea 45%, #e8d8c5 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(253,250,245,0) 0%, var(--cream) 100%);
  pointer-events: none;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  transform: scale(1.01);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: inherit;
  background:
    linear-gradient(90deg, rgba(42,24,5,0.62) 0%, rgba(42,24,5,0.28) 28%, rgba(42,24,5,0.08) 56%, rgba(42,24,5,0) 74%),
    linear-gradient(180deg, rgba(42,24,5,0.08) 0%, rgba(42,24,5,0.1) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 2.4rem;
  padding-bottom: 1.4rem;
}
.hero__content {
  max-width: 470px;
  padding: 1rem 1rem 1rem 0;
  align-self: center;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.hero__content,
.hero__info {
  position: relative;
}
.hero__content::before {
  content: "";
  position: absolute;
  inset: -0.7rem auto -0.7rem -0.7rem;
  width: min(100%, 500px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(42,24,5,0.30), rgba(42,24,5,0.10));
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(42,24,5,0.14);
  z-index: -1;
}
.hero__content > * {
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.82);
}
.hero__title {
  font-size: clamp(52px, 6vw, 84px);
  color: var(--cream);
  line-height: 0.92;
}
.hero__title em { font-style: italic; color: #f6d6bf; }
.hero__desc {
  font-size: 14px;
  color: rgba(247,242,234,0.9);
  max-width: 300px;
  line-height: 1.65;
}
.hero__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.hero__note {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(247,242,234,0.78);
  max-width: 17rem;
}
.hero__info {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-items: start;
  margin-top: 0.1rem;
  max-width: 470px;
}
.hero__badge {
  position: relative;
  flex: 0 0 120px;
  width: 120px;
  padding: 0.85rem 0.95rem;
  text-align: center;
  border-radius: 16px;
  background: rgba(42,24,5,0.58);
  color: var(--cream);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(42,24,5,0.16);
}
.hero__badgeLabel {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.72);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 52px);
  line-height: 0.92;
  font-weight: 600;
  margin: 0.25rem 0;
}
.hero__statcard {
  position: relative;
  flex: 1 1 150px;
  min-width: 150px;
  min-height: 88px;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: rgba(247,242,234,0.84);
  color: var(--brown-dark);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(42,24,5,0.10);
}
.hero__statcard--accent {
  background: rgba(181,84,30,0.92);
  color: #fff;
}
.hero__statTitle {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.hero__statText {
  font-size: 11px;
  line-height: 1.45;
}
.hero__statcard--accent .hero__statText {
  color: rgba(255,255,255,0.9);
}
.hero__stat {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-align: center;
}
