:root {
  --bg: #fff8ed;
  --panel: rgba(255, 253, 248, 0.92);
  --panel-muted: rgba(245, 235, 220, 0.88);
  --text: #241a14;
  --muted: #6e5d50;
  --accent: #b85c38;
  --accent-soft: #f0c7a5;
  --border: rgba(36, 26, 20, 0.14);
  --shadow: 0 24px 80px rgba(36, 26, 20, 0.10);
  --radius: 26px;
}

.site-pancakes-love {
  --bg: #fff1f5;
  --panel: rgba(255, 250, 255, 0.92);
  --panel-muted: rgba(247, 227, 235, 0.9);
  --text: #2a111a;
  --muted: #755263;
  --accent: #a43d68;
  --accent-soft: #f1b6cc;
  --border: rgba(42, 17, 26, 0.14);
  --shadow: 0 24px 80px rgba(42, 17, 26, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at top left, var(--accent-soft), transparent 30rem),
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.35), transparent 26rem),
    linear-gradient(135deg, var(--bg), var(--panel-muted));
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.42;
}

body::before {
  top: -8rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 68%);
}

body::after {
  left: -9rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(184, 92, 56, 0.22), transparent 68%);
}

.site-pancakes-love::after {
  background: radial-gradient(circle, rgba(164, 61, 104, 0.24), transparent 68%);
}

.page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8vh 0;
}

.panel,
.card {
  background: color-mix(in srgb, var(--panel) 92%, white 8%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  margin: 1.25rem 0;
}

.panel-hero {
  padding-top: clamp(2.5rem, 8vw, 5rem);
  padding-bottom: clamp(2.5rem, 8vw, 5rem);
}

.panel-muted {
  background: color-mix(in srgb, var(--panel-muted) 82%, white 18%);
}

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

h1,
h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 8vw, 5.6rem);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

p {
  max-width: 760px;
  margin: 0.85rem 0 0;
}

.lede {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.45;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.card p {
  color: var(--muted);
}

.links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.links li {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.links li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.links span {
  color: var(--muted);
}

a {
  color: var(--accent);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

.site-footer {
  padding: 0 0 2rem;
  color: var(--muted);
}

.site-footer p {
  margin-top: 0.5rem;
}

.small {
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .page {
    width: min(100% - 24px, 1080px);
    padding: 3vh 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .links li {
    gap: 0.35rem;
  }
}
