:root {
  --cream: #fcf5e6;
  --blush: #f8d9d4;
  --pink: #edb8bd;
  --amber: #f2b36b;
  --lavender: #c9bce6;
  --plum: #51364f;
  --plum-soft: #785c73;
  --white: #fffdf9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--plum);
  background:
    radial-gradient(1200px 600px at 10% -10%, var(--blush), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, var(--lavender), transparent 55%),
    linear-gradient(165deg, var(--cream), #f7e4dc 55%, #f3d5d8);
  line-height: 1.55;
}

a { color: var(--plum); }
a:hover { color: #a84d5a; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 5vw;
  max-width: 980px;
  margin: 0 auto;
}

.brand {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--plum);
}

.nav nav {
  display: flex;
  gap: 1.25rem;
}

.nav nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--plum-soft);
}

.nav nav a[aria-current="page"],
.nav nav a:hover {
  color: var(--plum);
}

.hero {
  position: relative;
  text-align: center;
  padding: 3.5rem 5vw 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.glow {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 184, 189, 0.7), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.cake {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  font-size: 4rem;
  background: linear-gradient(180deg, #fff, var(--cream));
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(81, 54, 79, 0.15);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--plum-soft);
  margin: 0 0 0.75rem;
}

h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 700;
}

.lede {
  font-size: 1.1rem;
  color: var(--plum-soft);
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}

.store-note {
  display: inline-block;
  margin: 0.5rem 0 0;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--pink));
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(237, 184, 189, 0.45);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 1rem auto 4rem;
  padding: 0 5vw;
}

.features article {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.4rem;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 10px 28px rgba(81, 54, 79, 0.08);
}

.features h2 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.features p {
  margin: 0;
  color: var(--plum-soft);
  font-size: 0.95rem;
}

.doc {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 2rem 5vw;
  background: rgba(255, 253, 249, 0.78);
  border-radius: 1.75rem;
  box-shadow: 0 14px 40px rgba(81, 54, 79, 0.08);
}

.doc h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.doc h2 {
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
}

.doc h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.doc ul, .doc ol {
  padding-left: 1.2rem;
  color: var(--plum-soft);
}

.doc li { margin: 0.35rem 0; }

.doc p { color: var(--plum-soft); }
.doc p strong, .doc li strong { color: var(--plum); }

footer {
  text-align: center;
  padding: 2rem 5vw 3rem;
  color: var(--plum-soft);
  font-size: 0.9rem;
}

footer a {
  color: var(--plum-soft);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover { color: var(--plum); }

@media (max-width: 600px) {
  .nav { padding-top: 1rem; }
  .hero { padding-top: 2rem; }
  .doc { border-radius: 1.25rem; }
}
