:root {
  --ink: #1a1208;
  --paper: #fff7ea;
  --coral: #ff5c39;
  --sun: #ffc43a;
  --lime: #c8f04d;
  --magenta: #e85cff;
  --sky: #7ee0ff;
  --card: rgba(255, 255, 255, 0.78);
  --radius: 1.5rem;
  --shadow: 0 18px 40px rgba(26, 18, 8, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at -10% -20%, #ffd4c4 0%, transparent 55%),
    radial-gradient(900px 500px at 110% 0%, #e9c4ff 0%, transparent 50%),
    radial-gradient(800px 400px at 80% 100%, #d5ff8a 0%, transparent 45%),
    var(--paper);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, .brand, .footer-brand {
  font-family: Fraunces, serif;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: 0.5rem 1rem; z-index: 20; }

.blob {
  position: fixed; z-index: -1; filter: blur(8px); opacity: 0.55;
  border-radius: 40% 60% 70% 30% / 40% 30% 70% 60%;
  animation: drift 18s ease-in-out infinite;
}
.blob-a { width: 280px; height: 280px; background: var(--coral); top: 20%; left: -80px; }
.blob-b { width: 220px; height: 220px; background: var(--magenta); bottom: 10%; right: -60px; animation-delay: -6s; }
@keyframes drift {
  50% { transform: translate(20px, -24px) rotate(12deg); }
}

.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 234, 0.72);
  border-bottom: 2px solid rgba(26, 18, 8, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; }
.brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: inherit; text-decoration: none; }
.brand-mark { color: var(--coral); font-size: 1.2rem; }
.nav-toggle {
  display: none; border: 2px solid var(--ink); background: var(--lime);
  border-radius: 999px; padding: 0.4rem 0.9rem; font-weight: 600; cursor: pointer;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 0.85rem 1.1rem; }
.site-nav a { color: inherit; text-decoration: none; font-weight: 500; }
.site-nav a:hover { color: var(--coral); }

.hero-split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center;
  padding: 3.5rem 0 2.5rem;
}
.kicker {
  display: inline-block; background: var(--sun); border-radius: 999px;
  padding: 0.2rem 0.75rem; font-weight: 600; font-size: 0.9rem;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 0.6rem 0 1rem; }
.lede { font-size: 1.15rem; max-width: 40rem; }
.hero-art {
  position: relative; min-height: 340px;
}
.hero-art img {
  width: 86%; height: 320px; object-fit: cover; border-radius: 2rem;
  border: 3px solid var(--ink); box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.float-card {
  position: absolute; right: 0; bottom: 12px; width: 210px;
  background: var(--lime); border: 3px solid var(--ink); border-radius: 1.25rem;
  padding: 1rem; transform: rotate(4deg);
}
.shape {
  position: absolute; width: 70px; height: 70px; background: var(--sky);
  border-radius: 40% 60% 50% 50%; top: -10px; right: 20px; border: 2px solid var(--ink);
}

.btn {
  display: inline-block; border-radius: 999px; padding: 0.7rem 1.25rem;
  font-weight: 600; text-decoration: none; border: 2px solid var(--ink); cursor: pointer; font-family: inherit;
}
.btn-solid { background: var(--coral); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }

.section { padding: 2.5rem 0; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow);
}
.card img, .cover, .portrait {
  width: 100%; height: 180px; object-fit: cover; border-radius: 1rem; border: 2px solid var(--ink);
}
.page-hero img { height: 280px; }
.meta { color: #4a3d2f; font-size: 0.95rem; }

.site-footer {
  margin-top: 3rem; background: #1a1208; color: #fff7ea; padding: 2.5rem 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.site-footer a { color: var(--lime); display: block; text-decoration: none; margin: 0.3rem 0; }
.footer-label { font-weight: 700; margin-bottom: 0.4rem; }

.cookie-banner {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
  width: min(720px, calc(100% - 1.5rem));
  background: #fff; border: 3px solid var(--ink); border-radius: 1.25rem;
  padding: 1rem 1.2rem; box-shadow: var(--shadow); z-index: 30;
  display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; justify-content: space-between;
}
.cookie-actions { display: flex; gap: 0.5rem; }

form { display: grid; gap: 0.85rem; max-width: 36rem; }
label { font-weight: 600; display: grid; gap: 0.3rem; }
input, textarea, select {
  font: inherit; padding: 0.65rem 0.8rem; border-radius: 0.8rem;
  border: 2px solid var(--ink); background: #fff;
}
.error { color: #b42318; font-size: 0.9rem; }
.form-status { margin-top: 0.5rem; font-weight: 600; }

table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { border: 2px solid var(--ink); padding: 0.6rem; text-align: left; }

.prose { max-width: 46rem; }
.prose p { margin: 0 0 1rem; }

@media (max-width: 860px) {
  .hero-split, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; position: absolute; top: 64px; right: 1rem; left: 1rem; background: #fff; border: 2px solid var(--ink); border-radius: 1rem; padding: 1rem; flex-direction: column; }
  .site-nav.open { display: flex; }
  .hero-art img { width: 100%; transform: none; }
}
