:root {
  color-scheme: light;
  --paper: #f6f0e6;
  --ink: #16342d;
  --muted: #617069;
  --green: #173f35;
  --green-soft: #d9e7de;
  --gold: #d9a441;
  --rose: #c36d57;
  --water: #7aa9b5;
  --white: #fffaf2;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(217, 164, 65, 0.22), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(122, 169, 181, 0.22), transparent 28%),
    linear-gradient(135deg, #fff8ec 0%, var(--paper) 48%, #e7f0eb 100%);
  background-size: 120% 120%, 130% 130%, 100% 100%;
  color: var(--ink);
  animation: background-breathe 18s ease-in-out infinite alternate;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(22px, 5vw, 72px);
  place-items: center;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(100%, 980px);
  min-height: min(720px, calc(100vh - 44px));
  align-content: center;
  overflow: hidden;
  padding: clamp(34px, 8vw, 92px);
  border: 1px solid rgba(23, 63, 53, 0.16);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 28px 90px rgba(22, 52, 45, 0.16);
  backdrop-filter: blur(18px);
  animation: card-rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(23, 63, 53, 0.12);
  content: "";
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--rose);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: text-in 900ms 160ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 13vw, 10rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.88;
  animation: text-in 1000ms 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__art {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.sun {
  position: absolute;
  top: clamp(38px, 8vw, 86px);
  right: clamp(38px, 9vw, 112px);
  width: clamp(96px, 16vw, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), transparent 45%),
    var(--gold);
  box-shadow: 0 20px 50px rgba(217, 164, 65, 0.28);
  animation: sun-float 12s ease-in-out infinite;
}

.river {
  position: absolute;
  right: -8%;
  bottom: 10%;
  width: 68%;
  height: 24%;
  border-radius: 999px 0 0 999px;
  background: rgba(122, 169, 181, 0.32);
  transform: rotate(-10deg);
  animation: river-flow 10s ease-in-out infinite alternate;
}

.river--two {
  right: -18%;
  bottom: -4%;
  width: 78%;
  height: 28%;
  background: rgba(23, 63, 53, 0.12);
  animation-duration: 14s;
  animation-delay: -4s;
}

.leaf {
  position: absolute;
  width: clamp(74px, 12vw, 132px);
  height: clamp(30px, 5vw, 54px);
  border-radius: 100% 0 100% 0;
  background: var(--green-soft);
  transform: rotate(-24deg);
  animation: leaf-drift 9s ease-in-out infinite alternate;
}

.leaf--one {
  left: clamp(24px, 5vw, 70px);
  bottom: 16%;
}

.leaf--two {
  left: 46%;
  top: 12%;
  background: rgba(195, 109, 87, 0.2);
  transform: rotate(18deg);
  animation-duration: 11s;
  animation-delay: -3s;
}

.leaf--three {
  right: 13%;
  bottom: 24%;
  background: rgba(217, 164, 65, 0.2);
  transform: rotate(38deg);
  animation-duration: 13s;
  animation-delay: -6s;
}

@keyframes background-breathe {
  from {
    background-position: 0% 0%, 100% 0%, 50% 50%;
  }

  to {
    background-position: 6% 3%, 94% 7%, 50% 50%;
  }
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes text-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sun-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 20px 50px rgba(217, 164, 65, 0.28);
  }

  50% {
    transform: translate3d(-12px, 10px, 0) scale(1.04);
    box-shadow: 0 28px 70px rgba(217, 164, 65, 0.34);
  }
}

@keyframes river-flow {
  from {
    transform: translateX(0) rotate(-10deg);
  }

  to {
    transform: translateX(-8%) rotate(-7deg);
  }
}

@keyframes leaf-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(-24deg);
  }

  to {
    transform: translate3d(12px, -16px, 0) rotate(-12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 14px;
  }

  .hero {
    min-height: calc(100vh - 28px);
    padding: 34px 26px;
  }

  .hero::before {
    inset: 10px;
  }

  .sun {
    opacity: 0.72;
  }

  .river {
    width: 92%;
  }
}
