/* ==================================================
   Hero Section
   Hero layout, imagery, accents, buttons, and supporting details
   ================================================== */

/* ==================================================
   8. Hero Section
   ================================================== */

.hero {
  overflow: hidden;
  padding: 74px 0 92px;
  background:
    radial-gradient(circle at 10% 15%, rgba(197, 154, 74, 0.12), transparent 28%),
    linear-gradient(135deg, var(--cream) 0%, #f6eddf 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(50px, 8vw, 115px);
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 51px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--charcoal);
  background: transparent;
  border-color: rgba(41, 38, 38, 0.45);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  color: var(--charcoal);
  background: transparent;
  border-color: var(--charcoal);
  font-size: 0.84rem;
}

.button-small:hover,
.button-small:focus-visible {
  color: var(--white);
  background: var(--charcoal);
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 31px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

.hero-details li {
  position: relative;
  padding-left: 17px;
}

.hero-details li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-image {
  display: grid;
  place-items: center;
  color: rgba(51, 47, 45, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)),
    #d7c8ba;
  border: 12px solid rgba(255, 255, 255, 0.63);
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 510px;
  border-radius: 210px 210px 26px 26px;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.hero-image-main:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 24px 60px rgba(51, 47, 45, 0.16);
}

.hero-image-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 47%;
  height: 265px;
  background: #a9c3be;
  border-radius: var(--radius-large);
  animation: gentle-float 5s ease-in-out infinite;
  transition: transform .35s ease, box-shadow .35s ease;
}

.hero-image-small:hover {
  animation-play-state: paused;
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 24px 60px rgba(51, 47, 45, 0.16);
}

.hero-accent {
  position: absolute;
  border-radius: 50%;
}

.hero-accent-one {
  top: 15%;
  left: 3%;
  width: 90px;
  height: 90px;
  background: rgba(214, 123, 104, 0.52);
  animation: gentle-float 6s ease-in-out infinite;
}

.hero-accent-two {
  right: -35px;
  bottom: 7%;
  width: 145px;
  height: 145px;
  border: 27px solid rgba(197, 154, 74, 0.34);
  animation: gentle-float-reverse 7s ease-in-out infinite;
}
