:root {
  --ink: #2a1f28;
  --muted: #766b72;
  --paper: #f8f2ec;
  --rose: #c66d71;
  --rose-dark: #8f434f;
  --peach: #efb49f;
  --line: rgba(76, 50, 63, 0.16);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.page-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.4rem, 3.4vw, 3rem) clamp(1.25rem, 5vw, 5rem);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.page-shell::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at center, transparent 25%, rgba(248, 242, 236, 0.72) 82%);
  pointer-events: none;
}

.ambient {
  position: absolute;
  z-index: -2;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
}

.ambient-one {
  top: -30%;
  right: -12%;
  background: radial-gradient(circle, rgba(239, 180, 159, 0.58), transparent 69%);
}

.ambient-two {
  bottom: -39%;
  left: -13%;
  background: radial-gradient(circle, rgba(198, 109, 113, 0.35), transparent 68%);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: lowercase;
}

.brand-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
}

.header-note,
.site-footer { color: var(--muted); }

.hero {
  display: grid;
  width: min(100%, 1050px);
  margin: auto;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(4rem, 10vh, 7rem) 0;
}

.illustration {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(42, 31, 40, 0.42);
  border-radius: 50%;
}

.orbit-large { inset: 5%; animation: drift 16s ease-in-out infinite; }

.orbit-small {
  inset: 23%;
  border-color: rgba(198, 109, 113, 0.6);
  animation: drift 12s ease-in-out -4s infinite reverse;
}

.heart {
  position: absolute;
  inset: 37%;
  display: grid;
  place-items: center;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  animation: breathe 4.2s ease-in-out infinite;
}

.seed {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 7px rgba(198, 109, 113, 0.13);
}

.seed-one { top: 12%; left: 56%; }
.seed-two { right: 8%; bottom: 28%; width: 0.52rem; height: 0.52rem; background: var(--peach); }
.seed-three { bottom: 8%; left: 28%; width: 0.42rem; height: 0.42rem; background: var(--ink); }

.hero-copy { max-width: 630px; }

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--rose-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 10vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.79;
}

h1 em {
  display: block;
  color: var(--rose-dark);
  font-weight: 400;
}

.intro {
  margin: clamp(1.8rem, 4vw, 3rem) 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(198, 109, 113, 0.15);
  animation: pulse 2.2s ease-in-out infinite;
}

.site-footer { justify-content: flex-start; gap: 0.7rem; }

@keyframes drift {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.035); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.96); }
  50% { transform: scale(1.04); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (max-width: 760px) {
  .header-note { display: none; }
  .hero { grid-template-columns: 1fr; gap: 1.2rem; padding: 2.5rem 0 3.5rem; }
  .illustration { width: min(56vw, 230px); justify-self: start; }
  h1 { font-size: clamp(4.1rem, 22vw, 6.7rem); }
}

@media (max-height: 690px) and (min-width: 761px) {
  .hero { padding: 2.5rem 0; }
}

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