
/* ================================
 HERO
================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns:
      minmax(0, 1.1fr)
      minmax(300px, .9fr);
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding:
      130px 40px
      100px;
}
/* ================================
 HERO TEXT
================================ */
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 25px;
  padding: 7px 12px;
  border: 1px solid rgb(185 95 69 / 25%);
  border-radius: 100px;
  color: var(--terracotta-dark);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 750px;
  margin: 0;
  font-family: Georgia, serif;
  font-size:
      clamp(54px, 7vw, 92px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -4px;
}
.hero h1 em {
  color: var(--terracotta);
  font-style: italic;
}
.hero p {
  max-width: 510px;
  margin: 30px 0 35px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
/* ================================
 HERO ACTIONS
================================ */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px;
  border-radius: 100px;
  background: var(--terracotta);
  color: white;
  font-size: 14px;
  text-decoration: none;
  box-shadow:
      0 10px 25px rgb(185 95 69 / 20%);
  transition:
      transform .2s ease,
      background .2s ease;
}
.hero-button span {
  font-size: 18px;
}
.hero-button:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}
.hero-link {
  color: var(--brown);
  font-size: 14px;
  text-decoration:
      underline;
  text-decoration-color:
      rgb(51 37 31 / 25%);
  text-underline-offset: 5px;
}
/* ================================
 HERO VISUAL
================================ */
.hero-shape {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:
      45% 55% 52% 48%
      / 48% 43% 57% 52%;
  background:
      linear-gradient(
          135deg,
          #d98769,
          #a84f3a
      );
  transform: rotate(3deg);
  box-shadow:
      20px 25px 60px
      rgb(185 95 69 / 20%);
  animation:
      floating 6s ease-in-out infinite;
}
.hero-card {
  width: 220px;
  padding: 30px;
  border-radius: 22px;
  background:
      rgb(250 246 240 / 92%);
  transform: rotate(-3deg);
  box-shadow:
      0 20px 50px
      rgb(51 37 31 / 20%);
}
.hero-card span {
  display: block;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-card strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.hero-card small {
  display: block;
  margin-top: 35px;
  color: var(--muted);
  font-size: 11px;
}
/* ================================
 SUBTLE MOTION
================================ */
@keyframes floating {
  0%,
  100% {
      transform:
          rotate(3deg)
          translateY(0);
  }
  50% {
      transform:
          rotate(1deg)
          translateY(-8px);
  }
}
/* ================================
 MOBILE
================================ */
@media (max-width: 750px) {
  .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding:
          110px 25px
          70px;
  }
  .hero h1 {
      font-size: clamp(48px, 14vw, 70px);
      letter-spacing: -3px;
  }
  .hero p {
      font-size: 16px;
  }
  .hero-shape {
      min-height: 350px;
      margin-top: 20px;
  }
}