:root {
  color-scheme: light;
  --ink: #24352f;
  --muted: #64736d;
  --paper: #f4f0e8;
  --card: rgba(255, 253, 247, 0.88);
  --line: rgba(36, 53, 47, 0.14);
  --sage: #6f8878;
  --sage-soft: #dfe7df;
  --gold: #b99a62;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--paper); }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 15%, rgba(185, 154, 98, 0.16), transparent 25rem),
    radial-gradient(circle at 15% 88%, rgba(111, 136, 120, 0.22), transparent 30rem),
    linear-gradient(150deg, #fbf8f1 0%, #e9eee9 100%);
  display: grid;
  grid-template-rows: 1fr auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(36, 53, 47, 0.16) 0.55px, transparent 0.55px);
  background-size: 9px 9px;
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 4rem 0 2rem;
}

.hero {
  position: relative;
  width: min(820px, 100%);
  padding: clamp(2rem, 6vw, 5.5rem);
  border: 1px solid var(--line);
  border-radius: 46% 46% 30px 30px / 16% 16% 30px 30px;
  background: var(--card);
  box-shadow: 0 32px 90px rgba(36, 53, 47, 0.14);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  right: -10rem;
  top: -12rem;
  border-radius: 50%;
  background: var(--sage-soft);
  box-shadow: inset 0 0 0 1px rgba(36, 53, 47, 0.08);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  letter-spacing: -0.03em;
}

.brand span { color: var(--gold); }

.eyebrow {
  margin: clamp(4.5rem, 10vw, 8rem) 0 1rem;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 5.9rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 59ch;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.2vw, 1.24rem);
  line-height: 1.72;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.2rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(111, 136, 120, 0.28);
  border-radius: 999px;
  background: var(--sage-soft);
  font-size: 0.88rem;
  font-weight: 750;
}

.moon {
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--sage);
}

.moon::after {
  content: "";
  position: absolute;
  width: 0.68rem;
  height: 0.68rem;
  top: -0.12rem;
  left: 0.28rem;
  border-radius: 50%;
  background: var(--sage-soft);
}

.closing {
  margin: 3.7rem 0 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-style: italic;
}

footer {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  text-align: center;
}

footer p { margin: 0; }

@media (max-width: 620px) {
  .shell { padding-top: 1rem; }
  .hero { border-radius: 26px; }
  .eyebrow { margin-top: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
