:root {
  --plum-950: #211326;
  --plum-800: #3a2247;
  --plum-500: #523e60;
  --leaf-700: #1f6a5b;
  --leaf-500: #5c9752;
  --mist: #d3cdd4;
  --ivory: #fcfcfa;
  --shadow: rgba(19, 13, 24, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(92, 151, 82, 0.2), transparent 32%),
    radial-gradient(circle at right 20%, rgba(31, 106, 91, 0.18), transparent 28%),
    linear-gradient(160deg, #f4efe8 0%, #ece5de 44%, #ddd3d8 100%);
  color: var(--plum-950);
}

img {
  display: block;
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  overflow: hidden;
}

.hero__card {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(58, 34, 71, 0.12);
  border-radius: 2rem;
  background: rgba(252, 252, 250, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px var(--shadow);
}

.hero__eyebrow {
  margin: 0;
  grid-column: 1;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf-700);
}

.hero h1 {
  margin: 0;
  grid-column: 1;
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
  color: var(--plum-800);
}

.hero__copy {
  margin: 0;
  grid-column: 1;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(33, 19, 38, 0.8);
}

.hero__logo-wrap {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: center;
  width: min(100%, 30rem);
  aspect-ratio: 1;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(252, 252, 250, 0.92), rgba(211, 205, 212, 0.85));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero__glow--left {
  top: 8%;
  left: -8%;
  background: rgba(92, 151, 82, 0.28);
}

.hero__glow--right {
  right: -10%;
  bottom: 6%;
  background: rgba(82, 62, 96, 0.24);
}

@media (max-width: 860px) {
  .hero__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__eyebrow,
  .hero h1,
  .hero__copy,
  .hero__logo-wrap {
    grid-column: 1;
  }

  .hero__logo-wrap {
    grid-row: auto;
    width: min(100%, 22rem);
  }

  .hero__copy {
    margin-inline: auto;
  }
}