:root {
  color-scheme: light;
  --paper: #f4f0e6;
  --ink: #2e3c38;
  --muted: #5e6f69;
  --green: #b9d0bb;
  --blue: #9fb7d2;
  --gold: #d8c38e;
  --rose: #d9a6a1;
  --shadow: rgba(29, 41, 39, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 35%),
    linear-gradient(135deg, #eef3ea 0%, var(--paper) 42%, #e7eef2 100%);
  color: var(--ink);
}

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

.canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.9;
}

.wash-a {
  width: min(46vw, 34rem);
  height: min(46vw, 34rem);
  left: -8rem;
  top: -5rem;
  background: radial-gradient(circle at 30% 30%, rgba(185, 208, 187, 0.95), rgba(185, 208, 187, 0.1) 70%);
}

.wash-b {
  width: min(40vw, 30rem);
  height: min(40vw, 30rem);
  right: -6rem;
  top: 8rem;
  background: radial-gradient(circle at 40% 35%, rgba(159, 183, 210, 0.9), rgba(159, 183, 210, 0.08) 72%);
}

.wash-c {
  width: min(34vw, 26rem);
  height: min(34vw, 26rem);
  left: 20%;
  bottom: -7rem;
  background: radial-gradient(circle at 35% 35%, rgba(216, 195, 142, 0.85), rgba(216, 195, 142, 0.06) 72%);
}

.wash-d {
  width: min(30vw, 22rem);
  height: min(30vw, 22rem);
  right: 16%;
  bottom: -4rem;
  background: radial-gradient(circle at 35% 35%, rgba(217, 166, 161, 0.78), rgba(217, 166, 161, 0.06) 72%);
}

.gaze {
  position: absolute;
  inset: 18% 12%;
  border-radius: 2.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12)),
    linear-gradient(140deg, rgba(148, 173, 154, 0.24), rgba(100, 133, 145, 0.16) 60%, rgba(216, 195, 142, 0.14));
  box-shadow: 0 1.5rem 4rem var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.gaze::before,
.gaze::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(10px);
}

.gaze::before {
  width: 18rem;
  height: 10rem;
  left: 12%;
  top: 22%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
}

.gaze::after {
  width: 24rem;
  height: 12rem;
  right: 14%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(255, 248, 235, 0.34), rgba(255, 248, 235, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 3rem 2.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(40, 50, 48, 0.12);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
  font-weight: 600;
  text-wrap: balance;
}

.subtle {
  margin: 1.25rem auto 0;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero {
    padding: 1rem;
  }

  .hero-content {
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }

  .gaze {
    inset: 22% 6%;
    border-radius: 1.5rem;
  }
}
