:root {
  --blush: #f8e8e0;
  --peach: #f4c9b8;
  --rose: #d9898b;
  --ink: #4a2f36;
  --muted: #6d535a;
  --paper: #fffaf7;
  --card: #ffffff;
  --shadow: 0 12px 40px rgba(74, 47, 54, 0.08);
  --radius: 22px;
  --font-sans: "Nunito", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #fde4d4 0%, transparent 55%),
    radial-gradient(900px 400px at 100% 0%, #f7d6e0 0%, transparent 50%),
    var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; height: auto; border-radius: 18px; }
a { color: #8a3d4a; }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus { left: 12px; background: #fff; padding: 8px 12px; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 137, 139, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.25rem;
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--peach);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  cursor: pointer;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.site-nav a { text-decoration: none; color: var(--muted); font-weight: 600; }
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 24px;
}
.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--rose);
  font-weight: 700;
  margin: 0 0 8px;
}
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 0 0 16px; }
.lede { font-size: 1.15rem; color: var(--muted); }
.btn {
  display: inline-block;
  background: linear-gradient(180deg, #e8a0a3, #d9898b);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--peach);
}
.hero-note {
  background: var(--card);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 8px 0 48px;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body { padding: 18px 20px 22px; }
.section { padding: 28px 0 48px; }
.prose { max-width: 70ch; }
.prose p { color: var(--muted); }
.meta { color: var(--muted); font-size: 0.92rem; }
.quote {
  background: linear-gradient(180deg, #fff, var(--blush));
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.site-footer {
  background: #4a2f36;
  color: #f8e8e0;
  padding: 40px 0;
  margin-top: 24px;
}
.site-footer a { color: #f4c9b8; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.footer-brand { font-family: var(--font-serif); font-size: 1.2rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 6px 0; }
.form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}
label { font-weight: 700; display: grid; gap: 6px; }
input, select, textarea {
  font: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e3c7c4;
  background: #fff;
}
.form-error { color: #9b2c3a; font-size: 0.9rem; }
.form-status { margin-top: 8px; font-weight: 700; }
.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 520px;
  margin-left: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  z-index: 40;
}
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button, .ghost {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  cursor: pointer;
}
#cookie-accept { background: #d9898b; color: #fff; }
#cookie-reject, button.ghost { background: var(--blush); color: var(--ink); }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #f0ddd8; }
@media (max-width: 860px) {
  .hero-split, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; flex-direction: column; }
  .site-nav.open { display: flex; }
}
